설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 479KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240
  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": "15f544493b64bc68cd9b50539b3b9d7b",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "v3.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "36a1cb2b81493fa5b82e50bf8068bf84d1542563"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/36a1cb2b81493fa5b82e50bf8068bf84d1542563",
  20. "reference": "36a1cb2b81493fa5b82e50bf8068bf84d1542563",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dasprid/enum": "^1.0.3",
  25. "ext-iconv": "*",
  26. "php": "^8.1"
  27. },
  28. "require-dev": {
  29. "phly/keep-a-changelog": "^2.12",
  30. "phpunit/phpunit": "^10.5.11 || ^11.0.4",
  31. "spatie/phpunit-snapshot-assertions": "^5.1.5",
  32. "spatie/pixelmatch-php": "^1.2.0",
  33. "squizlabs/php_codesniffer": "^3.9"
  34. },
  35. "suggest": {
  36. "ext-imagick": "to generate QR code images"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "BaconQrCode\\": "src/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "BSD-2-Clause"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Ben Scholzen 'DASPRiD'",
  51. "email": "mail@dasprids.de",
  52. "homepage": "https://dasprids.de/",
  53. "role": "Developer"
  54. }
  55. ],
  56. "description": "BaconQrCode is a QR code generator for PHP.",
  57. "homepage": "https://github.com/Bacon/BaconQrCode",
  58. "support": {
  59. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  60. "source": "https://github.com/Bacon/BaconQrCode/tree/v3.0.3"
  61. },
  62. "time": "2025-11-19T17:15:36+00:00"
  63. },
  64. {
  65. "name": "barryvdh/laravel-dompdf",
  66. "version": "v3.1.1",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  70. "reference": "8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d",
  75. "reference": "8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "dompdf/dompdf": "^3.0",
  80. "illuminate/support": "^9|^10|^11|^12",
  81. "php": "^8.1"
  82. },
  83. "require-dev": {
  84. "larastan/larastan": "^2.7|^3.0",
  85. "orchestra/testbench": "^7|^8|^9|^10",
  86. "phpro/grumphp": "^2.5",
  87. "squizlabs/php_codesniffer": "^3.5"
  88. },
  89. "type": "library",
  90. "extra": {
  91. "laravel": {
  92. "aliases": {
  93. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf",
  94. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf"
  95. },
  96. "providers": [
  97. "Barryvdh\\DomPDF\\ServiceProvider"
  98. ]
  99. },
  100. "branch-alias": {
  101. "dev-master": "3.0-dev"
  102. }
  103. },
  104. "autoload": {
  105. "psr-4": {
  106. "Barryvdh\\DomPDF\\": "src"
  107. }
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Barry vd. Heuvel",
  116. "email": "barryvdh@gmail.com"
  117. }
  118. ],
  119. "description": "A DOMPDF Wrapper for Laravel",
  120. "keywords": [
  121. "dompdf",
  122. "laravel",
  123. "pdf"
  124. ],
  125. "support": {
  126. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  127. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v3.1.1"
  128. },
  129. "funding": [
  130. {
  131. "url": "https://fruitcake.nl",
  132. "type": "custom"
  133. },
  134. {
  135. "url": "https://github.com/barryvdh",
  136. "type": "github"
  137. }
  138. ],
  139. "time": "2025-02-13T15:07:54+00:00"
  140. },
  141. {
  142. "name": "beste/clock",
  143. "version": "3.0.0",
  144. "source": {
  145. "type": "git",
  146. "url": "https://github.com/beste/clock.git",
  147. "reference": "7004b55fcd54737b539886244b3a3b2188181974"
  148. },
  149. "dist": {
  150. "type": "zip",
  151. "url": "https://api.github.com/repos/beste/clock/zipball/7004b55fcd54737b539886244b3a3b2188181974",
  152. "reference": "7004b55fcd54737b539886244b3a3b2188181974",
  153. "shasum": ""
  154. },
  155. "require": {
  156. "php": "^8.0",
  157. "psr/clock": "^1.0"
  158. },
  159. "provide": {
  160. "psr/clock-implementation": "1.0"
  161. },
  162. "require-dev": {
  163. "phpstan/extension-installer": "^1.2",
  164. "phpstan/phpstan": "^1.9.1",
  165. "phpstan/phpstan-phpunit": "^1.2.2",
  166. "phpstan/phpstan-strict-rules": "^1.4.4",
  167. "phpunit/phpunit": "^9.5.26",
  168. "psalm/plugin-phpunit": "^0.16.1",
  169. "vimeo/psalm": "^4.29"
  170. },
  171. "type": "library",
  172. "autoload": {
  173. "files": [
  174. "src/Clock.php"
  175. ],
  176. "psr-4": {
  177. "Beste\\Clock\\": "src/Clock"
  178. }
  179. },
  180. "notification-url": "https://packagist.org/downloads/",
  181. "license": [
  182. "MIT"
  183. ],
  184. "authors": [
  185. {
  186. "name": "Jérôme Gamez",
  187. "email": "jerome@gamez.name"
  188. }
  189. ],
  190. "description": "A collection of Clock implementations",
  191. "keywords": [
  192. "clock",
  193. "clock-interface",
  194. "psr-20",
  195. "psr20"
  196. ],
  197. "support": {
  198. "issues": "https://github.com/beste/clock/issues",
  199. "source": "https://github.com/beste/clock/tree/3.0.0"
  200. },
  201. "funding": [
  202. {
  203. "url": "https://github.com/jeromegamez",
  204. "type": "github"
  205. }
  206. ],
  207. "time": "2022-11-26T18:03:05+00:00"
  208. },
  209. {
  210. "name": "beste/in-memory-cache",
  211. "version": "1.5.0",
  212. "source": {
  213. "type": "git",
  214. "url": "https://github.com/beste/in-memory-cache-php.git",
  215. "reference": "d6991967b05e820cb1bcd2d31ca11ea8b1ca3f77"
  216. },
  217. "dist": {
  218. "type": "zip",
  219. "url": "https://api.github.com/repos/beste/in-memory-cache-php/zipball/d6991967b05e820cb1bcd2d31ca11ea8b1ca3f77",
  220. "reference": "d6991967b05e820cb1bcd2d31ca11ea8b1ca3f77",
  221. "shasum": ""
  222. },
  223. "require": {
  224. "php": "~8.3.0 || ~8.4.0 || ~8.5.0",
  225. "psr/cache": "^2.0 || ^3.0",
  226. "psr/clock": "^1.0"
  227. },
  228. "provide": {
  229. "psr/cache-implementation": "2.0 || 3.0"
  230. },
  231. "require-dev": {
  232. "beste/clock": "^3.0",
  233. "friendsofphp/php-cs-fixer": "^3.95.1",
  234. "phpstan/extension-installer": "^1.4.3",
  235. "phpstan/phpstan": "^2.1.51",
  236. "phpstan/phpstan-deprecation-rules": "^2.0.4",
  237. "phpstan/phpstan-phpunit": "^2.0.16",
  238. "phpstan/phpstan-strict-rules": "^2.0.10",
  239. "phpunit/phpunit": "^12.5.23",
  240. "symfony/var-dumper": "^7.4.8 || ^v8.0.8"
  241. },
  242. "suggest": {
  243. "psr/clock-implementation": "Allows injecting a Clock, for example a frozen clock for testing"
  244. },
  245. "type": "library",
  246. "autoload": {
  247. "psr-4": {
  248. "Beste\\Cache\\": "src"
  249. }
  250. },
  251. "notification-url": "https://packagist.org/downloads/",
  252. "license": [
  253. "MIT"
  254. ],
  255. "authors": [
  256. {
  257. "name": "Jérôme Gamez",
  258. "email": "jerome@gamez.name"
  259. }
  260. ],
  261. "description": "A PSR-6 In-Memory cache that can be used as a fallback implementation and/or in tests.",
  262. "keywords": [
  263. "beste",
  264. "cache",
  265. "psr-6"
  266. ],
  267. "support": {
  268. "issues": "https://github.com/beste/in-memory-cache-php/issues",
  269. "source": "https://github.com/beste/in-memory-cache-php/tree/1.5.0"
  270. },
  271. "time": "2026-04-27T12:29:41+00:00"
  272. },
  273. {
  274. "name": "beste/json",
  275. "version": "1.7.0",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/beste/json.git",
  279. "reference": "976525f1ce2323a4e044364269d60b402603e216"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/beste/json/zipball/976525f1ce2323a4e044364269d60b402603e216",
  284. "reference": "976525f1ce2323a4e044364269d60b402603e216",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "ext-json": "*",
  289. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  290. },
  291. "require-dev": {
  292. "phpstan/extension-installer": "^1.3",
  293. "phpstan/phpstan": "^2.0.4",
  294. "phpstan/phpstan-phpunit": "^2.0.2",
  295. "phpstan/phpstan-strict-rules": "^2.0.1",
  296. "phpunit/phpunit": "^10.4.2",
  297. "rector/rector": "^2.0.3"
  298. },
  299. "type": "library",
  300. "autoload": {
  301. "files": [
  302. "src/Json.php"
  303. ]
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Jérôme Gamez",
  312. "email": "jerome@gamez.name"
  313. }
  314. ],
  315. "description": "A simple JSON helper to decode and encode JSON",
  316. "keywords": [
  317. "helper",
  318. "json"
  319. ],
  320. "support": {
  321. "issues": "https://github.com/beste/json/issues",
  322. "source": "https://github.com/beste/json/tree/1.7.0"
  323. },
  324. "funding": [
  325. {
  326. "url": "https://github.com/jeromegamez",
  327. "type": "github"
  328. },
  329. {
  330. "url": "https://tidelift.com/funding/github/packagist/beste/json",
  331. "type": "tidelift"
  332. }
  333. ],
  334. "time": "2025-09-11T23:36:19+00:00"
  335. },
  336. {
  337. "name": "brick/math",
  338. "version": "0.14.8",
  339. "source": {
  340. "type": "git",
  341. "url": "https://github.com/brick/math.git",
  342. "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629"
  343. },
  344. "dist": {
  345. "type": "zip",
  346. "url": "https://api.github.com/repos/brick/math/zipball/63422359a44b7f06cae63c3b429b59e8efcc0629",
  347. "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629",
  348. "shasum": ""
  349. },
  350. "require": {
  351. "php": "^8.2"
  352. },
  353. "require-dev": {
  354. "php-coveralls/php-coveralls": "^2.2",
  355. "phpstan/phpstan": "2.1.22",
  356. "phpunit/phpunit": "^11.5"
  357. },
  358. "type": "library",
  359. "autoload": {
  360. "psr-4": {
  361. "Brick\\Math\\": "src/"
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "description": "Arbitrary-precision arithmetic library",
  369. "keywords": [
  370. "Arbitrary-precision",
  371. "BigInteger",
  372. "BigRational",
  373. "arithmetic",
  374. "bigdecimal",
  375. "bignum",
  376. "bignumber",
  377. "brick",
  378. "decimal",
  379. "integer",
  380. "math",
  381. "mathematics",
  382. "rational"
  383. ],
  384. "support": {
  385. "issues": "https://github.com/brick/math/issues",
  386. "source": "https://github.com/brick/math/tree/0.14.8"
  387. },
  388. "funding": [
  389. {
  390. "url": "https://github.com/BenMorel",
  391. "type": "github"
  392. }
  393. ],
  394. "time": "2026-02-10T14:33:43+00:00"
  395. },
  396. {
  397. "name": "carbonphp/carbon-doctrine-types",
  398. "version": "3.2.0",
  399. "source": {
  400. "type": "git",
  401. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  402. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  403. },
  404. "dist": {
  405. "type": "zip",
  406. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  407. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  408. "shasum": ""
  409. },
  410. "require": {
  411. "php": "^8.1"
  412. },
  413. "conflict": {
  414. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  415. },
  416. "require-dev": {
  417. "doctrine/dbal": "^4.0.0",
  418. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  419. "phpunit/phpunit": "^10.3"
  420. },
  421. "type": "library",
  422. "autoload": {
  423. "psr-4": {
  424. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  425. }
  426. },
  427. "notification-url": "https://packagist.org/downloads/",
  428. "license": [
  429. "MIT"
  430. ],
  431. "authors": [
  432. {
  433. "name": "KyleKatarn",
  434. "email": "kylekatarnls@gmail.com"
  435. }
  436. ],
  437. "description": "Types to use Carbon in Doctrine",
  438. "keywords": [
  439. "carbon",
  440. "date",
  441. "datetime",
  442. "doctrine",
  443. "time"
  444. ],
  445. "support": {
  446. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  447. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  448. },
  449. "funding": [
  450. {
  451. "url": "https://github.com/kylekatarnls",
  452. "type": "github"
  453. },
  454. {
  455. "url": "https://opencollective.com/Carbon",
  456. "type": "open_collective"
  457. },
  458. {
  459. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  460. "type": "tidelift"
  461. }
  462. ],
  463. "time": "2024-02-09T16:56:22+00:00"
  464. },
  465. {
  466. "name": "composer/pcre",
  467. "version": "3.3.2",
  468. "source": {
  469. "type": "git",
  470. "url": "https://github.com/composer/pcre.git",
  471. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  472. },
  473. "dist": {
  474. "type": "zip",
  475. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  476. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  477. "shasum": ""
  478. },
  479. "require": {
  480. "php": "^7.4 || ^8.0"
  481. },
  482. "conflict": {
  483. "phpstan/phpstan": "<1.11.10"
  484. },
  485. "require-dev": {
  486. "phpstan/phpstan": "^1.12 || ^2",
  487. "phpstan/phpstan-strict-rules": "^1 || ^2",
  488. "phpunit/phpunit": "^8 || ^9"
  489. },
  490. "type": "library",
  491. "extra": {
  492. "phpstan": {
  493. "includes": [
  494. "extension.neon"
  495. ]
  496. },
  497. "branch-alias": {
  498. "dev-main": "3.x-dev"
  499. }
  500. },
  501. "autoload": {
  502. "psr-4": {
  503. "Composer\\Pcre\\": "src"
  504. }
  505. },
  506. "notification-url": "https://packagist.org/downloads/",
  507. "license": [
  508. "MIT"
  509. ],
  510. "authors": [
  511. {
  512. "name": "Jordi Boggiano",
  513. "email": "j.boggiano@seld.be",
  514. "homepage": "http://seld.be"
  515. }
  516. ],
  517. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  518. "keywords": [
  519. "PCRE",
  520. "preg",
  521. "regex",
  522. "regular expression"
  523. ],
  524. "support": {
  525. "issues": "https://github.com/composer/pcre/issues",
  526. "source": "https://github.com/composer/pcre/tree/3.3.2"
  527. },
  528. "funding": [
  529. {
  530. "url": "https://packagist.com",
  531. "type": "custom"
  532. },
  533. {
  534. "url": "https://github.com/composer",
  535. "type": "github"
  536. },
  537. {
  538. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  539. "type": "tidelift"
  540. }
  541. ],
  542. "time": "2024-11-12T16:29:46+00:00"
  543. },
  544. {
  545. "name": "cuyz/valinor",
  546. "version": "2.4.0",
  547. "source": {
  548. "type": "git",
  549. "url": "https://github.com/CuyZ/Valinor.git",
  550. "reference": "3b0afa3a287ed7f3a69aab223726cf1139454c34"
  551. },
  552. "dist": {
  553. "type": "zip",
  554. "url": "https://api.github.com/repos/CuyZ/Valinor/zipball/3b0afa3a287ed7f3a69aab223726cf1139454c34",
  555. "reference": "3b0afa3a287ed7f3a69aab223726cf1139454c34",
  556. "shasum": ""
  557. },
  558. "require": {
  559. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  560. },
  561. "conflict": {
  562. "phpstan/phpstan": "<1.0 || >= 3.0",
  563. "vimeo/psalm": "<5.0 || >=7.0"
  564. },
  565. "require-dev": {
  566. "friendsofphp/php-cs-fixer": "^3.91",
  567. "infection/infection": "^0.32",
  568. "marcocesarato/php-conventional-changelog": "^1.12",
  569. "mikey179/vfsstream": "^1.6.10",
  570. "phpbench/phpbench": "^1.3",
  571. "phpstan/phpstan": "^2.0",
  572. "phpstan/phpstan-phpunit": "^2.0",
  573. "phpstan/phpstan-strict-rules": "^2.0",
  574. "phpunit/phpunit": "^11.5",
  575. "psr/http-message": "^2.0",
  576. "rector/rector": "^2.0",
  577. "vimeo/psalm": "^6.0"
  578. },
  579. "type": "library",
  580. "autoload": {
  581. "psr-4": {
  582. "CuyZ\\Valinor\\": "src"
  583. }
  584. },
  585. "notification-url": "https://packagist.org/downloads/",
  586. "license": [
  587. "MIT"
  588. ],
  589. "authors": [
  590. {
  591. "name": "Romain Canon",
  592. "email": "romain.hydrocanon@gmail.com",
  593. "homepage": "https://github.com/romm"
  594. }
  595. ],
  596. "description": "Dependency free PHP library that helps to map any input into a strongly-typed structure.",
  597. "homepage": "https://github.com/CuyZ/Valinor",
  598. "keywords": [
  599. "array",
  600. "conversion",
  601. "hydrator",
  602. "json",
  603. "mapper",
  604. "mapping",
  605. "object",
  606. "tree",
  607. "yaml"
  608. ],
  609. "support": {
  610. "issues": "https://github.com/CuyZ/Valinor/issues",
  611. "source": "https://github.com/CuyZ/Valinor/tree/2.4.0"
  612. },
  613. "funding": [
  614. {
  615. "url": "https://github.com/romm",
  616. "type": "github"
  617. }
  618. ],
  619. "time": "2026-03-23T17:38:05+00:00"
  620. },
  621. {
  622. "name": "dasprid/enum",
  623. "version": "1.0.7",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/DASPRiD/Enum.git",
  627. "reference": "b5874fa9ed0043116c72162ec7f4fb50e02e7cce"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/b5874fa9ed0043116c72162ec7f4fb50e02e7cce",
  632. "reference": "b5874fa9ed0043116c72162ec7f4fb50e02e7cce",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "php": ">=7.1 <9.0"
  637. },
  638. "require-dev": {
  639. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  640. "squizlabs/php_codesniffer": "*"
  641. },
  642. "type": "library",
  643. "autoload": {
  644. "psr-4": {
  645. "DASPRiD\\Enum\\": "src/"
  646. }
  647. },
  648. "notification-url": "https://packagist.org/downloads/",
  649. "license": [
  650. "BSD-2-Clause"
  651. ],
  652. "authors": [
  653. {
  654. "name": "Ben Scholzen 'DASPRiD'",
  655. "email": "mail@dasprids.de",
  656. "homepage": "https://dasprids.de/",
  657. "role": "Developer"
  658. }
  659. ],
  660. "description": "PHP 7.1 enum implementation",
  661. "keywords": [
  662. "enum",
  663. "map"
  664. ],
  665. "support": {
  666. "issues": "https://github.com/DASPRiD/Enum/issues",
  667. "source": "https://github.com/DASPRiD/Enum/tree/1.0.7"
  668. },
  669. "time": "2025-09-16T12:23:56+00:00"
  670. },
  671. {
  672. "name": "dflydev/dot-access-data",
  673. "version": "v3.0.3",
  674. "source": {
  675. "type": "git",
  676. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  677. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  678. },
  679. "dist": {
  680. "type": "zip",
  681. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  682. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  683. "shasum": ""
  684. },
  685. "require": {
  686. "php": "^7.1 || ^8.0"
  687. },
  688. "require-dev": {
  689. "phpstan/phpstan": "^0.12.42",
  690. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  691. "scrutinizer/ocular": "1.6.0",
  692. "squizlabs/php_codesniffer": "^3.5",
  693. "vimeo/psalm": "^4.0.0"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "branch-alias": {
  698. "dev-main": "3.x-dev"
  699. }
  700. },
  701. "autoload": {
  702. "psr-4": {
  703. "Dflydev\\DotAccessData\\": "src/"
  704. }
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Dragonfly Development Inc.",
  713. "email": "info@dflydev.com",
  714. "homepage": "http://dflydev.com"
  715. },
  716. {
  717. "name": "Beau Simensen",
  718. "email": "beau@dflydev.com",
  719. "homepage": "http://beausimensen.com"
  720. },
  721. {
  722. "name": "Carlos Frutos",
  723. "email": "carlos@kiwing.it",
  724. "homepage": "https://github.com/cfrutos"
  725. },
  726. {
  727. "name": "Colin O'Dell",
  728. "email": "colinodell@gmail.com",
  729. "homepage": "https://www.colinodell.com"
  730. }
  731. ],
  732. "description": "Given a deep data structure, access data by dot notation.",
  733. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  734. "keywords": [
  735. "access",
  736. "data",
  737. "dot",
  738. "notation"
  739. ],
  740. "support": {
  741. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  742. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  743. },
  744. "time": "2024-07-08T12:26:09+00:00"
  745. },
  746. {
  747. "name": "doctrine/inflector",
  748. "version": "2.1.0",
  749. "source": {
  750. "type": "git",
  751. "url": "https://github.com/doctrine/inflector.git",
  752. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  753. },
  754. "dist": {
  755. "type": "zip",
  756. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  757. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  758. "shasum": ""
  759. },
  760. "require": {
  761. "php": "^7.2 || ^8.0"
  762. },
  763. "require-dev": {
  764. "doctrine/coding-standard": "^12.0 || ^13.0",
  765. "phpstan/phpstan": "^1.12 || ^2.0",
  766. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  767. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  768. "phpunit/phpunit": "^8.5 || ^12.2"
  769. },
  770. "type": "library",
  771. "autoload": {
  772. "psr-4": {
  773. "Doctrine\\Inflector\\": "src"
  774. }
  775. },
  776. "notification-url": "https://packagist.org/downloads/",
  777. "license": [
  778. "MIT"
  779. ],
  780. "authors": [
  781. {
  782. "name": "Guilherme Blanco",
  783. "email": "guilhermeblanco@gmail.com"
  784. },
  785. {
  786. "name": "Roman Borschel",
  787. "email": "roman@code-factory.org"
  788. },
  789. {
  790. "name": "Benjamin Eberlei",
  791. "email": "kontakt@beberlei.de"
  792. },
  793. {
  794. "name": "Jonathan Wage",
  795. "email": "jonwage@gmail.com"
  796. },
  797. {
  798. "name": "Johannes Schmitt",
  799. "email": "schmittjoh@gmail.com"
  800. }
  801. ],
  802. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  803. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  804. "keywords": [
  805. "inflection",
  806. "inflector",
  807. "lowercase",
  808. "manipulation",
  809. "php",
  810. "plural",
  811. "singular",
  812. "strings",
  813. "uppercase",
  814. "words"
  815. ],
  816. "support": {
  817. "issues": "https://github.com/doctrine/inflector/issues",
  818. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  819. },
  820. "funding": [
  821. {
  822. "url": "https://www.doctrine-project.org/sponsorship.html",
  823. "type": "custom"
  824. },
  825. {
  826. "url": "https://www.patreon.com/phpdoctrine",
  827. "type": "patreon"
  828. },
  829. {
  830. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  831. "type": "tidelift"
  832. }
  833. ],
  834. "time": "2025-08-10T19:31:58+00:00"
  835. },
  836. {
  837. "name": "doctrine/lexer",
  838. "version": "3.0.1",
  839. "source": {
  840. "type": "git",
  841. "url": "https://github.com/doctrine/lexer.git",
  842. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  843. },
  844. "dist": {
  845. "type": "zip",
  846. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  847. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  848. "shasum": ""
  849. },
  850. "require": {
  851. "php": "^8.1"
  852. },
  853. "require-dev": {
  854. "doctrine/coding-standard": "^12",
  855. "phpstan/phpstan": "^1.10",
  856. "phpunit/phpunit": "^10.5",
  857. "psalm/plugin-phpunit": "^0.18.3",
  858. "vimeo/psalm": "^5.21"
  859. },
  860. "type": "library",
  861. "autoload": {
  862. "psr-4": {
  863. "Doctrine\\Common\\Lexer\\": "src"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Guilherme Blanco",
  873. "email": "guilhermeblanco@gmail.com"
  874. },
  875. {
  876. "name": "Roman Borschel",
  877. "email": "roman@code-factory.org"
  878. },
  879. {
  880. "name": "Johannes Schmitt",
  881. "email": "schmittjoh@gmail.com"
  882. }
  883. ],
  884. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  885. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  886. "keywords": [
  887. "annotations",
  888. "docblock",
  889. "lexer",
  890. "parser",
  891. "php"
  892. ],
  893. "support": {
  894. "issues": "https://github.com/doctrine/lexer/issues",
  895. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  896. },
  897. "funding": [
  898. {
  899. "url": "https://www.doctrine-project.org/sponsorship.html",
  900. "type": "custom"
  901. },
  902. {
  903. "url": "https://www.patreon.com/phpdoctrine",
  904. "type": "patreon"
  905. },
  906. {
  907. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  908. "type": "tidelift"
  909. }
  910. ],
  911. "time": "2024-02-05T11:56:58+00:00"
  912. },
  913. {
  914. "name": "dompdf/dompdf",
  915. "version": "v3.1.4",
  916. "source": {
  917. "type": "git",
  918. "url": "https://github.com/dompdf/dompdf.git",
  919. "reference": "db712c90c5b9868df3600e64e68da62e78a34623"
  920. },
  921. "dist": {
  922. "type": "zip",
  923. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/db712c90c5b9868df3600e64e68da62e78a34623",
  924. "reference": "db712c90c5b9868df3600e64e68da62e78a34623",
  925. "shasum": ""
  926. },
  927. "require": {
  928. "dompdf/php-font-lib": "^1.0.0",
  929. "dompdf/php-svg-lib": "^1.0.0",
  930. "ext-dom": "*",
  931. "ext-mbstring": "*",
  932. "masterminds/html5": "^2.0",
  933. "php": "^7.1 || ^8.0"
  934. },
  935. "require-dev": {
  936. "ext-gd": "*",
  937. "ext-json": "*",
  938. "ext-zip": "*",
  939. "mockery/mockery": "^1.3",
  940. "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11",
  941. "squizlabs/php_codesniffer": "^3.5",
  942. "symfony/process": "^4.4 || ^5.4 || ^6.2 || ^7.0"
  943. },
  944. "suggest": {
  945. "ext-gd": "Needed to process images",
  946. "ext-gmagick": "Improves image processing performance",
  947. "ext-imagick": "Improves image processing performance",
  948. "ext-zlib": "Needed for pdf stream compression"
  949. },
  950. "type": "library",
  951. "autoload": {
  952. "psr-4": {
  953. "Dompdf\\": "src/"
  954. },
  955. "classmap": [
  956. "lib/"
  957. ]
  958. },
  959. "notification-url": "https://packagist.org/downloads/",
  960. "license": [
  961. "LGPL-2.1"
  962. ],
  963. "authors": [
  964. {
  965. "name": "The Dompdf Community",
  966. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  967. }
  968. ],
  969. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  970. "homepage": "https://github.com/dompdf/dompdf",
  971. "support": {
  972. "issues": "https://github.com/dompdf/dompdf/issues",
  973. "source": "https://github.com/dompdf/dompdf/tree/v3.1.4"
  974. },
  975. "time": "2025-10-29T12:43:30+00:00"
  976. },
  977. {
  978. "name": "dompdf/php-font-lib",
  979. "version": "1.0.1",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/dompdf/php-font-lib.git",
  983. "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d",
  988. "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "ext-mbstring": "*",
  993. "php": "^7.1 || ^8.0"
  994. },
  995. "require-dev": {
  996. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  997. },
  998. "type": "library",
  999. "autoload": {
  1000. "psr-4": {
  1001. "FontLib\\": "src/FontLib"
  1002. }
  1003. },
  1004. "notification-url": "https://packagist.org/downloads/",
  1005. "license": [
  1006. "LGPL-2.1-or-later"
  1007. ],
  1008. "authors": [
  1009. {
  1010. "name": "The FontLib Community",
  1011. "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md"
  1012. }
  1013. ],
  1014. "description": "A library to read, parse, export and make subsets of different types of font files.",
  1015. "homepage": "https://github.com/dompdf/php-font-lib",
  1016. "support": {
  1017. "issues": "https://github.com/dompdf/php-font-lib/issues",
  1018. "source": "https://github.com/dompdf/php-font-lib/tree/1.0.1"
  1019. },
  1020. "time": "2024-12-02T14:37:59+00:00"
  1021. },
  1022. {
  1023. "name": "dompdf/php-svg-lib",
  1024. "version": "1.0.2",
  1025. "source": {
  1026. "type": "git",
  1027. "url": "https://github.com/dompdf/php-svg-lib.git",
  1028. "reference": "8259ffb930817e72b1ff1caef5d226501f3dfeb1"
  1029. },
  1030. "dist": {
  1031. "type": "zip",
  1032. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/8259ffb930817e72b1ff1caef5d226501f3dfeb1",
  1033. "reference": "8259ffb930817e72b1ff1caef5d226501f3dfeb1",
  1034. "shasum": ""
  1035. },
  1036. "require": {
  1037. "ext-mbstring": "*",
  1038. "php": "^7.1 || ^8.0",
  1039. "sabberworm/php-css-parser": "^8.4 || ^9.0"
  1040. },
  1041. "require-dev": {
  1042. "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11"
  1043. },
  1044. "type": "library",
  1045. "autoload": {
  1046. "psr-4": {
  1047. "Svg\\": "src/Svg"
  1048. }
  1049. },
  1050. "notification-url": "https://packagist.org/downloads/",
  1051. "license": [
  1052. "LGPL-3.0-or-later"
  1053. ],
  1054. "authors": [
  1055. {
  1056. "name": "The SvgLib Community",
  1057. "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md"
  1058. }
  1059. ],
  1060. "description": "A library to read, parse and export to PDF SVG files.",
  1061. "homepage": "https://github.com/dompdf/php-svg-lib",
  1062. "support": {
  1063. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  1064. "source": "https://github.com/dompdf/php-svg-lib/tree/1.0.2"
  1065. },
  1066. "time": "2026-01-02T16:01:13+00:00"
  1067. },
  1068. {
  1069. "name": "dragonmantank/cron-expression",
  1070. "version": "v3.6.0",
  1071. "source": {
  1072. "type": "git",
  1073. "url": "https://github.com/dragonmantank/cron-expression.git",
  1074. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013"
  1075. },
  1076. "dist": {
  1077. "type": "zip",
  1078. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  1079. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  1080. "shasum": ""
  1081. },
  1082. "require": {
  1083. "php": "^8.2|^8.3|^8.4|^8.5"
  1084. },
  1085. "replace": {
  1086. "mtdowling/cron-expression": "^1.0"
  1087. },
  1088. "require-dev": {
  1089. "phpstan/extension-installer": "^1.4.3",
  1090. "phpstan/phpstan": "^1.12.32|^2.1.31",
  1091. "phpunit/phpunit": "^8.5.48|^9.0"
  1092. },
  1093. "type": "library",
  1094. "extra": {
  1095. "branch-alias": {
  1096. "dev-master": "3.x-dev"
  1097. }
  1098. },
  1099. "autoload": {
  1100. "psr-4": {
  1101. "Cron\\": "src/Cron/"
  1102. }
  1103. },
  1104. "notification-url": "https://packagist.org/downloads/",
  1105. "license": [
  1106. "MIT"
  1107. ],
  1108. "authors": [
  1109. {
  1110. "name": "Chris Tankersley",
  1111. "email": "chris@ctankersley.com",
  1112. "homepage": "https://github.com/dragonmantank"
  1113. }
  1114. ],
  1115. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1116. "keywords": [
  1117. "cron",
  1118. "schedule"
  1119. ],
  1120. "support": {
  1121. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1122. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0"
  1123. },
  1124. "funding": [
  1125. {
  1126. "url": "https://github.com/dragonmantank",
  1127. "type": "github"
  1128. }
  1129. ],
  1130. "time": "2025-10-31T18:51:33+00:00"
  1131. },
  1132. {
  1133. "name": "egulias/email-validator",
  1134. "version": "4.0.4",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/egulias/EmailValidator.git",
  1138. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1143. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1144. "shasum": ""
  1145. },
  1146. "require": {
  1147. "doctrine/lexer": "^2.0 || ^3.0",
  1148. "php": ">=8.1",
  1149. "symfony/polyfill-intl-idn": "^1.26"
  1150. },
  1151. "require-dev": {
  1152. "phpunit/phpunit": "^10.2",
  1153. "vimeo/psalm": "^5.12"
  1154. },
  1155. "suggest": {
  1156. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1157. },
  1158. "type": "library",
  1159. "extra": {
  1160. "branch-alias": {
  1161. "dev-master": "4.0.x-dev"
  1162. }
  1163. },
  1164. "autoload": {
  1165. "psr-4": {
  1166. "Egulias\\EmailValidator\\": "src"
  1167. }
  1168. },
  1169. "notification-url": "https://packagist.org/downloads/",
  1170. "license": [
  1171. "MIT"
  1172. ],
  1173. "authors": [
  1174. {
  1175. "name": "Eduardo Gulias Davis"
  1176. }
  1177. ],
  1178. "description": "A library for validating emails against several RFCs",
  1179. "homepage": "https://github.com/egulias/EmailValidator",
  1180. "keywords": [
  1181. "email",
  1182. "emailvalidation",
  1183. "emailvalidator",
  1184. "validation",
  1185. "validator"
  1186. ],
  1187. "support": {
  1188. "issues": "https://github.com/egulias/EmailValidator/issues",
  1189. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1190. },
  1191. "funding": [
  1192. {
  1193. "url": "https://github.com/egulias",
  1194. "type": "github"
  1195. }
  1196. ],
  1197. "time": "2025-03-06T22:45:56+00:00"
  1198. },
  1199. {
  1200. "name": "elibyy/tcpdf-laravel",
  1201. "version": "11.5.0",
  1202. "source": {
  1203. "type": "git",
  1204. "url": "https://github.com/elibyy/tcpdf-laravel.git",
  1205. "reference": "25d076d5f50eef9702dfa1ae889b1a599250f951"
  1206. },
  1207. "dist": {
  1208. "type": "zip",
  1209. "url": "https://api.github.com/repos/elibyy/tcpdf-laravel/zipball/25d076d5f50eef9702dfa1ae889b1a599250f951",
  1210. "reference": "25d076d5f50eef9702dfa1ae889b1a599250f951",
  1211. "shasum": ""
  1212. },
  1213. "require": {
  1214. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  1215. "tecnickcom/tcpdf": "6.2.*|6.3.*|6.4.*|6.5.*|6.6.*|6.7.*|6.8.*|6.9.*|6.10.*|dev-main"
  1216. },
  1217. "type": "library",
  1218. "extra": {
  1219. "laravel": {
  1220. "aliases": {
  1221. "PDF": "Elibyy\\TCPDF\\Facades\\TCPDF"
  1222. },
  1223. "providers": [
  1224. "Elibyy\\TCPDF\\ServiceProvider"
  1225. ]
  1226. }
  1227. },
  1228. "autoload": {
  1229. "psr-4": {
  1230. "Elibyy\\TCPDF\\": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "authors": [
  1238. {
  1239. "name": "eli y",
  1240. "email": "elibyy@gmail.com"
  1241. }
  1242. ],
  1243. "description": "tcpdf support for Laravel 6, 7, 8, 9, 10, 11",
  1244. "keywords": [
  1245. "TCPDF",
  1246. "laravel",
  1247. "pdf"
  1248. ],
  1249. "support": {
  1250. "issues": "https://github.com/elibyy/tcpdf-laravel/issues",
  1251. "source": "https://github.com/elibyy/tcpdf-laravel/tree/11.5.0"
  1252. },
  1253. "time": "2025-06-06T08:27:48+00:00"
  1254. },
  1255. {
  1256. "name": "endroid/qr-code",
  1257. "version": "6.1.3",
  1258. "source": {
  1259. "type": "git",
  1260. "url": "https://github.com/endroid/qr-code.git",
  1261. "reference": "5fa534856ed95649d67c0eab0cabc03ab1d8e0e2"
  1262. },
  1263. "dist": {
  1264. "type": "zip",
  1265. "url": "https://api.github.com/repos/endroid/qr-code/zipball/5fa534856ed95649d67c0eab0cabc03ab1d8e0e2",
  1266. "reference": "5fa534856ed95649d67c0eab0cabc03ab1d8e0e2",
  1267. "shasum": ""
  1268. },
  1269. "require": {
  1270. "bacon/bacon-qr-code": "^3.0",
  1271. "php": "^8.4"
  1272. },
  1273. "require-dev": {
  1274. "endroid/quality": "dev-main",
  1275. "ext-gd": "*",
  1276. "khanamiryan/qrcode-detector-decoder": "^2.0.3",
  1277. "setasign/fpdf": "^1.8.2"
  1278. },
  1279. "suggest": {
  1280. "ext-gd": "Enables you to write PNG images",
  1281. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1282. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1283. "setasign/fpdf": "Enables you to use the PDF writer"
  1284. },
  1285. "type": "library",
  1286. "extra": {
  1287. "branch-alias": {
  1288. "dev-main": "6.x-dev"
  1289. }
  1290. },
  1291. "autoload": {
  1292. "psr-4": {
  1293. "Endroid\\QrCode\\": "src/"
  1294. }
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "authors": [
  1301. {
  1302. "name": "Jeroen van den Enden",
  1303. "email": "info@endroid.nl"
  1304. }
  1305. ],
  1306. "description": "Endroid QR Code",
  1307. "homepage": "https://github.com/endroid/qr-code",
  1308. "keywords": [
  1309. "code",
  1310. "endroid",
  1311. "php",
  1312. "qr",
  1313. "qrcode"
  1314. ],
  1315. "support": {
  1316. "issues": "https://github.com/endroid/qr-code/issues",
  1317. "source": "https://github.com/endroid/qr-code/tree/6.1.3"
  1318. },
  1319. "funding": [
  1320. {
  1321. "url": "https://github.com/endroid",
  1322. "type": "github"
  1323. }
  1324. ],
  1325. "time": "2026-02-05T07:01:58+00:00"
  1326. },
  1327. {
  1328. "name": "fig/http-message-util",
  1329. "version": "1.1.5",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/php-fig/http-message-util.git",
  1333. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  1338. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  1339. "shasum": ""
  1340. },
  1341. "require": {
  1342. "php": "^5.3 || ^7.0 || ^8.0"
  1343. },
  1344. "suggest": {
  1345. "psr/http-message": "The package containing the PSR-7 interfaces"
  1346. },
  1347. "type": "library",
  1348. "extra": {
  1349. "branch-alias": {
  1350. "dev-master": "1.1.x-dev"
  1351. }
  1352. },
  1353. "autoload": {
  1354. "psr-4": {
  1355. "Fig\\Http\\Message\\": "src/"
  1356. }
  1357. },
  1358. "notification-url": "https://packagist.org/downloads/",
  1359. "license": [
  1360. "MIT"
  1361. ],
  1362. "authors": [
  1363. {
  1364. "name": "PHP-FIG",
  1365. "homepage": "https://www.php-fig.org/"
  1366. }
  1367. ],
  1368. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  1369. "keywords": [
  1370. "http",
  1371. "http-message",
  1372. "psr",
  1373. "psr-7",
  1374. "request",
  1375. "response"
  1376. ],
  1377. "support": {
  1378. "issues": "https://github.com/php-fig/http-message-util/issues",
  1379. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  1380. },
  1381. "time": "2020-11-24T22:02:12+00:00"
  1382. },
  1383. {
  1384. "name": "firebase/php-jwt",
  1385. "version": "v6.11.1",
  1386. "source": {
  1387. "type": "git",
  1388. "url": "https://github.com/googleapis/php-jwt.git",
  1389. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  1390. },
  1391. "dist": {
  1392. "type": "zip",
  1393. "url": "https://api.github.com/repos/googleapis/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  1394. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  1395. "shasum": ""
  1396. },
  1397. "require": {
  1398. "php": "^8.0"
  1399. },
  1400. "require-dev": {
  1401. "guzzlehttp/guzzle": "^7.4",
  1402. "phpspec/prophecy-phpunit": "^2.0",
  1403. "phpunit/phpunit": "^9.5",
  1404. "psr/cache": "^2.0||^3.0",
  1405. "psr/http-client": "^1.0",
  1406. "psr/http-factory": "^1.0"
  1407. },
  1408. "suggest": {
  1409. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1410. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1411. },
  1412. "type": "library",
  1413. "autoload": {
  1414. "psr-4": {
  1415. "Firebase\\JWT\\": "src"
  1416. }
  1417. },
  1418. "notification-url": "https://packagist.org/downloads/",
  1419. "license": [
  1420. "BSD-3-Clause"
  1421. ],
  1422. "authors": [
  1423. {
  1424. "name": "Neuman Vong",
  1425. "email": "neuman+pear@twilio.com",
  1426. "role": "Developer"
  1427. },
  1428. {
  1429. "name": "Anant Narayanan",
  1430. "email": "anant@php.net",
  1431. "role": "Developer"
  1432. }
  1433. ],
  1434. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1435. "homepage": "https://github.com/firebase/php-jwt",
  1436. "keywords": [
  1437. "jwt",
  1438. "php"
  1439. ],
  1440. "support": {
  1441. "issues": "https://github.com/googleapis/php-jwt/issues",
  1442. "source": "https://github.com/googleapis/php-jwt/tree/v6.11.1"
  1443. },
  1444. "time": "2025-04-09T20:32:01+00:00"
  1445. },
  1446. {
  1447. "name": "fruitcake/php-cors",
  1448. "version": "v1.4.0",
  1449. "source": {
  1450. "type": "git",
  1451. "url": "https://github.com/fruitcake/php-cors.git",
  1452. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379"
  1453. },
  1454. "dist": {
  1455. "type": "zip",
  1456. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  1457. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  1458. "shasum": ""
  1459. },
  1460. "require": {
  1461. "php": "^8.1",
  1462. "symfony/http-foundation": "^5.4|^6.4|^7.3|^8"
  1463. },
  1464. "require-dev": {
  1465. "phpstan/phpstan": "^2",
  1466. "phpunit/phpunit": "^9",
  1467. "squizlabs/php_codesniffer": "^4"
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "1.3-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Fruitcake\\Cors\\": "src/"
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "Fruitcake",
  1487. "homepage": "https://fruitcake.nl"
  1488. },
  1489. {
  1490. "name": "Barryvdh",
  1491. "email": "barryvdh@gmail.com"
  1492. }
  1493. ],
  1494. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1495. "homepage": "https://github.com/fruitcake/php-cors",
  1496. "keywords": [
  1497. "cors",
  1498. "laravel",
  1499. "symfony"
  1500. ],
  1501. "support": {
  1502. "issues": "https://github.com/fruitcake/php-cors/issues",
  1503. "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0"
  1504. },
  1505. "funding": [
  1506. {
  1507. "url": "https://fruitcake.nl",
  1508. "type": "custom"
  1509. },
  1510. {
  1511. "url": "https://github.com/barryvdh",
  1512. "type": "github"
  1513. }
  1514. ],
  1515. "time": "2025-12-03T09:33:47+00:00"
  1516. },
  1517. {
  1518. "name": "google/auth",
  1519. "version": "v1.50.2",
  1520. "source": {
  1521. "type": "git",
  1522. "url": "https://github.com/googleapis/google-auth-library-php.git",
  1523. "reference": "58788f86d47e59de692c0dae0bb0c006bd0b6018"
  1524. },
  1525. "dist": {
  1526. "type": "zip",
  1527. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/58788f86d47e59de692c0dae0bb0c006bd0b6018",
  1528. "reference": "58788f86d47e59de692c0dae0bb0c006bd0b6018",
  1529. "shasum": ""
  1530. },
  1531. "require": {
  1532. "firebase/php-jwt": "^6.0||^7.0",
  1533. "guzzlehttp/guzzle": "^7.4.5",
  1534. "guzzlehttp/psr7": "^2.4.5",
  1535. "php": "^8.1",
  1536. "psr/cache": "^2.0||^3.0",
  1537. "psr/http-message": "^1.1||^2.0",
  1538. "psr/log": "^2.0||^3.0"
  1539. },
  1540. "require-dev": {
  1541. "guzzlehttp/promises": "^2.0",
  1542. "kelvinmo/simplejwt": "^1.1.0",
  1543. "phpseclib/phpseclib": "^3.0.35",
  1544. "phpspec/prophecy-phpunit": "^2.1",
  1545. "phpunit/phpunit": "^9.6",
  1546. "sebastian/comparator": ">=1.2.3",
  1547. "squizlabs/php_codesniffer": "^4.0",
  1548. "symfony/filesystem": "^6.3||^7.3",
  1549. "symfony/process": "^6.0||^7.0",
  1550. "webmozart/assert": "^1.11||^2.0"
  1551. },
  1552. "suggest": {
  1553. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  1554. },
  1555. "type": "library",
  1556. "autoload": {
  1557. "psr-4": {
  1558. "Google\\Auth\\": "src"
  1559. }
  1560. },
  1561. "notification-url": "https://packagist.org/downloads/",
  1562. "license": [
  1563. "Apache-2.0"
  1564. ],
  1565. "description": "Google Auth Library for PHP",
  1566. "homepage": "https://github.com/google/google-auth-library-php",
  1567. "keywords": [
  1568. "Authentication",
  1569. "google",
  1570. "oauth2"
  1571. ],
  1572. "support": {
  1573. "docs": "https://cloud.google.com/php/docs/reference/auth/latest",
  1574. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  1575. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.50.2"
  1576. },
  1577. "time": "2026-05-29T19:22:31+00:00"
  1578. },
  1579. {
  1580. "name": "google/cloud-core",
  1581. "version": "v1.72.1",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  1585. "reference": "aa7869016cb9e87e95071bb92579fd22146ababb"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/aa7869016cb9e87e95071bb92579fd22146ababb",
  1590. "reference": "aa7869016cb9e87e95071bb92579fd22146ababb",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "google/auth": "^1.34",
  1595. "google/gax": "^1.38.0",
  1596. "guzzlehttp/guzzle": "^6.5.8||^7.4.4",
  1597. "guzzlehttp/promises": "^1.4||^2.0",
  1598. "guzzlehttp/psr7": "^2.6",
  1599. "monolog/monolog": "^2.9||^3.0",
  1600. "php": "^8.1",
  1601. "psr/http-message": "^1.0||^2.0",
  1602. "rize/uri-template": "~0.3||~0.4"
  1603. },
  1604. "require-dev": {
  1605. "erusev/parsedown": "^1.6",
  1606. "google/cloud-common-protos": "~0.5||^1.0",
  1607. "nikic/php-parser": "^5.6",
  1608. "opis/closure": "^3.7|^4.0",
  1609. "phpdocumentor/reflection": "^6.0",
  1610. "phpdocumentor/reflection-docblock": "^5.3.3||^6.0",
  1611. "phpspec/prophecy-phpunit": "^2.0",
  1612. "phpunit/phpunit": "^9.0",
  1613. "squizlabs/php_codesniffer": "2.*"
  1614. },
  1615. "suggest": {
  1616. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  1617. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  1618. },
  1619. "bin": [
  1620. "bin/google-cloud-batch"
  1621. ],
  1622. "type": "library",
  1623. "extra": {
  1624. "component": {
  1625. "id": "cloud-core",
  1626. "path": "Core",
  1627. "entry": "src/ServiceBuilder.php",
  1628. "target": "googleapis/google-cloud-php-core.git"
  1629. }
  1630. },
  1631. "autoload": {
  1632. "psr-4": {
  1633. "Google\\Cloud\\Core\\": "src"
  1634. }
  1635. },
  1636. "notification-url": "https://packagist.org/downloads/",
  1637. "license": [
  1638. "Apache-2.0"
  1639. ],
  1640. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  1641. "support": {
  1642. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.72.1"
  1643. },
  1644. "time": "2026-05-12T19:06:48+00:00"
  1645. },
  1646. {
  1647. "name": "google/cloud-storage",
  1648. "version": "v1.51.0",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/googleapis/google-cloud-php-storage.git",
  1652. "reference": "9ba3d5e8cbd53bf67fab644b5be310e719533def"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/9ba3d5e8cbd53bf67fab644b5be310e719533def",
  1657. "reference": "9ba3d5e8cbd53bf67fab644b5be310e719533def",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "google/cloud-core": "^1.72.0",
  1662. "php": "^8.1",
  1663. "ramsey/uuid": "^4.2.3"
  1664. },
  1665. "require-dev": {
  1666. "erusev/parsedown": "^1.6",
  1667. "google/cloud-pubsub": "^2.0",
  1668. "nikic/php-parser": "^5",
  1669. "phpdocumentor/reflection": "^6.0",
  1670. "phpdocumentor/reflection-docblock": "^5.3.3",
  1671. "phpseclib/phpseclib": "^2.0||^3.0",
  1672. "phpspec/prophecy-phpunit": "^2.0",
  1673. "phpunit/phpunit": "^9.0",
  1674. "squizlabs/php_codesniffer": "2.*"
  1675. },
  1676. "suggest": {
  1677. "google/cloud-pubsub": "May be used to register a topic to receive bucket notifications.",
  1678. "phpseclib/phpseclib": "May be used in place of OpenSSL for creating signed Cloud Storage URLs. Please require version ^2."
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "component": {
  1683. "id": "cloud-storage",
  1684. "path": "Storage",
  1685. "entry": "src/StorageClient.php",
  1686. "target": "googleapis/google-cloud-php-storage.git"
  1687. }
  1688. },
  1689. "autoload": {
  1690. "psr-4": {
  1691. "Google\\Cloud\\Storage\\": "src"
  1692. }
  1693. },
  1694. "notification-url": "https://packagist.org/downloads/",
  1695. "license": [
  1696. "Apache-2.0"
  1697. ],
  1698. "description": "Cloud Storage Client for PHP",
  1699. "support": {
  1700. "source": "https://github.com/googleapis/google-cloud-php-storage/tree/v1.51.0"
  1701. },
  1702. "time": "2026-04-09T21:01:46+00:00"
  1703. },
  1704. {
  1705. "name": "google/common-protos",
  1706. "version": "4.14.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://github.com/googleapis/common-protos-php.git",
  1710. "reference": "f8e72f7b581702e7c3ee0776144f4974da172428"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/f8e72f7b581702e7c3ee0776144f4974da172428",
  1715. "reference": "f8e72f7b581702e7c3ee0776144f4974da172428",
  1716. "shasum": ""
  1717. },
  1718. "require": {
  1719. "google/protobuf": "^4.31||^5.0",
  1720. "php": "^8.1"
  1721. },
  1722. "require-dev": {
  1723. "phpunit/phpunit": "^9.6"
  1724. },
  1725. "type": "library",
  1726. "extra": {
  1727. "component": {
  1728. "id": "common-protos",
  1729. "path": "CommonProtos",
  1730. "entry": "README.md",
  1731. "target": "googleapis/common-protos-php.git"
  1732. }
  1733. },
  1734. "autoload": {
  1735. "psr-4": {
  1736. "Google\\Api\\": "src/Api",
  1737. "Google\\Iam\\": "src/Iam",
  1738. "Google\\Rpc\\": "src/Rpc",
  1739. "Google\\Type\\": "src/Type",
  1740. "Google\\Cloud\\": "src/Cloud",
  1741. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  1742. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  1743. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  1744. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  1745. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  1746. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  1747. }
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "Apache-2.0"
  1752. ],
  1753. "description": "Google API Common Protos for PHP",
  1754. "homepage": "https://github.com/googleapis/common-protos-php",
  1755. "keywords": [
  1756. "google"
  1757. ],
  1758. "support": {
  1759. "source": "https://github.com/googleapis/common-protos-php/tree/v4.14.0"
  1760. },
  1761. "time": "2026-04-09T21:01:46+00:00"
  1762. },
  1763. {
  1764. "name": "google/gax",
  1765. "version": "v1.42.4",
  1766. "source": {
  1767. "type": "git",
  1768. "url": "https://github.com/googleapis/gax-php.git",
  1769. "reference": "9b1f5fb68960a9020e34fdb88583bcd43779e4fd"
  1770. },
  1771. "dist": {
  1772. "type": "zip",
  1773. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/9b1f5fb68960a9020e34fdb88583bcd43779e4fd",
  1774. "reference": "9b1f5fb68960a9020e34fdb88583bcd43779e4fd",
  1775. "shasum": ""
  1776. },
  1777. "require": {
  1778. "google/auth": "^1.49",
  1779. "google/common-protos": "^4.4",
  1780. "google/grpc-gcp": "^0.4",
  1781. "google/longrunning": "~0.4",
  1782. "google/protobuf": "^4.31||^5.34",
  1783. "grpc/grpc": "^1.13",
  1784. "guzzlehttp/promises": "^2.0",
  1785. "guzzlehttp/psr7": "^2.0",
  1786. "php": "^8.1",
  1787. "ramsey/uuid": "^4.0"
  1788. },
  1789. "conflict": {
  1790. "ext-protobuf": "<4.31.0"
  1791. },
  1792. "require-dev": {
  1793. "google/cloud-tools": "^0.16.1",
  1794. "phpspec/prophecy-phpunit": "^2.1",
  1795. "phpstan/phpstan": "^2.0",
  1796. "phpunit/phpunit": "^9.6"
  1797. },
  1798. "type": "library",
  1799. "autoload": {
  1800. "psr-4": {
  1801. "Google\\ApiCore\\": "src",
  1802. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  1803. }
  1804. },
  1805. "notification-url": "https://packagist.org/downloads/",
  1806. "license": [
  1807. "BSD-3-Clause"
  1808. ],
  1809. "description": "Google API Core for PHP",
  1810. "homepage": "https://github.com/googleapis/gax-php",
  1811. "keywords": [
  1812. "google"
  1813. ],
  1814. "support": {
  1815. "issues": "https://github.com/googleapis/gax-php/issues",
  1816. "source": "https://github.com/googleapis/gax-php/tree/v1.42.4"
  1817. },
  1818. "time": "2026-05-11T17:49:55+00:00"
  1819. },
  1820. {
  1821. "name": "google/grpc-gcp",
  1822. "version": "0.4.2",
  1823. "source": {
  1824. "type": "git",
  1825. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  1826. "reference": "1049c0c15b6a1789fdeb52af688a94d540932469"
  1827. },
  1828. "dist": {
  1829. "type": "zip",
  1830. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/1049c0c15b6a1789fdeb52af688a94d540932469",
  1831. "reference": "1049c0c15b6a1789fdeb52af688a94d540932469",
  1832. "shasum": ""
  1833. },
  1834. "require": {
  1835. "google/auth": "^1.3",
  1836. "google/protobuf": "^v3.25.3||^4.26.1||^5.0",
  1837. "grpc/grpc": "^v1.13.0",
  1838. "php": "^8.0",
  1839. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  1840. },
  1841. "require-dev": {
  1842. "google/cloud-spanner": "^1.7",
  1843. "phpunit/phpunit": "^9.0"
  1844. },
  1845. "type": "library",
  1846. "autoload": {
  1847. "psr-4": {
  1848. "Grpc\\Gcp\\": "src/"
  1849. },
  1850. "classmap": [
  1851. "src/generated/"
  1852. ]
  1853. },
  1854. "notification-url": "https://packagist.org/downloads/",
  1855. "license": [
  1856. "Apache-2.0"
  1857. ],
  1858. "description": "gRPC GCP library for channel management",
  1859. "support": {
  1860. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  1861. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.4.2"
  1862. },
  1863. "time": "2026-03-12T22:56:09+00:00"
  1864. },
  1865. {
  1866. "name": "google/longrunning",
  1867. "version": "0.7.1",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/googleapis/php-longrunning.git",
  1871. "reference": "cac9bedf199239ae2b1acd4a8e4ea2276bd9f55a"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/cac9bedf199239ae2b1acd4a8e4ea2276bd9f55a",
  1876. "reference": "cac9bedf199239ae2b1acd4a8e4ea2276bd9f55a",
  1877. "shasum": ""
  1878. },
  1879. "require-dev": {
  1880. "google/gax": "^1.38.0",
  1881. "phpunit/phpunit": "^9.0"
  1882. },
  1883. "type": "library",
  1884. "extra": {
  1885. "component": {
  1886. "id": "longrunning",
  1887. "path": "LongRunning",
  1888. "entry": null,
  1889. "target": "googleapis/php-longrunning"
  1890. }
  1891. },
  1892. "autoload": {
  1893. "psr-4": {
  1894. "Google\\LongRunning\\": "src/LongRunning",
  1895. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  1896. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  1897. }
  1898. },
  1899. "notification-url": "https://packagist.org/downloads/",
  1900. "license": [
  1901. "Apache-2.0"
  1902. ],
  1903. "description": "Google LongRunning Client for PHP",
  1904. "support": {
  1905. "source": "https://github.com/googleapis/php-longrunning/tree/v0.7.1"
  1906. },
  1907. "time": "2026-03-31T19:52:22+00:00"
  1908. },
  1909. {
  1910. "name": "google/protobuf",
  1911. "version": "v5.35.0",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  1915. "reference": "d96ed77c7edaff3cd576a74173aa0b0655c87b1a"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/d96ed77c7edaff3cd576a74173aa0b0655c87b1a",
  1920. "reference": "d96ed77c7edaff3cd576a74173aa0b0655c87b1a",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "php": ">=8.2.0"
  1925. },
  1926. "require-dev": {
  1927. "phpunit/phpunit": ">=11.5.0 <12.0.0"
  1928. },
  1929. "suggest": {
  1930. "ext-bcmath": "Need to support JSON deserialization"
  1931. },
  1932. "type": "library",
  1933. "autoload": {
  1934. "psr-4": {
  1935. "Google\\Protobuf\\": "src/Google/Protobuf",
  1936. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  1937. }
  1938. },
  1939. "notification-url": "https://packagist.org/downloads/",
  1940. "license": [
  1941. "BSD-3-Clause"
  1942. ],
  1943. "description": "proto library for PHP",
  1944. "homepage": "https://developers.google.com/protocol-buffers/",
  1945. "keywords": [
  1946. "proto"
  1947. ],
  1948. "support": {
  1949. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v5.35.0"
  1950. },
  1951. "time": "2026-05-19T22:13:40+00:00"
  1952. },
  1953. {
  1954. "name": "graham-campbell/result-type",
  1955. "version": "v1.1.4",
  1956. "source": {
  1957. "type": "git",
  1958. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1959. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  1960. },
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  1964. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "php": "^7.2.5 || ^8.0",
  1969. "phpoption/phpoption": "^1.9.5"
  1970. },
  1971. "require-dev": {
  1972. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1973. },
  1974. "type": "library",
  1975. "autoload": {
  1976. "psr-4": {
  1977. "GrahamCampbell\\ResultType\\": "src/"
  1978. }
  1979. },
  1980. "notification-url": "https://packagist.org/downloads/",
  1981. "license": [
  1982. "MIT"
  1983. ],
  1984. "authors": [
  1985. {
  1986. "name": "Graham Campbell",
  1987. "email": "hello@gjcampbell.co.uk",
  1988. "homepage": "https://github.com/GrahamCampbell"
  1989. }
  1990. ],
  1991. "description": "An Implementation Of The Result Type",
  1992. "keywords": [
  1993. "Graham Campbell",
  1994. "GrahamCampbell",
  1995. "Result Type",
  1996. "Result-Type",
  1997. "result"
  1998. ],
  1999. "support": {
  2000. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2001. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  2002. },
  2003. "funding": [
  2004. {
  2005. "url": "https://github.com/GrahamCampbell",
  2006. "type": "github"
  2007. },
  2008. {
  2009. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2010. "type": "tidelift"
  2011. }
  2012. ],
  2013. "time": "2025-12-27T19:43:20+00:00"
  2014. },
  2015. {
  2016. "name": "grpc/grpc",
  2017. "version": "1.80.0",
  2018. "source": {
  2019. "type": "git",
  2020. "url": "https://github.com/grpc/grpc-php.git",
  2021. "reference": "a0dc463d5d5064cdd7ff344f13f61d7e233f9b5a"
  2022. },
  2023. "dist": {
  2024. "type": "zip",
  2025. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/a0dc463d5d5064cdd7ff344f13f61d7e233f9b5a",
  2026. "reference": "a0dc463d5d5064cdd7ff344f13f61d7e233f9b5a",
  2027. "shasum": ""
  2028. },
  2029. "require": {
  2030. "php": ">=7.1.0"
  2031. },
  2032. "require-dev": {
  2033. "google/auth": "^v1.3.0"
  2034. },
  2035. "suggest": {
  2036. "ext-protobuf": "For better performance, install the protobuf C extension.",
  2037. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  2038. },
  2039. "type": "library",
  2040. "autoload": {
  2041. "psr-4": {
  2042. "Grpc\\": "src/lib/"
  2043. }
  2044. },
  2045. "notification-url": "https://packagist.org/downloads/",
  2046. "license": [
  2047. "Apache-2.0"
  2048. ],
  2049. "description": "gRPC library for PHP",
  2050. "homepage": "https://grpc.io",
  2051. "keywords": [
  2052. "rpc"
  2053. ],
  2054. "support": {
  2055. "source": "https://github.com/grpc/grpc-php/tree/v1.80.0"
  2056. },
  2057. "time": "2026-03-30T09:22:39+00:00"
  2058. },
  2059. {
  2060. "name": "guzzlehttp/guzzle",
  2061. "version": "7.10.5",
  2062. "source": {
  2063. "type": "git",
  2064. "url": "https://github.com/guzzle/guzzle.git",
  2065. "reference": "7c8d84b39e680315f687e8662a9d6fb0865c5148"
  2066. },
  2067. "dist": {
  2068. "type": "zip",
  2069. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7c8d84b39e680315f687e8662a9d6fb0865c5148",
  2070. "reference": "7c8d84b39e680315f687e8662a9d6fb0865c5148",
  2071. "shasum": ""
  2072. },
  2073. "require": {
  2074. "ext-json": "*",
  2075. "guzzlehttp/promises": "^2.3",
  2076. "guzzlehttp/psr7": "^2.8",
  2077. "php": "^7.2.5 || ^8.0",
  2078. "psr/http-client": "^1.0",
  2079. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2080. },
  2081. "provide": {
  2082. "psr/http-client-implementation": "1.0"
  2083. },
  2084. "require-dev": {
  2085. "bamarni/composer-bin-plugin": "^1.8.2",
  2086. "ext-curl": "*",
  2087. "guzzle/client-integration-tests": "3.0.2",
  2088. "guzzlehttp/test-server": "^0.4",
  2089. "php-http/message-factory": "^1.1",
  2090. "phpunit/phpunit": "^8.5.52 || ^9.6.34",
  2091. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2092. },
  2093. "suggest": {
  2094. "ext-curl": "Required for CURL handler support",
  2095. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2096. "psr/log": "Required for using the Log middleware"
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "bamarni-bin": {
  2101. "bin-links": true,
  2102. "forward-command": false
  2103. }
  2104. },
  2105. "autoload": {
  2106. "files": [
  2107. "src/functions_include.php"
  2108. ],
  2109. "psr-4": {
  2110. "GuzzleHttp\\": "src/"
  2111. }
  2112. },
  2113. "notification-url": "https://packagist.org/downloads/",
  2114. "license": [
  2115. "MIT"
  2116. ],
  2117. "authors": [
  2118. {
  2119. "name": "Graham Campbell",
  2120. "email": "hello@gjcampbell.co.uk",
  2121. "homepage": "https://github.com/GrahamCampbell"
  2122. },
  2123. {
  2124. "name": "Michael Dowling",
  2125. "email": "mtdowling@gmail.com",
  2126. "homepage": "https://github.com/mtdowling"
  2127. },
  2128. {
  2129. "name": "Jeremy Lindblom",
  2130. "email": "jeremeamia@gmail.com",
  2131. "homepage": "https://github.com/jeremeamia"
  2132. },
  2133. {
  2134. "name": "George Mponos",
  2135. "email": "gmponos@gmail.com",
  2136. "homepage": "https://github.com/gmponos"
  2137. },
  2138. {
  2139. "name": "Tobias Nyholm",
  2140. "email": "tobias.nyholm@gmail.com",
  2141. "homepage": "https://github.com/Nyholm"
  2142. },
  2143. {
  2144. "name": "Márk Sági-Kazár",
  2145. "email": "mark.sagikazar@gmail.com",
  2146. "homepage": "https://github.com/sagikazarmark"
  2147. },
  2148. {
  2149. "name": "Tobias Schultze",
  2150. "email": "webmaster@tubo-world.de",
  2151. "homepage": "https://github.com/Tobion"
  2152. }
  2153. ],
  2154. "description": "Guzzle is a PHP HTTP client library",
  2155. "keywords": [
  2156. "client",
  2157. "curl",
  2158. "framework",
  2159. "http",
  2160. "http client",
  2161. "psr-18",
  2162. "psr-7",
  2163. "rest",
  2164. "web service"
  2165. ],
  2166. "support": {
  2167. "issues": "https://github.com/guzzle/guzzle/issues",
  2168. "source": "https://github.com/guzzle/guzzle/tree/7.10.5"
  2169. },
  2170. "funding": [
  2171. {
  2172. "url": "https://github.com/GrahamCampbell",
  2173. "type": "github"
  2174. },
  2175. {
  2176. "url": "https://github.com/Nyholm",
  2177. "type": "github"
  2178. },
  2179. {
  2180. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2181. "type": "tidelift"
  2182. }
  2183. ],
  2184. "time": "2026-05-27T11:53:46+00:00"
  2185. },
  2186. {
  2187. "name": "guzzlehttp/promises",
  2188. "version": "2.4.1",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/guzzle/promises.git",
  2192. "reference": "09e8a212562fb1fb6a512c4156ed71525969d6c2"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/guzzle/promises/zipball/09e8a212562fb1fb6a512c4156ed71525969d6c2",
  2197. "reference": "09e8a212562fb1fb6a512c4156ed71525969d6c2",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": "^7.2.5 || ^8.0"
  2202. },
  2203. "require-dev": {
  2204. "bamarni/composer-bin-plugin": "^1.8.2",
  2205. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "bamarni-bin": {
  2210. "bin-links": true,
  2211. "forward-command": false
  2212. }
  2213. },
  2214. "autoload": {
  2215. "psr-4": {
  2216. "GuzzleHttp\\Promise\\": "src/"
  2217. }
  2218. },
  2219. "notification-url": "https://packagist.org/downloads/",
  2220. "license": [
  2221. "MIT"
  2222. ],
  2223. "authors": [
  2224. {
  2225. "name": "Graham Campbell",
  2226. "email": "hello@gjcampbell.co.uk",
  2227. "homepage": "https://github.com/GrahamCampbell"
  2228. },
  2229. {
  2230. "name": "Michael Dowling",
  2231. "email": "mtdowling@gmail.com",
  2232. "homepage": "https://github.com/mtdowling"
  2233. },
  2234. {
  2235. "name": "Tobias Nyholm",
  2236. "email": "tobias.nyholm@gmail.com",
  2237. "homepage": "https://github.com/Nyholm"
  2238. },
  2239. {
  2240. "name": "Tobias Schultze",
  2241. "email": "webmaster@tubo-world.de",
  2242. "homepage": "https://github.com/Tobion"
  2243. }
  2244. ],
  2245. "description": "Guzzle promises library",
  2246. "keywords": [
  2247. "promise"
  2248. ],
  2249. "support": {
  2250. "issues": "https://github.com/guzzle/promises/issues",
  2251. "source": "https://github.com/guzzle/promises/tree/2.4.1"
  2252. },
  2253. "funding": [
  2254. {
  2255. "url": "https://github.com/GrahamCampbell",
  2256. "type": "github"
  2257. },
  2258. {
  2259. "url": "https://github.com/Nyholm",
  2260. "type": "github"
  2261. },
  2262. {
  2263. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2264. "type": "tidelift"
  2265. }
  2266. ],
  2267. "time": "2026-05-20T22:57:30+00:00"
  2268. },
  2269. {
  2270. "name": "guzzlehttp/psr7",
  2271. "version": "2.10.4",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/guzzle/psr7.git",
  2275. "reference": "d2a1a094e396da8957e797489fddaf860c340cfc"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/guzzle/psr7/zipball/d2a1a094e396da8957e797489fddaf860c340cfc",
  2280. "reference": "d2a1a094e396da8957e797489fddaf860c340cfc",
  2281. "shasum": ""
  2282. },
  2283. "require": {
  2284. "php": "^7.2.5 || ^8.0",
  2285. "psr/http-factory": "^1.0",
  2286. "psr/http-message": "^1.1 || ^2.0",
  2287. "ralouphie/getallheaders": "^3.0"
  2288. },
  2289. "provide": {
  2290. "psr/http-factory-implementation": "1.0",
  2291. "psr/http-message-implementation": "1.0"
  2292. },
  2293. "require-dev": {
  2294. "bamarni/composer-bin-plugin": "^1.8.2",
  2295. "http-interop/http-factory-tests": "1.1.0",
  2296. "jshttp/mime-db": "1.54.0.1",
  2297. "phpunit/phpunit": "^8.5.52 || ^9.6.34"
  2298. },
  2299. "suggest": {
  2300. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2301. },
  2302. "type": "library",
  2303. "extra": {
  2304. "bamarni-bin": {
  2305. "bin-links": true,
  2306. "forward-command": false
  2307. }
  2308. },
  2309. "autoload": {
  2310. "psr-4": {
  2311. "GuzzleHttp\\Psr7\\": "src/"
  2312. }
  2313. },
  2314. "notification-url": "https://packagist.org/downloads/",
  2315. "license": [
  2316. "MIT"
  2317. ],
  2318. "authors": [
  2319. {
  2320. "name": "Graham Campbell",
  2321. "email": "hello@gjcampbell.co.uk",
  2322. "homepage": "https://github.com/GrahamCampbell"
  2323. },
  2324. {
  2325. "name": "Michael Dowling",
  2326. "email": "mtdowling@gmail.com",
  2327. "homepage": "https://github.com/mtdowling"
  2328. },
  2329. {
  2330. "name": "George Mponos",
  2331. "email": "gmponos@gmail.com",
  2332. "homepage": "https://github.com/gmponos"
  2333. },
  2334. {
  2335. "name": "Tobias Nyholm",
  2336. "email": "tobias.nyholm@gmail.com",
  2337. "homepage": "https://github.com/Nyholm"
  2338. },
  2339. {
  2340. "name": "Márk Sági-Kazár",
  2341. "email": "mark.sagikazar@gmail.com",
  2342. "homepage": "https://github.com/sagikazarmark"
  2343. },
  2344. {
  2345. "name": "Tobias Schultze",
  2346. "email": "webmaster@tubo-world.de",
  2347. "homepage": "https://github.com/Tobion"
  2348. },
  2349. {
  2350. "name": "Márk Sági-Kazár",
  2351. "email": "mark.sagikazar@gmail.com",
  2352. "homepage": "https://sagikazarmark.hu"
  2353. }
  2354. ],
  2355. "description": "PSR-7 message implementation that also provides common utility methods",
  2356. "keywords": [
  2357. "http",
  2358. "message",
  2359. "psr-7",
  2360. "request",
  2361. "response",
  2362. "stream",
  2363. "uri",
  2364. "url"
  2365. ],
  2366. "support": {
  2367. "issues": "https://github.com/guzzle/psr7/issues",
  2368. "source": "https://github.com/guzzle/psr7/tree/2.10.4"
  2369. },
  2370. "funding": [
  2371. {
  2372. "url": "https://github.com/GrahamCampbell",
  2373. "type": "github"
  2374. },
  2375. {
  2376. "url": "https://github.com/Nyholm",
  2377. "type": "github"
  2378. },
  2379. {
  2380. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2381. "type": "tidelift"
  2382. }
  2383. ],
  2384. "time": "2026-05-29T12:59:07+00:00"
  2385. },
  2386. {
  2387. "name": "guzzlehttp/uri-template",
  2388. "version": "v1.0.6",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://github.com/guzzle/uri-template.git",
  2392. "reference": "eef7f87bab6f204eba3c39224d8075c70c637946"
  2393. },
  2394. "dist": {
  2395. "type": "zip",
  2396. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/eef7f87bab6f204eba3c39224d8075c70c637946",
  2397. "reference": "eef7f87bab6f204eba3c39224d8075c70c637946",
  2398. "shasum": ""
  2399. },
  2400. "require": {
  2401. "php": "^7.2.5 || ^8.0",
  2402. "symfony/polyfill-php80": "^1.24"
  2403. },
  2404. "require-dev": {
  2405. "bamarni/composer-bin-plugin": "^1.8.2",
  2406. "phpunit/phpunit": "^8.5.52 || ^9.6.34",
  2407. "uri-template/tests": "1.0.0"
  2408. },
  2409. "type": "library",
  2410. "extra": {
  2411. "bamarni-bin": {
  2412. "bin-links": true,
  2413. "forward-command": false
  2414. }
  2415. },
  2416. "autoload": {
  2417. "psr-4": {
  2418. "GuzzleHttp\\UriTemplate\\": "src"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "MIT"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Graham Campbell",
  2428. "email": "hello@gjcampbell.co.uk",
  2429. "homepage": "https://github.com/GrahamCampbell"
  2430. },
  2431. {
  2432. "name": "Michael Dowling",
  2433. "email": "mtdowling@gmail.com",
  2434. "homepage": "https://github.com/mtdowling"
  2435. },
  2436. {
  2437. "name": "George Mponos",
  2438. "email": "gmponos@gmail.com",
  2439. "homepage": "https://github.com/gmponos"
  2440. },
  2441. {
  2442. "name": "Tobias Nyholm",
  2443. "email": "tobias.nyholm@gmail.com",
  2444. "homepage": "https://github.com/Nyholm"
  2445. }
  2446. ],
  2447. "description": "A polyfill class for uri_template of PHP",
  2448. "keywords": [
  2449. "guzzlehttp",
  2450. "uri-template"
  2451. ],
  2452. "support": {
  2453. "issues": "https://github.com/guzzle/uri-template/issues",
  2454. "source": "https://github.com/guzzle/uri-template/tree/v1.0.6"
  2455. },
  2456. "funding": [
  2457. {
  2458. "url": "https://github.com/GrahamCampbell",
  2459. "type": "github"
  2460. },
  2461. {
  2462. "url": "https://github.com/Nyholm",
  2463. "type": "github"
  2464. },
  2465. {
  2466. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2467. "type": "tidelift"
  2468. }
  2469. ],
  2470. "time": "2026-05-23T22:00:21+00:00"
  2471. },
  2472. {
  2473. "name": "imtigger/laravel-job-status",
  2474. "version": "1.2.0",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/imTigger/laravel-job-status.git",
  2478. "reference": "8e2660721c2448f6c74082bfeea6e82cd10aa3de"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/imTigger/laravel-job-status/zipball/8e2660721c2448f6c74082bfeea6e82cd10aa3de",
  2483. "reference": "8e2660721c2448f6c74082bfeea6e82cd10aa3de",
  2484. "shasum": ""
  2485. },
  2486. "require": {
  2487. "ext-json": "*",
  2488. "illuminate/contracts": ">=5.5",
  2489. "illuminate/database": ">=5.5",
  2490. "illuminate/queue": ">=5.5",
  2491. "illuminate/support": ">=5.5",
  2492. "nesbot/carbon": ">=1.21",
  2493. "php": ">=7.1"
  2494. },
  2495. "require-dev": {
  2496. "friendsofphp/php-cs-fixer": "^2.11",
  2497. "orchestra/database": ">=3.5",
  2498. "orchestra/testbench": ">=3.5",
  2499. "phpunit/phpunit": ">=5.7"
  2500. },
  2501. "type": "library",
  2502. "extra": {
  2503. "laravel": {
  2504. "providers": [
  2505. "Imtigger\\LaravelJobStatus\\LaravelJobStatusServiceProvider"
  2506. ]
  2507. }
  2508. },
  2509. "autoload": {
  2510. "psr-4": {
  2511. "Imtigger\\LaravelJobStatus\\": "src"
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "Tiger Fok",
  2521. "email": "tiger@tiger-workshop.com"
  2522. }
  2523. ],
  2524. "description": "Laravel Job Status",
  2525. "keywords": [
  2526. "job",
  2527. "laravel",
  2528. "lumen",
  2529. "queue"
  2530. ],
  2531. "support": {
  2532. "issues": "https://github.com/imTigger/laravel-job-status/issues",
  2533. "source": "https://github.com/imTigger/laravel-job-status/tree/1.2.0"
  2534. },
  2535. "time": "2020-09-19T16:43:44+00:00"
  2536. },
  2537. {
  2538. "name": "kreait/firebase-php",
  2539. "version": "7.24.0",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/beste/firebase-php.git",
  2543. "reference": "7e2c321265dcb2eeea6fdb72e3819db684e0d4be"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://api.github.com/repos/beste/firebase-php/zipball/7e2c321265dcb2eeea6fdb72e3819db684e0d4be",
  2548. "reference": "7e2c321265dcb2eeea6fdb72e3819db684e0d4be",
  2549. "shasum": ""
  2550. },
  2551. "require": {
  2552. "beste/clock": "^3.0",
  2553. "beste/in-memory-cache": "^1.3.1",
  2554. "beste/json": "^1.5.1",
  2555. "cuyz/valinor": "^2.2.1",
  2556. "ext-ctype": "*",
  2557. "ext-filter": "*",
  2558. "ext-json": "*",
  2559. "ext-mbstring": "*",
  2560. "fig/http-message-util": "^1.1.5",
  2561. "firebase/php-jwt": "^6.10.2",
  2562. "google/auth": "^1.45",
  2563. "google/cloud-storage": "^1.48.7",
  2564. "guzzlehttp/guzzle": "^7.9.2",
  2565. "guzzlehttp/promises": "^2.0.4",
  2566. "guzzlehttp/psr7": "^2.7",
  2567. "kreait/firebase-tokens": "^5.2",
  2568. "lcobucci/jwt": "^5.3",
  2569. "mtdowling/jmespath.php": "^2.8.0",
  2570. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  2571. "psr/cache": "^2.0 || ^3.0",
  2572. "psr/clock": "^1.0",
  2573. "psr/http-client": "^1.0.3",
  2574. "psr/http-factory": "^1.1",
  2575. "psr/http-message": "^1.1 || ^2.0",
  2576. "psr/log": "^3.0.2"
  2577. },
  2578. "require-dev": {
  2579. "google/cloud-firestore": "^1.54.2",
  2580. "php-cs-fixer/shim": "^3.88.2",
  2581. "phpstan/extension-installer": "^1.4.3",
  2582. "phpstan/phpstan": "^2.1.31",
  2583. "phpstan/phpstan-deprecation-rules": "^2.0.3",
  2584. "phpstan/phpstan-phpunit": "^2.0.7",
  2585. "phpstan/phpstan-strict-rules": "^2.0.7",
  2586. "phpunit/phpunit": "^10.5.58",
  2587. "rector/rector": "^2.2.2",
  2588. "shipmonk/composer-dependency-analyser": "^1.8.3",
  2589. "symfony/var-dumper": "^6.4.15 || ^7.3.4",
  2590. "vlucas/phpdotenv": "^5.6.2"
  2591. },
  2592. "suggest": {
  2593. "google/cloud-firestore": "^1.0 to use the Firestore component"
  2594. },
  2595. "type": "library",
  2596. "extra": {
  2597. "branch-alias": {
  2598. "dev-7.x": "7.x-dev"
  2599. }
  2600. },
  2601. "autoload": {
  2602. "psr-4": {
  2603. "Kreait\\Firebase\\": "src/Firebase"
  2604. }
  2605. },
  2606. "notification-url": "https://packagist.org/downloads/",
  2607. "license": [
  2608. "MIT"
  2609. ],
  2610. "authors": [
  2611. {
  2612. "name": "Jérôme Gamez",
  2613. "homepage": "https://github.com/jeromegamez"
  2614. }
  2615. ],
  2616. "description": "Firebase Admin SDK",
  2617. "homepage": "https://github.com/kreait/firebase-php",
  2618. "keywords": [
  2619. "api",
  2620. "database",
  2621. "firebase",
  2622. "google",
  2623. "sdk"
  2624. ],
  2625. "support": {
  2626. "docs": "https://firebase-php.readthedocs.io",
  2627. "issues": "https://github.com/kreait/firebase-php/issues",
  2628. "source": "https://github.com/kreait/firebase-php"
  2629. },
  2630. "funding": [
  2631. {
  2632. "url": "https://github.com/sponsors/jeromegamez",
  2633. "type": "github"
  2634. }
  2635. ],
  2636. "time": "2025-11-27T22:03:59+00:00"
  2637. },
  2638. {
  2639. "name": "kreait/firebase-tokens",
  2640. "version": "5.3.0",
  2641. "source": {
  2642. "type": "git",
  2643. "url": "https://github.com/beste/firebase-tokens-php.git",
  2644. "reference": "5dc119c8c29fcab1fb3a35ed5164dee0d33e4430"
  2645. },
  2646. "dist": {
  2647. "type": "zip",
  2648. "url": "https://api.github.com/repos/beste/firebase-tokens-php/zipball/5dc119c8c29fcab1fb3a35ed5164dee0d33e4430",
  2649. "reference": "5dc119c8c29fcab1fb3a35ed5164dee0d33e4430",
  2650. "shasum": ""
  2651. },
  2652. "require": {
  2653. "beste/clock": "^3.0",
  2654. "ext-json": "*",
  2655. "ext-openssl": "*",
  2656. "fig/http-message-util": "^1.1.5",
  2657. "guzzlehttp/guzzle": "^7.8",
  2658. "lcobucci/jwt": "^5.2",
  2659. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  2660. "psr/cache": "^1.0|^2.0|^3.0"
  2661. },
  2662. "require-dev": {
  2663. "friendsofphp/php-cs-fixer": "^3.62.0",
  2664. "phpstan/extension-installer": "^1.4.1",
  2665. "phpstan/phpstan": "^2.1",
  2666. "phpstan/phpstan-phpunit": "^2.0",
  2667. "phpunit/phpunit": "^10.5.30",
  2668. "rector/rector": "^2.1",
  2669. "symfony/cache": "^6.4.3 || ^7.1.3",
  2670. "symfony/var-dumper": "^6.4.3 || ^7.1.3"
  2671. },
  2672. "suggest": {
  2673. "psr/cache-implementation": "to cache fetched remote public keys"
  2674. },
  2675. "type": "library",
  2676. "autoload": {
  2677. "psr-4": {
  2678. "Kreait\\Firebase\\JWT\\": "src/JWT"
  2679. }
  2680. },
  2681. "notification-url": "https://packagist.org/downloads/",
  2682. "license": [
  2683. "MIT"
  2684. ],
  2685. "authors": [
  2686. {
  2687. "name": "Jérôme Gamez",
  2688. "homepage": "https://github.com/jeromegamez"
  2689. }
  2690. ],
  2691. "description": "A library to work with Firebase tokens",
  2692. "homepage": "https://github.com/kreait/firebase-token-php",
  2693. "keywords": [
  2694. "Authentication",
  2695. "auth",
  2696. "firebase",
  2697. "google",
  2698. "token"
  2699. ],
  2700. "support": {
  2701. "issues": "https://github.com/beste/firebase-tokens-php/issues",
  2702. "source": "https://github.com/beste/firebase-tokens-php/tree/5.3.0"
  2703. },
  2704. "funding": [
  2705. {
  2706. "url": "https://github.com/sponsors/jeromegamez",
  2707. "type": "github"
  2708. }
  2709. ],
  2710. "time": "2025-09-11T23:24:49+00:00"
  2711. },
  2712. {
  2713. "name": "kreait/laravel-firebase",
  2714. "version": "6.2.0",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/beste/laravel-firebase.git",
  2718. "reference": "1928f8dbf7882f24f9d33eaf5d4bee24b2663981"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/beste/laravel-firebase/zipball/1928f8dbf7882f24f9d33eaf5d4bee24b2663981",
  2723. "reference": "1928f8dbf7882f24f9d33eaf5d4bee24b2663981",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "illuminate/contracts": "^11.0 || ^12.0",
  2728. "illuminate/notifications": "^11.0 || ^12.0",
  2729. "illuminate/support": "^11.0 || ^12.0",
  2730. "kreait/firebase-php": "^7.19",
  2731. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  2732. "symfony/cache": "^6.1.2 || ^7.0.3"
  2733. },
  2734. "require-dev": {
  2735. "laravel/pint": "^1.22.1",
  2736. "orchestra/testbench": "^9.0 || ^10.4",
  2737. "phpunit/phpunit": "^11.5.23"
  2738. },
  2739. "type": "library",
  2740. "extra": {
  2741. "laravel": {
  2742. "aliases": {
  2743. "Firebase": "Kreait\\Laravel\\Firebase\\Facades\\Firebase"
  2744. },
  2745. "providers": [
  2746. "Kreait\\Laravel\\Firebase\\ServiceProvider"
  2747. ]
  2748. }
  2749. },
  2750. "autoload": {
  2751. "psr-4": {
  2752. "Kreait\\Laravel\\Firebase\\": "src"
  2753. }
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "MIT"
  2758. ],
  2759. "authors": [
  2760. {
  2761. "name": "Jérôme Gamez",
  2762. "email": "jerome@gamez.name"
  2763. }
  2764. ],
  2765. "description": "A Laravel package for the Firebase PHP Admin SDK",
  2766. "keywords": [
  2767. "FCM",
  2768. "api",
  2769. "database",
  2770. "firebase",
  2771. "gcm",
  2772. "laravel",
  2773. "sdk"
  2774. ],
  2775. "support": {
  2776. "issues": "https://github.com/beste/laravel-firebase/issues",
  2777. "source": "https://github.com/beste/laravel-firebase/tree/6.2.0"
  2778. },
  2779. "funding": [
  2780. {
  2781. "url": "https://github.com/jeromegamez",
  2782. "type": "github"
  2783. },
  2784. {
  2785. "url": "https://tidelift.com/funding/github/packagist/kreait/laravel-firebase",
  2786. "type": "tidelift"
  2787. }
  2788. ],
  2789. "time": "2025-11-28T14:26:28+00:00"
  2790. },
  2791. {
  2792. "name": "laravel/fortify",
  2793. "version": "v1.33.0",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/laravel/fortify.git",
  2797. "reference": "e0666dabeec0b6428678af1d51f436dcfb24e3a9"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/laravel/fortify/zipball/e0666dabeec0b6428678af1d51f436dcfb24e3a9",
  2802. "reference": "e0666dabeec0b6428678af1d51f436dcfb24e3a9",
  2803. "shasum": ""
  2804. },
  2805. "require": {
  2806. "bacon/bacon-qr-code": "^3.0",
  2807. "ext-json": "*",
  2808. "illuminate/support": "^10.0|^11.0|^12.0",
  2809. "php": "^8.1",
  2810. "pragmarx/google2fa": "^9.0",
  2811. "symfony/console": "^6.0|^7.0"
  2812. },
  2813. "require-dev": {
  2814. "orchestra/testbench": "^8.36|^9.15|^10.8",
  2815. "phpstan/phpstan": "^1.10"
  2816. },
  2817. "type": "library",
  2818. "extra": {
  2819. "laravel": {
  2820. "providers": [
  2821. "Laravel\\Fortify\\FortifyServiceProvider"
  2822. ]
  2823. },
  2824. "branch-alias": {
  2825. "dev-master": "1.x-dev"
  2826. }
  2827. },
  2828. "autoload": {
  2829. "psr-4": {
  2830. "Laravel\\Fortify\\": "src/"
  2831. }
  2832. },
  2833. "notification-url": "https://packagist.org/downloads/",
  2834. "license": [
  2835. "MIT"
  2836. ],
  2837. "authors": [
  2838. {
  2839. "name": "Taylor Otwell",
  2840. "email": "taylor@laravel.com"
  2841. }
  2842. ],
  2843. "description": "Backend controllers and scaffolding for Laravel authentication.",
  2844. "keywords": [
  2845. "auth",
  2846. "laravel"
  2847. ],
  2848. "support": {
  2849. "issues": "https://github.com/laravel/fortify/issues",
  2850. "source": "https://github.com/laravel/fortify"
  2851. },
  2852. "time": "2025-12-15T14:48:33+00:00"
  2853. },
  2854. {
  2855. "name": "laravel/framework",
  2856. "version": "v12.61.0",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://github.com/laravel/framework.git",
  2860. "reference": "1124062a1ca92d290c8bcb9b7f649920fa6816bf"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://api.github.com/repos/laravel/framework/zipball/1124062a1ca92d290c8bcb9b7f649920fa6816bf",
  2865. "reference": "1124062a1ca92d290c8bcb9b7f649920fa6816bf",
  2866. "shasum": ""
  2867. },
  2868. "require": {
  2869. "brick/math": "^0.11|^0.12|^0.13|^0.14",
  2870. "composer-runtime-api": "^2.2",
  2871. "doctrine/inflector": "^2.0.5",
  2872. "dragonmantank/cron-expression": "^3.4",
  2873. "egulias/email-validator": "^3.2.1|^4.0",
  2874. "ext-ctype": "*",
  2875. "ext-filter": "*",
  2876. "ext-hash": "*",
  2877. "ext-mbstring": "*",
  2878. "ext-openssl": "*",
  2879. "ext-session": "*",
  2880. "ext-tokenizer": "*",
  2881. "fruitcake/php-cors": "^1.3",
  2882. "guzzlehttp/guzzle": "^7.8.2",
  2883. "guzzlehttp/uri-template": "^1.0",
  2884. "laravel/prompts": "^0.3.0",
  2885. "laravel/serializable-closure": "^1.3|^2.0",
  2886. "league/commonmark": "^2.8.1",
  2887. "league/flysystem": "^3.25.1",
  2888. "league/flysystem-local": "^3.25.1",
  2889. "league/uri": "^7.5.1",
  2890. "monolog/monolog": "^3.0",
  2891. "nesbot/carbon": "^3.8.4",
  2892. "nunomaduro/termwind": "^2.0",
  2893. "php": "^8.2",
  2894. "psr/container": "^1.1.1|^2.0.1",
  2895. "psr/log": "^1.0|^2.0|^3.0",
  2896. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2897. "ramsey/uuid": "^4.7",
  2898. "symfony/console": "^7.2.0",
  2899. "symfony/error-handler": "^7.2.0",
  2900. "symfony/finder": "^7.2.0",
  2901. "symfony/http-foundation": "^7.2.0",
  2902. "symfony/http-kernel": "^7.2.0",
  2903. "symfony/mailer": "^7.2.0",
  2904. "symfony/mime": "^7.2.0",
  2905. "symfony/polyfill-php83": "^1.33",
  2906. "symfony/polyfill-php84": "^1.34",
  2907. "symfony/polyfill-php85": "^1.34",
  2908. "symfony/process": "^7.2.0",
  2909. "symfony/routing": "^7.2.0",
  2910. "symfony/uid": "^7.2.0",
  2911. "symfony/var-dumper": "^7.2.0",
  2912. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2913. "vlucas/phpdotenv": "^5.6.1",
  2914. "voku/portable-ascii": "^2.0.2"
  2915. },
  2916. "conflict": {
  2917. "tightenco/collect": "<5.5.33"
  2918. },
  2919. "provide": {
  2920. "psr/container-implementation": "1.1|2.0",
  2921. "psr/log-implementation": "1.0|2.0|3.0",
  2922. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2923. },
  2924. "replace": {
  2925. "illuminate/auth": "self.version",
  2926. "illuminate/broadcasting": "self.version",
  2927. "illuminate/bus": "self.version",
  2928. "illuminate/cache": "self.version",
  2929. "illuminate/collections": "self.version",
  2930. "illuminate/concurrency": "self.version",
  2931. "illuminate/conditionable": "self.version",
  2932. "illuminate/config": "self.version",
  2933. "illuminate/console": "self.version",
  2934. "illuminate/container": "self.version",
  2935. "illuminate/contracts": "self.version",
  2936. "illuminate/cookie": "self.version",
  2937. "illuminate/database": "self.version",
  2938. "illuminate/encryption": "self.version",
  2939. "illuminate/events": "self.version",
  2940. "illuminate/filesystem": "self.version",
  2941. "illuminate/hashing": "self.version",
  2942. "illuminate/http": "self.version",
  2943. "illuminate/json-schema": "self.version",
  2944. "illuminate/log": "self.version",
  2945. "illuminate/macroable": "self.version",
  2946. "illuminate/mail": "self.version",
  2947. "illuminate/notifications": "self.version",
  2948. "illuminate/pagination": "self.version",
  2949. "illuminate/pipeline": "self.version",
  2950. "illuminate/process": "self.version",
  2951. "illuminate/queue": "self.version",
  2952. "illuminate/redis": "self.version",
  2953. "illuminate/reflection": "self.version",
  2954. "illuminate/routing": "self.version",
  2955. "illuminate/session": "self.version",
  2956. "illuminate/support": "self.version",
  2957. "illuminate/testing": "self.version",
  2958. "illuminate/translation": "self.version",
  2959. "illuminate/validation": "self.version",
  2960. "illuminate/view": "self.version",
  2961. "spatie/once": "*"
  2962. },
  2963. "require-dev": {
  2964. "ably/ably-php": "^1.0",
  2965. "aws/aws-sdk-php": "^3.322.9",
  2966. "ext-gmp": "*",
  2967. "fakerphp/faker": "^1.24",
  2968. "guzzlehttp/promises": "^2.0.3",
  2969. "guzzlehttp/psr7": "^2.4",
  2970. "laravel/pint": "^1.18",
  2971. "league/flysystem-aws-s3-v3": "^3.25.1",
  2972. "league/flysystem-ftp": "^3.25.1",
  2973. "league/flysystem-path-prefixing": "^3.25.1",
  2974. "league/flysystem-read-only": "^3.25.1",
  2975. "league/flysystem-sftp-v3": "^3.25.1",
  2976. "mockery/mockery": "^1.6.10",
  2977. "opis/json-schema": "^2.4.1",
  2978. "orchestra/testbench-core": "^10.9.0",
  2979. "pda/pheanstalk": "^5.0.6|^7.0.0",
  2980. "php-http/discovery": "^1.15",
  2981. "phpstan/phpstan": "^2.1.41",
  2982. "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
  2983. "predis/predis": "^2.3|^3.0",
  2984. "resend/resend-php": "^0.10.0|^1.0",
  2985. "symfony/cache": "^7.2.0",
  2986. "symfony/http-client": "^7.2.0",
  2987. "symfony/psr-http-message-bridge": "^7.2.0",
  2988. "symfony/translation": "^7.2.0"
  2989. },
  2990. "suggest": {
  2991. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2992. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  2993. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2994. "ext-apcu": "Required to use the APC cache driver.",
  2995. "ext-fileinfo": "Required to use the Filesystem class.",
  2996. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2997. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2998. "ext-memcached": "Required to use the memcache cache driver.",
  2999. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3000. "ext-pdo": "Required to use all database features.",
  3001. "ext-posix": "Required to use all features of the queue worker.",
  3002. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3003. "fakerphp/faker": "Required to generate fake data using the fake() helper (^1.23).",
  3004. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3005. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3006. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3007. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3008. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3009. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3010. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3011. "mockery/mockery": "Required to use mocking (^1.6).",
  3012. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3013. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3014. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
  3015. "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
  3016. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3017. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3018. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0|^1.0).",
  3019. "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
  3020. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  3021. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
  3022. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
  3023. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
  3024. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
  3025. },
  3026. "type": "library",
  3027. "extra": {
  3028. "branch-alias": {
  3029. "dev-master": "12.x-dev"
  3030. }
  3031. },
  3032. "autoload": {
  3033. "files": [
  3034. "src/Illuminate/Collections/functions.php",
  3035. "src/Illuminate/Collections/helpers.php",
  3036. "src/Illuminate/Events/functions.php",
  3037. "src/Illuminate/Filesystem/functions.php",
  3038. "src/Illuminate/Foundation/helpers.php",
  3039. "src/Illuminate/Log/functions.php",
  3040. "src/Illuminate/Reflection/helpers.php",
  3041. "src/Illuminate/Support/functions.php",
  3042. "src/Illuminate/Support/helpers.php"
  3043. ],
  3044. "psr-4": {
  3045. "Illuminate\\": "src/Illuminate/",
  3046. "Illuminate\\Support\\": [
  3047. "src/Illuminate/Macroable/",
  3048. "src/Illuminate/Collections/",
  3049. "src/Illuminate/Conditionable/",
  3050. "src/Illuminate/Reflection/"
  3051. ]
  3052. }
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "MIT"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Taylor Otwell",
  3061. "email": "taylor@laravel.com"
  3062. }
  3063. ],
  3064. "description": "The Laravel Framework.",
  3065. "homepage": "https://laravel.com",
  3066. "keywords": [
  3067. "framework",
  3068. "laravel"
  3069. ],
  3070. "support": {
  3071. "issues": "https://github.com/laravel/framework/issues",
  3072. "source": "https://github.com/laravel/framework"
  3073. },
  3074. "time": "2026-05-26T23:41:33+00:00"
  3075. },
  3076. {
  3077. "name": "laravel/horizon",
  3078. "version": "v5.43.0",
  3079. "source": {
  3080. "type": "git",
  3081. "url": "https://github.com/laravel/horizon.git",
  3082. "reference": "2a04285ba83915511afbe987cbfedafdc27fd2de"
  3083. },
  3084. "dist": {
  3085. "type": "zip",
  3086. "url": "https://api.github.com/repos/laravel/horizon/zipball/2a04285ba83915511afbe987cbfedafdc27fd2de",
  3087. "reference": "2a04285ba83915511afbe987cbfedafdc27fd2de",
  3088. "shasum": ""
  3089. },
  3090. "require": {
  3091. "ext-json": "*",
  3092. "ext-pcntl": "*",
  3093. "ext-posix": "*",
  3094. "illuminate/contracts": "^9.21|^10.0|^11.0|^12.0",
  3095. "illuminate/queue": "^9.21|^10.0|^11.0|^12.0",
  3096. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  3097. "nesbot/carbon": "^2.17|^3.0",
  3098. "php": "^8.0",
  3099. "ramsey/uuid": "^4.0",
  3100. "symfony/console": "^6.0|^7.0",
  3101. "symfony/error-handler": "^6.0|^7.0",
  3102. "symfony/polyfill-php83": "^1.28",
  3103. "symfony/process": "^6.0|^7.0"
  3104. },
  3105. "require-dev": {
  3106. "mockery/mockery": "^1.0",
  3107. "orchestra/testbench": "^7.55|^8.36|^9.15|^10.8",
  3108. "phpstan/phpstan": "^1.10|^2.0",
  3109. "predis/predis": "^1.1|^2.0|^3.0"
  3110. },
  3111. "suggest": {
  3112. "ext-redis": "Required to use the Redis PHP driver.",
  3113. "predis/predis": "Required when not using the Redis PHP driver (^1.1|^2.0|^3.0)."
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "laravel": {
  3118. "aliases": {
  3119. "Horizon": "Laravel\\Horizon\\Horizon"
  3120. },
  3121. "providers": [
  3122. "Laravel\\Horizon\\HorizonServiceProvider"
  3123. ]
  3124. },
  3125. "branch-alias": {
  3126. "dev-master": "6.x-dev"
  3127. }
  3128. },
  3129. "autoload": {
  3130. "psr-4": {
  3131. "Laravel\\Horizon\\": "src/"
  3132. }
  3133. },
  3134. "notification-url": "https://packagist.org/downloads/",
  3135. "license": [
  3136. "MIT"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "Taylor Otwell",
  3141. "email": "taylor@laravel.com"
  3142. }
  3143. ],
  3144. "description": "Dashboard and code-driven configuration for Laravel queues.",
  3145. "keywords": [
  3146. "laravel",
  3147. "queue"
  3148. ],
  3149. "support": {
  3150. "issues": "https://github.com/laravel/horizon/issues",
  3151. "source": "https://github.com/laravel/horizon/tree/v5.43.0"
  3152. },
  3153. "time": "2026-01-15T15:10:56+00:00"
  3154. },
  3155. {
  3156. "name": "laravel/jetstream",
  3157. "version": "v5.4.0",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/laravel/jetstream.git",
  3161. "reference": "5a83a20b419c2b2c42a8c2407ca4647d8734456b"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/laravel/jetstream/zipball/5a83a20b419c2b2c42a8c2407ca4647d8734456b",
  3166. "reference": "5a83a20b419c2b2c42a8c2407ca4647d8734456b",
  3167. "shasum": ""
  3168. },
  3169. "require": {
  3170. "ext-json": "*",
  3171. "illuminate/console": "^11.0|^12.0",
  3172. "illuminate/support": "^11.0|^12.0",
  3173. "laravel/fortify": "^1.20",
  3174. "mobiledetect/mobiledetectlib": "^4.8.08",
  3175. "php": "^8.2.0",
  3176. "symfony/console": "^7.0"
  3177. },
  3178. "require-dev": {
  3179. "inertiajs/inertia-laravel": "^2.0",
  3180. "laravel/sanctum": "^4.0",
  3181. "livewire/livewire": "^3.3",
  3182. "mockery/mockery": "^1.0",
  3183. "orchestra/testbench": "^9.15|^10.8",
  3184. "phpstan/phpstan": "^1.10"
  3185. },
  3186. "type": "library",
  3187. "extra": {
  3188. "laravel": {
  3189. "providers": [
  3190. "Laravel\\Jetstream\\JetstreamServiceProvider"
  3191. ]
  3192. }
  3193. },
  3194. "autoload": {
  3195. "psr-4": {
  3196. "Laravel\\Jetstream\\": "src/"
  3197. }
  3198. },
  3199. "notification-url": "https://packagist.org/downloads/",
  3200. "license": [
  3201. "MIT"
  3202. ],
  3203. "authors": [
  3204. {
  3205. "name": "Taylor Otwell",
  3206. "email": "taylor@laravel.com"
  3207. }
  3208. ],
  3209. "description": "Tailwind scaffolding for the Laravel framework.",
  3210. "keywords": [
  3211. "auth",
  3212. "laravel",
  3213. "tailwind"
  3214. ],
  3215. "support": {
  3216. "issues": "https://github.com/laravel/jetstream/issues",
  3217. "source": "https://github.com/laravel/jetstream"
  3218. },
  3219. "time": "2025-11-25T14:46:14+00:00"
  3220. },
  3221. {
  3222. "name": "laravel/prompts",
  3223. "version": "v0.3.18",
  3224. "source": {
  3225. "type": "git",
  3226. "url": "https://github.com/laravel/prompts.git",
  3227. "reference": "a19af51bb144bf87f08397921fa619f85c7d4e72"
  3228. },
  3229. "dist": {
  3230. "type": "zip",
  3231. "url": "https://api.github.com/repos/laravel/prompts/zipball/a19af51bb144bf87f08397921fa619f85c7d4e72",
  3232. "reference": "a19af51bb144bf87f08397921fa619f85c7d4e72",
  3233. "shasum": ""
  3234. },
  3235. "require": {
  3236. "composer-runtime-api": "^2.2",
  3237. "ext-mbstring": "*",
  3238. "php": "^8.1",
  3239. "symfony/console": "^6.2|^7.0|^8.0"
  3240. },
  3241. "conflict": {
  3242. "illuminate/console": ">=10.17.0 <10.25.0",
  3243. "laravel/framework": ">=10.17.0 <10.25.0"
  3244. },
  3245. "require-dev": {
  3246. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  3247. "mockery/mockery": "^1.5",
  3248. "pestphp/pest": "^2.3|^3.4|^4.0",
  3249. "phpstan/phpstan": "^1.12.28",
  3250. "phpstan/phpstan-mockery": "^1.1.3"
  3251. },
  3252. "suggest": {
  3253. "ext-pcntl": "Required for the spinner to be animated."
  3254. },
  3255. "type": "library",
  3256. "extra": {
  3257. "branch-alias": {
  3258. "dev-main": "0.3.x-dev"
  3259. }
  3260. },
  3261. "autoload": {
  3262. "files": [
  3263. "src/helpers.php"
  3264. ],
  3265. "psr-4": {
  3266. "Laravel\\Prompts\\": "src/"
  3267. }
  3268. },
  3269. "notification-url": "https://packagist.org/downloads/",
  3270. "license": [
  3271. "MIT"
  3272. ],
  3273. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3274. "support": {
  3275. "issues": "https://github.com/laravel/prompts/issues",
  3276. "source": "https://github.com/laravel/prompts/tree/v0.3.18"
  3277. },
  3278. "time": "2026-05-19T00:47:18+00:00"
  3279. },
  3280. {
  3281. "name": "laravel/sanctum",
  3282. "version": "v4.2.3",
  3283. "source": {
  3284. "type": "git",
  3285. "url": "https://github.com/laravel/sanctum.git",
  3286. "reference": "47d26f1d310879ff757b971f5a6fc631d18663fd"
  3287. },
  3288. "dist": {
  3289. "type": "zip",
  3290. "url": "https://api.github.com/repos/laravel/sanctum/zipball/47d26f1d310879ff757b971f5a6fc631d18663fd",
  3291. "reference": "47d26f1d310879ff757b971f5a6fc631d18663fd",
  3292. "shasum": ""
  3293. },
  3294. "require": {
  3295. "ext-json": "*",
  3296. "illuminate/console": "^11.0|^12.0",
  3297. "illuminate/contracts": "^11.0|^12.0",
  3298. "illuminate/database": "^11.0|^12.0",
  3299. "illuminate/support": "^11.0|^12.0",
  3300. "php": "^8.2",
  3301. "symfony/console": "^7.0"
  3302. },
  3303. "require-dev": {
  3304. "mockery/mockery": "^1.6",
  3305. "orchestra/testbench": "^9.15|^10.8",
  3306. "phpstan/phpstan": "^1.10"
  3307. },
  3308. "type": "library",
  3309. "extra": {
  3310. "laravel": {
  3311. "providers": [
  3312. "Laravel\\Sanctum\\SanctumServiceProvider"
  3313. ]
  3314. }
  3315. },
  3316. "autoload": {
  3317. "psr-4": {
  3318. "Laravel\\Sanctum\\": "src/"
  3319. }
  3320. },
  3321. "notification-url": "https://packagist.org/downloads/",
  3322. "license": [
  3323. "MIT"
  3324. ],
  3325. "authors": [
  3326. {
  3327. "name": "Taylor Otwell",
  3328. "email": "taylor@laravel.com"
  3329. }
  3330. ],
  3331. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3332. "keywords": [
  3333. "auth",
  3334. "laravel",
  3335. "sanctum"
  3336. ],
  3337. "support": {
  3338. "issues": "https://github.com/laravel/sanctum/issues",
  3339. "source": "https://github.com/laravel/sanctum"
  3340. },
  3341. "time": "2026-01-11T18:20:25+00:00"
  3342. },
  3343. {
  3344. "name": "laravel/serializable-closure",
  3345. "version": "v2.0.13",
  3346. "source": {
  3347. "type": "git",
  3348. "url": "https://github.com/laravel/serializable-closure.git",
  3349. "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce"
  3350. },
  3351. "dist": {
  3352. "type": "zip",
  3353. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b566ee0dd251f3c4078bed003a7ce015f5ea6dce",
  3354. "reference": "b566ee0dd251f3c4078bed003a7ce015f5ea6dce",
  3355. "shasum": ""
  3356. },
  3357. "require": {
  3358. "php": "^8.1"
  3359. },
  3360. "require-dev": {
  3361. "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
  3362. "nesbot/carbon": "^2.67|^3.0",
  3363. "pestphp/pest": "^2.36|^3.0|^4.0",
  3364. "phpstan/phpstan": "^2.0",
  3365. "symfony/var-dumper": "^6.2.0|^7.0.0|^8.0.0"
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-master": "2.x-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "psr-4": {
  3375. "Laravel\\SerializableClosure\\": "src/"
  3376. }
  3377. },
  3378. "notification-url": "https://packagist.org/downloads/",
  3379. "license": [
  3380. "MIT"
  3381. ],
  3382. "authors": [
  3383. {
  3384. "name": "Taylor Otwell",
  3385. "email": "taylor@laravel.com"
  3386. },
  3387. {
  3388. "name": "Nuno Maduro",
  3389. "email": "nuno@laravel.com"
  3390. }
  3391. ],
  3392. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3393. "keywords": [
  3394. "closure",
  3395. "laravel",
  3396. "serializable"
  3397. ],
  3398. "support": {
  3399. "issues": "https://github.com/laravel/serializable-closure/issues",
  3400. "source": "https://github.com/laravel/serializable-closure"
  3401. },
  3402. "time": "2026-04-16T14:03:50+00:00"
  3403. },
  3404. {
  3405. "name": "laravel/tinker",
  3406. "version": "v2.11.0",
  3407. "source": {
  3408. "type": "git",
  3409. "url": "https://github.com/laravel/tinker.git",
  3410. "reference": "3d34b97c9a1747a81a3fde90482c092bd8b66468"
  3411. },
  3412. "dist": {
  3413. "type": "zip",
  3414. "url": "https://api.github.com/repos/laravel/tinker/zipball/3d34b97c9a1747a81a3fde90482c092bd8b66468",
  3415. "reference": "3d34b97c9a1747a81a3fde90482c092bd8b66468",
  3416. "shasum": ""
  3417. },
  3418. "require": {
  3419. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3420. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3421. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3422. "php": "^7.2.5|^8.0",
  3423. "psy/psysh": "^0.11.1|^0.12.0",
  3424. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0|^8.0"
  3425. },
  3426. "require-dev": {
  3427. "mockery/mockery": "~1.3.3|^1.4.2",
  3428. "phpstan/phpstan": "^1.10",
  3429. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3430. },
  3431. "suggest": {
  3432. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3433. },
  3434. "type": "library",
  3435. "extra": {
  3436. "laravel": {
  3437. "providers": [
  3438. "Laravel\\Tinker\\TinkerServiceProvider"
  3439. ]
  3440. }
  3441. },
  3442. "autoload": {
  3443. "psr-4": {
  3444. "Laravel\\Tinker\\": "src/"
  3445. }
  3446. },
  3447. "notification-url": "https://packagist.org/downloads/",
  3448. "license": [
  3449. "MIT"
  3450. ],
  3451. "authors": [
  3452. {
  3453. "name": "Taylor Otwell",
  3454. "email": "taylor@laravel.com"
  3455. }
  3456. ],
  3457. "description": "Powerful REPL for the Laravel framework.",
  3458. "keywords": [
  3459. "REPL",
  3460. "Tinker",
  3461. "laravel",
  3462. "psysh"
  3463. ],
  3464. "support": {
  3465. "issues": "https://github.com/laravel/tinker/issues",
  3466. "source": "https://github.com/laravel/tinker/tree/v2.11.0"
  3467. },
  3468. "time": "2025-12-19T19:16:45+00:00"
  3469. },
  3470. {
  3471. "name": "lcobucci/jwt",
  3472. "version": "5.6.0",
  3473. "source": {
  3474. "type": "git",
  3475. "url": "https://github.com/lcobucci/jwt.git",
  3476. "reference": "bb3e9f21e4196e8afc41def81ef649c164bca25e"
  3477. },
  3478. "dist": {
  3479. "type": "zip",
  3480. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/bb3e9f21e4196e8afc41def81ef649c164bca25e",
  3481. "reference": "bb3e9f21e4196e8afc41def81ef649c164bca25e",
  3482. "shasum": ""
  3483. },
  3484. "require": {
  3485. "ext-openssl": "*",
  3486. "ext-sodium": "*",
  3487. "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  3488. "psr/clock": "^1.0"
  3489. },
  3490. "require-dev": {
  3491. "infection/infection": "^0.29",
  3492. "lcobucci/clock": "^3.2",
  3493. "lcobucci/coding-standard": "^11.0",
  3494. "phpbench/phpbench": "^1.2",
  3495. "phpstan/extension-installer": "^1.2",
  3496. "phpstan/phpstan": "^1.10.7",
  3497. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  3498. "phpstan/phpstan-phpunit": "^1.3.10",
  3499. "phpstan/phpstan-strict-rules": "^1.5.0",
  3500. "phpunit/phpunit": "^11.1"
  3501. },
  3502. "suggest": {
  3503. "lcobucci/clock": ">= 3.2"
  3504. },
  3505. "type": "library",
  3506. "autoload": {
  3507. "psr-4": {
  3508. "Lcobucci\\JWT\\": "src"
  3509. }
  3510. },
  3511. "notification-url": "https://packagist.org/downloads/",
  3512. "license": [
  3513. "BSD-3-Clause"
  3514. ],
  3515. "authors": [
  3516. {
  3517. "name": "Luís Cobucci",
  3518. "email": "lcobucci@gmail.com",
  3519. "role": "Developer"
  3520. }
  3521. ],
  3522. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3523. "keywords": [
  3524. "JWS",
  3525. "jwt"
  3526. ],
  3527. "support": {
  3528. "issues": "https://github.com/lcobucci/jwt/issues",
  3529. "source": "https://github.com/lcobucci/jwt/tree/5.6.0"
  3530. },
  3531. "funding": [
  3532. {
  3533. "url": "https://github.com/lcobucci",
  3534. "type": "github"
  3535. },
  3536. {
  3537. "url": "https://www.patreon.com/lcobucci",
  3538. "type": "patreon"
  3539. }
  3540. ],
  3541. "time": "2025-10-17T11:30:53+00:00"
  3542. },
  3543. {
  3544. "name": "league/commonmark",
  3545. "version": "2.8.2",
  3546. "source": {
  3547. "type": "git",
  3548. "url": "https://github.com/thephpleague/commonmark.git",
  3549. "reference": "59fb075d2101740c337c7216e3f32b36c204218b"
  3550. },
  3551. "dist": {
  3552. "type": "zip",
  3553. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/59fb075d2101740c337c7216e3f32b36c204218b",
  3554. "reference": "59fb075d2101740c337c7216e3f32b36c204218b",
  3555. "shasum": ""
  3556. },
  3557. "require": {
  3558. "ext-mbstring": "*",
  3559. "league/config": "^1.1.1",
  3560. "php": "^7.4 || ^8.0",
  3561. "psr/event-dispatcher": "^1.0",
  3562. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3563. "symfony/polyfill-php80": "^1.16"
  3564. },
  3565. "require-dev": {
  3566. "cebe/markdown": "^1.0",
  3567. "commonmark/cmark": "0.31.1",
  3568. "commonmark/commonmark.js": "0.31.1",
  3569. "composer/package-versions-deprecated": "^1.8",
  3570. "embed/embed": "^4.4",
  3571. "erusev/parsedown": "^1.0",
  3572. "ext-json": "*",
  3573. "github/gfm": "0.29.0",
  3574. "michelf/php-markdown": "^1.4 || ^2.0",
  3575. "nyholm/psr7": "^1.5",
  3576. "phpstan/phpstan": "^1.8.2",
  3577. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3578. "scrutinizer/ocular": "^1.8.1",
  3579. "symfony/finder": "^5.3 | ^6.0 | ^7.0 || ^8.0",
  3580. "symfony/process": "^5.4 | ^6.0 | ^7.0 || ^8.0",
  3581. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0 || ^8.0",
  3582. "unleashedtech/php-coding-standard": "^3.1.1",
  3583. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  3584. },
  3585. "suggest": {
  3586. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3587. },
  3588. "type": "library",
  3589. "extra": {
  3590. "branch-alias": {
  3591. "dev-main": "2.9-dev"
  3592. }
  3593. },
  3594. "autoload": {
  3595. "psr-4": {
  3596. "League\\CommonMark\\": "src"
  3597. }
  3598. },
  3599. "notification-url": "https://packagist.org/downloads/",
  3600. "license": [
  3601. "BSD-3-Clause"
  3602. ],
  3603. "authors": [
  3604. {
  3605. "name": "Colin O'Dell",
  3606. "email": "colinodell@gmail.com",
  3607. "homepage": "https://www.colinodell.com",
  3608. "role": "Lead Developer"
  3609. }
  3610. ],
  3611. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3612. "homepage": "https://commonmark.thephpleague.com",
  3613. "keywords": [
  3614. "commonmark",
  3615. "flavored",
  3616. "gfm",
  3617. "github",
  3618. "github-flavored",
  3619. "markdown",
  3620. "md",
  3621. "parser"
  3622. ],
  3623. "support": {
  3624. "docs": "https://commonmark.thephpleague.com/",
  3625. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3626. "issues": "https://github.com/thephpleague/commonmark/issues",
  3627. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3628. "source": "https://github.com/thephpleague/commonmark"
  3629. },
  3630. "funding": [
  3631. {
  3632. "url": "https://www.colinodell.com/sponsor",
  3633. "type": "custom"
  3634. },
  3635. {
  3636. "url": "https://www.paypal.me/colinpodell/10.00",
  3637. "type": "custom"
  3638. },
  3639. {
  3640. "url": "https://github.com/colinodell",
  3641. "type": "github"
  3642. },
  3643. {
  3644. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3645. "type": "tidelift"
  3646. }
  3647. ],
  3648. "time": "2026-03-19T13:16:38+00:00"
  3649. },
  3650. {
  3651. "name": "league/config",
  3652. "version": "v1.2.0",
  3653. "source": {
  3654. "type": "git",
  3655. "url": "https://github.com/thephpleague/config.git",
  3656. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3657. },
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3661. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3662. "shasum": ""
  3663. },
  3664. "require": {
  3665. "dflydev/dot-access-data": "^3.0.1",
  3666. "nette/schema": "^1.2",
  3667. "php": "^7.4 || ^8.0"
  3668. },
  3669. "require-dev": {
  3670. "phpstan/phpstan": "^1.8.2",
  3671. "phpunit/phpunit": "^9.5.5",
  3672. "scrutinizer/ocular": "^1.8.1",
  3673. "unleashedtech/php-coding-standard": "^3.1",
  3674. "vimeo/psalm": "^4.7.3"
  3675. },
  3676. "type": "library",
  3677. "extra": {
  3678. "branch-alias": {
  3679. "dev-main": "1.2-dev"
  3680. }
  3681. },
  3682. "autoload": {
  3683. "psr-4": {
  3684. "League\\Config\\": "src"
  3685. }
  3686. },
  3687. "notification-url": "https://packagist.org/downloads/",
  3688. "license": [
  3689. "BSD-3-Clause"
  3690. ],
  3691. "authors": [
  3692. {
  3693. "name": "Colin O'Dell",
  3694. "email": "colinodell@gmail.com",
  3695. "homepage": "https://www.colinodell.com",
  3696. "role": "Lead Developer"
  3697. }
  3698. ],
  3699. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3700. "homepage": "https://config.thephpleague.com",
  3701. "keywords": [
  3702. "array",
  3703. "config",
  3704. "configuration",
  3705. "dot",
  3706. "dot-access",
  3707. "nested",
  3708. "schema"
  3709. ],
  3710. "support": {
  3711. "docs": "https://config.thephpleague.com/",
  3712. "issues": "https://github.com/thephpleague/config/issues",
  3713. "rss": "https://github.com/thephpleague/config/releases.atom",
  3714. "source": "https://github.com/thephpleague/config"
  3715. },
  3716. "funding": [
  3717. {
  3718. "url": "https://www.colinodell.com/sponsor",
  3719. "type": "custom"
  3720. },
  3721. {
  3722. "url": "https://www.paypal.me/colinpodell/10.00",
  3723. "type": "custom"
  3724. },
  3725. {
  3726. "url": "https://github.com/colinodell",
  3727. "type": "github"
  3728. }
  3729. ],
  3730. "time": "2022-12-11T20:36:23+00:00"
  3731. },
  3732. {
  3733. "name": "league/flysystem",
  3734. "version": "3.34.0",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/thephpleague/flysystem.git",
  3738. "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e",
  3743. "reference": "2daaac3b0d4c83ea7ed5d8586e786f5d00f3540e",
  3744. "shasum": ""
  3745. },
  3746. "require": {
  3747. "league/flysystem-local": "^3.0.0",
  3748. "league/mime-type-detection": "^1.0.0",
  3749. "php": "^8.0.2"
  3750. },
  3751. "conflict": {
  3752. "async-aws/core": "<1.19.0",
  3753. "async-aws/s3": "<1.14.0",
  3754. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3755. "guzzlehttp/guzzle": "<7.0",
  3756. "guzzlehttp/ringphp": "<1.1.1",
  3757. "phpseclib/phpseclib": "3.0.15",
  3758. "symfony/http-client": "<5.2"
  3759. },
  3760. "require-dev": {
  3761. "async-aws/s3": "^1.5 || ^2.0",
  3762. "async-aws/simple-s3": "^1.1 || ^2.0",
  3763. "aws/aws-sdk-php": "^3.295.10",
  3764. "composer/semver": "^3.0",
  3765. "ext-fileinfo": "*",
  3766. "ext-ftp": "*",
  3767. "ext-mongodb": "^1.3|^2",
  3768. "ext-zip": "*",
  3769. "friendsofphp/php-cs-fixer": "^3.5",
  3770. "google/cloud-storage": "^1.23",
  3771. "guzzlehttp/psr7": "^2.6",
  3772. "microsoft/azure-storage-blob": "^1.1",
  3773. "mongodb/mongodb": "^1.2|^2",
  3774. "phpseclib/phpseclib": "^3.0.36",
  3775. "phpstan/phpstan": "^1.10",
  3776. "phpunit/phpunit": "^9.5.11|^10.0",
  3777. "sabre/dav": "^4.6.0"
  3778. },
  3779. "type": "library",
  3780. "autoload": {
  3781. "psr-4": {
  3782. "League\\Flysystem\\": "src"
  3783. }
  3784. },
  3785. "notification-url": "https://packagist.org/downloads/",
  3786. "license": [
  3787. "MIT"
  3788. ],
  3789. "authors": [
  3790. {
  3791. "name": "Frank de Jonge",
  3792. "email": "info@frankdejonge.nl"
  3793. }
  3794. ],
  3795. "description": "File storage abstraction for PHP",
  3796. "keywords": [
  3797. "WebDAV",
  3798. "aws",
  3799. "cloud",
  3800. "file",
  3801. "files",
  3802. "filesystem",
  3803. "filesystems",
  3804. "ftp",
  3805. "s3",
  3806. "sftp",
  3807. "storage"
  3808. ],
  3809. "support": {
  3810. "issues": "https://github.com/thephpleague/flysystem/issues",
  3811. "source": "https://github.com/thephpleague/flysystem/tree/3.34.0"
  3812. },
  3813. "time": "2026-05-14T10:28:08+00:00"
  3814. },
  3815. {
  3816. "name": "league/flysystem-local",
  3817. "version": "3.31.0",
  3818. "source": {
  3819. "type": "git",
  3820. "url": "https://github.com/thephpleague/flysystem-local.git",
  3821. "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079"
  3822. },
  3823. "dist": {
  3824. "type": "zip",
  3825. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/2f669db18a4c20c755c2bb7d3a7b0b2340488079",
  3826. "reference": "2f669db18a4c20c755c2bb7d3a7b0b2340488079",
  3827. "shasum": ""
  3828. },
  3829. "require": {
  3830. "ext-fileinfo": "*",
  3831. "league/flysystem": "^3.0.0",
  3832. "league/mime-type-detection": "^1.0.0",
  3833. "php": "^8.0.2"
  3834. },
  3835. "type": "library",
  3836. "autoload": {
  3837. "psr-4": {
  3838. "League\\Flysystem\\Local\\": ""
  3839. }
  3840. },
  3841. "notification-url": "https://packagist.org/downloads/",
  3842. "license": [
  3843. "MIT"
  3844. ],
  3845. "authors": [
  3846. {
  3847. "name": "Frank de Jonge",
  3848. "email": "info@frankdejonge.nl"
  3849. }
  3850. ],
  3851. "description": "Local filesystem adapter for Flysystem.",
  3852. "keywords": [
  3853. "Flysystem",
  3854. "file",
  3855. "files",
  3856. "filesystem",
  3857. "local"
  3858. ],
  3859. "support": {
  3860. "source": "https://github.com/thephpleague/flysystem-local/tree/3.31.0"
  3861. },
  3862. "time": "2026-01-23T15:30:45+00:00"
  3863. },
  3864. {
  3865. "name": "league/fractal",
  3866. "version": "0.20.2",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/thephpleague/fractal.git",
  3870. "reference": "573ca2e0e348a7fe573a3e8fbc29a6588ece8c4e"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/573ca2e0e348a7fe573a3e8fbc29a6588ece8c4e",
  3875. "reference": "573ca2e0e348a7fe573a3e8fbc29a6588ece8c4e",
  3876. "shasum": ""
  3877. },
  3878. "require": {
  3879. "php": ">=7.4"
  3880. },
  3881. "require-dev": {
  3882. "doctrine/orm": "^2.5",
  3883. "illuminate/contracts": "~5.0",
  3884. "laminas/laminas-paginator": "~2.12",
  3885. "mockery/mockery": "^1.3",
  3886. "pagerfanta/pagerfanta": "~1.0.0|~4.0.0",
  3887. "phpstan/phpstan": "^1.4",
  3888. "phpunit/phpunit": "^9.5",
  3889. "squizlabs/php_codesniffer": "~3.4",
  3890. "vimeo/psalm": "^4.30"
  3891. },
  3892. "suggest": {
  3893. "illuminate/pagination": "The Illuminate Pagination component.",
  3894. "laminas/laminas-paginator": "Laminas Framework Paginator",
  3895. "pagerfanta/pagerfanta": "Pagerfanta Paginator"
  3896. },
  3897. "type": "library",
  3898. "extra": {
  3899. "branch-alias": {
  3900. "dev-master": "0.20.x-dev"
  3901. }
  3902. },
  3903. "autoload": {
  3904. "psr-4": {
  3905. "League\\Fractal\\": "src"
  3906. }
  3907. },
  3908. "notification-url": "https://packagist.org/downloads/",
  3909. "license": [
  3910. "MIT"
  3911. ],
  3912. "authors": [
  3913. {
  3914. "name": "Phil Sturgeon",
  3915. "email": "me@philsturgeon.uk",
  3916. "homepage": "http://philsturgeon.uk/",
  3917. "role": "Developer"
  3918. }
  3919. ],
  3920. "description": "Handle the output of complex data structures ready for API output.",
  3921. "homepage": "http://fractal.thephpleague.com/",
  3922. "keywords": [
  3923. "api",
  3924. "json",
  3925. "league",
  3926. "rest"
  3927. ],
  3928. "support": {
  3929. "issues": "https://github.com/thephpleague/fractal/issues",
  3930. "source": "https://github.com/thephpleague/fractal/tree/0.20.2"
  3931. },
  3932. "time": "2025-02-14T21:33:14+00:00"
  3933. },
  3934. {
  3935. "name": "league/mime-type-detection",
  3936. "version": "1.16.0",
  3937. "source": {
  3938. "type": "git",
  3939. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3940. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3941. },
  3942. "dist": {
  3943. "type": "zip",
  3944. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3945. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3946. "shasum": ""
  3947. },
  3948. "require": {
  3949. "ext-fileinfo": "*",
  3950. "php": "^7.4 || ^8.0"
  3951. },
  3952. "require-dev": {
  3953. "friendsofphp/php-cs-fixer": "^3.2",
  3954. "phpstan/phpstan": "^0.12.68",
  3955. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3956. },
  3957. "type": "library",
  3958. "autoload": {
  3959. "psr-4": {
  3960. "League\\MimeTypeDetection\\": "src"
  3961. }
  3962. },
  3963. "notification-url": "https://packagist.org/downloads/",
  3964. "license": [
  3965. "MIT"
  3966. ],
  3967. "authors": [
  3968. {
  3969. "name": "Frank de Jonge",
  3970. "email": "info@frankdejonge.nl"
  3971. }
  3972. ],
  3973. "description": "Mime-type detection for Flysystem",
  3974. "support": {
  3975. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3976. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3977. },
  3978. "funding": [
  3979. {
  3980. "url": "https://github.com/frankdejonge",
  3981. "type": "github"
  3982. },
  3983. {
  3984. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3985. "type": "tidelift"
  3986. }
  3987. ],
  3988. "time": "2024-09-21T08:32:55+00:00"
  3989. },
  3990. {
  3991. "name": "league/uri",
  3992. "version": "7.8.1",
  3993. "source": {
  3994. "type": "git",
  3995. "url": "https://github.com/thephpleague/uri.git",
  3996. "reference": "08cf38e3924d4f56238125547b5720496fac8fd4"
  3997. },
  3998. "dist": {
  3999. "type": "zip",
  4000. "url": "https://api.github.com/repos/thephpleague/uri/zipball/08cf38e3924d4f56238125547b5720496fac8fd4",
  4001. "reference": "08cf38e3924d4f56238125547b5720496fac8fd4",
  4002. "shasum": ""
  4003. },
  4004. "require": {
  4005. "league/uri-interfaces": "^7.8.1",
  4006. "php": "^8.1",
  4007. "psr/http-factory": "^1"
  4008. },
  4009. "conflict": {
  4010. "league/uri-schemes": "^1.0"
  4011. },
  4012. "suggest": {
  4013. "ext-bcmath": "to improve IPV4 host parsing",
  4014. "ext-dom": "to convert the URI into an HTML anchor tag",
  4015. "ext-fileinfo": "to create Data URI from file contennts",
  4016. "ext-gmp": "to improve IPV4 host parsing",
  4017. "ext-intl": "to handle IDN host with the best performance",
  4018. "ext-uri": "to use the PHP native URI class",
  4019. "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
  4020. "league/uri-components": "to provide additional tools to manipulate URI objects components",
  4021. "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP",
  4022. "php-64bit": "to improve IPV4 host parsing",
  4023. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  4024. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4025. },
  4026. "type": "library",
  4027. "extra": {
  4028. "branch-alias": {
  4029. "dev-master": "7.x-dev"
  4030. }
  4031. },
  4032. "autoload": {
  4033. "psr-4": {
  4034. "League\\Uri\\": ""
  4035. }
  4036. },
  4037. "notification-url": "https://packagist.org/downloads/",
  4038. "license": [
  4039. "MIT"
  4040. ],
  4041. "authors": [
  4042. {
  4043. "name": "Ignace Nyamagana Butera",
  4044. "email": "nyamsprod@gmail.com",
  4045. "homepage": "https://nyamsprod.com"
  4046. }
  4047. ],
  4048. "description": "URI manipulation library",
  4049. "homepage": "https://uri.thephpleague.com",
  4050. "keywords": [
  4051. "URN",
  4052. "data-uri",
  4053. "file-uri",
  4054. "ftp",
  4055. "hostname",
  4056. "http",
  4057. "https",
  4058. "middleware",
  4059. "parse_str",
  4060. "parse_url",
  4061. "psr-7",
  4062. "query-string",
  4063. "querystring",
  4064. "rfc2141",
  4065. "rfc3986",
  4066. "rfc3987",
  4067. "rfc6570",
  4068. "rfc8141",
  4069. "uri",
  4070. "uri-template",
  4071. "url",
  4072. "ws"
  4073. ],
  4074. "support": {
  4075. "docs": "https://uri.thephpleague.com",
  4076. "forum": "https://thephpleague.slack.com",
  4077. "issues": "https://github.com/thephpleague/uri-src/issues",
  4078. "source": "https://github.com/thephpleague/uri/tree/7.8.1"
  4079. },
  4080. "funding": [
  4081. {
  4082. "url": "https://github.com/sponsors/nyamsprod",
  4083. "type": "github"
  4084. }
  4085. ],
  4086. "time": "2026-03-15T20:22:25+00:00"
  4087. },
  4088. {
  4089. "name": "league/uri-interfaces",
  4090. "version": "7.8.1",
  4091. "source": {
  4092. "type": "git",
  4093. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4094. "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928"
  4095. },
  4096. "dist": {
  4097. "type": "zip",
  4098. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/85d5c77c5d6d3af6c54db4a78246364908f3c928",
  4099. "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928",
  4100. "shasum": ""
  4101. },
  4102. "require": {
  4103. "ext-filter": "*",
  4104. "php": "^8.1",
  4105. "psr/http-message": "^1.1 || ^2.0"
  4106. },
  4107. "suggest": {
  4108. "ext-bcmath": "to improve IPV4 host parsing",
  4109. "ext-gmp": "to improve IPV4 host parsing",
  4110. "ext-intl": "to handle IDN host with the best performance",
  4111. "php-64bit": "to improve IPV4 host parsing",
  4112. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  4113. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4114. },
  4115. "type": "library",
  4116. "extra": {
  4117. "branch-alias": {
  4118. "dev-master": "7.x-dev"
  4119. }
  4120. },
  4121. "autoload": {
  4122. "psr-4": {
  4123. "League\\Uri\\": ""
  4124. }
  4125. },
  4126. "notification-url": "https://packagist.org/downloads/",
  4127. "license": [
  4128. "MIT"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "Ignace Nyamagana Butera",
  4133. "email": "nyamsprod@gmail.com",
  4134. "homepage": "https://nyamsprod.com"
  4135. }
  4136. ],
  4137. "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI",
  4138. "homepage": "https://uri.thephpleague.com",
  4139. "keywords": [
  4140. "data-uri",
  4141. "file-uri",
  4142. "ftp",
  4143. "hostname",
  4144. "http",
  4145. "https",
  4146. "parse_str",
  4147. "parse_url",
  4148. "psr-7",
  4149. "query-string",
  4150. "querystring",
  4151. "rfc3986",
  4152. "rfc3987",
  4153. "rfc6570",
  4154. "uri",
  4155. "url",
  4156. "ws"
  4157. ],
  4158. "support": {
  4159. "docs": "https://uri.thephpleague.com",
  4160. "forum": "https://thephpleague.slack.com",
  4161. "issues": "https://github.com/thephpleague/uri-src/issues",
  4162. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.1"
  4163. },
  4164. "funding": [
  4165. {
  4166. "url": "https://github.com/sponsors/nyamsprod",
  4167. "type": "github"
  4168. }
  4169. ],
  4170. "time": "2026-03-08T20:05:35+00:00"
  4171. },
  4172. {
  4173. "name": "livewire/livewire",
  4174. "version": "v3.7.4",
  4175. "source": {
  4176. "type": "git",
  4177. "url": "https://github.com/livewire/livewire.git",
  4178. "reference": "5a8dffd4c0ab357ff7ed5b39e7c2453d962a68e0"
  4179. },
  4180. "dist": {
  4181. "type": "zip",
  4182. "url": "https://api.github.com/repos/livewire/livewire/zipball/5a8dffd4c0ab357ff7ed5b39e7c2453d962a68e0",
  4183. "reference": "5a8dffd4c0ab357ff7ed5b39e7c2453d962a68e0",
  4184. "shasum": ""
  4185. },
  4186. "require": {
  4187. "illuminate/database": "^10.0|^11.0|^12.0",
  4188. "illuminate/routing": "^10.0|^11.0|^12.0",
  4189. "illuminate/support": "^10.0|^11.0|^12.0",
  4190. "illuminate/validation": "^10.0|^11.0|^12.0",
  4191. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4192. "league/mime-type-detection": "^1.9",
  4193. "php": "^8.1",
  4194. "symfony/console": "^6.0|^7.0",
  4195. "symfony/http-kernel": "^6.2|^7.0"
  4196. },
  4197. "require-dev": {
  4198. "calebporzio/sushi": "^2.1",
  4199. "laravel/framework": "^10.15.0|^11.0|^12.0",
  4200. "mockery/mockery": "^1.3.1",
  4201. "orchestra/testbench": "^8.21.0|^9.0|^10.0",
  4202. "orchestra/testbench-dusk": "^8.24|^9.1|^10.0",
  4203. "phpunit/phpunit": "^10.4|^11.5",
  4204. "psy/psysh": "^0.11.22|^0.12"
  4205. },
  4206. "type": "library",
  4207. "extra": {
  4208. "laravel": {
  4209. "aliases": {
  4210. "Livewire": "Livewire\\Livewire"
  4211. },
  4212. "providers": [
  4213. "Livewire\\LivewireServiceProvider"
  4214. ]
  4215. }
  4216. },
  4217. "autoload": {
  4218. "files": [
  4219. "src/helpers.php"
  4220. ],
  4221. "psr-4": {
  4222. "Livewire\\": "src/"
  4223. }
  4224. },
  4225. "notification-url": "https://packagist.org/downloads/",
  4226. "license": [
  4227. "MIT"
  4228. ],
  4229. "authors": [
  4230. {
  4231. "name": "Caleb Porzio",
  4232. "email": "calebporzio@gmail.com"
  4233. }
  4234. ],
  4235. "description": "A front-end framework for Laravel.",
  4236. "support": {
  4237. "issues": "https://github.com/livewire/livewire/issues",
  4238. "source": "https://github.com/livewire/livewire/tree/v3.7.4"
  4239. },
  4240. "funding": [
  4241. {
  4242. "url": "https://github.com/livewire",
  4243. "type": "github"
  4244. }
  4245. ],
  4246. "time": "2026-01-13T09:37:21+00:00"
  4247. },
  4248. {
  4249. "name": "maennchen/zipstream-php",
  4250. "version": "3.1.2",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  4254. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  4259. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  4260. "shasum": ""
  4261. },
  4262. "require": {
  4263. "ext-mbstring": "*",
  4264. "ext-zlib": "*",
  4265. "php-64bit": "^8.2"
  4266. },
  4267. "require-dev": {
  4268. "brianium/paratest": "^7.7",
  4269. "ext-zip": "*",
  4270. "friendsofphp/php-cs-fixer": "^3.16",
  4271. "guzzlehttp/guzzle": "^7.5",
  4272. "mikey179/vfsstream": "^1.6",
  4273. "php-coveralls/php-coveralls": "^2.5",
  4274. "phpunit/phpunit": "^11.0",
  4275. "vimeo/psalm": "^6.0"
  4276. },
  4277. "suggest": {
  4278. "guzzlehttp/psr7": "^2.4",
  4279. "psr/http-message": "^2.0"
  4280. },
  4281. "type": "library",
  4282. "autoload": {
  4283. "psr-4": {
  4284. "ZipStream\\": "src/"
  4285. }
  4286. },
  4287. "notification-url": "https://packagist.org/downloads/",
  4288. "license": [
  4289. "MIT"
  4290. ],
  4291. "authors": [
  4292. {
  4293. "name": "Paul Duncan",
  4294. "email": "pabs@pablotron.org"
  4295. },
  4296. {
  4297. "name": "Jonatan Männchen",
  4298. "email": "jonatan@maennchen.ch"
  4299. },
  4300. {
  4301. "name": "Jesse Donat",
  4302. "email": "donatj@gmail.com"
  4303. },
  4304. {
  4305. "name": "András Kolesár",
  4306. "email": "kolesar@kolesar.hu"
  4307. }
  4308. ],
  4309. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  4310. "keywords": [
  4311. "stream",
  4312. "zip"
  4313. ],
  4314. "support": {
  4315. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  4316. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  4317. },
  4318. "funding": [
  4319. {
  4320. "url": "https://github.com/maennchen",
  4321. "type": "github"
  4322. }
  4323. ],
  4324. "time": "2025-01-27T12:07:53+00:00"
  4325. },
  4326. {
  4327. "name": "markbaker/complex",
  4328. "version": "3.0.2",
  4329. "source": {
  4330. "type": "git",
  4331. "url": "https://github.com/MarkBaker/PHPComplex.git",
  4332. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  4333. },
  4334. "dist": {
  4335. "type": "zip",
  4336. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4337. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4338. "shasum": ""
  4339. },
  4340. "require": {
  4341. "php": "^7.2 || ^8.0"
  4342. },
  4343. "require-dev": {
  4344. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4345. "phpcompatibility/php-compatibility": "^9.3",
  4346. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4347. "squizlabs/php_codesniffer": "^3.7"
  4348. },
  4349. "type": "library",
  4350. "autoload": {
  4351. "psr-4": {
  4352. "Complex\\": "classes/src/"
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "Mark Baker",
  4362. "email": "mark@lange.demon.co.uk"
  4363. }
  4364. ],
  4365. "description": "PHP Class for working with complex numbers",
  4366. "homepage": "https://github.com/MarkBaker/PHPComplex",
  4367. "keywords": [
  4368. "complex",
  4369. "mathematics"
  4370. ],
  4371. "support": {
  4372. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  4373. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  4374. },
  4375. "time": "2022-12-06T16:21:08+00:00"
  4376. },
  4377. {
  4378. "name": "markbaker/matrix",
  4379. "version": "3.0.1",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  4383. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  4384. },
  4385. "dist": {
  4386. "type": "zip",
  4387. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  4388. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  4389. "shasum": ""
  4390. },
  4391. "require": {
  4392. "php": "^7.1 || ^8.0"
  4393. },
  4394. "require-dev": {
  4395. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4396. "phpcompatibility/php-compatibility": "^9.3",
  4397. "phpdocumentor/phpdocumentor": "2.*",
  4398. "phploc/phploc": "^4.0",
  4399. "phpmd/phpmd": "2.*",
  4400. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4401. "sebastian/phpcpd": "^4.0",
  4402. "squizlabs/php_codesniffer": "^3.7"
  4403. },
  4404. "type": "library",
  4405. "autoload": {
  4406. "psr-4": {
  4407. "Matrix\\": "classes/src/"
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "Mark Baker",
  4417. "email": "mark@demon-angel.eu"
  4418. }
  4419. ],
  4420. "description": "PHP Class for working with matrices",
  4421. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4422. "keywords": [
  4423. "mathematics",
  4424. "matrix",
  4425. "vector"
  4426. ],
  4427. "support": {
  4428. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4429. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4430. },
  4431. "time": "2022-12-02T22:17:43+00:00"
  4432. },
  4433. {
  4434. "name": "masterminds/html5",
  4435. "version": "2.10.0",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://github.com/Masterminds/html5-php.git",
  4439. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  4444. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  4445. "shasum": ""
  4446. },
  4447. "require": {
  4448. "ext-dom": "*",
  4449. "php": ">=5.3.0"
  4450. },
  4451. "require-dev": {
  4452. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4453. },
  4454. "type": "library",
  4455. "extra": {
  4456. "branch-alias": {
  4457. "dev-master": "2.7-dev"
  4458. }
  4459. },
  4460. "autoload": {
  4461. "psr-4": {
  4462. "Masterminds\\": "src"
  4463. }
  4464. },
  4465. "notification-url": "https://packagist.org/downloads/",
  4466. "license": [
  4467. "MIT"
  4468. ],
  4469. "authors": [
  4470. {
  4471. "name": "Matt Butcher",
  4472. "email": "technosophos@gmail.com"
  4473. },
  4474. {
  4475. "name": "Matt Farina",
  4476. "email": "matt@mattfarina.com"
  4477. },
  4478. {
  4479. "name": "Asmir Mustafic",
  4480. "email": "goetas@gmail.com"
  4481. }
  4482. ],
  4483. "description": "An HTML5 parser and serializer.",
  4484. "homepage": "http://masterminds.github.io/html5-php",
  4485. "keywords": [
  4486. "HTML5",
  4487. "dom",
  4488. "html",
  4489. "parser",
  4490. "querypath",
  4491. "serializer",
  4492. "xml"
  4493. ],
  4494. "support": {
  4495. "issues": "https://github.com/Masterminds/html5-php/issues",
  4496. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  4497. },
  4498. "time": "2025-07-25T09:04:22+00:00"
  4499. },
  4500. {
  4501. "name": "mike42/escpos-php",
  4502. "version": "v4.0",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://github.com/mike42/escpos-php.git",
  4506. "reference": "74fd89a3384135c90a8c6dc4b724e03df7c0e4f9"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://api.github.com/repos/mike42/escpos-php/zipball/74fd89a3384135c90a8c6dc4b724e03df7c0e4f9",
  4511. "reference": "74fd89a3384135c90a8c6dc4b724e03df7c0e4f9",
  4512. "shasum": ""
  4513. },
  4514. "require": {
  4515. "ext-intl": "*",
  4516. "ext-json": "*",
  4517. "ext-zlib": "*",
  4518. "mike42/gfx-php": "^0.6",
  4519. "php": ">=7.3.0"
  4520. },
  4521. "require-dev": {
  4522. "phpunit/phpunit": "^9",
  4523. "squizlabs/php_codesniffer": "^3.3"
  4524. },
  4525. "suggest": {
  4526. "ext-gd": "Used for image printing if present.",
  4527. "ext-imagick": "Will be used for image printing if present. Required for PDF printing or use of custom fonts."
  4528. },
  4529. "type": "library",
  4530. "autoload": {
  4531. "psr-4": {
  4532. "Mike42\\": "src/Mike42"
  4533. }
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "MIT"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Michael Billington",
  4542. "email": "michael.billington@gmail.com"
  4543. }
  4544. ],
  4545. "description": "PHP receipt printer library for use with ESC/POS-compatible thermal and impact printers",
  4546. "homepage": "https://github.com/mike42/escpos-php",
  4547. "keywords": [
  4548. "Epson",
  4549. "barcode",
  4550. "escpos",
  4551. "printer",
  4552. "receipt-printer"
  4553. ],
  4554. "support": {
  4555. "issues": "https://github.com/mike42/escpos-php/issues",
  4556. "source": "https://github.com/mike42/escpos-php/tree/v4.0"
  4557. },
  4558. "time": "2022-05-23T11:05:09+00:00"
  4559. },
  4560. {
  4561. "name": "mike42/gfx-php",
  4562. "version": "v0.6",
  4563. "source": {
  4564. "type": "git",
  4565. "url": "https://github.com/mike42/gfx-php.git",
  4566. "reference": "ed9ded2a9298e4084a9c557ab74a89b71e43dbdb"
  4567. },
  4568. "dist": {
  4569. "type": "zip",
  4570. "url": "https://api.github.com/repos/mike42/gfx-php/zipball/ed9ded2a9298e4084a9c557ab74a89b71e43dbdb",
  4571. "reference": "ed9ded2a9298e4084a9c557ab74a89b71e43dbdb",
  4572. "shasum": ""
  4573. },
  4574. "require": {
  4575. "php": ">=7.0.0"
  4576. },
  4577. "require-dev": {
  4578. "phpbench/phpbench": "@dev",
  4579. "phpunit/phpunit": "^6.5",
  4580. "squizlabs/php_codesniffer": "^3.3.1"
  4581. },
  4582. "type": "library",
  4583. "autoload": {
  4584. "psr-4": {
  4585. "Mike42\\": "src/Mike42"
  4586. }
  4587. },
  4588. "notification-url": "https://packagist.org/downloads/",
  4589. "license": [
  4590. "LGPL-2.1-or-later"
  4591. ],
  4592. "authors": [
  4593. {
  4594. "name": "Michael Billington",
  4595. "email": "michael.billington@gmail.com"
  4596. }
  4597. ],
  4598. "description": "The pure PHP graphics library",
  4599. "homepage": "https://github.com/mike42/gfx-php",
  4600. "support": {
  4601. "issues": "https://github.com/mike42/gfx-php/issues",
  4602. "source": "https://github.com/mike42/gfx-php/tree/v0.6"
  4603. },
  4604. "time": "2019-10-05T02:44:33+00:00"
  4605. },
  4606. {
  4607. "name": "mobiledetect/mobiledetectlib",
  4608. "version": "4.8.10",
  4609. "source": {
  4610. "type": "git",
  4611. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4612. "reference": "96b1e1fa9a968de7660a031106ab529f659d0192"
  4613. },
  4614. "dist": {
  4615. "type": "zip",
  4616. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/96b1e1fa9a968de7660a031106ab529f659d0192",
  4617. "reference": "96b1e1fa9a968de7660a031106ab529f659d0192",
  4618. "shasum": ""
  4619. },
  4620. "require": {
  4621. "php": ">=8.0",
  4622. "psr/simple-cache": "^3"
  4623. },
  4624. "require-dev": {
  4625. "friendsofphp/php-cs-fixer": "^v3.75.0",
  4626. "phpbench/phpbench": "^1.2",
  4627. "phpstan/phpstan": "^2.1.11",
  4628. "phpunit/phpunit": "^9.6.22",
  4629. "squizlabs/php_codesniffer": "^3.12.1"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "psr-4": {
  4634. "Detection\\": "src/"
  4635. }
  4636. },
  4637. "notification-url": "https://packagist.org/downloads/",
  4638. "license": [
  4639. "MIT"
  4640. ],
  4641. "authors": [
  4642. {
  4643. "name": "Serban Ghita",
  4644. "email": "serbanghita@gmail.com",
  4645. "homepage": "http://mobiledetect.net",
  4646. "role": "Developer"
  4647. }
  4648. ],
  4649. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  4650. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4651. "keywords": [
  4652. "detect mobile devices",
  4653. "mobile",
  4654. "mobile detect",
  4655. "mobile detector",
  4656. "php mobile detect"
  4657. ],
  4658. "support": {
  4659. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  4660. "source": "https://github.com/serbanghita/Mobile-Detect/tree/4.8.10"
  4661. },
  4662. "funding": [
  4663. {
  4664. "url": "https://github.com/serbanghita",
  4665. "type": "github"
  4666. }
  4667. ],
  4668. "time": "2026-01-09T16:21:59+00:00"
  4669. },
  4670. {
  4671. "name": "monolog/monolog",
  4672. "version": "3.10.0",
  4673. "source": {
  4674. "type": "git",
  4675. "url": "https://github.com/Seldaek/monolog.git",
  4676. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  4677. },
  4678. "dist": {
  4679. "type": "zip",
  4680. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  4681. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  4682. "shasum": ""
  4683. },
  4684. "require": {
  4685. "php": ">=8.1",
  4686. "psr/log": "^2.0 || ^3.0"
  4687. },
  4688. "provide": {
  4689. "psr/log-implementation": "3.0.0"
  4690. },
  4691. "require-dev": {
  4692. "aws/aws-sdk-php": "^3.0",
  4693. "doctrine/couchdb": "~1.0@dev",
  4694. "elasticsearch/elasticsearch": "^7 || ^8",
  4695. "ext-json": "*",
  4696. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4697. "guzzlehttp/guzzle": "^7.4.5",
  4698. "guzzlehttp/psr7": "^2.2",
  4699. "mongodb/mongodb": "^1.8 || ^2.0",
  4700. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4701. "php-console/php-console": "^3.1.8",
  4702. "phpstan/phpstan": "^2",
  4703. "phpstan/phpstan-deprecation-rules": "^2",
  4704. "phpstan/phpstan-strict-rules": "^2",
  4705. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4706. "predis/predis": "^1.1 || ^2",
  4707. "rollbar/rollbar": "^4.0",
  4708. "ruflin/elastica": "^7 || ^8",
  4709. "symfony/mailer": "^5.4 || ^6",
  4710. "symfony/mime": "^5.4 || ^6"
  4711. },
  4712. "suggest": {
  4713. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4714. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4715. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4716. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4717. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4718. "ext-mbstring": "Allow to work properly with unicode symbols",
  4719. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4720. "ext-openssl": "Required to send log messages using SSL",
  4721. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4722. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4723. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4724. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4725. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4726. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4727. },
  4728. "type": "library",
  4729. "extra": {
  4730. "branch-alias": {
  4731. "dev-main": "3.x-dev"
  4732. }
  4733. },
  4734. "autoload": {
  4735. "psr-4": {
  4736. "Monolog\\": "src/Monolog"
  4737. }
  4738. },
  4739. "notification-url": "https://packagist.org/downloads/",
  4740. "license": [
  4741. "MIT"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Jordi Boggiano",
  4746. "email": "j.boggiano@seld.be",
  4747. "homepage": "https://seld.be"
  4748. }
  4749. ],
  4750. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4751. "homepage": "https://github.com/Seldaek/monolog",
  4752. "keywords": [
  4753. "log",
  4754. "logging",
  4755. "psr-3"
  4756. ],
  4757. "support": {
  4758. "issues": "https://github.com/Seldaek/monolog/issues",
  4759. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  4760. },
  4761. "funding": [
  4762. {
  4763. "url": "https://github.com/Seldaek",
  4764. "type": "github"
  4765. },
  4766. {
  4767. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4768. "type": "tidelift"
  4769. }
  4770. ],
  4771. "time": "2026-01-02T08:56:05+00:00"
  4772. },
  4773. {
  4774. "name": "mpdf/mpdf",
  4775. "version": "v8.2.7",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://github.com/mpdf/mpdf.git",
  4779. "reference": "b59670a09498689c33ce639bac8f5ba26721dab3"
  4780. },
  4781. "dist": {
  4782. "type": "zip",
  4783. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/b59670a09498689c33ce639bac8f5ba26721dab3",
  4784. "reference": "b59670a09498689c33ce639bac8f5ba26721dab3",
  4785. "shasum": ""
  4786. },
  4787. "require": {
  4788. "ext-gd": "*",
  4789. "ext-mbstring": "*",
  4790. "mpdf/psr-http-message-shim": "^1.0 || ^2.0",
  4791. "mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
  4792. "myclabs/deep-copy": "^1.7",
  4793. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  4794. "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  4795. "psr/http-message": "^1.0 || ^2.0",
  4796. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4797. "setasign/fpdi": "^2.1"
  4798. },
  4799. "require-dev": {
  4800. "mockery/mockery": "^1.3.0",
  4801. "mpdf/qrcode": "^1.1.0",
  4802. "squizlabs/php_codesniffer": "^3.5.0",
  4803. "tracy/tracy": "~2.5",
  4804. "yoast/phpunit-polyfills": "^1.0"
  4805. },
  4806. "suggest": {
  4807. "ext-bcmath": "Needed for generation of some types of barcodes",
  4808. "ext-xml": "Needed mainly for SVG manipulation",
  4809. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  4810. },
  4811. "type": "library",
  4812. "autoload": {
  4813. "files": [
  4814. "src/functions.php"
  4815. ],
  4816. "psr-4": {
  4817. "Mpdf\\": "src/"
  4818. }
  4819. },
  4820. "notification-url": "https://packagist.org/downloads/",
  4821. "license": [
  4822. "GPL-2.0-only"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Matěj Humpál",
  4827. "role": "Developer, maintainer"
  4828. },
  4829. {
  4830. "name": "Ian Back",
  4831. "role": "Developer (retired)"
  4832. }
  4833. ],
  4834. "description": "PHP library generating PDF files from UTF-8 encoded HTML",
  4835. "homepage": "https://mpdf.github.io",
  4836. "keywords": [
  4837. "pdf",
  4838. "php",
  4839. "utf-8"
  4840. ],
  4841. "support": {
  4842. "docs": "https://mpdf.github.io",
  4843. "issues": "https://github.com/mpdf/mpdf/issues",
  4844. "source": "https://github.com/mpdf/mpdf"
  4845. },
  4846. "funding": [
  4847. {
  4848. "url": "https://www.paypal.me/mpdf",
  4849. "type": "custom"
  4850. }
  4851. ],
  4852. "time": "2025-12-01T10:18:02+00:00"
  4853. },
  4854. {
  4855. "name": "mpdf/psr-http-message-shim",
  4856. "version": "v2.0.1",
  4857. "source": {
  4858. "type": "git",
  4859. "url": "https://github.com/mpdf/psr-http-message-shim.git",
  4860. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f"
  4861. },
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f",
  4865. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f",
  4866. "shasum": ""
  4867. },
  4868. "require": {
  4869. "psr/http-message": "^2.0"
  4870. },
  4871. "type": "library",
  4872. "autoload": {
  4873. "psr-4": {
  4874. "Mpdf\\PsrHttpMessageShim\\": "src/"
  4875. }
  4876. },
  4877. "notification-url": "https://packagist.org/downloads/",
  4878. "license": [
  4879. "MIT"
  4880. ],
  4881. "authors": [
  4882. {
  4883. "name": "Mark Dorison",
  4884. "email": "mark@chromatichq.com"
  4885. },
  4886. {
  4887. "name": "Kristofer Widholm",
  4888. "email": "kristofer@chromatichq.com"
  4889. },
  4890. {
  4891. "name": "Nigel Cunningham",
  4892. "email": "nigel.cunningham@technocrat.com.au"
  4893. }
  4894. ],
  4895. "description": "Shim to allow support of different psr/message versions.",
  4896. "support": {
  4897. "issues": "https://github.com/mpdf/psr-http-message-shim/issues",
  4898. "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1"
  4899. },
  4900. "time": "2023-10-02T14:34:03+00:00"
  4901. },
  4902. {
  4903. "name": "mpdf/psr-log-aware-trait",
  4904. "version": "v3.0.0",
  4905. "source": {
  4906. "type": "git",
  4907. "url": "https://github.com/mpdf/psr-log-aware-trait.git",
  4908. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
  4909. },
  4910. "dist": {
  4911. "type": "zip",
  4912. "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
  4913. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
  4914. "shasum": ""
  4915. },
  4916. "require": {
  4917. "psr/log": "^3.0"
  4918. },
  4919. "type": "library",
  4920. "autoload": {
  4921. "psr-4": {
  4922. "Mpdf\\PsrLogAwareTrait\\": "src/"
  4923. }
  4924. },
  4925. "notification-url": "https://packagist.org/downloads/",
  4926. "license": [
  4927. "MIT"
  4928. ],
  4929. "authors": [
  4930. {
  4931. "name": "Mark Dorison",
  4932. "email": "mark@chromatichq.com"
  4933. },
  4934. {
  4935. "name": "Kristofer Widholm",
  4936. "email": "kristofer@chromatichq.com"
  4937. }
  4938. ],
  4939. "description": "Trait to allow support of different psr/log versions.",
  4940. "support": {
  4941. "issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
  4942. "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
  4943. },
  4944. "time": "2023-05-03T06:19:36+00:00"
  4945. },
  4946. {
  4947. "name": "mtdowling/jmespath.php",
  4948. "version": "2.8.0",
  4949. "source": {
  4950. "type": "git",
  4951. "url": "https://github.com/jmespath/jmespath.php.git",
  4952. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4953. },
  4954. "dist": {
  4955. "type": "zip",
  4956. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4957. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4958. "shasum": ""
  4959. },
  4960. "require": {
  4961. "php": "^7.2.5 || ^8.0",
  4962. "symfony/polyfill-mbstring": "^1.17"
  4963. },
  4964. "require-dev": {
  4965. "composer/xdebug-handler": "^3.0.3",
  4966. "phpunit/phpunit": "^8.5.33"
  4967. },
  4968. "bin": [
  4969. "bin/jp.php"
  4970. ],
  4971. "type": "library",
  4972. "extra": {
  4973. "branch-alias": {
  4974. "dev-master": "2.8-dev"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "files": [
  4979. "src/JmesPath.php"
  4980. ],
  4981. "psr-4": {
  4982. "JmesPath\\": "src/"
  4983. }
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "MIT"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "Graham Campbell",
  4992. "email": "hello@gjcampbell.co.uk",
  4993. "homepage": "https://github.com/GrahamCampbell"
  4994. },
  4995. {
  4996. "name": "Michael Dowling",
  4997. "email": "mtdowling@gmail.com",
  4998. "homepage": "https://github.com/mtdowling"
  4999. }
  5000. ],
  5001. "description": "Declaratively specify how to extract elements from a JSON document",
  5002. "keywords": [
  5003. "json",
  5004. "jsonpath"
  5005. ],
  5006. "support": {
  5007. "issues": "https://github.com/jmespath/jmespath.php/issues",
  5008. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  5009. },
  5010. "time": "2024-09-04T18:46:31+00:00"
  5011. },
  5012. {
  5013. "name": "myclabs/deep-copy",
  5014. "version": "1.13.4",
  5015. "source": {
  5016. "type": "git",
  5017. "url": "https://github.com/myclabs/DeepCopy.git",
  5018. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  5019. },
  5020. "dist": {
  5021. "type": "zip",
  5022. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  5023. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  5024. "shasum": ""
  5025. },
  5026. "require": {
  5027. "php": "^7.1 || ^8.0"
  5028. },
  5029. "conflict": {
  5030. "doctrine/collections": "<1.6.8",
  5031. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  5032. },
  5033. "require-dev": {
  5034. "doctrine/collections": "^1.6.8",
  5035. "doctrine/common": "^2.13.3 || ^3.2.2",
  5036. "phpspec/prophecy": "^1.10",
  5037. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5038. },
  5039. "type": "library",
  5040. "autoload": {
  5041. "files": [
  5042. "src/DeepCopy/deep_copy.php"
  5043. ],
  5044. "psr-4": {
  5045. "DeepCopy\\": "src/DeepCopy/"
  5046. }
  5047. },
  5048. "notification-url": "https://packagist.org/downloads/",
  5049. "license": [
  5050. "MIT"
  5051. ],
  5052. "description": "Create deep copies (clones) of your objects",
  5053. "keywords": [
  5054. "clone",
  5055. "copy",
  5056. "duplicate",
  5057. "object",
  5058. "object graph"
  5059. ],
  5060. "support": {
  5061. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5062. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  5063. },
  5064. "funding": [
  5065. {
  5066. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5067. "type": "tidelift"
  5068. }
  5069. ],
  5070. "time": "2025-08-01T08:46:24+00:00"
  5071. },
  5072. {
  5073. "name": "nesbot/carbon",
  5074. "version": "3.11.4",
  5075. "source": {
  5076. "type": "git",
  5077. "url": "https://github.com/CarbonPHP/carbon.git",
  5078. "reference": "e890471a3494740f7d9326d72ce6a8c559ffee60"
  5079. },
  5080. "dist": {
  5081. "type": "zip",
  5082. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/e890471a3494740f7d9326d72ce6a8c559ffee60",
  5083. "reference": "e890471a3494740f7d9326d72ce6a8c559ffee60",
  5084. "shasum": ""
  5085. },
  5086. "require": {
  5087. "carbonphp/carbon-doctrine-types": "<100.0",
  5088. "ext-json": "*",
  5089. "php": "^8.1",
  5090. "psr/clock": "^1.0",
  5091. "symfony/clock": "^6.3.12 || ^7.0 || ^8.0",
  5092. "symfony/polyfill-mbstring": "^1.0",
  5093. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0"
  5094. },
  5095. "provide": {
  5096. "psr/clock-implementation": "1.0"
  5097. },
  5098. "require-dev": {
  5099. "doctrine/dbal": "^3.6.3 || ^4.0",
  5100. "doctrine/orm": "^2.15.2 || ^3.0",
  5101. "friendsofphp/php-cs-fixer": "^v3.87.1",
  5102. "kylekatarnls/multi-tester": "^2.5.3",
  5103. "phpmd/phpmd": "^2.15.0",
  5104. "phpstan/extension-installer": "^1.4.3",
  5105. "phpstan/phpstan": "^2.1.22",
  5106. "phpunit/phpunit": "^10.5.53",
  5107. "squizlabs/php_codesniffer": "^3.13.4 || ^4.0.0"
  5108. },
  5109. "bin": [
  5110. "bin/carbon"
  5111. ],
  5112. "type": "library",
  5113. "extra": {
  5114. "laravel": {
  5115. "providers": [
  5116. "Carbon\\Laravel\\ServiceProvider"
  5117. ]
  5118. },
  5119. "phpstan": {
  5120. "includes": [
  5121. "extension.neon"
  5122. ]
  5123. },
  5124. "branch-alias": {
  5125. "dev-2.x": "2.x-dev",
  5126. "dev-master": "3.x-dev"
  5127. }
  5128. },
  5129. "autoload": {
  5130. "psr-4": {
  5131. "Carbon\\": "src/Carbon/"
  5132. }
  5133. },
  5134. "notification-url": "https://packagist.org/downloads/",
  5135. "license": [
  5136. "MIT"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Brian Nesbitt",
  5141. "email": "brian@nesbot.com",
  5142. "homepage": "https://markido.com"
  5143. },
  5144. {
  5145. "name": "kylekatarnls",
  5146. "homepage": "https://github.com/kylekatarnls"
  5147. }
  5148. ],
  5149. "description": "An API extension for DateTime that supports 281 different languages.",
  5150. "homepage": "https://carbonphp.github.io/carbon/",
  5151. "keywords": [
  5152. "date",
  5153. "datetime",
  5154. "time"
  5155. ],
  5156. "support": {
  5157. "docs": "https://carbonphp.github.io/carbon/guide/getting-started/introduction.html",
  5158. "issues": "https://github.com/CarbonPHP/carbon/issues",
  5159. "source": "https://github.com/CarbonPHP/carbon"
  5160. },
  5161. "funding": [
  5162. {
  5163. "url": "https://github.com/sponsors/kylekatarnls",
  5164. "type": "github"
  5165. },
  5166. {
  5167. "url": "https://opencollective.com/Carbon#sponsor",
  5168. "type": "opencollective"
  5169. },
  5170. {
  5171. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5172. "type": "tidelift"
  5173. }
  5174. ],
  5175. "time": "2026-04-07T09:57:54+00:00"
  5176. },
  5177. {
  5178. "name": "nette/schema",
  5179. "version": "v1.3.5",
  5180. "source": {
  5181. "type": "git",
  5182. "url": "https://github.com/nette/schema.git",
  5183. "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002"
  5184. },
  5185. "dist": {
  5186. "type": "zip",
  5187. "url": "https://api.github.com/repos/nette/schema/zipball/f0ab1a3cda782dbc5da270d28545236aa80c4002",
  5188. "reference": "f0ab1a3cda782dbc5da270d28545236aa80c4002",
  5189. "shasum": ""
  5190. },
  5191. "require": {
  5192. "nette/utils": "^4.0",
  5193. "php": "8.1 - 8.5"
  5194. },
  5195. "require-dev": {
  5196. "nette/phpstan-rules": "^1.0",
  5197. "nette/tester": "^2.6",
  5198. "phpstan/extension-installer": "^1.4@stable",
  5199. "phpstan/phpstan": "^2.1.39@stable",
  5200. "tracy/tracy": "^2.8"
  5201. },
  5202. "type": "library",
  5203. "extra": {
  5204. "branch-alias": {
  5205. "dev-master": "1.3-dev"
  5206. }
  5207. },
  5208. "autoload": {
  5209. "psr-4": {
  5210. "Nette\\": "src"
  5211. },
  5212. "classmap": [
  5213. "src/"
  5214. ]
  5215. },
  5216. "notification-url": "https://packagist.org/downloads/",
  5217. "license": [
  5218. "BSD-3-Clause",
  5219. "GPL-2.0-only",
  5220. "GPL-3.0-only"
  5221. ],
  5222. "authors": [
  5223. {
  5224. "name": "David Grudl",
  5225. "homepage": "https://davidgrudl.com"
  5226. },
  5227. {
  5228. "name": "Nette Community",
  5229. "homepage": "https://nette.org/contributors"
  5230. }
  5231. ],
  5232. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  5233. "homepage": "https://nette.org",
  5234. "keywords": [
  5235. "config",
  5236. "nette"
  5237. ],
  5238. "support": {
  5239. "issues": "https://github.com/nette/schema/issues",
  5240. "source": "https://github.com/nette/schema/tree/v1.3.5"
  5241. },
  5242. "time": "2026-02-23T03:47:12+00:00"
  5243. },
  5244. {
  5245. "name": "nette/utils",
  5246. "version": "v4.1.4",
  5247. "source": {
  5248. "type": "git",
  5249. "url": "https://github.com/nette/utils.git",
  5250. "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7"
  5251. },
  5252. "dist": {
  5253. "type": "zip",
  5254. "url": "https://api.github.com/repos/nette/utils/zipball/7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
  5255. "reference": "7da6c396d7ebe142bc857c20479d5e70a5e1aac7",
  5256. "shasum": ""
  5257. },
  5258. "require": {
  5259. "php": "8.2 - 8.5"
  5260. },
  5261. "conflict": {
  5262. "nette/finder": "<3",
  5263. "nette/schema": "<1.2.2"
  5264. },
  5265. "require-dev": {
  5266. "jetbrains/phpstorm-attributes": "^1.2",
  5267. "nette/phpstan-rules": "^1.0",
  5268. "nette/tester": "^2.5",
  5269. "phpstan/extension-installer": "^1.4@stable",
  5270. "phpstan/phpstan": "^2.1@stable",
  5271. "tracy/tracy": "^2.9"
  5272. },
  5273. "suggest": {
  5274. "ext-gd": "to use Image",
  5275. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5276. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5277. "ext-json": "to use Nette\\Utils\\Json",
  5278. "ext-mbstring": "to use Strings::lower() etc...",
  5279. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5280. },
  5281. "type": "library",
  5282. "extra": {
  5283. "branch-alias": {
  5284. "dev-master": "4.1-dev"
  5285. }
  5286. },
  5287. "autoload": {
  5288. "psr-4": {
  5289. "Nette\\": "src"
  5290. },
  5291. "classmap": [
  5292. "src/"
  5293. ]
  5294. },
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "BSD-3-Clause",
  5298. "GPL-2.0-only",
  5299. "GPL-3.0-only"
  5300. ],
  5301. "authors": [
  5302. {
  5303. "name": "David Grudl",
  5304. "homepage": "https://davidgrudl.com"
  5305. },
  5306. {
  5307. "name": "Nette Community",
  5308. "homepage": "https://nette.org/contributors"
  5309. }
  5310. ],
  5311. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5312. "homepage": "https://nette.org",
  5313. "keywords": [
  5314. "array",
  5315. "core",
  5316. "datetime",
  5317. "images",
  5318. "json",
  5319. "nette",
  5320. "paginator",
  5321. "password",
  5322. "slugify",
  5323. "string",
  5324. "unicode",
  5325. "utf-8",
  5326. "utility",
  5327. "validation"
  5328. ],
  5329. "support": {
  5330. "issues": "https://github.com/nette/utils/issues",
  5331. "source": "https://github.com/nette/utils/tree/v4.1.4"
  5332. },
  5333. "time": "2026-05-11T20:49:54+00:00"
  5334. },
  5335. {
  5336. "name": "nikic/php-parser",
  5337. "version": "v5.7.0",
  5338. "source": {
  5339. "type": "git",
  5340. "url": "https://github.com/nikic/PHP-Parser.git",
  5341. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  5342. },
  5343. "dist": {
  5344. "type": "zip",
  5345. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  5346. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  5347. "shasum": ""
  5348. },
  5349. "require": {
  5350. "ext-ctype": "*",
  5351. "ext-json": "*",
  5352. "ext-tokenizer": "*",
  5353. "php": ">=7.4"
  5354. },
  5355. "require-dev": {
  5356. "ircmaxell/php-yacc": "^0.0.7",
  5357. "phpunit/phpunit": "^9.0"
  5358. },
  5359. "bin": [
  5360. "bin/php-parse"
  5361. ],
  5362. "type": "library",
  5363. "extra": {
  5364. "branch-alias": {
  5365. "dev-master": "5.x-dev"
  5366. }
  5367. },
  5368. "autoload": {
  5369. "psr-4": {
  5370. "PhpParser\\": "lib/PhpParser"
  5371. }
  5372. },
  5373. "notification-url": "https://packagist.org/downloads/",
  5374. "license": [
  5375. "BSD-3-Clause"
  5376. ],
  5377. "authors": [
  5378. {
  5379. "name": "Nikita Popov"
  5380. }
  5381. ],
  5382. "description": "A PHP parser written in PHP",
  5383. "keywords": [
  5384. "parser",
  5385. "php"
  5386. ],
  5387. "support": {
  5388. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5389. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  5390. },
  5391. "time": "2025-12-06T11:56:16+00:00"
  5392. },
  5393. {
  5394. "name": "nunomaduro/termwind",
  5395. "version": "v2.4.0",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://github.com/nunomaduro/termwind.git",
  5399. "reference": "712a31b768f5daea284c2169a7d227031001b9a8"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/712a31b768f5daea284c2169a7d227031001b9a8",
  5404. "reference": "712a31b768f5daea284c2169a7d227031001b9a8",
  5405. "shasum": ""
  5406. },
  5407. "require": {
  5408. "ext-mbstring": "*",
  5409. "php": "^8.2",
  5410. "symfony/console": "^7.4.4 || ^8.0.4"
  5411. },
  5412. "require-dev": {
  5413. "illuminate/console": "^11.47.0",
  5414. "laravel/pint": "^1.27.1",
  5415. "mockery/mockery": "^1.6.12",
  5416. "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.3.2",
  5417. "phpstan/phpstan": "^1.12.32",
  5418. "phpstan/phpstan-strict-rules": "^1.6.2",
  5419. "symfony/var-dumper": "^7.3.5 || ^8.0.4",
  5420. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5421. },
  5422. "type": "library",
  5423. "extra": {
  5424. "laravel": {
  5425. "providers": [
  5426. "Termwind\\Laravel\\TermwindServiceProvider"
  5427. ]
  5428. },
  5429. "branch-alias": {
  5430. "dev-2.x": "2.x-dev"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "files": [
  5435. "src/Functions.php"
  5436. ],
  5437. "psr-4": {
  5438. "Termwind\\": "src/"
  5439. }
  5440. },
  5441. "notification-url": "https://packagist.org/downloads/",
  5442. "license": [
  5443. "MIT"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "Nuno Maduro",
  5448. "email": "enunomaduro@gmail.com"
  5449. }
  5450. ],
  5451. "description": "It's like Tailwind CSS, but for the console.",
  5452. "keywords": [
  5453. "cli",
  5454. "console",
  5455. "css",
  5456. "package",
  5457. "php",
  5458. "style"
  5459. ],
  5460. "support": {
  5461. "issues": "https://github.com/nunomaduro/termwind/issues",
  5462. "source": "https://github.com/nunomaduro/termwind/tree/v2.4.0"
  5463. },
  5464. "funding": [
  5465. {
  5466. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5467. "type": "custom"
  5468. },
  5469. {
  5470. "url": "https://github.com/nunomaduro",
  5471. "type": "github"
  5472. },
  5473. {
  5474. "url": "https://github.com/xiCO2k",
  5475. "type": "github"
  5476. }
  5477. ],
  5478. "time": "2026-02-16T23:10:27+00:00"
  5479. },
  5480. {
  5481. "name": "openspout/openspout",
  5482. "version": "v4.28.5",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/openspout/openspout.git",
  5486. "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/openspout/openspout/zipball/ab05a09fe6fce57c90338f83280648a9786ce36b",
  5491. "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b",
  5492. "shasum": ""
  5493. },
  5494. "require": {
  5495. "ext-dom": "*",
  5496. "ext-fileinfo": "*",
  5497. "ext-filter": "*",
  5498. "ext-libxml": "*",
  5499. "ext-xmlreader": "*",
  5500. "ext-zip": "*",
  5501. "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
  5502. },
  5503. "require-dev": {
  5504. "ext-zlib": "*",
  5505. "friendsofphp/php-cs-fixer": "^3.68.3",
  5506. "infection/infection": "^0.29.10",
  5507. "phpbench/phpbench": "^1.4.0",
  5508. "phpstan/phpstan": "^2.1.2",
  5509. "phpstan/phpstan-phpunit": "^2.0.4",
  5510. "phpstan/phpstan-strict-rules": "^2",
  5511. "phpunit/phpunit": "^11.5.4"
  5512. },
  5513. "suggest": {
  5514. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5515. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5516. },
  5517. "type": "library",
  5518. "extra": {
  5519. "branch-alias": {
  5520. "dev-master": "3.3.x-dev"
  5521. }
  5522. },
  5523. "autoload": {
  5524. "psr-4": {
  5525. "OpenSpout\\": "src/"
  5526. }
  5527. },
  5528. "notification-url": "https://packagist.org/downloads/",
  5529. "license": [
  5530. "MIT"
  5531. ],
  5532. "authors": [
  5533. {
  5534. "name": "Adrien Loison",
  5535. "email": "adrien@box.com"
  5536. }
  5537. ],
  5538. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5539. "homepage": "https://github.com/openspout/openspout",
  5540. "keywords": [
  5541. "OOXML",
  5542. "csv",
  5543. "excel",
  5544. "memory",
  5545. "odf",
  5546. "ods",
  5547. "office",
  5548. "open",
  5549. "php",
  5550. "read",
  5551. "scale",
  5552. "spreadsheet",
  5553. "stream",
  5554. "write",
  5555. "xlsx"
  5556. ],
  5557. "support": {
  5558. "issues": "https://github.com/openspout/openspout/issues",
  5559. "source": "https://github.com/openspout/openspout/tree/v4.28.5"
  5560. },
  5561. "funding": [
  5562. {
  5563. "url": "https://paypal.me/filippotessarotto",
  5564. "type": "custom"
  5565. },
  5566. {
  5567. "url": "https://github.com/Slamdunk",
  5568. "type": "github"
  5569. }
  5570. ],
  5571. "time": "2025-01-30T13:51:11+00:00"
  5572. },
  5573. {
  5574. "name": "owen-it/laravel-auditing",
  5575. "version": "v14.0.0",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/owen-it/laravel-auditing.git",
  5579. "reference": "f92602d1b3f53df29ddd577290e9d735ea707c53"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/owen-it/laravel-auditing/zipball/f92602d1b3f53df29ddd577290e9d735ea707c53",
  5584. "reference": "f92602d1b3f53df29ddd577290e9d735ea707c53",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "ext-json": "*",
  5589. "illuminate/console": "^11.0|^12.0",
  5590. "illuminate/database": "^11.0|^12.0",
  5591. "illuminate/filesystem": "^11.0|^12.0",
  5592. "php": "^8.2"
  5593. },
  5594. "require-dev": {
  5595. "mockery/mockery": "^1.5.1",
  5596. "orchestra/testbench": "^9.0|^10.0",
  5597. "phpunit/phpunit": "^11.0"
  5598. },
  5599. "type": "package",
  5600. "extra": {
  5601. "laravel": {
  5602. "providers": [
  5603. "OwenIt\\Auditing\\AuditingServiceProvider"
  5604. ]
  5605. },
  5606. "branch-alias": {
  5607. "dev-master": "v14-dev"
  5608. }
  5609. },
  5610. "autoload": {
  5611. "psr-4": {
  5612. "OwenIt\\Auditing\\": "src/"
  5613. }
  5614. },
  5615. "notification-url": "https://packagist.org/downloads/",
  5616. "license": [
  5617. "MIT"
  5618. ],
  5619. "authors": [
  5620. {
  5621. "name": "Antério Vieira",
  5622. "email": "anteriovieira@gmail.com"
  5623. },
  5624. {
  5625. "name": "Raphael França",
  5626. "email": "raphaelfrancabsb@gmail.com"
  5627. },
  5628. {
  5629. "name": "Morten D. Hansen",
  5630. "email": "morten@visia.dk"
  5631. }
  5632. ],
  5633. "description": "Audit changes of your Eloquent models in Laravel",
  5634. "homepage": "https://laravel-auditing.com",
  5635. "keywords": [
  5636. "Accountability",
  5637. "Audit",
  5638. "auditing",
  5639. "changes",
  5640. "eloquent",
  5641. "history",
  5642. "laravel",
  5643. "log",
  5644. "logging",
  5645. "lumen",
  5646. "observer",
  5647. "record",
  5648. "revision",
  5649. "tracking"
  5650. ],
  5651. "support": {
  5652. "issues": "https://github.com/owen-it/laravel-auditing/issues",
  5653. "source": "https://github.com/owen-it/laravel-auditing"
  5654. },
  5655. "time": "2025-02-26T16:40:54+00:00"
  5656. },
  5657. {
  5658. "name": "paragonie/constant_time_encoding",
  5659. "version": "v3.1.3",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5663. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  5668. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  5669. "shasum": ""
  5670. },
  5671. "require": {
  5672. "php": "^8"
  5673. },
  5674. "require-dev": {
  5675. "infection/infection": "^0",
  5676. "nikic/php-fuzzer": "^0",
  5677. "phpunit/phpunit": "^9|^10|^11",
  5678. "vimeo/psalm": "^4|^5|^6"
  5679. },
  5680. "type": "library",
  5681. "autoload": {
  5682. "psr-4": {
  5683. "ParagonIE\\ConstantTime\\": "src/"
  5684. }
  5685. },
  5686. "notification-url": "https://packagist.org/downloads/",
  5687. "license": [
  5688. "MIT"
  5689. ],
  5690. "authors": [
  5691. {
  5692. "name": "Paragon Initiative Enterprises",
  5693. "email": "security@paragonie.com",
  5694. "homepage": "https://paragonie.com",
  5695. "role": "Maintainer"
  5696. },
  5697. {
  5698. "name": "Steve 'Sc00bz' Thomas",
  5699. "email": "steve@tobtu.com",
  5700. "homepage": "https://www.tobtu.com",
  5701. "role": "Original Developer"
  5702. }
  5703. ],
  5704. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5705. "keywords": [
  5706. "base16",
  5707. "base32",
  5708. "base32_decode",
  5709. "base32_encode",
  5710. "base64",
  5711. "base64_decode",
  5712. "base64_encode",
  5713. "bin2hex",
  5714. "encoding",
  5715. "hex",
  5716. "hex2bin",
  5717. "rfc4648"
  5718. ],
  5719. "support": {
  5720. "email": "info@paragonie.com",
  5721. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5722. "source": "https://github.com/paragonie/constant_time_encoding"
  5723. },
  5724. "time": "2025-09-24T15:06:41+00:00"
  5725. },
  5726. {
  5727. "name": "paragonie/random_compat",
  5728. "version": "v9.99.100",
  5729. "source": {
  5730. "type": "git",
  5731. "url": "https://github.com/paragonie/random_compat.git",
  5732. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5733. },
  5734. "dist": {
  5735. "type": "zip",
  5736. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5737. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5738. "shasum": ""
  5739. },
  5740. "require": {
  5741. "php": ">= 7"
  5742. },
  5743. "require-dev": {
  5744. "phpunit/phpunit": "4.*|5.*",
  5745. "vimeo/psalm": "^1"
  5746. },
  5747. "suggest": {
  5748. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5749. },
  5750. "type": "library",
  5751. "notification-url": "https://packagist.org/downloads/",
  5752. "license": [
  5753. "MIT"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "Paragon Initiative Enterprises",
  5758. "email": "security@paragonie.com",
  5759. "homepage": "https://paragonie.com"
  5760. }
  5761. ],
  5762. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5763. "keywords": [
  5764. "csprng",
  5765. "polyfill",
  5766. "pseudorandom",
  5767. "random"
  5768. ],
  5769. "support": {
  5770. "email": "info@paragonie.com",
  5771. "issues": "https://github.com/paragonie/random_compat/issues",
  5772. "source": "https://github.com/paragonie/random_compat"
  5773. },
  5774. "time": "2020-10-15T08:29:30+00:00"
  5775. },
  5776. {
  5777. "name": "phpoffice/phpspreadsheet",
  5778. "version": "5.4.0",
  5779. "source": {
  5780. "type": "git",
  5781. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  5782. "reference": "48f2fe37d64c2dece0ef71fb2ac55497566782af"
  5783. },
  5784. "dist": {
  5785. "type": "zip",
  5786. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/48f2fe37d64c2dece0ef71fb2ac55497566782af",
  5787. "reference": "48f2fe37d64c2dece0ef71fb2ac55497566782af",
  5788. "shasum": ""
  5789. },
  5790. "require": {
  5791. "composer/pcre": "^1||^2||^3",
  5792. "ext-ctype": "*",
  5793. "ext-dom": "*",
  5794. "ext-fileinfo": "*",
  5795. "ext-filter": "*",
  5796. "ext-gd": "*",
  5797. "ext-iconv": "*",
  5798. "ext-libxml": "*",
  5799. "ext-mbstring": "*",
  5800. "ext-simplexml": "*",
  5801. "ext-xml": "*",
  5802. "ext-xmlreader": "*",
  5803. "ext-xmlwriter": "*",
  5804. "ext-zip": "*",
  5805. "ext-zlib": "*",
  5806. "maennchen/zipstream-php": "^2.1 || ^3.0",
  5807. "markbaker/complex": "^3.0",
  5808. "markbaker/matrix": "^3.0",
  5809. "php": "^8.1",
  5810. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  5811. },
  5812. "require-dev": {
  5813. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  5814. "dompdf/dompdf": "^2.0 || ^3.0",
  5815. "ext-intl": "*",
  5816. "friendsofphp/php-cs-fixer": "^3.2",
  5817. "mitoteam/jpgraph": "^10.5",
  5818. "mpdf/mpdf": "^8.1.1",
  5819. "phpcompatibility/php-compatibility": "^9.3",
  5820. "phpstan/phpstan": "^1.1 || ^2.0",
  5821. "phpstan/phpstan-deprecation-rules": "^1.0 || ^2.0",
  5822. "phpstan/phpstan-phpunit": "^1.0 || ^2.0",
  5823. "phpunit/phpunit": "^10.5",
  5824. "squizlabs/php_codesniffer": "^3.7",
  5825. "tecnickcom/tcpdf": "^6.5"
  5826. },
  5827. "suggest": {
  5828. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  5829. "ext-intl": "PHP Internationalization Functions, required for NumberFormat Wizard and StringHelper::setLocale()",
  5830. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  5831. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  5832. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  5833. },
  5834. "type": "library",
  5835. "autoload": {
  5836. "psr-4": {
  5837. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  5838. }
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "authors": [
  5845. {
  5846. "name": "Maarten Balliauw",
  5847. "homepage": "https://blog.maartenballiauw.be"
  5848. },
  5849. {
  5850. "name": "Mark Baker",
  5851. "homepage": "https://markbakeruk.net"
  5852. },
  5853. {
  5854. "name": "Franck Lefevre",
  5855. "homepage": "https://rootslabs.net"
  5856. },
  5857. {
  5858. "name": "Erik Tilt"
  5859. },
  5860. {
  5861. "name": "Adrien Crivelli"
  5862. },
  5863. {
  5864. "name": "Owen Leibman"
  5865. }
  5866. ],
  5867. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  5868. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  5869. "keywords": [
  5870. "OpenXML",
  5871. "excel",
  5872. "gnumeric",
  5873. "ods",
  5874. "php",
  5875. "spreadsheet",
  5876. "xls",
  5877. "xlsx"
  5878. ],
  5879. "support": {
  5880. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  5881. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/5.4.0"
  5882. },
  5883. "time": "2026-01-11T04:52:00+00:00"
  5884. },
  5885. {
  5886. "name": "phpoption/phpoption",
  5887. "version": "1.9.5",
  5888. "source": {
  5889. "type": "git",
  5890. "url": "https://github.com/schmittjoh/php-option.git",
  5891. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
  5892. },
  5893. "dist": {
  5894. "type": "zip",
  5895. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
  5896. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
  5897. "shasum": ""
  5898. },
  5899. "require": {
  5900. "php": "^7.2.5 || ^8.0"
  5901. },
  5902. "require-dev": {
  5903. "bamarni/composer-bin-plugin": "^1.8.2",
  5904. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  5905. },
  5906. "type": "library",
  5907. "extra": {
  5908. "bamarni-bin": {
  5909. "bin-links": true,
  5910. "forward-command": false
  5911. },
  5912. "branch-alias": {
  5913. "dev-master": "1.9-dev"
  5914. }
  5915. },
  5916. "autoload": {
  5917. "psr-4": {
  5918. "PhpOption\\": "src/PhpOption/"
  5919. }
  5920. },
  5921. "notification-url": "https://packagist.org/downloads/",
  5922. "license": [
  5923. "Apache-2.0"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "Johannes M. Schmitt",
  5928. "email": "schmittjoh@gmail.com",
  5929. "homepage": "https://github.com/schmittjoh"
  5930. },
  5931. {
  5932. "name": "Graham Campbell",
  5933. "email": "hello@gjcampbell.co.uk",
  5934. "homepage": "https://github.com/GrahamCampbell"
  5935. }
  5936. ],
  5937. "description": "Option Type for PHP",
  5938. "keywords": [
  5939. "language",
  5940. "option",
  5941. "php",
  5942. "type"
  5943. ],
  5944. "support": {
  5945. "issues": "https://github.com/schmittjoh/php-option/issues",
  5946. "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
  5947. },
  5948. "funding": [
  5949. {
  5950. "url": "https://github.com/GrahamCampbell",
  5951. "type": "github"
  5952. },
  5953. {
  5954. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5955. "type": "tidelift"
  5956. }
  5957. ],
  5958. "time": "2025-12-27T19:41:33+00:00"
  5959. },
  5960. {
  5961. "name": "pragmarx/google2fa",
  5962. "version": "v9.0.0",
  5963. "source": {
  5964. "type": "git",
  5965. "url": "https://github.com/antonioribeiro/google2fa.git",
  5966. "reference": "e6bc62dd6ae83acc475f57912e27466019a1f2cf"
  5967. },
  5968. "dist": {
  5969. "type": "zip",
  5970. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/e6bc62dd6ae83acc475f57912e27466019a1f2cf",
  5971. "reference": "e6bc62dd6ae83acc475f57912e27466019a1f2cf",
  5972. "shasum": ""
  5973. },
  5974. "require": {
  5975. "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0",
  5976. "php": "^7.1|^8.0"
  5977. },
  5978. "require-dev": {
  5979. "phpstan/phpstan": "^1.9",
  5980. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  5981. },
  5982. "type": "library",
  5983. "autoload": {
  5984. "psr-4": {
  5985. "PragmaRX\\Google2FA\\": "src/"
  5986. }
  5987. },
  5988. "notification-url": "https://packagist.org/downloads/",
  5989. "license": [
  5990. "MIT"
  5991. ],
  5992. "authors": [
  5993. {
  5994. "name": "Antonio Carlos Ribeiro",
  5995. "email": "acr@antoniocarlosribeiro.com",
  5996. "role": "Creator & Designer"
  5997. }
  5998. ],
  5999. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  6000. "keywords": [
  6001. "2fa",
  6002. "Authentication",
  6003. "Two Factor Authentication",
  6004. "google2fa"
  6005. ],
  6006. "support": {
  6007. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  6008. "source": "https://github.com/antonioribeiro/google2fa/tree/v9.0.0"
  6009. },
  6010. "time": "2025-09-19T22:51:08+00:00"
  6011. },
  6012. {
  6013. "name": "predis/predis",
  6014. "version": "v3.3.0",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://github.com/predis/predis.git",
  6018. "reference": "153097374b39a2f737fe700ebcd725642526cdec"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://api.github.com/repos/predis/predis/zipball/153097374b39a2f737fe700ebcd725642526cdec",
  6023. "reference": "153097374b39a2f737fe700ebcd725642526cdec",
  6024. "shasum": ""
  6025. },
  6026. "require": {
  6027. "php": "^7.2 || ^8.0",
  6028. "psr/http-message": "^1.0|^2.0"
  6029. },
  6030. "require-dev": {
  6031. "friendsofphp/php-cs-fixer": "^3.3",
  6032. "phpstan/phpstan": "^1.9",
  6033. "phpunit/phpcov": "^6.0 || ^8.0",
  6034. "phpunit/phpunit": "^8.0 || ~9.4.4"
  6035. },
  6036. "suggest": {
  6037. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  6038. },
  6039. "type": "library",
  6040. "autoload": {
  6041. "psr-4": {
  6042. "Predis\\": "src/"
  6043. }
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "MIT"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Till Krüss",
  6052. "homepage": "https://till.im",
  6053. "role": "Maintainer"
  6054. }
  6055. ],
  6056. "description": "A flexible and feature-complete Redis/Valkey client for PHP.",
  6057. "homepage": "http://github.com/predis/predis",
  6058. "keywords": [
  6059. "nosql",
  6060. "predis",
  6061. "redis"
  6062. ],
  6063. "support": {
  6064. "issues": "https://github.com/predis/predis/issues",
  6065. "source": "https://github.com/predis/predis/tree/v3.3.0"
  6066. },
  6067. "funding": [
  6068. {
  6069. "url": "https://github.com/sponsors/tillkruss",
  6070. "type": "github"
  6071. }
  6072. ],
  6073. "time": "2025-11-24T17:48:50+00:00"
  6074. },
  6075. {
  6076. "name": "psr/cache",
  6077. "version": "3.0.0",
  6078. "source": {
  6079. "type": "git",
  6080. "url": "https://github.com/php-fig/cache.git",
  6081. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6082. },
  6083. "dist": {
  6084. "type": "zip",
  6085. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6086. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6087. "shasum": ""
  6088. },
  6089. "require": {
  6090. "php": ">=8.0.0"
  6091. },
  6092. "type": "library",
  6093. "extra": {
  6094. "branch-alias": {
  6095. "dev-master": "1.0.x-dev"
  6096. }
  6097. },
  6098. "autoload": {
  6099. "psr-4": {
  6100. "Psr\\Cache\\": "src/"
  6101. }
  6102. },
  6103. "notification-url": "https://packagist.org/downloads/",
  6104. "license": [
  6105. "MIT"
  6106. ],
  6107. "authors": [
  6108. {
  6109. "name": "PHP-FIG",
  6110. "homepage": "https://www.php-fig.org/"
  6111. }
  6112. ],
  6113. "description": "Common interface for caching libraries",
  6114. "keywords": [
  6115. "cache",
  6116. "psr",
  6117. "psr-6"
  6118. ],
  6119. "support": {
  6120. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6121. },
  6122. "time": "2021-02-03T23:26:27+00:00"
  6123. },
  6124. {
  6125. "name": "psr/clock",
  6126. "version": "1.0.0",
  6127. "source": {
  6128. "type": "git",
  6129. "url": "https://github.com/php-fig/clock.git",
  6130. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6131. },
  6132. "dist": {
  6133. "type": "zip",
  6134. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6135. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6136. "shasum": ""
  6137. },
  6138. "require": {
  6139. "php": "^7.0 || ^8.0"
  6140. },
  6141. "type": "library",
  6142. "autoload": {
  6143. "psr-4": {
  6144. "Psr\\Clock\\": "src/"
  6145. }
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "MIT"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "PHP-FIG",
  6154. "homepage": "https://www.php-fig.org/"
  6155. }
  6156. ],
  6157. "description": "Common interface for reading the clock.",
  6158. "homepage": "https://github.com/php-fig/clock",
  6159. "keywords": [
  6160. "clock",
  6161. "now",
  6162. "psr",
  6163. "psr-20",
  6164. "time"
  6165. ],
  6166. "support": {
  6167. "issues": "https://github.com/php-fig/clock/issues",
  6168. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6169. },
  6170. "time": "2022-11-25T14:36:26+00:00"
  6171. },
  6172. {
  6173. "name": "psr/container",
  6174. "version": "2.0.2",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/php-fig/container.git",
  6178. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6183. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "php": ">=7.4.0"
  6188. },
  6189. "type": "library",
  6190. "extra": {
  6191. "branch-alias": {
  6192. "dev-master": "2.0.x-dev"
  6193. }
  6194. },
  6195. "autoload": {
  6196. "psr-4": {
  6197. "Psr\\Container\\": "src/"
  6198. }
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "PHP-FIG",
  6207. "homepage": "https://www.php-fig.org/"
  6208. }
  6209. ],
  6210. "description": "Common Container Interface (PHP FIG PSR-11)",
  6211. "homepage": "https://github.com/php-fig/container",
  6212. "keywords": [
  6213. "PSR-11",
  6214. "container",
  6215. "container-interface",
  6216. "container-interop",
  6217. "psr"
  6218. ],
  6219. "support": {
  6220. "issues": "https://github.com/php-fig/container/issues",
  6221. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6222. },
  6223. "time": "2021-11-05T16:47:00+00:00"
  6224. },
  6225. {
  6226. "name": "psr/event-dispatcher",
  6227. "version": "1.0.0",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/php-fig/event-dispatcher.git",
  6231. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6236. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "php": ">=7.2.0"
  6241. },
  6242. "type": "library",
  6243. "extra": {
  6244. "branch-alias": {
  6245. "dev-master": "1.0.x-dev"
  6246. }
  6247. },
  6248. "autoload": {
  6249. "psr-4": {
  6250. "Psr\\EventDispatcher\\": "src/"
  6251. }
  6252. },
  6253. "notification-url": "https://packagist.org/downloads/",
  6254. "license": [
  6255. "MIT"
  6256. ],
  6257. "authors": [
  6258. {
  6259. "name": "PHP-FIG",
  6260. "homepage": "http://www.php-fig.org/"
  6261. }
  6262. ],
  6263. "description": "Standard interfaces for event handling.",
  6264. "keywords": [
  6265. "events",
  6266. "psr",
  6267. "psr-14"
  6268. ],
  6269. "support": {
  6270. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6271. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6272. },
  6273. "time": "2019-01-08T18:20:26+00:00"
  6274. },
  6275. {
  6276. "name": "psr/http-client",
  6277. "version": "1.0.3",
  6278. "source": {
  6279. "type": "git",
  6280. "url": "https://github.com/php-fig/http-client.git",
  6281. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6282. },
  6283. "dist": {
  6284. "type": "zip",
  6285. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6286. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6287. "shasum": ""
  6288. },
  6289. "require": {
  6290. "php": "^7.0 || ^8.0",
  6291. "psr/http-message": "^1.0 || ^2.0"
  6292. },
  6293. "type": "library",
  6294. "extra": {
  6295. "branch-alias": {
  6296. "dev-master": "1.0.x-dev"
  6297. }
  6298. },
  6299. "autoload": {
  6300. "psr-4": {
  6301. "Psr\\Http\\Client\\": "src/"
  6302. }
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "PHP-FIG",
  6311. "homepage": "https://www.php-fig.org/"
  6312. }
  6313. ],
  6314. "description": "Common interface for HTTP clients",
  6315. "homepage": "https://github.com/php-fig/http-client",
  6316. "keywords": [
  6317. "http",
  6318. "http-client",
  6319. "psr",
  6320. "psr-18"
  6321. ],
  6322. "support": {
  6323. "source": "https://github.com/php-fig/http-client"
  6324. },
  6325. "time": "2023-09-23T14:17:50+00:00"
  6326. },
  6327. {
  6328. "name": "psr/http-factory",
  6329. "version": "1.1.0",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/php-fig/http-factory.git",
  6333. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6338. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6339. "shasum": ""
  6340. },
  6341. "require": {
  6342. "php": ">=7.1",
  6343. "psr/http-message": "^1.0 || ^2.0"
  6344. },
  6345. "type": "library",
  6346. "extra": {
  6347. "branch-alias": {
  6348. "dev-master": "1.0.x-dev"
  6349. }
  6350. },
  6351. "autoload": {
  6352. "psr-4": {
  6353. "Psr\\Http\\Message\\": "src/"
  6354. }
  6355. },
  6356. "notification-url": "https://packagist.org/downloads/",
  6357. "license": [
  6358. "MIT"
  6359. ],
  6360. "authors": [
  6361. {
  6362. "name": "PHP-FIG",
  6363. "homepage": "https://www.php-fig.org/"
  6364. }
  6365. ],
  6366. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6367. "keywords": [
  6368. "factory",
  6369. "http",
  6370. "message",
  6371. "psr",
  6372. "psr-17",
  6373. "psr-7",
  6374. "request",
  6375. "response"
  6376. ],
  6377. "support": {
  6378. "source": "https://github.com/php-fig/http-factory"
  6379. },
  6380. "time": "2024-04-15T12:06:14+00:00"
  6381. },
  6382. {
  6383. "name": "psr/http-message",
  6384. "version": "2.0",
  6385. "source": {
  6386. "type": "git",
  6387. "url": "https://github.com/php-fig/http-message.git",
  6388. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6389. },
  6390. "dist": {
  6391. "type": "zip",
  6392. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6393. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6394. "shasum": ""
  6395. },
  6396. "require": {
  6397. "php": "^7.2 || ^8.0"
  6398. },
  6399. "type": "library",
  6400. "extra": {
  6401. "branch-alias": {
  6402. "dev-master": "2.0.x-dev"
  6403. }
  6404. },
  6405. "autoload": {
  6406. "psr-4": {
  6407. "Psr\\Http\\Message\\": "src/"
  6408. }
  6409. },
  6410. "notification-url": "https://packagist.org/downloads/",
  6411. "license": [
  6412. "MIT"
  6413. ],
  6414. "authors": [
  6415. {
  6416. "name": "PHP-FIG",
  6417. "homepage": "https://www.php-fig.org/"
  6418. }
  6419. ],
  6420. "description": "Common interface for HTTP messages",
  6421. "homepage": "https://github.com/php-fig/http-message",
  6422. "keywords": [
  6423. "http",
  6424. "http-message",
  6425. "psr",
  6426. "psr-7",
  6427. "request",
  6428. "response"
  6429. ],
  6430. "support": {
  6431. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6432. },
  6433. "time": "2023-04-04T09:54:51+00:00"
  6434. },
  6435. {
  6436. "name": "psr/log",
  6437. "version": "3.0.2",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/php-fig/log.git",
  6441. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6446. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "php": ">=8.0.0"
  6451. },
  6452. "type": "library",
  6453. "extra": {
  6454. "branch-alias": {
  6455. "dev-master": "3.x-dev"
  6456. }
  6457. },
  6458. "autoload": {
  6459. "psr-4": {
  6460. "Psr\\Log\\": "src"
  6461. }
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "MIT"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "PHP-FIG",
  6470. "homepage": "https://www.php-fig.org/"
  6471. }
  6472. ],
  6473. "description": "Common interface for logging libraries",
  6474. "homepage": "https://github.com/php-fig/log",
  6475. "keywords": [
  6476. "log",
  6477. "psr",
  6478. "psr-3"
  6479. ],
  6480. "support": {
  6481. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6482. },
  6483. "time": "2024-09-11T13:17:53+00:00"
  6484. },
  6485. {
  6486. "name": "psr/simple-cache",
  6487. "version": "3.0.0",
  6488. "source": {
  6489. "type": "git",
  6490. "url": "https://github.com/php-fig/simple-cache.git",
  6491. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6492. },
  6493. "dist": {
  6494. "type": "zip",
  6495. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6496. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6497. "shasum": ""
  6498. },
  6499. "require": {
  6500. "php": ">=8.0.0"
  6501. },
  6502. "type": "library",
  6503. "extra": {
  6504. "branch-alias": {
  6505. "dev-master": "3.0.x-dev"
  6506. }
  6507. },
  6508. "autoload": {
  6509. "psr-4": {
  6510. "Psr\\SimpleCache\\": "src/"
  6511. }
  6512. },
  6513. "notification-url": "https://packagist.org/downloads/",
  6514. "license": [
  6515. "MIT"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "PHP-FIG",
  6520. "homepage": "https://www.php-fig.org/"
  6521. }
  6522. ],
  6523. "description": "Common interfaces for simple caching",
  6524. "keywords": [
  6525. "cache",
  6526. "caching",
  6527. "psr",
  6528. "psr-16",
  6529. "simple-cache"
  6530. ],
  6531. "support": {
  6532. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6533. },
  6534. "time": "2021-10-29T13:26:27+00:00"
  6535. },
  6536. {
  6537. "name": "psy/psysh",
  6538. "version": "v0.12.18",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/bobthecow/psysh.git",
  6542. "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ddff0ac01beddc251786fe70367cd8bbdb258196",
  6547. "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "ext-json": "*",
  6552. "ext-tokenizer": "*",
  6553. "nikic/php-parser": "^5.0 || ^4.0",
  6554. "php": "^8.0 || ^7.4",
  6555. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6556. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6557. },
  6558. "conflict": {
  6559. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6560. },
  6561. "require-dev": {
  6562. "bamarni/composer-bin-plugin": "^1.2",
  6563. "composer/class-map-generator": "^1.6"
  6564. },
  6565. "suggest": {
  6566. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  6567. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6568. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6569. },
  6570. "bin": [
  6571. "bin/psysh"
  6572. ],
  6573. "type": "library",
  6574. "extra": {
  6575. "bamarni-bin": {
  6576. "bin-links": false,
  6577. "forward-command": false
  6578. },
  6579. "branch-alias": {
  6580. "dev-main": "0.12.x-dev"
  6581. }
  6582. },
  6583. "autoload": {
  6584. "files": [
  6585. "src/functions.php"
  6586. ],
  6587. "psr-4": {
  6588. "Psy\\": "src/"
  6589. }
  6590. },
  6591. "notification-url": "https://packagist.org/downloads/",
  6592. "license": [
  6593. "MIT"
  6594. ],
  6595. "authors": [
  6596. {
  6597. "name": "Justin Hileman",
  6598. "email": "justin@justinhileman.info"
  6599. }
  6600. ],
  6601. "description": "An interactive shell for modern PHP.",
  6602. "homepage": "https://psysh.org",
  6603. "keywords": [
  6604. "REPL",
  6605. "console",
  6606. "interactive",
  6607. "shell"
  6608. ],
  6609. "support": {
  6610. "issues": "https://github.com/bobthecow/psysh/issues",
  6611. "source": "https://github.com/bobthecow/psysh/tree/v0.12.18"
  6612. },
  6613. "time": "2025-12-17T14:35:46+00:00"
  6614. },
  6615. {
  6616. "name": "ralouphie/getallheaders",
  6617. "version": "3.0.3",
  6618. "source": {
  6619. "type": "git",
  6620. "url": "https://github.com/ralouphie/getallheaders.git",
  6621. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6622. },
  6623. "dist": {
  6624. "type": "zip",
  6625. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6626. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6627. "shasum": ""
  6628. },
  6629. "require": {
  6630. "php": ">=5.6"
  6631. },
  6632. "require-dev": {
  6633. "php-coveralls/php-coveralls": "^2.1",
  6634. "phpunit/phpunit": "^5 || ^6.5"
  6635. },
  6636. "type": "library",
  6637. "autoload": {
  6638. "files": [
  6639. "src/getallheaders.php"
  6640. ]
  6641. },
  6642. "notification-url": "https://packagist.org/downloads/",
  6643. "license": [
  6644. "MIT"
  6645. ],
  6646. "authors": [
  6647. {
  6648. "name": "Ralph Khattar",
  6649. "email": "ralph.khattar@gmail.com"
  6650. }
  6651. ],
  6652. "description": "A polyfill for getallheaders.",
  6653. "support": {
  6654. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6655. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6656. },
  6657. "time": "2019-03-08T08:55:37+00:00"
  6658. },
  6659. {
  6660. "name": "ramsey/collection",
  6661. "version": "2.1.1",
  6662. "source": {
  6663. "type": "git",
  6664. "url": "https://github.com/ramsey/collection.git",
  6665. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  6666. },
  6667. "dist": {
  6668. "type": "zip",
  6669. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  6670. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  6671. "shasum": ""
  6672. },
  6673. "require": {
  6674. "php": "^8.1"
  6675. },
  6676. "require-dev": {
  6677. "captainhook/plugin-composer": "^5.3",
  6678. "ergebnis/composer-normalize": "^2.45",
  6679. "fakerphp/faker": "^1.24",
  6680. "hamcrest/hamcrest-php": "^2.0",
  6681. "jangregor/phpstan-prophecy": "^2.1",
  6682. "mockery/mockery": "^1.6",
  6683. "php-parallel-lint/php-console-highlighter": "^1.0",
  6684. "php-parallel-lint/php-parallel-lint": "^1.4",
  6685. "phpspec/prophecy-phpunit": "^2.3",
  6686. "phpstan/extension-installer": "^1.4",
  6687. "phpstan/phpstan": "^2.1",
  6688. "phpstan/phpstan-mockery": "^2.0",
  6689. "phpstan/phpstan-phpunit": "^2.0",
  6690. "phpunit/phpunit": "^10.5",
  6691. "ramsey/coding-standard": "^2.3",
  6692. "ramsey/conventional-commits": "^1.6",
  6693. "roave/security-advisories": "dev-latest"
  6694. },
  6695. "type": "library",
  6696. "extra": {
  6697. "captainhook": {
  6698. "force-install": true
  6699. },
  6700. "ramsey/conventional-commits": {
  6701. "configFile": "conventional-commits.json"
  6702. }
  6703. },
  6704. "autoload": {
  6705. "psr-4": {
  6706. "Ramsey\\Collection\\": "src/"
  6707. }
  6708. },
  6709. "notification-url": "https://packagist.org/downloads/",
  6710. "license": [
  6711. "MIT"
  6712. ],
  6713. "authors": [
  6714. {
  6715. "name": "Ben Ramsey",
  6716. "email": "ben@benramsey.com",
  6717. "homepage": "https://benramsey.com"
  6718. }
  6719. ],
  6720. "description": "A PHP library for representing and manipulating collections.",
  6721. "keywords": [
  6722. "array",
  6723. "collection",
  6724. "hash",
  6725. "map",
  6726. "queue",
  6727. "set"
  6728. ],
  6729. "support": {
  6730. "issues": "https://github.com/ramsey/collection/issues",
  6731. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  6732. },
  6733. "time": "2025-03-22T05:38:12+00:00"
  6734. },
  6735. {
  6736. "name": "ramsey/uuid",
  6737. "version": "4.9.2",
  6738. "source": {
  6739. "type": "git",
  6740. "url": "https://github.com/ramsey/uuid.git",
  6741. "reference": "8429c78ca35a09f27565311b98101e2826affde0"
  6742. },
  6743. "dist": {
  6744. "type": "zip",
  6745. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
  6746. "reference": "8429c78ca35a09f27565311b98101e2826affde0",
  6747. "shasum": ""
  6748. },
  6749. "require": {
  6750. "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
  6751. "php": "^8.0",
  6752. "ramsey/collection": "^1.2 || ^2.0"
  6753. },
  6754. "replace": {
  6755. "rhumsaa/uuid": "self.version"
  6756. },
  6757. "require-dev": {
  6758. "captainhook/captainhook": "^5.25",
  6759. "captainhook/plugin-composer": "^5.3",
  6760. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  6761. "ergebnis/composer-normalize": "^2.47",
  6762. "mockery/mockery": "^1.6",
  6763. "paragonie/random-lib": "^2",
  6764. "php-mock/php-mock": "^2.6",
  6765. "php-mock/php-mock-mockery": "^1.5",
  6766. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  6767. "phpbench/phpbench": "^1.2.14",
  6768. "phpstan/extension-installer": "^1.4",
  6769. "phpstan/phpstan": "^2.1",
  6770. "phpstan/phpstan-mockery": "^2.0",
  6771. "phpstan/phpstan-phpunit": "^2.0",
  6772. "phpunit/phpunit": "^9.6",
  6773. "slevomat/coding-standard": "^8.18",
  6774. "squizlabs/php_codesniffer": "^3.13"
  6775. },
  6776. "suggest": {
  6777. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6778. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6779. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6780. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6781. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6782. },
  6783. "type": "library",
  6784. "extra": {
  6785. "captainhook": {
  6786. "force-install": true
  6787. }
  6788. },
  6789. "autoload": {
  6790. "files": [
  6791. "src/functions.php"
  6792. ],
  6793. "psr-4": {
  6794. "Ramsey\\Uuid\\": "src/"
  6795. }
  6796. },
  6797. "notification-url": "https://packagist.org/downloads/",
  6798. "license": [
  6799. "MIT"
  6800. ],
  6801. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6802. "keywords": [
  6803. "guid",
  6804. "identifier",
  6805. "uuid"
  6806. ],
  6807. "support": {
  6808. "issues": "https://github.com/ramsey/uuid/issues",
  6809. "source": "https://github.com/ramsey/uuid/tree/4.9.2"
  6810. },
  6811. "time": "2025-12-14T04:43:48+00:00"
  6812. },
  6813. {
  6814. "name": "rize/uri-template",
  6815. "version": "0.4.2",
  6816. "source": {
  6817. "type": "git",
  6818. "url": "https://github.com/rize/UriTemplate.git",
  6819. "reference": "7ad22944daede547b4542e1c977ec4a81aa20832"
  6820. },
  6821. "dist": {
  6822. "type": "zip",
  6823. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/7ad22944daede547b4542e1c977ec4a81aa20832",
  6824. "reference": "7ad22944daede547b4542e1c977ec4a81aa20832",
  6825. "shasum": ""
  6826. },
  6827. "require": {
  6828. "php": ">=8.1"
  6829. },
  6830. "require-dev": {
  6831. "friendsofphp/php-cs-fixer": "^3.63",
  6832. "phpstan/phpstan": "^1.12",
  6833. "phpunit/phpunit": "~10.0"
  6834. },
  6835. "type": "library",
  6836. "autoload": {
  6837. "psr-4": {
  6838. "Rize\\": "src/Rize"
  6839. }
  6840. },
  6841. "notification-url": "https://packagist.org/downloads/",
  6842. "license": [
  6843. "MIT"
  6844. ],
  6845. "authors": [
  6846. {
  6847. "name": "Marut K",
  6848. "homepage": "http://twitter.com/rezigned"
  6849. }
  6850. ],
  6851. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  6852. "keywords": [
  6853. "RFC 6570",
  6854. "template",
  6855. "uri"
  6856. ],
  6857. "support": {
  6858. "issues": "https://github.com/rize/UriTemplate/issues",
  6859. "source": "https://github.com/rize/UriTemplate/tree/0.4.2"
  6860. },
  6861. "funding": [
  6862. {
  6863. "url": "https://www.paypal.me/rezigned",
  6864. "type": "custom"
  6865. },
  6866. {
  6867. "url": "https://github.com/rezigned",
  6868. "type": "github"
  6869. },
  6870. {
  6871. "url": "https://opencollective.com/rize-uri-template",
  6872. "type": "open_collective"
  6873. }
  6874. ],
  6875. "time": "2026-05-07T15:30:40+00:00"
  6876. },
  6877. {
  6878. "name": "sabberworm/php-css-parser",
  6879. "version": "v9.1.0",
  6880. "source": {
  6881. "type": "git",
  6882. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  6883. "reference": "1b363fdbdc6dd0ca0f4bf98d3a4d7f388133f1fb"
  6884. },
  6885. "dist": {
  6886. "type": "zip",
  6887. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/1b363fdbdc6dd0ca0f4bf98d3a4d7f388133f1fb",
  6888. "reference": "1b363fdbdc6dd0ca0f4bf98d3a4d7f388133f1fb",
  6889. "shasum": ""
  6890. },
  6891. "require": {
  6892. "ext-iconv": "*",
  6893. "php": "^7.2.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  6894. "thecodingmachine/safe": "^1.3 || ^2.5 || ^3.3"
  6895. },
  6896. "require-dev": {
  6897. "php-parallel-lint/php-parallel-lint": "1.4.0",
  6898. "phpstan/extension-installer": "1.4.3",
  6899. "phpstan/phpstan": "1.12.28 || 2.1.25",
  6900. "phpstan/phpstan-phpunit": "1.4.2 || 2.0.7",
  6901. "phpstan/phpstan-strict-rules": "1.6.2 || 2.0.6",
  6902. "phpunit/phpunit": "8.5.46",
  6903. "rawr/phpunit-data-provider": "3.3.1",
  6904. "rector/rector": "1.2.10 || 2.1.7",
  6905. "rector/type-perfect": "1.0.0 || 2.1.0"
  6906. },
  6907. "suggest": {
  6908. "ext-mbstring": "for parsing UTF-8 CSS"
  6909. },
  6910. "type": "library",
  6911. "extra": {
  6912. "branch-alias": {
  6913. "dev-main": "9.2.x-dev"
  6914. }
  6915. },
  6916. "autoload": {
  6917. "psr-4": {
  6918. "Sabberworm\\CSS\\": "src/"
  6919. }
  6920. },
  6921. "notification-url": "https://packagist.org/downloads/",
  6922. "license": [
  6923. "MIT"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "Raphael Schweikert"
  6928. },
  6929. {
  6930. "name": "Oliver Klee",
  6931. "email": "github@oliverklee.de"
  6932. },
  6933. {
  6934. "name": "Jake Hotson",
  6935. "email": "jake.github@qzdesign.co.uk"
  6936. }
  6937. ],
  6938. "description": "Parser for CSS Files written in PHP",
  6939. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  6940. "keywords": [
  6941. "css",
  6942. "parser",
  6943. "stylesheet"
  6944. ],
  6945. "support": {
  6946. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  6947. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v9.1.0"
  6948. },
  6949. "time": "2025-09-14T07:37:21+00:00"
  6950. },
  6951. {
  6952. "name": "setasign/fpdi",
  6953. "version": "v2.6.4",
  6954. "source": {
  6955. "type": "git",
  6956. "url": "https://github.com/Setasign/FPDI.git",
  6957. "reference": "4b53852fde2734ec6a07e458a085db627c60eada"
  6958. },
  6959. "dist": {
  6960. "type": "zip",
  6961. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/4b53852fde2734ec6a07e458a085db627c60eada",
  6962. "reference": "4b53852fde2734ec6a07e458a085db627c60eada",
  6963. "shasum": ""
  6964. },
  6965. "require": {
  6966. "ext-zlib": "*",
  6967. "php": "^7.1 || ^8.0"
  6968. },
  6969. "conflict": {
  6970. "setasign/tfpdf": "<1.31"
  6971. },
  6972. "require-dev": {
  6973. "phpunit/phpunit": "^7",
  6974. "setasign/fpdf": "~1.8.6",
  6975. "setasign/tfpdf": "~1.33",
  6976. "squizlabs/php_codesniffer": "^3.5",
  6977. "tecnickcom/tcpdf": "^6.8"
  6978. },
  6979. "suggest": {
  6980. "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
  6981. },
  6982. "type": "library",
  6983. "autoload": {
  6984. "psr-4": {
  6985. "setasign\\Fpdi\\": "src/"
  6986. }
  6987. },
  6988. "notification-url": "https://packagist.org/downloads/",
  6989. "license": [
  6990. "MIT"
  6991. ],
  6992. "authors": [
  6993. {
  6994. "name": "Jan Slabon",
  6995. "email": "jan.slabon@setasign.com",
  6996. "homepage": "https://www.setasign.com"
  6997. },
  6998. {
  6999. "name": "Maximilian Kresse",
  7000. "email": "maximilian.kresse@setasign.com",
  7001. "homepage": "https://www.setasign.com"
  7002. }
  7003. ],
  7004. "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
  7005. "homepage": "https://www.setasign.com/fpdi",
  7006. "keywords": [
  7007. "fpdf",
  7008. "fpdi",
  7009. "pdf"
  7010. ],
  7011. "support": {
  7012. "issues": "https://github.com/Setasign/FPDI/issues",
  7013. "source": "https://github.com/Setasign/FPDI/tree/v2.6.4"
  7014. },
  7015. "funding": [
  7016. {
  7017. "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
  7018. "type": "tidelift"
  7019. }
  7020. ],
  7021. "time": "2025-08-05T09:57:14+00:00"
  7022. },
  7023. {
  7024. "name": "spatie/laravel-permission",
  7025. "version": "6.24.0",
  7026. "source": {
  7027. "type": "git",
  7028. "url": "https://github.com/spatie/laravel-permission.git",
  7029. "reference": "76adb1fc8d07c16a0721c35c4cc330b7a12598d7"
  7030. },
  7031. "dist": {
  7032. "type": "zip",
  7033. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/76adb1fc8d07c16a0721c35c4cc330b7a12598d7",
  7034. "reference": "76adb1fc8d07c16a0721c35c4cc330b7a12598d7",
  7035. "shasum": ""
  7036. },
  7037. "require": {
  7038. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0|^12.0",
  7039. "illuminate/container": "^8.12|^9.0|^10.0|^11.0|^12.0",
  7040. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0|^12.0",
  7041. "illuminate/database": "^8.12|^9.0|^10.0|^11.0|^12.0",
  7042. "php": "^8.0"
  7043. },
  7044. "require-dev": {
  7045. "laravel/passport": "^11.0|^12.0",
  7046. "laravel/pint": "^1.0",
  7047. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0",
  7048. "phpunit/phpunit": "^9.4|^10.1|^11.5"
  7049. },
  7050. "type": "library",
  7051. "extra": {
  7052. "laravel": {
  7053. "providers": [
  7054. "Spatie\\Permission\\PermissionServiceProvider"
  7055. ]
  7056. },
  7057. "branch-alias": {
  7058. "dev-main": "6.x-dev",
  7059. "dev-master": "6.x-dev"
  7060. }
  7061. },
  7062. "autoload": {
  7063. "files": [
  7064. "src/helpers.php"
  7065. ],
  7066. "psr-4": {
  7067. "Spatie\\Permission\\": "src"
  7068. }
  7069. },
  7070. "notification-url": "https://packagist.org/downloads/",
  7071. "license": [
  7072. "MIT"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "Freek Van der Herten",
  7077. "email": "freek@spatie.be",
  7078. "homepage": "https://spatie.be",
  7079. "role": "Developer"
  7080. }
  7081. ],
  7082. "description": "Permission handling for Laravel 8.0 and up",
  7083. "homepage": "https://github.com/spatie/laravel-permission",
  7084. "keywords": [
  7085. "acl",
  7086. "laravel",
  7087. "permission",
  7088. "permissions",
  7089. "rbac",
  7090. "roles",
  7091. "security",
  7092. "spatie"
  7093. ],
  7094. "support": {
  7095. "issues": "https://github.com/spatie/laravel-permission/issues",
  7096. "source": "https://github.com/spatie/laravel-permission/tree/6.24.0"
  7097. },
  7098. "funding": [
  7099. {
  7100. "url": "https://github.com/spatie",
  7101. "type": "github"
  7102. }
  7103. ],
  7104. "time": "2025-12-13T21:45:21+00:00"
  7105. },
  7106. {
  7107. "name": "symfony/cache",
  7108. "version": "v7.4.13",
  7109. "source": {
  7110. "type": "git",
  7111. "url": "https://github.com/symfony/cache.git",
  7112. "reference": "4c09e18a92cce126cc0d1155825279fca8cd0673"
  7113. },
  7114. "dist": {
  7115. "type": "zip",
  7116. "url": "https://api.github.com/repos/symfony/cache/zipball/4c09e18a92cce126cc0d1155825279fca8cd0673",
  7117. "reference": "4c09e18a92cce126cc0d1155825279fca8cd0673",
  7118. "shasum": ""
  7119. },
  7120. "require": {
  7121. "php": ">=8.2",
  7122. "psr/cache": "^2.0|^3.0",
  7123. "psr/log": "^1.1|^2|^3",
  7124. "symfony/cache-contracts": "^3.6",
  7125. "symfony/deprecation-contracts": "^2.5|^3",
  7126. "symfony/service-contracts": "^2.5|^3",
  7127. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  7128. },
  7129. "conflict": {
  7130. "doctrine/dbal": "<3.6",
  7131. "ext-redis": "<6.1",
  7132. "ext-relay": "<0.12.1",
  7133. "symfony/dependency-injection": "<6.4",
  7134. "symfony/http-kernel": "<6.4",
  7135. "symfony/var-dumper": "<6.4"
  7136. },
  7137. "provide": {
  7138. "psr/cache-implementation": "2.0|3.0",
  7139. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  7140. "symfony/cache-implementation": "1.1|2.0|3.0"
  7141. },
  7142. "require-dev": {
  7143. "cache/integration-tests": "dev-master",
  7144. "doctrine/dbal": "^3.6|^4",
  7145. "predis/predis": "^1.1|^2.0",
  7146. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7147. "symfony/clock": "^6.4|^7.0|^8.0",
  7148. "symfony/config": "^6.4|^7.0|^8.0",
  7149. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7150. "symfony/filesystem": "^6.4|^7.0|^8.0",
  7151. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7152. "symfony/messenger": "^6.4|^7.0|^8.0",
  7153. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  7154. },
  7155. "type": "library",
  7156. "autoload": {
  7157. "psr-4": {
  7158. "Symfony\\Component\\Cache\\": ""
  7159. },
  7160. "classmap": [
  7161. "Traits/ValueWrapper.php"
  7162. ],
  7163. "exclude-from-classmap": [
  7164. "/Tests/"
  7165. ]
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "MIT"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Nicolas Grekas",
  7174. "email": "p@tchwork.com"
  7175. },
  7176. {
  7177. "name": "Symfony Community",
  7178. "homepage": "https://symfony.com/contributors"
  7179. }
  7180. ],
  7181. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  7182. "homepage": "https://symfony.com",
  7183. "keywords": [
  7184. "caching",
  7185. "psr6"
  7186. ],
  7187. "support": {
  7188. "source": "https://github.com/symfony/cache/tree/v7.4.13"
  7189. },
  7190. "funding": [
  7191. {
  7192. "url": "https://symfony.com/sponsor",
  7193. "type": "custom"
  7194. },
  7195. {
  7196. "url": "https://github.com/fabpot",
  7197. "type": "github"
  7198. },
  7199. {
  7200. "url": "https://github.com/nicolas-grekas",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7205. "type": "tidelift"
  7206. }
  7207. ],
  7208. "time": "2026-05-24T08:43:14+00:00"
  7209. },
  7210. {
  7211. "name": "symfony/cache-contracts",
  7212. "version": "v3.7.0",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/symfony/cache-contracts.git",
  7216. "reference": "225e8a254166bd3442e370c6f50145465db63831"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/225e8a254166bd3442e370c6f50145465db63831",
  7221. "reference": "225e8a254166bd3442e370c6f50145465db63831",
  7222. "shasum": ""
  7223. },
  7224. "require": {
  7225. "php": ">=8.1",
  7226. "psr/cache": "^3.0"
  7227. },
  7228. "type": "library",
  7229. "extra": {
  7230. "thanks": {
  7231. "url": "https://github.com/symfony/contracts",
  7232. "name": "symfony/contracts"
  7233. },
  7234. "branch-alias": {
  7235. "dev-main": "3.7-dev"
  7236. }
  7237. },
  7238. "autoload": {
  7239. "psr-4": {
  7240. "Symfony\\Contracts\\Cache\\": ""
  7241. }
  7242. },
  7243. "notification-url": "https://packagist.org/downloads/",
  7244. "license": [
  7245. "MIT"
  7246. ],
  7247. "authors": [
  7248. {
  7249. "name": "Nicolas Grekas",
  7250. "email": "p@tchwork.com"
  7251. },
  7252. {
  7253. "name": "Symfony Community",
  7254. "homepage": "https://symfony.com/contributors"
  7255. }
  7256. ],
  7257. "description": "Generic abstractions related to caching",
  7258. "homepage": "https://symfony.com",
  7259. "keywords": [
  7260. "abstractions",
  7261. "contracts",
  7262. "decoupling",
  7263. "interfaces",
  7264. "interoperability",
  7265. "standards"
  7266. ],
  7267. "support": {
  7268. "source": "https://github.com/symfony/cache-contracts/tree/v3.7.0"
  7269. },
  7270. "funding": [
  7271. {
  7272. "url": "https://symfony.com/sponsor",
  7273. "type": "custom"
  7274. },
  7275. {
  7276. "url": "https://github.com/fabpot",
  7277. "type": "github"
  7278. },
  7279. {
  7280. "url": "https://github.com/nicolas-grekas",
  7281. "type": "github"
  7282. },
  7283. {
  7284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7285. "type": "tidelift"
  7286. }
  7287. ],
  7288. "time": "2026-05-05T15:33:14+00:00"
  7289. },
  7290. {
  7291. "name": "symfony/clock",
  7292. "version": "v8.1.0",
  7293. "source": {
  7294. "type": "git",
  7295. "url": "https://github.com/symfony/clock.git",
  7296. "reference": "701ef4de9705d6c32292ebee5e8044094a09fbf6"
  7297. },
  7298. "dist": {
  7299. "type": "zip",
  7300. "url": "https://api.github.com/repos/symfony/clock/zipball/701ef4de9705d6c32292ebee5e8044094a09fbf6",
  7301. "reference": "701ef4de9705d6c32292ebee5e8044094a09fbf6",
  7302. "shasum": ""
  7303. },
  7304. "require": {
  7305. "php": ">=8.4.1",
  7306. "psr/clock": "^1.0"
  7307. },
  7308. "provide": {
  7309. "psr/clock-implementation": "1.0"
  7310. },
  7311. "type": "library",
  7312. "autoload": {
  7313. "files": [
  7314. "Resources/now.php"
  7315. ],
  7316. "psr-4": {
  7317. "Symfony\\Component\\Clock\\": ""
  7318. },
  7319. "exclude-from-classmap": [
  7320. "/Tests/"
  7321. ]
  7322. },
  7323. "notification-url": "https://packagist.org/downloads/",
  7324. "license": [
  7325. "MIT"
  7326. ],
  7327. "authors": [
  7328. {
  7329. "name": "Nicolas Grekas",
  7330. "email": "p@tchwork.com"
  7331. },
  7332. {
  7333. "name": "Symfony Community",
  7334. "homepage": "https://symfony.com/contributors"
  7335. }
  7336. ],
  7337. "description": "Decouples applications from the system clock",
  7338. "homepage": "https://symfony.com",
  7339. "keywords": [
  7340. "clock",
  7341. "psr20",
  7342. "time"
  7343. ],
  7344. "support": {
  7345. "source": "https://github.com/symfony/clock/tree/v8.1.0"
  7346. },
  7347. "funding": [
  7348. {
  7349. "url": "https://symfony.com/sponsor",
  7350. "type": "custom"
  7351. },
  7352. {
  7353. "url": "https://github.com/fabpot",
  7354. "type": "github"
  7355. },
  7356. {
  7357. "url": "https://github.com/nicolas-grekas",
  7358. "type": "github"
  7359. },
  7360. {
  7361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7362. "type": "tidelift"
  7363. }
  7364. ],
  7365. "time": "2026-05-29T05:06:50+00:00"
  7366. },
  7367. {
  7368. "name": "symfony/console",
  7369. "version": "v7.4.13",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/symfony/console.git",
  7373. "reference": "85095d2573eaefaf35e40b9513a9bf09f72cd217"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/symfony/console/zipball/85095d2573eaefaf35e40b9513a9bf09f72cd217",
  7378. "reference": "85095d2573eaefaf35e40b9513a9bf09f72cd217",
  7379. "shasum": ""
  7380. },
  7381. "require": {
  7382. "php": ">=8.2",
  7383. "symfony/deprecation-contracts": "^2.5|^3",
  7384. "symfony/polyfill-mbstring": "~1.0",
  7385. "symfony/service-contracts": "^2.5|^3",
  7386. "symfony/string": "^7.2|^8.0"
  7387. },
  7388. "conflict": {
  7389. "symfony/dependency-injection": "<6.4",
  7390. "symfony/dotenv": "<6.4",
  7391. "symfony/event-dispatcher": "<6.4",
  7392. "symfony/lock": "<6.4",
  7393. "symfony/process": "<6.4"
  7394. },
  7395. "provide": {
  7396. "psr/log-implementation": "1.0|2.0|3.0"
  7397. },
  7398. "require-dev": {
  7399. "psr/log": "^1|^2|^3",
  7400. "symfony/config": "^6.4|^7.0|^8.0",
  7401. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7402. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  7403. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  7404. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7405. "symfony/lock": "^6.4|^7.0|^8.0",
  7406. "symfony/messenger": "^6.4|^7.0|^8.0",
  7407. "symfony/process": "^6.4|^7.0|^8.0",
  7408. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  7409. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  7410. },
  7411. "type": "library",
  7412. "autoload": {
  7413. "psr-4": {
  7414. "Symfony\\Component\\Console\\": ""
  7415. },
  7416. "exclude-from-classmap": [
  7417. "/Tests/"
  7418. ]
  7419. },
  7420. "notification-url": "https://packagist.org/downloads/",
  7421. "license": [
  7422. "MIT"
  7423. ],
  7424. "authors": [
  7425. {
  7426. "name": "Fabien Potencier",
  7427. "email": "fabien@symfony.com"
  7428. },
  7429. {
  7430. "name": "Symfony Community",
  7431. "homepage": "https://symfony.com/contributors"
  7432. }
  7433. ],
  7434. "description": "Eases the creation of beautiful and testable command line interfaces",
  7435. "homepage": "https://symfony.com",
  7436. "keywords": [
  7437. "cli",
  7438. "command-line",
  7439. "console",
  7440. "terminal"
  7441. ],
  7442. "support": {
  7443. "source": "https://github.com/symfony/console/tree/v7.4.13"
  7444. },
  7445. "funding": [
  7446. {
  7447. "url": "https://symfony.com/sponsor",
  7448. "type": "custom"
  7449. },
  7450. {
  7451. "url": "https://github.com/fabpot",
  7452. "type": "github"
  7453. },
  7454. {
  7455. "url": "https://github.com/nicolas-grekas",
  7456. "type": "github"
  7457. },
  7458. {
  7459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7460. "type": "tidelift"
  7461. }
  7462. ],
  7463. "time": "2026-05-24T08:56:14+00:00"
  7464. },
  7465. {
  7466. "name": "symfony/css-selector",
  7467. "version": "v8.1.0",
  7468. "source": {
  7469. "type": "git",
  7470. "url": "https://github.com/symfony/css-selector.git",
  7471. "reference": "dc0e2be45c9b5588c82414f02ac574b4b986abcd"
  7472. },
  7473. "dist": {
  7474. "type": "zip",
  7475. "url": "https://api.github.com/repos/symfony/css-selector/zipball/dc0e2be45c9b5588c82414f02ac574b4b986abcd",
  7476. "reference": "dc0e2be45c9b5588c82414f02ac574b4b986abcd",
  7477. "shasum": ""
  7478. },
  7479. "require": {
  7480. "php": ">=8.4.1"
  7481. },
  7482. "type": "library",
  7483. "autoload": {
  7484. "psr-4": {
  7485. "Symfony\\Component\\CssSelector\\": ""
  7486. },
  7487. "exclude-from-classmap": [
  7488. "/Tests/"
  7489. ]
  7490. },
  7491. "notification-url": "https://packagist.org/downloads/",
  7492. "license": [
  7493. "MIT"
  7494. ],
  7495. "authors": [
  7496. {
  7497. "name": "Fabien Potencier",
  7498. "email": "fabien@symfony.com"
  7499. },
  7500. {
  7501. "name": "Jean-François Simon",
  7502. "email": "jeanfrancois.simon@sensiolabs.com"
  7503. },
  7504. {
  7505. "name": "Symfony Community",
  7506. "homepage": "https://symfony.com/contributors"
  7507. }
  7508. ],
  7509. "description": "Converts CSS selectors to XPath expressions",
  7510. "homepage": "https://symfony.com",
  7511. "support": {
  7512. "source": "https://github.com/symfony/css-selector/tree/v8.1.0"
  7513. },
  7514. "funding": [
  7515. {
  7516. "url": "https://symfony.com/sponsor",
  7517. "type": "custom"
  7518. },
  7519. {
  7520. "url": "https://github.com/fabpot",
  7521. "type": "github"
  7522. },
  7523. {
  7524. "url": "https://github.com/nicolas-grekas",
  7525. "type": "github"
  7526. },
  7527. {
  7528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7529. "type": "tidelift"
  7530. }
  7531. ],
  7532. "time": "2026-05-29T05:06:50+00:00"
  7533. },
  7534. {
  7535. "name": "symfony/deprecation-contracts",
  7536. "version": "v3.7.0",
  7537. "source": {
  7538. "type": "git",
  7539. "url": "https://github.com/symfony/deprecation-contracts.git",
  7540. "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b"
  7541. },
  7542. "dist": {
  7543. "type": "zip",
  7544. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/50f59d1f3ca46d41ac911f97a78626b6756af35b",
  7545. "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b",
  7546. "shasum": ""
  7547. },
  7548. "require": {
  7549. "php": ">=8.1"
  7550. },
  7551. "type": "library",
  7552. "extra": {
  7553. "thanks": {
  7554. "url": "https://github.com/symfony/contracts",
  7555. "name": "symfony/contracts"
  7556. },
  7557. "branch-alias": {
  7558. "dev-main": "3.7-dev"
  7559. }
  7560. },
  7561. "autoload": {
  7562. "files": [
  7563. "function.php"
  7564. ]
  7565. },
  7566. "notification-url": "https://packagist.org/downloads/",
  7567. "license": [
  7568. "MIT"
  7569. ],
  7570. "authors": [
  7571. {
  7572. "name": "Nicolas Grekas",
  7573. "email": "p@tchwork.com"
  7574. },
  7575. {
  7576. "name": "Symfony Community",
  7577. "homepage": "https://symfony.com/contributors"
  7578. }
  7579. ],
  7580. "description": "A generic function and convention to trigger deprecation notices",
  7581. "homepage": "https://symfony.com",
  7582. "support": {
  7583. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.0"
  7584. },
  7585. "funding": [
  7586. {
  7587. "url": "https://symfony.com/sponsor",
  7588. "type": "custom"
  7589. },
  7590. {
  7591. "url": "https://github.com/fabpot",
  7592. "type": "github"
  7593. },
  7594. {
  7595. "url": "https://github.com/nicolas-grekas",
  7596. "type": "github"
  7597. },
  7598. {
  7599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7600. "type": "tidelift"
  7601. }
  7602. ],
  7603. "time": "2026-04-13T15:52:40+00:00"
  7604. },
  7605. {
  7606. "name": "symfony/error-handler",
  7607. "version": "v7.4.8",
  7608. "source": {
  7609. "type": "git",
  7610. "url": "https://github.com/symfony/error-handler.git",
  7611. "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa"
  7612. },
  7613. "dist": {
  7614. "type": "zip",
  7615. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa",
  7616. "reference": "8dd79d8af777ee6cba2fd4d98da6ffb839f3c0fa",
  7617. "shasum": ""
  7618. },
  7619. "require": {
  7620. "php": ">=8.2",
  7621. "psr/log": "^1|^2|^3",
  7622. "symfony/polyfill-php85": "^1.32",
  7623. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  7624. },
  7625. "conflict": {
  7626. "symfony/deprecation-contracts": "<2.5",
  7627. "symfony/http-kernel": "<6.4"
  7628. },
  7629. "require-dev": {
  7630. "symfony/console": "^6.4|^7.0|^8.0",
  7631. "symfony/deprecation-contracts": "^2.5|^3",
  7632. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7633. "symfony/serializer": "^6.4|^7.0|^8.0",
  7634. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  7635. },
  7636. "bin": [
  7637. "Resources/bin/patch-type-declarations"
  7638. ],
  7639. "type": "library",
  7640. "autoload": {
  7641. "psr-4": {
  7642. "Symfony\\Component\\ErrorHandler\\": ""
  7643. },
  7644. "exclude-from-classmap": [
  7645. "/Tests/"
  7646. ]
  7647. },
  7648. "notification-url": "https://packagist.org/downloads/",
  7649. "license": [
  7650. "MIT"
  7651. ],
  7652. "authors": [
  7653. {
  7654. "name": "Fabien Potencier",
  7655. "email": "fabien@symfony.com"
  7656. },
  7657. {
  7658. "name": "Symfony Community",
  7659. "homepage": "https://symfony.com/contributors"
  7660. }
  7661. ],
  7662. "description": "Provides tools to manage errors and ease debugging PHP code",
  7663. "homepage": "https://symfony.com",
  7664. "support": {
  7665. "source": "https://github.com/symfony/error-handler/tree/v7.4.8"
  7666. },
  7667. "funding": [
  7668. {
  7669. "url": "https://symfony.com/sponsor",
  7670. "type": "custom"
  7671. },
  7672. {
  7673. "url": "https://github.com/fabpot",
  7674. "type": "github"
  7675. },
  7676. {
  7677. "url": "https://github.com/nicolas-grekas",
  7678. "type": "github"
  7679. },
  7680. {
  7681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7682. "type": "tidelift"
  7683. }
  7684. ],
  7685. "time": "2026-03-24T13:12:05+00:00"
  7686. },
  7687. {
  7688. "name": "symfony/event-dispatcher",
  7689. "version": "v8.1.0",
  7690. "source": {
  7691. "type": "git",
  7692. "url": "https://github.com/symfony/event-dispatcher.git",
  7693. "reference": "f249ae3f680958b6f1f9dd76e5747cf0695b4102"
  7694. },
  7695. "dist": {
  7696. "type": "zip",
  7697. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f249ae3f680958b6f1f9dd76e5747cf0695b4102",
  7698. "reference": "f249ae3f680958b6f1f9dd76e5747cf0695b4102",
  7699. "shasum": ""
  7700. },
  7701. "require": {
  7702. "php": ">=8.4.1",
  7703. "symfony/deprecation-contracts": "^2.5|^3",
  7704. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7705. },
  7706. "conflict": {
  7707. "symfony/security-http": "<7.4",
  7708. "symfony/service-contracts": "<2.5"
  7709. },
  7710. "provide": {
  7711. "psr/event-dispatcher-implementation": "1.0",
  7712. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7713. },
  7714. "require-dev": {
  7715. "psr/log": "^1|^2|^3",
  7716. "symfony/config": "^7.4|^8.0",
  7717. "symfony/dependency-injection": "^7.4|^8.0",
  7718. "symfony/error-handler": "^7.4|^8.0",
  7719. "symfony/expression-language": "^7.4|^8.0",
  7720. "symfony/framework-bundle": "^7.4|^8.0",
  7721. "symfony/http-foundation": "^7.4|^8.0",
  7722. "symfony/service-contracts": "^2.5|^3",
  7723. "symfony/stopwatch": "^7.4|^8.0"
  7724. },
  7725. "type": "library",
  7726. "autoload": {
  7727. "psr-4": {
  7728. "Symfony\\Component\\EventDispatcher\\": ""
  7729. },
  7730. "exclude-from-classmap": [
  7731. "/Tests/"
  7732. ]
  7733. },
  7734. "notification-url": "https://packagist.org/downloads/",
  7735. "license": [
  7736. "MIT"
  7737. ],
  7738. "authors": [
  7739. {
  7740. "name": "Fabien Potencier",
  7741. "email": "fabien@symfony.com"
  7742. },
  7743. {
  7744. "name": "Symfony Community",
  7745. "homepage": "https://symfony.com/contributors"
  7746. }
  7747. ],
  7748. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7749. "homepage": "https://symfony.com",
  7750. "support": {
  7751. "source": "https://github.com/symfony/event-dispatcher/tree/v8.1.0"
  7752. },
  7753. "funding": [
  7754. {
  7755. "url": "https://symfony.com/sponsor",
  7756. "type": "custom"
  7757. },
  7758. {
  7759. "url": "https://github.com/fabpot",
  7760. "type": "github"
  7761. },
  7762. {
  7763. "url": "https://github.com/nicolas-grekas",
  7764. "type": "github"
  7765. },
  7766. {
  7767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7768. "type": "tidelift"
  7769. }
  7770. ],
  7771. "time": "2026-05-29T05:06:50+00:00"
  7772. },
  7773. {
  7774. "name": "symfony/event-dispatcher-contracts",
  7775. "version": "v3.7.0",
  7776. "source": {
  7777. "type": "git",
  7778. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7779. "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32"
  7780. },
  7781. "dist": {
  7782. "type": "zip",
  7783. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/ccba7060602b7fed0b03c85bf025257f76d9ef32",
  7784. "reference": "ccba7060602b7fed0b03c85bf025257f76d9ef32",
  7785. "shasum": ""
  7786. },
  7787. "require": {
  7788. "php": ">=8.1",
  7789. "psr/event-dispatcher": "^1"
  7790. },
  7791. "type": "library",
  7792. "extra": {
  7793. "thanks": {
  7794. "url": "https://github.com/symfony/contracts",
  7795. "name": "symfony/contracts"
  7796. },
  7797. "branch-alias": {
  7798. "dev-main": "3.7-dev"
  7799. }
  7800. },
  7801. "autoload": {
  7802. "psr-4": {
  7803. "Symfony\\Contracts\\EventDispatcher\\": ""
  7804. }
  7805. },
  7806. "notification-url": "https://packagist.org/downloads/",
  7807. "license": [
  7808. "MIT"
  7809. ],
  7810. "authors": [
  7811. {
  7812. "name": "Nicolas Grekas",
  7813. "email": "p@tchwork.com"
  7814. },
  7815. {
  7816. "name": "Symfony Community",
  7817. "homepage": "https://symfony.com/contributors"
  7818. }
  7819. ],
  7820. "description": "Generic abstractions related to dispatching event",
  7821. "homepage": "https://symfony.com",
  7822. "keywords": [
  7823. "abstractions",
  7824. "contracts",
  7825. "decoupling",
  7826. "interfaces",
  7827. "interoperability",
  7828. "standards"
  7829. ],
  7830. "support": {
  7831. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.7.0"
  7832. },
  7833. "funding": [
  7834. {
  7835. "url": "https://symfony.com/sponsor",
  7836. "type": "custom"
  7837. },
  7838. {
  7839. "url": "https://github.com/fabpot",
  7840. "type": "github"
  7841. },
  7842. {
  7843. "url": "https://github.com/nicolas-grekas",
  7844. "type": "github"
  7845. },
  7846. {
  7847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7848. "type": "tidelift"
  7849. }
  7850. ],
  7851. "time": "2026-01-05T13:30:16+00:00"
  7852. },
  7853. {
  7854. "name": "symfony/finder",
  7855. "version": "v7.4.8",
  7856. "source": {
  7857. "type": "git",
  7858. "url": "https://github.com/symfony/finder.git",
  7859. "reference": "e0be088d22278583a82da281886e8c3592fbf149"
  7860. },
  7861. "dist": {
  7862. "type": "zip",
  7863. "url": "https://api.github.com/repos/symfony/finder/zipball/e0be088d22278583a82da281886e8c3592fbf149",
  7864. "reference": "e0be088d22278583a82da281886e8c3592fbf149",
  7865. "shasum": ""
  7866. },
  7867. "require": {
  7868. "php": ">=8.2"
  7869. },
  7870. "require-dev": {
  7871. "symfony/filesystem": "^6.4|^7.0|^8.0"
  7872. },
  7873. "type": "library",
  7874. "autoload": {
  7875. "psr-4": {
  7876. "Symfony\\Component\\Finder\\": ""
  7877. },
  7878. "exclude-from-classmap": [
  7879. "/Tests/"
  7880. ]
  7881. },
  7882. "notification-url": "https://packagist.org/downloads/",
  7883. "license": [
  7884. "MIT"
  7885. ],
  7886. "authors": [
  7887. {
  7888. "name": "Fabien Potencier",
  7889. "email": "fabien@symfony.com"
  7890. },
  7891. {
  7892. "name": "Symfony Community",
  7893. "homepage": "https://symfony.com/contributors"
  7894. }
  7895. ],
  7896. "description": "Finds files and directories via an intuitive fluent interface",
  7897. "homepage": "https://symfony.com",
  7898. "support": {
  7899. "source": "https://github.com/symfony/finder/tree/v7.4.8"
  7900. },
  7901. "funding": [
  7902. {
  7903. "url": "https://symfony.com/sponsor",
  7904. "type": "custom"
  7905. },
  7906. {
  7907. "url": "https://github.com/fabpot",
  7908. "type": "github"
  7909. },
  7910. {
  7911. "url": "https://github.com/nicolas-grekas",
  7912. "type": "github"
  7913. },
  7914. {
  7915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7916. "type": "tidelift"
  7917. }
  7918. ],
  7919. "time": "2026-03-24T13:12:05+00:00"
  7920. },
  7921. {
  7922. "name": "symfony/http-foundation",
  7923. "version": "v7.4.13",
  7924. "source": {
  7925. "type": "git",
  7926. "url": "https://github.com/symfony/http-foundation.git",
  7927. "reference": "bc354f47c62301e990b7874fa662326368508e2c"
  7928. },
  7929. "dist": {
  7930. "type": "zip",
  7931. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/bc354f47c62301e990b7874fa662326368508e2c",
  7932. "reference": "bc354f47c62301e990b7874fa662326368508e2c",
  7933. "shasum": ""
  7934. },
  7935. "require": {
  7936. "php": ">=8.2",
  7937. "symfony/deprecation-contracts": "^2.5|^3",
  7938. "symfony/polyfill-mbstring": "^1.1"
  7939. },
  7940. "conflict": {
  7941. "doctrine/dbal": "<3.6",
  7942. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7943. },
  7944. "require-dev": {
  7945. "doctrine/dbal": "^3.6|^4",
  7946. "predis/predis": "^1.1|^2.0",
  7947. "symfony/cache": "^6.4.12|^7.1.5|^8.0",
  7948. "symfony/clock": "^6.4|^7.0|^8.0",
  7949. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7950. "symfony/expression-language": "^6.4|^7.0|^8.0",
  7951. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  7952. "symfony/mime": "^6.4|^7.0|^8.0",
  7953. "symfony/rate-limiter": "^6.4|^7.0|^8.0"
  7954. },
  7955. "type": "library",
  7956. "autoload": {
  7957. "psr-4": {
  7958. "Symfony\\Component\\HttpFoundation\\": ""
  7959. },
  7960. "exclude-from-classmap": [
  7961. "/Tests/"
  7962. ]
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "MIT"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Fabien Potencier",
  7971. "email": "fabien@symfony.com"
  7972. },
  7973. {
  7974. "name": "Symfony Community",
  7975. "homepage": "https://symfony.com/contributors"
  7976. }
  7977. ],
  7978. "description": "Defines an object-oriented layer for the HTTP specification",
  7979. "homepage": "https://symfony.com",
  7980. "support": {
  7981. "source": "https://github.com/symfony/http-foundation/tree/v7.4.13"
  7982. },
  7983. "funding": [
  7984. {
  7985. "url": "https://symfony.com/sponsor",
  7986. "type": "custom"
  7987. },
  7988. {
  7989. "url": "https://github.com/fabpot",
  7990. "type": "github"
  7991. },
  7992. {
  7993. "url": "https://github.com/nicolas-grekas",
  7994. "type": "github"
  7995. },
  7996. {
  7997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7998. "type": "tidelift"
  7999. }
  8000. ],
  8001. "time": "2026-05-24T11:20:33+00:00"
  8002. },
  8003. {
  8004. "name": "symfony/http-kernel",
  8005. "version": "v7.4.13",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/symfony/http-kernel.git",
  8009. "reference": "9df847980c436451f4f51d1284491bb4356dd989"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9df847980c436451f4f51d1284491bb4356dd989",
  8014. "reference": "9df847980c436451f4f51d1284491bb4356dd989",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "php": ">=8.2",
  8019. "psr/log": "^1|^2|^3",
  8020. "symfony/deprecation-contracts": "^2.5|^3",
  8021. "symfony/error-handler": "^6.4|^7.0|^8.0",
  8022. "symfony/event-dispatcher": "^7.3|^8.0",
  8023. "symfony/http-foundation": "^7.4|^8.0",
  8024. "symfony/polyfill-ctype": "^1.8"
  8025. },
  8026. "conflict": {
  8027. "symfony/browser-kit": "<6.4",
  8028. "symfony/cache": "<6.4",
  8029. "symfony/config": "<6.4",
  8030. "symfony/console": "<6.4",
  8031. "symfony/dependency-injection": "<6.4",
  8032. "symfony/doctrine-bridge": "<6.4",
  8033. "symfony/flex": "<2.10",
  8034. "symfony/form": "<6.4",
  8035. "symfony/http-client": "<6.4",
  8036. "symfony/http-client-contracts": "<2.5",
  8037. "symfony/mailer": "<6.4",
  8038. "symfony/messenger": "<6.4",
  8039. "symfony/translation": "<6.4",
  8040. "symfony/translation-contracts": "<2.5",
  8041. "symfony/twig-bridge": "<6.4",
  8042. "symfony/validator": "<6.4",
  8043. "symfony/var-dumper": "<6.4",
  8044. "twig/twig": "<3.12"
  8045. },
  8046. "provide": {
  8047. "psr/log-implementation": "1.0|2.0|3.0"
  8048. },
  8049. "require-dev": {
  8050. "psr/cache": "^1.0|^2.0|^3.0",
  8051. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  8052. "symfony/clock": "^6.4|^7.0|^8.0",
  8053. "symfony/config": "^6.4|^7.0|^8.0",
  8054. "symfony/console": "^6.4|^7.0|^8.0",
  8055. "symfony/css-selector": "^6.4|^7.0|^8.0",
  8056. "symfony/dependency-injection": "^6.4.1|^7.0.1|^8.0",
  8057. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  8058. "symfony/expression-language": "^6.4|^7.0|^8.0",
  8059. "symfony/finder": "^6.4|^7.0|^8.0",
  8060. "symfony/http-client-contracts": "^2.5|^3",
  8061. "symfony/process": "^6.4|^7.0|^8.0",
  8062. "symfony/property-access": "^7.1|^8.0",
  8063. "symfony/routing": "^6.4|^7.0|^8.0",
  8064. "symfony/serializer": "^7.1|^8.0",
  8065. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  8066. "symfony/translation": "^6.4|^7.0|^8.0",
  8067. "symfony/translation-contracts": "^2.5|^3",
  8068. "symfony/uid": "^6.4|^7.0|^8.0",
  8069. "symfony/validator": "^6.4|^7.0|^8.0",
  8070. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  8071. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  8072. "twig/twig": "^3.12"
  8073. },
  8074. "type": "library",
  8075. "autoload": {
  8076. "psr-4": {
  8077. "Symfony\\Component\\HttpKernel\\": ""
  8078. },
  8079. "exclude-from-classmap": [
  8080. "/Tests/"
  8081. ]
  8082. },
  8083. "notification-url": "https://packagist.org/downloads/",
  8084. "license": [
  8085. "MIT"
  8086. ],
  8087. "authors": [
  8088. {
  8089. "name": "Fabien Potencier",
  8090. "email": "fabien@symfony.com"
  8091. },
  8092. {
  8093. "name": "Symfony Community",
  8094. "homepage": "https://symfony.com/contributors"
  8095. }
  8096. ],
  8097. "description": "Provides a structured process for converting a Request into a Response",
  8098. "homepage": "https://symfony.com",
  8099. "support": {
  8100. "source": "https://github.com/symfony/http-kernel/tree/v7.4.13"
  8101. },
  8102. "funding": [
  8103. {
  8104. "url": "https://symfony.com/sponsor",
  8105. "type": "custom"
  8106. },
  8107. {
  8108. "url": "https://github.com/fabpot",
  8109. "type": "github"
  8110. },
  8111. {
  8112. "url": "https://github.com/nicolas-grekas",
  8113. "type": "github"
  8114. },
  8115. {
  8116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8117. "type": "tidelift"
  8118. }
  8119. ],
  8120. "time": "2026-05-27T08:31:43+00:00"
  8121. },
  8122. {
  8123. "name": "symfony/mailer",
  8124. "version": "v7.4.12",
  8125. "source": {
  8126. "type": "git",
  8127. "url": "https://github.com/symfony/mailer.git",
  8128. "reference": "5cefb712a25f320579615ba9e1942abaeade7dff"
  8129. },
  8130. "dist": {
  8131. "type": "zip",
  8132. "url": "https://api.github.com/repos/symfony/mailer/zipball/5cefb712a25f320579615ba9e1942abaeade7dff",
  8133. "reference": "5cefb712a25f320579615ba9e1942abaeade7dff",
  8134. "shasum": ""
  8135. },
  8136. "require": {
  8137. "egulias/email-validator": "^2.1.10|^3|^4",
  8138. "php": ">=8.2",
  8139. "psr/event-dispatcher": "^1",
  8140. "psr/log": "^1|^2|^3",
  8141. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  8142. "symfony/mime": "^7.2|^8.0",
  8143. "symfony/service-contracts": "^2.5|^3"
  8144. },
  8145. "conflict": {
  8146. "symfony/http-client-contracts": "<2.5",
  8147. "symfony/http-kernel": "<6.4",
  8148. "symfony/messenger": "<6.4",
  8149. "symfony/mime": "<6.4",
  8150. "symfony/twig-bridge": "<6.4"
  8151. },
  8152. "require-dev": {
  8153. "symfony/console": "^6.4|^7.0|^8.0",
  8154. "symfony/http-client": "^6.4|^7.0|^8.0",
  8155. "symfony/messenger": "^6.4|^7.0|^8.0",
  8156. "symfony/twig-bridge": "^6.4|^7.0|^8.0"
  8157. },
  8158. "type": "library",
  8159. "autoload": {
  8160. "psr-4": {
  8161. "Symfony\\Component\\Mailer\\": ""
  8162. },
  8163. "exclude-from-classmap": [
  8164. "/Tests/"
  8165. ]
  8166. },
  8167. "notification-url": "https://packagist.org/downloads/",
  8168. "license": [
  8169. "MIT"
  8170. ],
  8171. "authors": [
  8172. {
  8173. "name": "Fabien Potencier",
  8174. "email": "fabien@symfony.com"
  8175. },
  8176. {
  8177. "name": "Symfony Community",
  8178. "homepage": "https://symfony.com/contributors"
  8179. }
  8180. ],
  8181. "description": "Helps sending emails",
  8182. "homepage": "https://symfony.com",
  8183. "support": {
  8184. "source": "https://github.com/symfony/mailer/tree/v7.4.12"
  8185. },
  8186. "funding": [
  8187. {
  8188. "url": "https://symfony.com/sponsor",
  8189. "type": "custom"
  8190. },
  8191. {
  8192. "url": "https://github.com/fabpot",
  8193. "type": "github"
  8194. },
  8195. {
  8196. "url": "https://github.com/nicolas-grekas",
  8197. "type": "github"
  8198. },
  8199. {
  8200. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8201. "type": "tidelift"
  8202. }
  8203. ],
  8204. "time": "2026-05-20T07:20:23+00:00"
  8205. },
  8206. {
  8207. "name": "symfony/mime",
  8208. "version": "v7.4.13",
  8209. "source": {
  8210. "type": "git",
  8211. "url": "https://github.com/symfony/mime.git",
  8212. "reference": "a845722765c4f6b2ce88beaf4f4479975b186770"
  8213. },
  8214. "dist": {
  8215. "type": "zip",
  8216. "url": "https://api.github.com/repos/symfony/mime/zipball/a845722765c4f6b2ce88beaf4f4479975b186770",
  8217. "reference": "a845722765c4f6b2ce88beaf4f4479975b186770",
  8218. "shasum": ""
  8219. },
  8220. "require": {
  8221. "php": ">=8.2",
  8222. "symfony/deprecation-contracts": "^2.5|^3",
  8223. "symfony/polyfill-intl-idn": "^1.10",
  8224. "symfony/polyfill-mbstring": "^1.0"
  8225. },
  8226. "conflict": {
  8227. "egulias/email-validator": "~3.0.0",
  8228. "phpdocumentor/reflection-docblock": "<5.2|>=7",
  8229. "phpdocumentor/type-resolver": "<1.5.1",
  8230. "symfony/mailer": "<6.4",
  8231. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8232. },
  8233. "require-dev": {
  8234. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8235. "league/html-to-markdown": "^5.0",
  8236. "phpdocumentor/reflection-docblock": "^5.2|^6.0",
  8237. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  8238. "symfony/process": "^6.4|^7.0|^8.0",
  8239. "symfony/property-access": "^6.4|^7.0|^8.0",
  8240. "symfony/property-info": "^6.4|^7.0|^8.0",
  8241. "symfony/serializer": "^6.4.3|^7.0.3|^8.0"
  8242. },
  8243. "type": "library",
  8244. "autoload": {
  8245. "psr-4": {
  8246. "Symfony\\Component\\Mime\\": ""
  8247. },
  8248. "exclude-from-classmap": [
  8249. "/Tests/"
  8250. ]
  8251. },
  8252. "notification-url": "https://packagist.org/downloads/",
  8253. "license": [
  8254. "MIT"
  8255. ],
  8256. "authors": [
  8257. {
  8258. "name": "Fabien Potencier",
  8259. "email": "fabien@symfony.com"
  8260. },
  8261. {
  8262. "name": "Symfony Community",
  8263. "homepage": "https://symfony.com/contributors"
  8264. }
  8265. ],
  8266. "description": "Allows manipulating MIME messages",
  8267. "homepage": "https://symfony.com",
  8268. "keywords": [
  8269. "mime",
  8270. "mime-type"
  8271. ],
  8272. "support": {
  8273. "source": "https://github.com/symfony/mime/tree/v7.4.13"
  8274. },
  8275. "funding": [
  8276. {
  8277. "url": "https://symfony.com/sponsor",
  8278. "type": "custom"
  8279. },
  8280. {
  8281. "url": "https://github.com/fabpot",
  8282. "type": "github"
  8283. },
  8284. {
  8285. "url": "https://github.com/nicolas-grekas",
  8286. "type": "github"
  8287. },
  8288. {
  8289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8290. "type": "tidelift"
  8291. }
  8292. ],
  8293. "time": "2026-05-23T16:22:37+00:00"
  8294. },
  8295. {
  8296. "name": "symfony/polyfill-ctype",
  8297. "version": "v1.37.0",
  8298. "source": {
  8299. "type": "git",
  8300. "url": "https://github.com/symfony/polyfill-ctype.git",
  8301. "reference": "141046a8f9477948ff284fa65be2095baafb94f2"
  8302. },
  8303. "dist": {
  8304. "type": "zip",
  8305. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
  8306. "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
  8307. "shasum": ""
  8308. },
  8309. "require": {
  8310. "php": ">=7.2"
  8311. },
  8312. "provide": {
  8313. "ext-ctype": "*"
  8314. },
  8315. "suggest": {
  8316. "ext-ctype": "For best performance"
  8317. },
  8318. "type": "library",
  8319. "extra": {
  8320. "thanks": {
  8321. "url": "https://github.com/symfony/polyfill",
  8322. "name": "symfony/polyfill"
  8323. }
  8324. },
  8325. "autoload": {
  8326. "files": [
  8327. "bootstrap.php"
  8328. ],
  8329. "psr-4": {
  8330. "Symfony\\Polyfill\\Ctype\\": ""
  8331. }
  8332. },
  8333. "notification-url": "https://packagist.org/downloads/",
  8334. "license": [
  8335. "MIT"
  8336. ],
  8337. "authors": [
  8338. {
  8339. "name": "Gert de Pagter",
  8340. "email": "BackEndTea@gmail.com"
  8341. },
  8342. {
  8343. "name": "Symfony Community",
  8344. "homepage": "https://symfony.com/contributors"
  8345. }
  8346. ],
  8347. "description": "Symfony polyfill for ctype functions",
  8348. "homepage": "https://symfony.com",
  8349. "keywords": [
  8350. "compatibility",
  8351. "ctype",
  8352. "polyfill",
  8353. "portable"
  8354. ],
  8355. "support": {
  8356. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
  8357. },
  8358. "funding": [
  8359. {
  8360. "url": "https://symfony.com/sponsor",
  8361. "type": "custom"
  8362. },
  8363. {
  8364. "url": "https://github.com/fabpot",
  8365. "type": "github"
  8366. },
  8367. {
  8368. "url": "https://github.com/nicolas-grekas",
  8369. "type": "github"
  8370. },
  8371. {
  8372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8373. "type": "tidelift"
  8374. }
  8375. ],
  8376. "time": "2026-04-10T16:19:22+00:00"
  8377. },
  8378. {
  8379. "name": "symfony/polyfill-deepclone",
  8380. "version": "v1.37.0",
  8381. "source": {
  8382. "type": "git",
  8383. "url": "https://github.com/symfony/polyfill-deepclone.git",
  8384. "reference": "2ca9e9e75ead5174f2b44613a646bdc9338b8eb4"
  8385. },
  8386. "dist": {
  8387. "type": "zip",
  8388. "url": "https://api.github.com/repos/symfony/polyfill-deepclone/zipball/2ca9e9e75ead5174f2b44613a646bdc9338b8eb4",
  8389. "reference": "2ca9e9e75ead5174f2b44613a646bdc9338b8eb4",
  8390. "shasum": ""
  8391. },
  8392. "require": {
  8393. "php": ">=8.1"
  8394. },
  8395. "provide": {
  8396. "ext-deepclone": "*"
  8397. },
  8398. "suggest": {
  8399. "ext-deepclone": "For best performance"
  8400. },
  8401. "type": "library",
  8402. "extra": {
  8403. "thanks": {
  8404. "url": "https://github.com/symfony/polyfill",
  8405. "name": "symfony/polyfill"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "files": [
  8410. "bootstrap.php"
  8411. ],
  8412. "psr-4": {
  8413. "Symfony\\Polyfill\\DeepClone\\": ""
  8414. },
  8415. "classmap": [
  8416. "Resources/stubs"
  8417. ]
  8418. },
  8419. "notification-url": "https://packagist.org/downloads/",
  8420. "license": [
  8421. "MIT"
  8422. ],
  8423. "authors": [
  8424. {
  8425. "name": "Nicolas Grekas",
  8426. "email": "p@tchwork.com"
  8427. },
  8428. {
  8429. "name": "Symfony Community",
  8430. "homepage": "https://symfony.com/contributors"
  8431. }
  8432. ],
  8433. "description": "Symfony polyfill for the deepclone extension",
  8434. "homepage": "https://symfony.com",
  8435. "keywords": [
  8436. "compatibility",
  8437. "deepclone",
  8438. "polyfill",
  8439. "portable",
  8440. "shim"
  8441. ],
  8442. "support": {
  8443. "source": "https://github.com/symfony/polyfill-deepclone/tree/v1.37.0"
  8444. },
  8445. "funding": [
  8446. {
  8447. "url": "https://symfony.com/sponsor",
  8448. "type": "custom"
  8449. },
  8450. {
  8451. "url": "https://github.com/fabpot",
  8452. "type": "github"
  8453. },
  8454. {
  8455. "url": "https://github.com/nicolas-grekas",
  8456. "type": "github"
  8457. },
  8458. {
  8459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8460. "type": "tidelift"
  8461. }
  8462. ],
  8463. "time": "2026-04-26T13:03:27+00:00"
  8464. },
  8465. {
  8466. "name": "symfony/polyfill-intl-grapheme",
  8467. "version": "v1.38.1",
  8468. "source": {
  8469. "type": "git",
  8470. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8471. "reference": "e9247d281d694a5120554d9afaf54e070e88a603"
  8472. },
  8473. "dist": {
  8474. "type": "zip",
  8475. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/e9247d281d694a5120554d9afaf54e070e88a603",
  8476. "reference": "e9247d281d694a5120554d9afaf54e070e88a603",
  8477. "shasum": ""
  8478. },
  8479. "require": {
  8480. "php": ">=7.2"
  8481. },
  8482. "suggest": {
  8483. "ext-intl": "For best performance"
  8484. },
  8485. "type": "library",
  8486. "extra": {
  8487. "thanks": {
  8488. "url": "https://github.com/symfony/polyfill",
  8489. "name": "symfony/polyfill"
  8490. }
  8491. },
  8492. "autoload": {
  8493. "files": [
  8494. "bootstrap.php"
  8495. ],
  8496. "psr-4": {
  8497. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8498. }
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "MIT"
  8503. ],
  8504. "authors": [
  8505. {
  8506. "name": "Nicolas Grekas",
  8507. "email": "p@tchwork.com"
  8508. },
  8509. {
  8510. "name": "Symfony Community",
  8511. "homepage": "https://symfony.com/contributors"
  8512. }
  8513. ],
  8514. "description": "Symfony polyfill for intl's grapheme_* functions",
  8515. "homepage": "https://symfony.com",
  8516. "keywords": [
  8517. "compatibility",
  8518. "grapheme",
  8519. "intl",
  8520. "polyfill",
  8521. "portable",
  8522. "shim"
  8523. ],
  8524. "support": {
  8525. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.38.1"
  8526. },
  8527. "funding": [
  8528. {
  8529. "url": "https://symfony.com/sponsor",
  8530. "type": "custom"
  8531. },
  8532. {
  8533. "url": "https://github.com/fabpot",
  8534. "type": "github"
  8535. },
  8536. {
  8537. "url": "https://github.com/nicolas-grekas",
  8538. "type": "github"
  8539. },
  8540. {
  8541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8542. "type": "tidelift"
  8543. }
  8544. ],
  8545. "time": "2026-05-26T05:58:03+00:00"
  8546. },
  8547. {
  8548. "name": "symfony/polyfill-intl-idn",
  8549. "version": "v1.38.1",
  8550. "source": {
  8551. "type": "git",
  8552. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8553. "reference": "dc21118016c039a66235cf93d96b435ffb282412"
  8554. },
  8555. "dist": {
  8556. "type": "zip",
  8557. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/dc21118016c039a66235cf93d96b435ffb282412",
  8558. "reference": "dc21118016c039a66235cf93d96b435ffb282412",
  8559. "shasum": ""
  8560. },
  8561. "require": {
  8562. "php": ">=7.2",
  8563. "symfony/polyfill-intl-normalizer": "^1.10"
  8564. },
  8565. "suggest": {
  8566. "ext-intl": "For best performance"
  8567. },
  8568. "type": "library",
  8569. "extra": {
  8570. "thanks": {
  8571. "url": "https://github.com/symfony/polyfill",
  8572. "name": "symfony/polyfill"
  8573. }
  8574. },
  8575. "autoload": {
  8576. "files": [
  8577. "bootstrap.php"
  8578. ],
  8579. "psr-4": {
  8580. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8581. }
  8582. },
  8583. "notification-url": "https://packagist.org/downloads/",
  8584. "license": [
  8585. "MIT"
  8586. ],
  8587. "authors": [
  8588. {
  8589. "name": "Laurent Bassin",
  8590. "email": "laurent@bassin.info"
  8591. },
  8592. {
  8593. "name": "Trevor Rowbotham",
  8594. "email": "trevor.rowbotham@pm.me"
  8595. },
  8596. {
  8597. "name": "Symfony Community",
  8598. "homepage": "https://symfony.com/contributors"
  8599. }
  8600. ],
  8601. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8602. "homepage": "https://symfony.com",
  8603. "keywords": [
  8604. "compatibility",
  8605. "idn",
  8606. "intl",
  8607. "polyfill",
  8608. "portable",
  8609. "shim"
  8610. ],
  8611. "support": {
  8612. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.38.1"
  8613. },
  8614. "funding": [
  8615. {
  8616. "url": "https://symfony.com/sponsor",
  8617. "type": "custom"
  8618. },
  8619. {
  8620. "url": "https://github.com/fabpot",
  8621. "type": "github"
  8622. },
  8623. {
  8624. "url": "https://github.com/nicolas-grekas",
  8625. "type": "github"
  8626. },
  8627. {
  8628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8629. "type": "tidelift"
  8630. }
  8631. ],
  8632. "time": "2026-05-25T15:22:23+00:00"
  8633. },
  8634. {
  8635. "name": "symfony/polyfill-intl-normalizer",
  8636. "version": "v1.38.0",
  8637. "source": {
  8638. "type": "git",
  8639. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8640. "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b"
  8641. },
  8642. "dist": {
  8643. "type": "zip",
  8644. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/2d446c214bdbe5b71bde5011b060a05fece3ae6b",
  8645. "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b",
  8646. "shasum": ""
  8647. },
  8648. "require": {
  8649. "php": ">=7.2"
  8650. },
  8651. "suggest": {
  8652. "ext-intl": "For best performance"
  8653. },
  8654. "type": "library",
  8655. "extra": {
  8656. "thanks": {
  8657. "url": "https://github.com/symfony/polyfill",
  8658. "name": "symfony/polyfill"
  8659. }
  8660. },
  8661. "autoload": {
  8662. "files": [
  8663. "bootstrap.php"
  8664. ],
  8665. "psr-4": {
  8666. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8667. },
  8668. "classmap": [
  8669. "Resources/stubs"
  8670. ]
  8671. },
  8672. "notification-url": "https://packagist.org/downloads/",
  8673. "license": [
  8674. "MIT"
  8675. ],
  8676. "authors": [
  8677. {
  8678. "name": "Nicolas Grekas",
  8679. "email": "p@tchwork.com"
  8680. },
  8681. {
  8682. "name": "Symfony Community",
  8683. "homepage": "https://symfony.com/contributors"
  8684. }
  8685. ],
  8686. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8687. "homepage": "https://symfony.com",
  8688. "keywords": [
  8689. "compatibility",
  8690. "intl",
  8691. "normalizer",
  8692. "polyfill",
  8693. "portable",
  8694. "shim"
  8695. ],
  8696. "support": {
  8697. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.38.0"
  8698. },
  8699. "funding": [
  8700. {
  8701. "url": "https://symfony.com/sponsor",
  8702. "type": "custom"
  8703. },
  8704. {
  8705. "url": "https://github.com/fabpot",
  8706. "type": "github"
  8707. },
  8708. {
  8709. "url": "https://github.com/nicolas-grekas",
  8710. "type": "github"
  8711. },
  8712. {
  8713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8714. "type": "tidelift"
  8715. }
  8716. ],
  8717. "time": "2026-05-25T13:48:31+00:00"
  8718. },
  8719. {
  8720. "name": "symfony/polyfill-mbstring",
  8721. "version": "v1.38.1",
  8722. "source": {
  8723. "type": "git",
  8724. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8725. "reference": "14c5439eec4ccff081ac14eca2dc57feb2a66d92"
  8726. },
  8727. "dist": {
  8728. "type": "zip",
  8729. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/14c5439eec4ccff081ac14eca2dc57feb2a66d92",
  8730. "reference": "14c5439eec4ccff081ac14eca2dc57feb2a66d92",
  8731. "shasum": ""
  8732. },
  8733. "require": {
  8734. "ext-iconv": "*",
  8735. "php": ">=7.2"
  8736. },
  8737. "provide": {
  8738. "ext-mbstring": "*"
  8739. },
  8740. "suggest": {
  8741. "ext-mbstring": "For best performance"
  8742. },
  8743. "type": "library",
  8744. "extra": {
  8745. "thanks": {
  8746. "url": "https://github.com/symfony/polyfill",
  8747. "name": "symfony/polyfill"
  8748. }
  8749. },
  8750. "autoload": {
  8751. "files": [
  8752. "bootstrap.php"
  8753. ],
  8754. "psr-4": {
  8755. "Symfony\\Polyfill\\Mbstring\\": ""
  8756. }
  8757. },
  8758. "notification-url": "https://packagist.org/downloads/",
  8759. "license": [
  8760. "MIT"
  8761. ],
  8762. "authors": [
  8763. {
  8764. "name": "Nicolas Grekas",
  8765. "email": "p@tchwork.com"
  8766. },
  8767. {
  8768. "name": "Symfony Community",
  8769. "homepage": "https://symfony.com/contributors"
  8770. }
  8771. ],
  8772. "description": "Symfony polyfill for the Mbstring extension",
  8773. "homepage": "https://symfony.com",
  8774. "keywords": [
  8775. "compatibility",
  8776. "mbstring",
  8777. "polyfill",
  8778. "portable",
  8779. "shim"
  8780. ],
  8781. "support": {
  8782. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.1"
  8783. },
  8784. "funding": [
  8785. {
  8786. "url": "https://symfony.com/sponsor",
  8787. "type": "custom"
  8788. },
  8789. {
  8790. "url": "https://github.com/fabpot",
  8791. "type": "github"
  8792. },
  8793. {
  8794. "url": "https://github.com/nicolas-grekas",
  8795. "type": "github"
  8796. },
  8797. {
  8798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8799. "type": "tidelift"
  8800. }
  8801. ],
  8802. "time": "2026-05-26T12:51:13+00:00"
  8803. },
  8804. {
  8805. "name": "symfony/polyfill-php80",
  8806. "version": "v1.37.0",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/symfony/polyfill-php80.git",
  8810. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  8815. "reference": "dfb55726c3a76ea3b6459fcfda1ec2d80a682411",
  8816. "shasum": ""
  8817. },
  8818. "require": {
  8819. "php": ">=7.2"
  8820. },
  8821. "type": "library",
  8822. "extra": {
  8823. "thanks": {
  8824. "url": "https://github.com/symfony/polyfill",
  8825. "name": "symfony/polyfill"
  8826. }
  8827. },
  8828. "autoload": {
  8829. "files": [
  8830. "bootstrap.php"
  8831. ],
  8832. "psr-4": {
  8833. "Symfony\\Polyfill\\Php80\\": ""
  8834. },
  8835. "classmap": [
  8836. "Resources/stubs"
  8837. ]
  8838. },
  8839. "notification-url": "https://packagist.org/downloads/",
  8840. "license": [
  8841. "MIT"
  8842. ],
  8843. "authors": [
  8844. {
  8845. "name": "Ion Bazan",
  8846. "email": "ion.bazan@gmail.com"
  8847. },
  8848. {
  8849. "name": "Nicolas Grekas",
  8850. "email": "p@tchwork.com"
  8851. },
  8852. {
  8853. "name": "Symfony Community",
  8854. "homepage": "https://symfony.com/contributors"
  8855. }
  8856. ],
  8857. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8858. "homepage": "https://symfony.com",
  8859. "keywords": [
  8860. "compatibility",
  8861. "polyfill",
  8862. "portable",
  8863. "shim"
  8864. ],
  8865. "support": {
  8866. "source": "https://github.com/symfony/polyfill-php80/tree/v1.37.0"
  8867. },
  8868. "funding": [
  8869. {
  8870. "url": "https://symfony.com/sponsor",
  8871. "type": "custom"
  8872. },
  8873. {
  8874. "url": "https://github.com/fabpot",
  8875. "type": "github"
  8876. },
  8877. {
  8878. "url": "https://github.com/nicolas-grekas",
  8879. "type": "github"
  8880. },
  8881. {
  8882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8883. "type": "tidelift"
  8884. }
  8885. ],
  8886. "time": "2026-04-10T16:19:22+00:00"
  8887. },
  8888. {
  8889. "name": "symfony/polyfill-php83",
  8890. "version": "v1.38.1",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/symfony/polyfill-php83.git",
  8894. "reference": "8339098cae28673c15cce00d80734af0453054e2"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/8339098cae28673c15cce00d80734af0453054e2",
  8899. "reference": "8339098cae28673c15cce00d80734af0453054e2",
  8900. "shasum": ""
  8901. },
  8902. "require": {
  8903. "php": ">=7.2"
  8904. },
  8905. "type": "library",
  8906. "extra": {
  8907. "thanks": {
  8908. "url": "https://github.com/symfony/polyfill",
  8909. "name": "symfony/polyfill"
  8910. }
  8911. },
  8912. "autoload": {
  8913. "files": [
  8914. "bootstrap.php"
  8915. ],
  8916. "psr-4": {
  8917. "Symfony\\Polyfill\\Php83\\": ""
  8918. },
  8919. "classmap": [
  8920. "Resources/stubs"
  8921. ]
  8922. },
  8923. "notification-url": "https://packagist.org/downloads/",
  8924. "license": [
  8925. "MIT"
  8926. ],
  8927. "authors": [
  8928. {
  8929. "name": "Nicolas Grekas",
  8930. "email": "p@tchwork.com"
  8931. },
  8932. {
  8933. "name": "Symfony Community",
  8934. "homepage": "https://symfony.com/contributors"
  8935. }
  8936. ],
  8937. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8938. "homepage": "https://symfony.com",
  8939. "keywords": [
  8940. "compatibility",
  8941. "polyfill",
  8942. "portable",
  8943. "shim"
  8944. ],
  8945. "support": {
  8946. "source": "https://github.com/symfony/polyfill-php83/tree/v1.38.1"
  8947. },
  8948. "funding": [
  8949. {
  8950. "url": "https://symfony.com/sponsor",
  8951. "type": "custom"
  8952. },
  8953. {
  8954. "url": "https://github.com/fabpot",
  8955. "type": "github"
  8956. },
  8957. {
  8958. "url": "https://github.com/nicolas-grekas",
  8959. "type": "github"
  8960. },
  8961. {
  8962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8963. "type": "tidelift"
  8964. }
  8965. ],
  8966. "time": "2026-05-26T12:51:13+00:00"
  8967. },
  8968. {
  8969. "name": "symfony/polyfill-php84",
  8970. "version": "v1.38.1",
  8971. "source": {
  8972. "type": "git",
  8973. "url": "https://github.com/symfony/polyfill-php84.git",
  8974. "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa"
  8975. },
  8976. "dist": {
  8977. "type": "zip",
  8978. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa",
  8979. "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa",
  8980. "shasum": ""
  8981. },
  8982. "require": {
  8983. "php": ">=7.2"
  8984. },
  8985. "type": "library",
  8986. "extra": {
  8987. "thanks": {
  8988. "url": "https://github.com/symfony/polyfill",
  8989. "name": "symfony/polyfill"
  8990. }
  8991. },
  8992. "autoload": {
  8993. "files": [
  8994. "bootstrap.php"
  8995. ],
  8996. "psr-4": {
  8997. "Symfony\\Polyfill\\Php84\\": ""
  8998. },
  8999. "classmap": [
  9000. "Resources/stubs"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "MIT"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Nicolas Grekas",
  9010. "email": "p@tchwork.com"
  9011. },
  9012. {
  9013. "name": "Symfony Community",
  9014. "homepage": "https://symfony.com/contributors"
  9015. }
  9016. ],
  9017. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  9018. "homepage": "https://symfony.com",
  9019. "keywords": [
  9020. "compatibility",
  9021. "polyfill",
  9022. "portable",
  9023. "shim"
  9024. ],
  9025. "support": {
  9026. "source": "https://github.com/symfony/polyfill-php84/tree/v1.38.1"
  9027. },
  9028. "funding": [
  9029. {
  9030. "url": "https://symfony.com/sponsor",
  9031. "type": "custom"
  9032. },
  9033. {
  9034. "url": "https://github.com/fabpot",
  9035. "type": "github"
  9036. },
  9037. {
  9038. "url": "https://github.com/nicolas-grekas",
  9039. "type": "github"
  9040. },
  9041. {
  9042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9043. "type": "tidelift"
  9044. }
  9045. ],
  9046. "time": "2026-05-26T12:51:13+00:00"
  9047. },
  9048. {
  9049. "name": "symfony/polyfill-php85",
  9050. "version": "v1.38.1",
  9051. "source": {
  9052. "type": "git",
  9053. "url": "https://github.com/symfony/polyfill-php85.git",
  9054. "reference": "ba2ba04f3352cfa2dcbbcb90aee13ed967f505b1"
  9055. },
  9056. "dist": {
  9057. "type": "zip",
  9058. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/ba2ba04f3352cfa2dcbbcb90aee13ed967f505b1",
  9059. "reference": "ba2ba04f3352cfa2dcbbcb90aee13ed967f505b1",
  9060. "shasum": ""
  9061. },
  9062. "require": {
  9063. "php": ">=7.2"
  9064. },
  9065. "type": "library",
  9066. "extra": {
  9067. "thanks": {
  9068. "url": "https://github.com/symfony/polyfill",
  9069. "name": "symfony/polyfill"
  9070. }
  9071. },
  9072. "autoload": {
  9073. "files": [
  9074. "bootstrap.php"
  9075. ],
  9076. "psr-4": {
  9077. "Symfony\\Polyfill\\Php85\\": ""
  9078. },
  9079. "classmap": [
  9080. "Resources/stubs"
  9081. ]
  9082. },
  9083. "notification-url": "https://packagist.org/downloads/",
  9084. "license": [
  9085. "MIT"
  9086. ],
  9087. "authors": [
  9088. {
  9089. "name": "Nicolas Grekas",
  9090. "email": "p@tchwork.com"
  9091. },
  9092. {
  9093. "name": "Symfony Community",
  9094. "homepage": "https://symfony.com/contributors"
  9095. }
  9096. ],
  9097. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  9098. "homepage": "https://symfony.com",
  9099. "keywords": [
  9100. "compatibility",
  9101. "polyfill",
  9102. "portable",
  9103. "shim"
  9104. ],
  9105. "support": {
  9106. "source": "https://github.com/symfony/polyfill-php85/tree/v1.38.1"
  9107. },
  9108. "funding": [
  9109. {
  9110. "url": "https://symfony.com/sponsor",
  9111. "type": "custom"
  9112. },
  9113. {
  9114. "url": "https://github.com/fabpot",
  9115. "type": "github"
  9116. },
  9117. {
  9118. "url": "https://github.com/nicolas-grekas",
  9119. "type": "github"
  9120. },
  9121. {
  9122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9123. "type": "tidelift"
  9124. }
  9125. ],
  9126. "time": "2026-05-26T02:25:22+00:00"
  9127. },
  9128. {
  9129. "name": "symfony/polyfill-uuid",
  9130. "version": "v1.37.0",
  9131. "source": {
  9132. "type": "git",
  9133. "url": "https://github.com/symfony/polyfill-uuid.git",
  9134. "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94"
  9135. },
  9136. "dist": {
  9137. "type": "zip",
  9138. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/26dfec253c4cf3e51b541b52ddf7e42cb0908e94",
  9139. "reference": "26dfec253c4cf3e51b541b52ddf7e42cb0908e94",
  9140. "shasum": ""
  9141. },
  9142. "require": {
  9143. "php": ">=7.2"
  9144. },
  9145. "provide": {
  9146. "ext-uuid": "*"
  9147. },
  9148. "suggest": {
  9149. "ext-uuid": "For best performance"
  9150. },
  9151. "type": "library",
  9152. "extra": {
  9153. "thanks": {
  9154. "url": "https://github.com/symfony/polyfill",
  9155. "name": "symfony/polyfill"
  9156. }
  9157. },
  9158. "autoload": {
  9159. "files": [
  9160. "bootstrap.php"
  9161. ],
  9162. "psr-4": {
  9163. "Symfony\\Polyfill\\Uuid\\": ""
  9164. }
  9165. },
  9166. "notification-url": "https://packagist.org/downloads/",
  9167. "license": [
  9168. "MIT"
  9169. ],
  9170. "authors": [
  9171. {
  9172. "name": "Grégoire Pineau",
  9173. "email": "lyrixx@lyrixx.info"
  9174. },
  9175. {
  9176. "name": "Symfony Community",
  9177. "homepage": "https://symfony.com/contributors"
  9178. }
  9179. ],
  9180. "description": "Symfony polyfill for uuid functions",
  9181. "homepage": "https://symfony.com",
  9182. "keywords": [
  9183. "compatibility",
  9184. "polyfill",
  9185. "portable",
  9186. "uuid"
  9187. ],
  9188. "support": {
  9189. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.37.0"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://symfony.com/sponsor",
  9194. "type": "custom"
  9195. },
  9196. {
  9197. "url": "https://github.com/fabpot",
  9198. "type": "github"
  9199. },
  9200. {
  9201. "url": "https://github.com/nicolas-grekas",
  9202. "type": "github"
  9203. },
  9204. {
  9205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9206. "type": "tidelift"
  9207. }
  9208. ],
  9209. "time": "2026-04-10T16:19:22+00:00"
  9210. },
  9211. {
  9212. "name": "symfony/process",
  9213. "version": "v7.4.13",
  9214. "source": {
  9215. "type": "git",
  9216. "url": "https://github.com/symfony/process.git",
  9217. "reference": "f5804be144caceb570f6747519999636b664f24c"
  9218. },
  9219. "dist": {
  9220. "type": "zip",
  9221. "url": "https://api.github.com/repos/symfony/process/zipball/f5804be144caceb570f6747519999636b664f24c",
  9222. "reference": "f5804be144caceb570f6747519999636b664f24c",
  9223. "shasum": ""
  9224. },
  9225. "require": {
  9226. "php": ">=8.2"
  9227. },
  9228. "type": "library",
  9229. "autoload": {
  9230. "psr-4": {
  9231. "Symfony\\Component\\Process\\": ""
  9232. },
  9233. "exclude-from-classmap": [
  9234. "/Tests/"
  9235. ]
  9236. },
  9237. "notification-url": "https://packagist.org/downloads/",
  9238. "license": [
  9239. "MIT"
  9240. ],
  9241. "authors": [
  9242. {
  9243. "name": "Fabien Potencier",
  9244. "email": "fabien@symfony.com"
  9245. },
  9246. {
  9247. "name": "Symfony Community",
  9248. "homepage": "https://symfony.com/contributors"
  9249. }
  9250. ],
  9251. "description": "Executes commands in sub-processes",
  9252. "homepage": "https://symfony.com",
  9253. "support": {
  9254. "source": "https://github.com/symfony/process/tree/v7.4.13"
  9255. },
  9256. "funding": [
  9257. {
  9258. "url": "https://symfony.com/sponsor",
  9259. "type": "custom"
  9260. },
  9261. {
  9262. "url": "https://github.com/fabpot",
  9263. "type": "github"
  9264. },
  9265. {
  9266. "url": "https://github.com/nicolas-grekas",
  9267. "type": "github"
  9268. },
  9269. {
  9270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9271. "type": "tidelift"
  9272. }
  9273. ],
  9274. "time": "2026-05-23T16:05:06+00:00"
  9275. },
  9276. {
  9277. "name": "symfony/routing",
  9278. "version": "v7.4.13",
  9279. "source": {
  9280. "type": "git",
  9281. "url": "https://github.com/symfony/routing.git",
  9282. "reference": "3a162171bb008e5e0f15dce6581373a4c0e8390d"
  9283. },
  9284. "dist": {
  9285. "type": "zip",
  9286. "url": "https://api.github.com/repos/symfony/routing/zipball/3a162171bb008e5e0f15dce6581373a4c0e8390d",
  9287. "reference": "3a162171bb008e5e0f15dce6581373a4c0e8390d",
  9288. "shasum": ""
  9289. },
  9290. "require": {
  9291. "php": ">=8.2",
  9292. "symfony/deprecation-contracts": "^2.5|^3"
  9293. },
  9294. "conflict": {
  9295. "symfony/config": "<6.4",
  9296. "symfony/dependency-injection": "<6.4",
  9297. "symfony/yaml": "<6.4"
  9298. },
  9299. "require-dev": {
  9300. "psr/log": "^1|^2|^3",
  9301. "symfony/config": "^6.4|^7.0|^8.0",
  9302. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  9303. "symfony/expression-language": "^6.4|^7.0|^8.0",
  9304. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  9305. "symfony/yaml": "^6.4|^7.0|^8.0"
  9306. },
  9307. "type": "library",
  9308. "autoload": {
  9309. "psr-4": {
  9310. "Symfony\\Component\\Routing\\": ""
  9311. },
  9312. "exclude-from-classmap": [
  9313. "/Tests/"
  9314. ]
  9315. },
  9316. "notification-url": "https://packagist.org/downloads/",
  9317. "license": [
  9318. "MIT"
  9319. ],
  9320. "authors": [
  9321. {
  9322. "name": "Fabien Potencier",
  9323. "email": "fabien@symfony.com"
  9324. },
  9325. {
  9326. "name": "Symfony Community",
  9327. "homepage": "https://symfony.com/contributors"
  9328. }
  9329. ],
  9330. "description": "Maps an HTTP request to a set of configuration variables",
  9331. "homepage": "https://symfony.com",
  9332. "keywords": [
  9333. "router",
  9334. "routing",
  9335. "uri",
  9336. "url"
  9337. ],
  9338. "support": {
  9339. "source": "https://github.com/symfony/routing/tree/v7.4.13"
  9340. },
  9341. "funding": [
  9342. {
  9343. "url": "https://symfony.com/sponsor",
  9344. "type": "custom"
  9345. },
  9346. {
  9347. "url": "https://github.com/fabpot",
  9348. "type": "github"
  9349. },
  9350. {
  9351. "url": "https://github.com/nicolas-grekas",
  9352. "type": "github"
  9353. },
  9354. {
  9355. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9356. "type": "tidelift"
  9357. }
  9358. ],
  9359. "time": "2026-05-24T11:20:33+00:00"
  9360. },
  9361. {
  9362. "name": "symfony/service-contracts",
  9363. "version": "v3.7.0",
  9364. "source": {
  9365. "type": "git",
  9366. "url": "https://github.com/symfony/service-contracts.git",
  9367. "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a"
  9368. },
  9369. "dist": {
  9370. "type": "zip",
  9371. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d25d82433a80eba6aa0e6c24b61d7370d99e444a",
  9372. "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a",
  9373. "shasum": ""
  9374. },
  9375. "require": {
  9376. "php": ">=8.1",
  9377. "psr/container": "^1.1|^2.0",
  9378. "symfony/deprecation-contracts": "^2.5|^3"
  9379. },
  9380. "conflict": {
  9381. "ext-psr": "<1.1|>=2"
  9382. },
  9383. "type": "library",
  9384. "extra": {
  9385. "thanks": {
  9386. "url": "https://github.com/symfony/contracts",
  9387. "name": "symfony/contracts"
  9388. },
  9389. "branch-alias": {
  9390. "dev-main": "3.7-dev"
  9391. }
  9392. },
  9393. "autoload": {
  9394. "psr-4": {
  9395. "Symfony\\Contracts\\Service\\": ""
  9396. },
  9397. "exclude-from-classmap": [
  9398. "/Test/"
  9399. ]
  9400. },
  9401. "notification-url": "https://packagist.org/downloads/",
  9402. "license": [
  9403. "MIT"
  9404. ],
  9405. "authors": [
  9406. {
  9407. "name": "Nicolas Grekas",
  9408. "email": "p@tchwork.com"
  9409. },
  9410. {
  9411. "name": "Symfony Community",
  9412. "homepage": "https://symfony.com/contributors"
  9413. }
  9414. ],
  9415. "description": "Generic abstractions related to writing services",
  9416. "homepage": "https://symfony.com",
  9417. "keywords": [
  9418. "abstractions",
  9419. "contracts",
  9420. "decoupling",
  9421. "interfaces",
  9422. "interoperability",
  9423. "standards"
  9424. ],
  9425. "support": {
  9426. "source": "https://github.com/symfony/service-contracts/tree/v3.7.0"
  9427. },
  9428. "funding": [
  9429. {
  9430. "url": "https://symfony.com/sponsor",
  9431. "type": "custom"
  9432. },
  9433. {
  9434. "url": "https://github.com/fabpot",
  9435. "type": "github"
  9436. },
  9437. {
  9438. "url": "https://github.com/nicolas-grekas",
  9439. "type": "github"
  9440. },
  9441. {
  9442. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9443. "type": "tidelift"
  9444. }
  9445. ],
  9446. "time": "2026-03-28T09:44:51+00:00"
  9447. },
  9448. {
  9449. "name": "symfony/string",
  9450. "version": "v8.1.0",
  9451. "source": {
  9452. "type": "git",
  9453. "url": "https://github.com/symfony/string.git",
  9454. "reference": "afd5944f4005862d961efb85c8bbd5c523c4e3c9"
  9455. },
  9456. "dist": {
  9457. "type": "zip",
  9458. "url": "https://api.github.com/repos/symfony/string/zipball/afd5944f4005862d961efb85c8bbd5c523c4e3c9",
  9459. "reference": "afd5944f4005862d961efb85c8bbd5c523c4e3c9",
  9460. "shasum": ""
  9461. },
  9462. "require": {
  9463. "php": ">=8.4.1",
  9464. "symfony/polyfill-ctype": "^1.8",
  9465. "symfony/polyfill-intl-grapheme": "^1.33",
  9466. "symfony/polyfill-intl-normalizer": "^1.0",
  9467. "symfony/polyfill-mbstring": "^1.0"
  9468. },
  9469. "conflict": {
  9470. "symfony/translation-contracts": "<2.5"
  9471. },
  9472. "require-dev": {
  9473. "symfony/emoji": "^7.4|^8.0",
  9474. "symfony/http-client": "^7.4|^8.0",
  9475. "symfony/intl": "^7.4|^8.0",
  9476. "symfony/translation-contracts": "^2.5|^3.0",
  9477. "symfony/var-exporter": "^7.4|^8.0"
  9478. },
  9479. "type": "library",
  9480. "autoload": {
  9481. "files": [
  9482. "Resources/functions.php"
  9483. ],
  9484. "psr-4": {
  9485. "Symfony\\Component\\String\\": ""
  9486. },
  9487. "exclude-from-classmap": [
  9488. "/Tests/"
  9489. ]
  9490. },
  9491. "notification-url": "https://packagist.org/downloads/",
  9492. "license": [
  9493. "MIT"
  9494. ],
  9495. "authors": [
  9496. {
  9497. "name": "Nicolas Grekas",
  9498. "email": "p@tchwork.com"
  9499. },
  9500. {
  9501. "name": "Symfony Community",
  9502. "homepage": "https://symfony.com/contributors"
  9503. }
  9504. ],
  9505. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9506. "homepage": "https://symfony.com",
  9507. "keywords": [
  9508. "grapheme",
  9509. "i18n",
  9510. "string",
  9511. "unicode",
  9512. "utf-8",
  9513. "utf8"
  9514. ],
  9515. "support": {
  9516. "source": "https://github.com/symfony/string/tree/v8.1.0"
  9517. },
  9518. "funding": [
  9519. {
  9520. "url": "https://symfony.com/sponsor",
  9521. "type": "custom"
  9522. },
  9523. {
  9524. "url": "https://github.com/fabpot",
  9525. "type": "github"
  9526. },
  9527. {
  9528. "url": "https://github.com/nicolas-grekas",
  9529. "type": "github"
  9530. },
  9531. {
  9532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9533. "type": "tidelift"
  9534. }
  9535. ],
  9536. "time": "2026-05-29T05:06:50+00:00"
  9537. },
  9538. {
  9539. "name": "symfony/translation",
  9540. "version": "v8.1.0",
  9541. "source": {
  9542. "type": "git",
  9543. "url": "https://github.com/symfony/translation.git",
  9544. "reference": "b2bd012ca28c4acae830ee1206a5b6e35dd99693"
  9545. },
  9546. "dist": {
  9547. "type": "zip",
  9548. "url": "https://api.github.com/repos/symfony/translation/zipball/b2bd012ca28c4acae830ee1206a5b6e35dd99693",
  9549. "reference": "b2bd012ca28c4acae830ee1206a5b6e35dd99693",
  9550. "shasum": ""
  9551. },
  9552. "require": {
  9553. "php": ">=8.4.1",
  9554. "symfony/polyfill-mbstring": "^1.0",
  9555. "symfony/translation-contracts": "^3.6.1"
  9556. },
  9557. "conflict": {
  9558. "nikic/php-parser": "<5.0",
  9559. "symfony/http-client-contracts": "<2.5",
  9560. "symfony/service-contracts": "<2.5"
  9561. },
  9562. "provide": {
  9563. "symfony/translation-implementation": "2.3|3.0"
  9564. },
  9565. "require-dev": {
  9566. "nikic/php-parser": "^5.0",
  9567. "psr/log": "^1|^2|^3",
  9568. "symfony/config": "^7.4|^8.0",
  9569. "symfony/console": "^7.4|^8.0",
  9570. "symfony/dependency-injection": "^7.4|^8.0",
  9571. "symfony/finder": "^7.4|^8.0",
  9572. "symfony/http-client-contracts": "^2.5|^3.0",
  9573. "symfony/http-kernel": "^7.4|^8.0",
  9574. "symfony/intl": "^7.4|^8.0",
  9575. "symfony/polyfill-intl-icu": "^1.21",
  9576. "symfony/routing": "^7.4|^8.0",
  9577. "symfony/service-contracts": "^2.5|^3",
  9578. "symfony/yaml": "^7.4|^8.0"
  9579. },
  9580. "type": "library",
  9581. "autoload": {
  9582. "files": [
  9583. "Resources/functions.php"
  9584. ],
  9585. "psr-4": {
  9586. "Symfony\\Component\\Translation\\": ""
  9587. },
  9588. "exclude-from-classmap": [
  9589. "/Tests/"
  9590. ]
  9591. },
  9592. "notification-url": "https://packagist.org/downloads/",
  9593. "license": [
  9594. "MIT"
  9595. ],
  9596. "authors": [
  9597. {
  9598. "name": "Fabien Potencier",
  9599. "email": "fabien@symfony.com"
  9600. },
  9601. {
  9602. "name": "Symfony Community",
  9603. "homepage": "https://symfony.com/contributors"
  9604. }
  9605. ],
  9606. "description": "Provides tools to internationalize your application",
  9607. "homepage": "https://symfony.com",
  9608. "support": {
  9609. "source": "https://github.com/symfony/translation/tree/v8.1.0"
  9610. },
  9611. "funding": [
  9612. {
  9613. "url": "https://symfony.com/sponsor",
  9614. "type": "custom"
  9615. },
  9616. {
  9617. "url": "https://github.com/fabpot",
  9618. "type": "github"
  9619. },
  9620. {
  9621. "url": "https://github.com/nicolas-grekas",
  9622. "type": "github"
  9623. },
  9624. {
  9625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9626. "type": "tidelift"
  9627. }
  9628. ],
  9629. "time": "2026-05-29T05:06:50+00:00"
  9630. },
  9631. {
  9632. "name": "symfony/translation-contracts",
  9633. "version": "v3.7.0",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/symfony/translation-contracts.git",
  9637. "reference": "0ab302977a952b42fd51475c4ebac81f8da0a95d"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/0ab302977a952b42fd51475c4ebac81f8da0a95d",
  9642. "reference": "0ab302977a952b42fd51475c4ebac81f8da0a95d",
  9643. "shasum": ""
  9644. },
  9645. "require": {
  9646. "php": ">=8.1"
  9647. },
  9648. "type": "library",
  9649. "extra": {
  9650. "thanks": {
  9651. "url": "https://github.com/symfony/contracts",
  9652. "name": "symfony/contracts"
  9653. },
  9654. "branch-alias": {
  9655. "dev-main": "3.7-dev"
  9656. }
  9657. },
  9658. "autoload": {
  9659. "psr-4": {
  9660. "Symfony\\Contracts\\Translation\\": ""
  9661. },
  9662. "exclude-from-classmap": [
  9663. "/Test/"
  9664. ]
  9665. },
  9666. "notification-url": "https://packagist.org/downloads/",
  9667. "license": [
  9668. "MIT"
  9669. ],
  9670. "authors": [
  9671. {
  9672. "name": "Nicolas Grekas",
  9673. "email": "p@tchwork.com"
  9674. },
  9675. {
  9676. "name": "Symfony Community",
  9677. "homepage": "https://symfony.com/contributors"
  9678. }
  9679. ],
  9680. "description": "Generic abstractions related to translation",
  9681. "homepage": "https://symfony.com",
  9682. "keywords": [
  9683. "abstractions",
  9684. "contracts",
  9685. "decoupling",
  9686. "interfaces",
  9687. "interoperability",
  9688. "standards"
  9689. ],
  9690. "support": {
  9691. "source": "https://github.com/symfony/translation-contracts/tree/v3.7.0"
  9692. },
  9693. "funding": [
  9694. {
  9695. "url": "https://symfony.com/sponsor",
  9696. "type": "custom"
  9697. },
  9698. {
  9699. "url": "https://github.com/fabpot",
  9700. "type": "github"
  9701. },
  9702. {
  9703. "url": "https://github.com/nicolas-grekas",
  9704. "type": "github"
  9705. },
  9706. {
  9707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9708. "type": "tidelift"
  9709. }
  9710. ],
  9711. "time": "2026-01-05T13:30:16+00:00"
  9712. },
  9713. {
  9714. "name": "symfony/uid",
  9715. "version": "v7.4.9",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/symfony/uid.git",
  9719. "reference": "2676b524340abcfe4d6151ec698463cebafee439"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/symfony/uid/zipball/2676b524340abcfe4d6151ec698463cebafee439",
  9724. "reference": "2676b524340abcfe4d6151ec698463cebafee439",
  9725. "shasum": ""
  9726. },
  9727. "require": {
  9728. "php": ">=8.2",
  9729. "symfony/polyfill-uuid": "^1.15"
  9730. },
  9731. "require-dev": {
  9732. "symfony/console": "^6.4|^7.0|^8.0"
  9733. },
  9734. "type": "library",
  9735. "autoload": {
  9736. "psr-4": {
  9737. "Symfony\\Component\\Uid\\": ""
  9738. },
  9739. "exclude-from-classmap": [
  9740. "/Tests/"
  9741. ]
  9742. },
  9743. "notification-url": "https://packagist.org/downloads/",
  9744. "license": [
  9745. "MIT"
  9746. ],
  9747. "authors": [
  9748. {
  9749. "name": "Grégoire Pineau",
  9750. "email": "lyrixx@lyrixx.info"
  9751. },
  9752. {
  9753. "name": "Nicolas Grekas",
  9754. "email": "p@tchwork.com"
  9755. },
  9756. {
  9757. "name": "Symfony Community",
  9758. "homepage": "https://symfony.com/contributors"
  9759. }
  9760. ],
  9761. "description": "Provides an object-oriented API to generate and represent UIDs",
  9762. "homepage": "https://symfony.com",
  9763. "keywords": [
  9764. "UID",
  9765. "ulid",
  9766. "uuid"
  9767. ],
  9768. "support": {
  9769. "source": "https://github.com/symfony/uid/tree/v7.4.9"
  9770. },
  9771. "funding": [
  9772. {
  9773. "url": "https://symfony.com/sponsor",
  9774. "type": "custom"
  9775. },
  9776. {
  9777. "url": "https://github.com/fabpot",
  9778. "type": "github"
  9779. },
  9780. {
  9781. "url": "https://github.com/nicolas-grekas",
  9782. "type": "github"
  9783. },
  9784. {
  9785. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9786. "type": "tidelift"
  9787. }
  9788. ],
  9789. "time": "2026-04-30T15:19:22+00:00"
  9790. },
  9791. {
  9792. "name": "symfony/var-dumper",
  9793. "version": "v7.4.8",
  9794. "source": {
  9795. "type": "git",
  9796. "url": "https://github.com/symfony/var-dumper.git",
  9797. "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd"
  9798. },
  9799. "dist": {
  9800. "type": "zip",
  9801. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9510c3966f749a1d1ff0059e1eabef6cc621e7fd",
  9802. "reference": "9510c3966f749a1d1ff0059e1eabef6cc621e7fd",
  9803. "shasum": ""
  9804. },
  9805. "require": {
  9806. "php": ">=8.2",
  9807. "symfony/deprecation-contracts": "^2.5|^3",
  9808. "symfony/polyfill-mbstring": "~1.0"
  9809. },
  9810. "conflict": {
  9811. "symfony/console": "<6.4"
  9812. },
  9813. "require-dev": {
  9814. "symfony/console": "^6.4|^7.0|^8.0",
  9815. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  9816. "symfony/process": "^6.4|^7.0|^8.0",
  9817. "symfony/uid": "^6.4|^7.0|^8.0",
  9818. "twig/twig": "^3.12"
  9819. },
  9820. "bin": [
  9821. "Resources/bin/var-dump-server"
  9822. ],
  9823. "type": "library",
  9824. "autoload": {
  9825. "files": [
  9826. "Resources/functions/dump.php"
  9827. ],
  9828. "psr-4": {
  9829. "Symfony\\Component\\VarDumper\\": ""
  9830. },
  9831. "exclude-from-classmap": [
  9832. "/Tests/"
  9833. ]
  9834. },
  9835. "notification-url": "https://packagist.org/downloads/",
  9836. "license": [
  9837. "MIT"
  9838. ],
  9839. "authors": [
  9840. {
  9841. "name": "Nicolas Grekas",
  9842. "email": "p@tchwork.com"
  9843. },
  9844. {
  9845. "name": "Symfony Community",
  9846. "homepage": "https://symfony.com/contributors"
  9847. }
  9848. ],
  9849. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9850. "homepage": "https://symfony.com",
  9851. "keywords": [
  9852. "debug",
  9853. "dump"
  9854. ],
  9855. "support": {
  9856. "source": "https://github.com/symfony/var-dumper/tree/v7.4.8"
  9857. },
  9858. "funding": [
  9859. {
  9860. "url": "https://symfony.com/sponsor",
  9861. "type": "custom"
  9862. },
  9863. {
  9864. "url": "https://github.com/fabpot",
  9865. "type": "github"
  9866. },
  9867. {
  9868. "url": "https://github.com/nicolas-grekas",
  9869. "type": "github"
  9870. },
  9871. {
  9872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9873. "type": "tidelift"
  9874. }
  9875. ],
  9876. "time": "2026-03-30T13:44:50+00:00"
  9877. },
  9878. {
  9879. "name": "symfony/var-exporter",
  9880. "version": "v8.1.0",
  9881. "source": {
  9882. "type": "git",
  9883. "url": "https://github.com/symfony/var-exporter.git",
  9884. "reference": "2dd18582c5f6c024db9fc0ff9c76d873af726f34"
  9885. },
  9886. "dist": {
  9887. "type": "zip",
  9888. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/2dd18582c5f6c024db9fc0ff9c76d873af726f34",
  9889. "reference": "2dd18582c5f6c024db9fc0ff9c76d873af726f34",
  9890. "shasum": ""
  9891. },
  9892. "require": {
  9893. "php": ">=8.4.1",
  9894. "symfony/deprecation-contracts": "^2.5|^3",
  9895. "symfony/polyfill-deepclone": "^1.37"
  9896. },
  9897. "require-dev": {
  9898. "symfony/property-access": "^7.4|^8.0",
  9899. "symfony/serializer": "^7.4|^8.0",
  9900. "symfony/var-dumper": "^7.4|^8.0"
  9901. },
  9902. "type": "library",
  9903. "autoload": {
  9904. "psr-4": {
  9905. "Symfony\\Component\\VarExporter\\": ""
  9906. },
  9907. "exclude-from-classmap": [
  9908. "/Tests/"
  9909. ]
  9910. },
  9911. "notification-url": "https://packagist.org/downloads/",
  9912. "license": [
  9913. "MIT"
  9914. ],
  9915. "authors": [
  9916. {
  9917. "name": "Nicolas Grekas",
  9918. "email": "p@tchwork.com"
  9919. },
  9920. {
  9921. "name": "Symfony Community",
  9922. "homepage": "https://symfony.com/contributors"
  9923. }
  9924. ],
  9925. "description": "Provides tools to export, instantiate, hydrate, clone and lazy-load PHP objects",
  9926. "homepage": "https://symfony.com",
  9927. "keywords": [
  9928. "clone",
  9929. "construct",
  9930. "deep-clone",
  9931. "export",
  9932. "hydrate",
  9933. "instantiate",
  9934. "lazy-loading",
  9935. "proxy",
  9936. "serialize"
  9937. ],
  9938. "support": {
  9939. "source": "https://github.com/symfony/var-exporter/tree/v8.1.0"
  9940. },
  9941. "funding": [
  9942. {
  9943. "url": "https://symfony.com/sponsor",
  9944. "type": "custom"
  9945. },
  9946. {
  9947. "url": "https://github.com/fabpot",
  9948. "type": "github"
  9949. },
  9950. {
  9951. "url": "https://github.com/nicolas-grekas",
  9952. "type": "github"
  9953. },
  9954. {
  9955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9956. "type": "tidelift"
  9957. }
  9958. ],
  9959. "time": "2026-05-29T05:06:50+00:00"
  9960. },
  9961. {
  9962. "name": "tecnickcom/tcpdf",
  9963. "version": "6.10.1",
  9964. "source": {
  9965. "type": "git",
  9966. "url": "https://github.com/tecnickcom/TCPDF.git",
  9967. "reference": "7a2701251e5d52fc3d508fd71704683eb54f5939"
  9968. },
  9969. "dist": {
  9970. "type": "zip",
  9971. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/7a2701251e5d52fc3d508fd71704683eb54f5939",
  9972. "reference": "7a2701251e5d52fc3d508fd71704683eb54f5939",
  9973. "shasum": ""
  9974. },
  9975. "require": {
  9976. "ext-curl": "*",
  9977. "php": ">=7.1.0"
  9978. },
  9979. "type": "library",
  9980. "autoload": {
  9981. "classmap": [
  9982. "config",
  9983. "include",
  9984. "tcpdf.php",
  9985. "tcpdf_barcodes_1d.php",
  9986. "tcpdf_barcodes_2d.php",
  9987. "include/tcpdf_colors.php",
  9988. "include/tcpdf_filters.php",
  9989. "include/tcpdf_font_data.php",
  9990. "include/tcpdf_fonts.php",
  9991. "include/tcpdf_images.php",
  9992. "include/tcpdf_static.php",
  9993. "include/barcodes/datamatrix.php",
  9994. "include/barcodes/pdf417.php",
  9995. "include/barcodes/qrcode.php"
  9996. ]
  9997. },
  9998. "notification-url": "https://packagist.org/downloads/",
  9999. "license": [
  10000. "LGPL-3.0-or-later"
  10001. ],
  10002. "authors": [
  10003. {
  10004. "name": "Nicola Asuni",
  10005. "email": "info@tecnick.com",
  10006. "role": "lead"
  10007. }
  10008. ],
  10009. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  10010. "homepage": "http://www.tcpdf.org/",
  10011. "keywords": [
  10012. "PDFD32000-2008",
  10013. "TCPDF",
  10014. "barcodes",
  10015. "datamatrix",
  10016. "pdf",
  10017. "pdf417",
  10018. "qrcode"
  10019. ],
  10020. "support": {
  10021. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  10022. "source": "https://github.com/tecnickcom/TCPDF/tree/6.10.1"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://www.paypal.com/donate/?hosted_button_id=NZUEC5XS8MFBJ",
  10027. "type": "custom"
  10028. }
  10029. ],
  10030. "time": "2025-11-21T10:58:21+00:00"
  10031. },
  10032. {
  10033. "name": "thecodingmachine/safe",
  10034. "version": "v3.3.0",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/thecodingmachine/safe.git",
  10038. "reference": "2cdd579eeaa2e78e51c7509b50cc9fb89a956236"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/2cdd579eeaa2e78e51c7509b50cc9fb89a956236",
  10043. "reference": "2cdd579eeaa2e78e51c7509b50cc9fb89a956236",
  10044. "shasum": ""
  10045. },
  10046. "require": {
  10047. "php": "^8.1"
  10048. },
  10049. "require-dev": {
  10050. "php-parallel-lint/php-parallel-lint": "^1.4",
  10051. "phpstan/phpstan": "^2",
  10052. "phpunit/phpunit": "^10",
  10053. "squizlabs/php_codesniffer": "^3.2"
  10054. },
  10055. "type": "library",
  10056. "autoload": {
  10057. "files": [
  10058. "lib/special_cases.php",
  10059. "generated/apache.php",
  10060. "generated/apcu.php",
  10061. "generated/array.php",
  10062. "generated/bzip2.php",
  10063. "generated/calendar.php",
  10064. "generated/classobj.php",
  10065. "generated/com.php",
  10066. "generated/cubrid.php",
  10067. "generated/curl.php",
  10068. "generated/datetime.php",
  10069. "generated/dir.php",
  10070. "generated/eio.php",
  10071. "generated/errorfunc.php",
  10072. "generated/exec.php",
  10073. "generated/fileinfo.php",
  10074. "generated/filesystem.php",
  10075. "generated/filter.php",
  10076. "generated/fpm.php",
  10077. "generated/ftp.php",
  10078. "generated/funchand.php",
  10079. "generated/gettext.php",
  10080. "generated/gmp.php",
  10081. "generated/gnupg.php",
  10082. "generated/hash.php",
  10083. "generated/ibase.php",
  10084. "generated/ibmDb2.php",
  10085. "generated/iconv.php",
  10086. "generated/image.php",
  10087. "generated/imap.php",
  10088. "generated/info.php",
  10089. "generated/inotify.php",
  10090. "generated/json.php",
  10091. "generated/ldap.php",
  10092. "generated/libxml.php",
  10093. "generated/lzf.php",
  10094. "generated/mailparse.php",
  10095. "generated/mbstring.php",
  10096. "generated/misc.php",
  10097. "generated/mysql.php",
  10098. "generated/mysqli.php",
  10099. "generated/network.php",
  10100. "generated/oci8.php",
  10101. "generated/opcache.php",
  10102. "generated/openssl.php",
  10103. "generated/outcontrol.php",
  10104. "generated/pcntl.php",
  10105. "generated/pcre.php",
  10106. "generated/pgsql.php",
  10107. "generated/posix.php",
  10108. "generated/ps.php",
  10109. "generated/pspell.php",
  10110. "generated/readline.php",
  10111. "generated/rnp.php",
  10112. "generated/rpminfo.php",
  10113. "generated/rrd.php",
  10114. "generated/sem.php",
  10115. "generated/session.php",
  10116. "generated/shmop.php",
  10117. "generated/sockets.php",
  10118. "generated/sodium.php",
  10119. "generated/solr.php",
  10120. "generated/spl.php",
  10121. "generated/sqlsrv.php",
  10122. "generated/ssdeep.php",
  10123. "generated/ssh2.php",
  10124. "generated/stream.php",
  10125. "generated/strings.php",
  10126. "generated/swoole.php",
  10127. "generated/uodbc.php",
  10128. "generated/uopz.php",
  10129. "generated/url.php",
  10130. "generated/var.php",
  10131. "generated/xdiff.php",
  10132. "generated/xml.php",
  10133. "generated/xmlrpc.php",
  10134. "generated/yaml.php",
  10135. "generated/yaz.php",
  10136. "generated/zip.php",
  10137. "generated/zlib.php"
  10138. ],
  10139. "classmap": [
  10140. "lib/DateTime.php",
  10141. "lib/DateTimeImmutable.php",
  10142. "lib/Exceptions/",
  10143. "generated/Exceptions/"
  10144. ]
  10145. },
  10146. "notification-url": "https://packagist.org/downloads/",
  10147. "license": [
  10148. "MIT"
  10149. ],
  10150. "description": "PHP core functions that throw exceptions instead of returning FALSE on error",
  10151. "support": {
  10152. "issues": "https://github.com/thecodingmachine/safe/issues",
  10153. "source": "https://github.com/thecodingmachine/safe/tree/v3.3.0"
  10154. },
  10155. "funding": [
  10156. {
  10157. "url": "https://github.com/OskarStark",
  10158. "type": "github"
  10159. },
  10160. {
  10161. "url": "https://github.com/shish",
  10162. "type": "github"
  10163. },
  10164. {
  10165. "url": "https://github.com/staabm",
  10166. "type": "github"
  10167. }
  10168. ],
  10169. "time": "2025-05-14T06:15:44+00:00"
  10170. },
  10171. {
  10172. "name": "tijsverkoyen/css-to-inline-styles",
  10173. "version": "v2.4.0",
  10174. "source": {
  10175. "type": "git",
  10176. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  10177. "reference": "f0292ccf0ec75843d65027214426b6b163b48b41"
  10178. },
  10179. "dist": {
  10180. "type": "zip",
  10181. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41",
  10182. "reference": "f0292ccf0ec75843d65027214426b6b163b48b41",
  10183. "shasum": ""
  10184. },
  10185. "require": {
  10186. "ext-dom": "*",
  10187. "ext-libxml": "*",
  10188. "php": "^7.4 || ^8.0",
  10189. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  10190. },
  10191. "require-dev": {
  10192. "phpstan/phpstan": "^2.0",
  10193. "phpstan/phpstan-phpunit": "^2.0",
  10194. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  10195. },
  10196. "type": "library",
  10197. "extra": {
  10198. "branch-alias": {
  10199. "dev-master": "2.x-dev"
  10200. }
  10201. },
  10202. "autoload": {
  10203. "psr-4": {
  10204. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  10205. }
  10206. },
  10207. "notification-url": "https://packagist.org/downloads/",
  10208. "license": [
  10209. "BSD-3-Clause"
  10210. ],
  10211. "authors": [
  10212. {
  10213. "name": "Tijs Verkoyen",
  10214. "email": "css_to_inline_styles@verkoyen.eu",
  10215. "role": "Developer"
  10216. }
  10217. ],
  10218. "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.",
  10219. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  10220. "support": {
  10221. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  10222. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.4.0"
  10223. },
  10224. "time": "2025-12-02T11:56:42+00:00"
  10225. },
  10226. {
  10227. "name": "vlucas/phpdotenv",
  10228. "version": "v5.6.3",
  10229. "source": {
  10230. "type": "git",
  10231. "url": "https://github.com/vlucas/phpdotenv.git",
  10232. "reference": "955e7815d677a3eaa7075231212f2110983adecc"
  10233. },
  10234. "dist": {
  10235. "type": "zip",
  10236. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
  10237. "reference": "955e7815d677a3eaa7075231212f2110983adecc",
  10238. "shasum": ""
  10239. },
  10240. "require": {
  10241. "ext-pcre": "*",
  10242. "graham-campbell/result-type": "^1.1.4",
  10243. "php": "^7.2.5 || ^8.0",
  10244. "phpoption/phpoption": "^1.9.5",
  10245. "symfony/polyfill-ctype": "^1.26",
  10246. "symfony/polyfill-mbstring": "^1.26",
  10247. "symfony/polyfill-php80": "^1.26"
  10248. },
  10249. "require-dev": {
  10250. "bamarni/composer-bin-plugin": "^1.8.2",
  10251. "ext-filter": "*",
  10252. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  10253. },
  10254. "suggest": {
  10255. "ext-filter": "Required to use the boolean validator."
  10256. },
  10257. "type": "library",
  10258. "extra": {
  10259. "bamarni-bin": {
  10260. "bin-links": true,
  10261. "forward-command": false
  10262. },
  10263. "branch-alias": {
  10264. "dev-master": "5.6-dev"
  10265. }
  10266. },
  10267. "autoload": {
  10268. "psr-4": {
  10269. "Dotenv\\": "src/"
  10270. }
  10271. },
  10272. "notification-url": "https://packagist.org/downloads/",
  10273. "license": [
  10274. "BSD-3-Clause"
  10275. ],
  10276. "authors": [
  10277. {
  10278. "name": "Graham Campbell",
  10279. "email": "hello@gjcampbell.co.uk",
  10280. "homepage": "https://github.com/GrahamCampbell"
  10281. },
  10282. {
  10283. "name": "Vance Lucas",
  10284. "email": "vance@vancelucas.com",
  10285. "homepage": "https://github.com/vlucas"
  10286. }
  10287. ],
  10288. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10289. "keywords": [
  10290. "dotenv",
  10291. "env",
  10292. "environment"
  10293. ],
  10294. "support": {
  10295. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10296. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
  10297. },
  10298. "funding": [
  10299. {
  10300. "url": "https://github.com/GrahamCampbell",
  10301. "type": "github"
  10302. },
  10303. {
  10304. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10305. "type": "tidelift"
  10306. }
  10307. ],
  10308. "time": "2025-12-27T19:49:13+00:00"
  10309. },
  10310. {
  10311. "name": "voku/portable-ascii",
  10312. "version": "2.1.1",
  10313. "source": {
  10314. "type": "git",
  10315. "url": "https://github.com/voku/portable-ascii.git",
  10316. "reference": "8e1051fe39379367aecf014f41744ce7539a856f"
  10317. },
  10318. "dist": {
  10319. "type": "zip",
  10320. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/8e1051fe39379367aecf014f41744ce7539a856f",
  10321. "reference": "8e1051fe39379367aecf014f41744ce7539a856f",
  10322. "shasum": ""
  10323. },
  10324. "require": {
  10325. "php": ">=7.1.0"
  10326. },
  10327. "require-dev": {
  10328. "phpunit/phpunit": "~8.5 || ~9.6 || ~10.5 || ~11.5"
  10329. },
  10330. "suggest": {
  10331. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10332. },
  10333. "type": "library",
  10334. "autoload": {
  10335. "psr-4": {
  10336. "voku\\": "src/voku/"
  10337. }
  10338. },
  10339. "notification-url": "https://packagist.org/downloads/",
  10340. "license": [
  10341. "MIT"
  10342. ],
  10343. "authors": [
  10344. {
  10345. "name": "Lars Moelleken",
  10346. "homepage": "https://www.moelleken.org/"
  10347. }
  10348. ],
  10349. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10350. "homepage": "https://github.com/voku/portable-ascii",
  10351. "keywords": [
  10352. "ascii",
  10353. "clean",
  10354. "php"
  10355. ],
  10356. "support": {
  10357. "issues": "https://github.com/voku/portable-ascii/issues",
  10358. "source": "https://github.com/voku/portable-ascii/tree/2.1.1"
  10359. },
  10360. "funding": [
  10361. {
  10362. "url": "https://www.paypal.me/moelleken",
  10363. "type": "custom"
  10364. },
  10365. {
  10366. "url": "https://github.com/voku",
  10367. "type": "github"
  10368. },
  10369. {
  10370. "url": "https://opencollective.com/portable-ascii",
  10371. "type": "open_collective"
  10372. },
  10373. {
  10374. "url": "https://www.patreon.com/voku",
  10375. "type": "patreon"
  10376. },
  10377. {
  10378. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10379. "type": "tidelift"
  10380. }
  10381. ],
  10382. "time": "2026-04-26T05:33:54+00:00"
  10383. },
  10384. {
  10385. "name": "yajra/laravel-datatables",
  10386. "version": "v12.0.0",
  10387. "source": {
  10388. "type": "git",
  10389. "url": "https://github.com/yajra/datatables.git",
  10390. "reference": "ac036600203f31847e617dea73186670d2edbf8d"
  10391. },
  10392. "dist": {
  10393. "type": "zip",
  10394. "url": "https://api.github.com/repos/yajra/datatables/zipball/ac036600203f31847e617dea73186670d2edbf8d",
  10395. "reference": "ac036600203f31847e617dea73186670d2edbf8d",
  10396. "shasum": ""
  10397. },
  10398. "require": {
  10399. "php": "^8.2",
  10400. "yajra/laravel-datatables-buttons": "^12.1",
  10401. "yajra/laravel-datatables-editor": "^12",
  10402. "yajra/laravel-datatables-export": "^12",
  10403. "yajra/laravel-datatables-fractal": "^12",
  10404. "yajra/laravel-datatables-html": "^12",
  10405. "yajra/laravel-datatables-oracle": "^12"
  10406. },
  10407. "require-dev": {
  10408. "larastan/larastan": "^3.1",
  10409. "laravel/pint": "^1.21",
  10410. "orchestra/testbench": "^10",
  10411. "pestphp/pest": "^3.7",
  10412. "pestphp/pest-plugin-laravel": "^3.1",
  10413. "rector/rector": "^2.0.9"
  10414. },
  10415. "type": "library",
  10416. "extra": {
  10417. "branch-alias": {
  10418. "dev-master": "12.x-dev"
  10419. }
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "MIT"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Arjay Angeles",
  10428. "email": "aqangeles@gmail.com"
  10429. }
  10430. ],
  10431. "description": "Laravel DataTables Complete Package.",
  10432. "keywords": [
  10433. "datatables",
  10434. "jquery",
  10435. "laravel"
  10436. ],
  10437. "support": {
  10438. "issues": "https://github.com/yajra/datatables/issues",
  10439. "source": "https://github.com/yajra/datatables/tree/v12.0.0"
  10440. },
  10441. "funding": [
  10442. {
  10443. "url": "https://github.com/sponsors/yajra",
  10444. "type": "github"
  10445. }
  10446. ],
  10447. "time": "2025-02-26T13:04:07+00:00"
  10448. },
  10449. {
  10450. "name": "yajra/laravel-datatables-buttons",
  10451. "version": "v12.3.1",
  10452. "source": {
  10453. "type": "git",
  10454. "url": "https://github.com/yajra/laravel-datatables-buttons.git",
  10455. "reference": "8c6763404c24402817e3c3ea10e70ad5a27dc67b"
  10456. },
  10457. "dist": {
  10458. "type": "zip",
  10459. "url": "https://api.github.com/repos/yajra/laravel-datatables-buttons/zipball/8c6763404c24402817e3c3ea10e70ad5a27dc67b",
  10460. "reference": "8c6763404c24402817e3c3ea10e70ad5a27dc67b",
  10461. "shasum": ""
  10462. },
  10463. "require": {
  10464. "illuminate/console": "^12",
  10465. "php": "^8.2",
  10466. "yajra/laravel-datatables-html": "^12",
  10467. "yajra/laravel-datatables-oracle": "^12"
  10468. },
  10469. "require-dev": {
  10470. "larastan/larastan": "^3.1",
  10471. "laravel/pint": "^1.21",
  10472. "maatwebsite/excel": "^3.1.64",
  10473. "orchestra/testbench": "^10",
  10474. "rap2hpoutre/fast-excel": "^5.6",
  10475. "rector/rector": "^2.0"
  10476. },
  10477. "suggest": {
  10478. "barryvdh/laravel-snappy": "Allows exporting of dataTable to PDF using the print view.",
  10479. "dompdf/dompdf": "Allows exporting of dataTable to PDF using the DomPDF.",
  10480. "maatwebsite/excel": "Exporting of dataTables (excel, csv and PDF) using maatwebsite package.",
  10481. "rap2hpoutre/fast-excel": "Faster exporting of dataTables using fast-excel package.",
  10482. "yajra/laravel-datatables-export": "Exporting of dataTables (excel, csv and PDF) via livewire and queue worker."
  10483. },
  10484. "type": "library",
  10485. "extra": {
  10486. "laravel": {
  10487. "providers": [
  10488. "Yajra\\DataTables\\ButtonsServiceProvider"
  10489. ]
  10490. },
  10491. "branch-alias": {
  10492. "dev-master": "12.x-dev"
  10493. }
  10494. },
  10495. "autoload": {
  10496. "psr-4": {
  10497. "Yajra\\DataTables\\": "src/"
  10498. }
  10499. },
  10500. "notification-url": "https://packagist.org/downloads/",
  10501. "license": [
  10502. "MIT"
  10503. ],
  10504. "authors": [
  10505. {
  10506. "name": "Arjay Angeles",
  10507. "email": "aqangeles@gmail.com"
  10508. }
  10509. ],
  10510. "description": "Laravel DataTables Buttons Plugin.",
  10511. "keywords": [
  10512. "buttons",
  10513. "datatables",
  10514. "jquery",
  10515. "laravel"
  10516. ],
  10517. "support": {
  10518. "issues": "https://github.com/yajra/laravel-datatables-buttons/issues",
  10519. "source": "https://github.com/yajra/laravel-datatables-buttons/tree/v12.3.1"
  10520. },
  10521. "funding": [
  10522. {
  10523. "url": "https://github.com/sponsors/yajra",
  10524. "type": "github"
  10525. }
  10526. ],
  10527. "time": "2025-12-02T08:51:24+00:00"
  10528. },
  10529. {
  10530. "name": "yajra/laravel-datatables-editor",
  10531. "version": "v12.3.0",
  10532. "source": {
  10533. "type": "git",
  10534. "url": "https://github.com/yajra/laravel-datatables-editor.git",
  10535. "reference": "8cde2263c4efb074920dbb99475bb1c0f77bed8d"
  10536. },
  10537. "dist": {
  10538. "type": "zip",
  10539. "url": "https://api.github.com/repos/yajra/laravel-datatables-editor/zipball/8cde2263c4efb074920dbb99475bb1c0f77bed8d",
  10540. "reference": "8cde2263c4efb074920dbb99475bb1c0f77bed8d",
  10541. "shasum": ""
  10542. },
  10543. "require": {
  10544. "illuminate/console": "^12",
  10545. "illuminate/database": "^12",
  10546. "illuminate/http": "^12",
  10547. "illuminate/validation": "^12",
  10548. "php": "^8.2"
  10549. },
  10550. "require-dev": {
  10551. "larastan/larastan": "^3.1",
  10552. "laravel/pint": "^1.21.2",
  10553. "orchestra/testbench": "^10.1",
  10554. "rector/rector": "^2.0.10"
  10555. },
  10556. "type": "library",
  10557. "extra": {
  10558. "laravel": {
  10559. "providers": [
  10560. "Yajra\\DataTables\\EditorServiceProvider"
  10561. ]
  10562. },
  10563. "branch-alias": {
  10564. "dev-master": "12.x-dev"
  10565. }
  10566. },
  10567. "autoload": {
  10568. "psr-4": {
  10569. "Yajra\\DataTables\\": "src/"
  10570. }
  10571. },
  10572. "notification-url": "https://packagist.org/downloads/",
  10573. "license": [
  10574. "MIT"
  10575. ],
  10576. "authors": [
  10577. {
  10578. "name": "Arjay Angeles",
  10579. "email": "aqangeles@gmail.com"
  10580. }
  10581. ],
  10582. "description": "Laravel DataTables Editor plugin for Laravel 5.5+.",
  10583. "keywords": [
  10584. "JS",
  10585. "datatables",
  10586. "editor",
  10587. "html",
  10588. "jquery",
  10589. "laravel"
  10590. ],
  10591. "support": {
  10592. "issues": "https://github.com/yajra/laravel-datatables-editor/issues",
  10593. "source": "https://github.com/yajra/laravel-datatables-editor/tree/v12.3.0"
  10594. },
  10595. "funding": [
  10596. {
  10597. "url": "https://www.paypal.me/yajra",
  10598. "type": "custom"
  10599. },
  10600. {
  10601. "url": "https://github.com/yajra",
  10602. "type": "github"
  10603. },
  10604. {
  10605. "url": "https://www.patreon.com/yajra",
  10606. "type": "patreon"
  10607. }
  10608. ],
  10609. "time": "2025-10-03T09:00:17+00:00"
  10610. },
  10611. {
  10612. "name": "yajra/laravel-datatables-export",
  10613. "version": "v12.2.0",
  10614. "source": {
  10615. "type": "git",
  10616. "url": "https://github.com/yajra/laravel-datatables-export.git",
  10617. "reference": "10b0929840ffb9b16f1c8a45e70f6df1491d89e8"
  10618. },
  10619. "dist": {
  10620. "type": "zip",
  10621. "url": "https://api.github.com/repos/yajra/laravel-datatables-export/zipball/10b0929840ffb9b16f1c8a45e70f6df1491d89e8",
  10622. "reference": "10b0929840ffb9b16f1c8a45e70f6df1491d89e8",
  10623. "shasum": ""
  10624. },
  10625. "require": {
  10626. "ext-json": "*",
  10627. "livewire/livewire": "^2.12.8|^3.5.6",
  10628. "openspout/openspout": "^4.24.5",
  10629. "php": "^8.2",
  10630. "phpoffice/phpspreadsheet": "^1.29.9|^2.3.7|^3.9.1|^4.0.0|^5.0.0",
  10631. "yajra/laravel-datatables-buttons": "^12.0"
  10632. },
  10633. "require-dev": {
  10634. "larastan/larastan": "^3.1",
  10635. "laravel/pint": "^1.17.2",
  10636. "orchestra/testbench": "^10.0",
  10637. "pestphp/pest": "^3.7",
  10638. "pestphp/pest-plugin-laravel": "^3.1",
  10639. "rector/rector": "^2.0.9"
  10640. },
  10641. "type": "library",
  10642. "extra": {
  10643. "laravel": {
  10644. "providers": [
  10645. "Yajra\\DataTables\\ExportServiceProvider"
  10646. ]
  10647. },
  10648. "branch-alias": {
  10649. "dev-master": "12.x-dev"
  10650. }
  10651. },
  10652. "autoload": {
  10653. "psr-4": {
  10654. "Yajra\\DataTables\\": "src/"
  10655. }
  10656. },
  10657. "notification-url": "https://packagist.org/downloads/",
  10658. "license": [
  10659. "MIT"
  10660. ],
  10661. "authors": [
  10662. {
  10663. "name": "Arjay Angeles",
  10664. "email": "aqangeles@gmail.com"
  10665. }
  10666. ],
  10667. "description": "Laravel DataTables Queued Export Plugin.",
  10668. "keywords": [
  10669. "datatables",
  10670. "excel",
  10671. "export",
  10672. "laravel",
  10673. "livewire",
  10674. "queue"
  10675. ],
  10676. "support": {
  10677. "issues": "https://github.com/yajra/laravel-datatables-export/issues",
  10678. "source": "https://github.com/yajra/laravel-datatables-export/tree/v12.2.0"
  10679. },
  10680. "funding": [
  10681. {
  10682. "url": "https://github.com/sponsors/yajra",
  10683. "type": "github"
  10684. }
  10685. ],
  10686. "time": "2026-01-13T03:16:20+00:00"
  10687. },
  10688. {
  10689. "name": "yajra/laravel-datatables-fractal",
  10690. "version": "v12.0.1",
  10691. "source": {
  10692. "type": "git",
  10693. "url": "https://github.com/yajra/laravel-datatables-fractal.git",
  10694. "reference": "c193c77a42820dbe7a59aec9a61fed2a93fb6031"
  10695. },
  10696. "dist": {
  10697. "type": "zip",
  10698. "url": "https://api.github.com/repos/yajra/laravel-datatables-fractal/zipball/c193c77a42820dbe7a59aec9a61fed2a93fb6031",
  10699. "reference": "c193c77a42820dbe7a59aec9a61fed2a93fb6031",
  10700. "shasum": ""
  10701. },
  10702. "require": {
  10703. "league/fractal": "^0.20.1",
  10704. "php": "^8.2",
  10705. "yajra/laravel-datatables-oracle": "^12"
  10706. },
  10707. "require-dev": {
  10708. "larastan/larastan": "^3.1",
  10709. "laravel/pint": "^1.21",
  10710. "orchestra/testbench": "^10",
  10711. "rector/rector": "^2.0"
  10712. },
  10713. "type": "library",
  10714. "extra": {
  10715. "laravel": {
  10716. "providers": [
  10717. "Yajra\\DataTables\\FractalServiceProvider"
  10718. ]
  10719. },
  10720. "branch-alias": {
  10721. "dev-master": "12.x-dev"
  10722. }
  10723. },
  10724. "autoload": {
  10725. "psr-4": {
  10726. "Yajra\\DataTables\\": "src/"
  10727. }
  10728. },
  10729. "notification-url": "https://packagist.org/downloads/",
  10730. "license": [
  10731. "MIT"
  10732. ],
  10733. "authors": [
  10734. {
  10735. "name": "Arjay Angeles",
  10736. "email": "aqangeles@gmail.com"
  10737. }
  10738. ],
  10739. "description": "Laravel DataTables Fractal Plugin.",
  10740. "keywords": [
  10741. "api",
  10742. "datatables",
  10743. "fractal",
  10744. "laravel"
  10745. ],
  10746. "support": {
  10747. "issues": "https://github.com/yajra/laravel-datatables-fractal/issues",
  10748. "source": "https://github.com/yajra/laravel-datatables-fractal/tree/v12.0.1"
  10749. },
  10750. "time": "2025-12-30T15:22:09+00:00"
  10751. },
  10752. {
  10753. "name": "yajra/laravel-datatables-html",
  10754. "version": "v12.6.0",
  10755. "source": {
  10756. "type": "git",
  10757. "url": "https://github.com/yajra/laravel-datatables-html.git",
  10758. "reference": "2edae2c3cb240927d1c46e105f2d92cb74c58ac7"
  10759. },
  10760. "dist": {
  10761. "type": "zip",
  10762. "url": "https://api.github.com/repos/yajra/laravel-datatables-html/zipball/2edae2c3cb240927d1c46e105f2d92cb74c58ac7",
  10763. "reference": "2edae2c3cb240927d1c46e105f2d92cb74c58ac7",
  10764. "shasum": ""
  10765. },
  10766. "require": {
  10767. "ext-json": "*",
  10768. "php": "^8.2",
  10769. "yajra/laravel-datatables-oracle": "^12.0"
  10770. },
  10771. "require-dev": {
  10772. "larastan/larastan": "^3.1",
  10773. "laravel/pint": "^1.21",
  10774. "livewire/livewire": "^3.4",
  10775. "orchestra/testbench": "^10",
  10776. "rector/rector": "^2.0"
  10777. },
  10778. "suggest": {
  10779. "laravel/livewire": "Required for Livewire layout support."
  10780. },
  10781. "type": "library",
  10782. "extra": {
  10783. "laravel": {
  10784. "providers": [
  10785. "Yajra\\DataTables\\HtmlServiceProvider"
  10786. ]
  10787. },
  10788. "branch-alias": {
  10789. "dev-master": "12.x-dev"
  10790. }
  10791. },
  10792. "autoload": {
  10793. "psr-4": {
  10794. "Yajra\\DataTables\\": "src/"
  10795. }
  10796. },
  10797. "notification-url": "https://packagist.org/downloads/",
  10798. "license": [
  10799. "MIT"
  10800. ],
  10801. "authors": [
  10802. {
  10803. "name": "Arjay Angeles",
  10804. "email": "aqangeles@gmail.com"
  10805. }
  10806. ],
  10807. "description": "Laravel DataTables HTML builder plugin",
  10808. "keywords": [
  10809. "JS",
  10810. "datatables",
  10811. "html",
  10812. "jquery",
  10813. "laravel",
  10814. "yajra"
  10815. ],
  10816. "support": {
  10817. "issues": "https://github.com/yajra/laravel-datatables-html/issues",
  10818. "source": "https://github.com/yajra/laravel-datatables-html/tree/v12.6.0"
  10819. },
  10820. "funding": [
  10821. {
  10822. "url": "https://www.paypal.me/yajra",
  10823. "type": "custom"
  10824. },
  10825. {
  10826. "url": "https://github.com/yajra",
  10827. "type": "github"
  10828. },
  10829. {
  10830. "url": "https://www.patreon.com/yajra",
  10831. "type": "patreon"
  10832. }
  10833. ],
  10834. "time": "2025-10-21T02:10:53+00:00"
  10835. },
  10836. {
  10837. "name": "yajra/laravel-datatables-oracle",
  10838. "version": "v12.6.3",
  10839. "source": {
  10840. "type": "git",
  10841. "url": "https://github.com/yajra/laravel-datatables.git",
  10842. "reference": "4f308d0fbb57673226cf42d296ca9f3befe86cdb"
  10843. },
  10844. "dist": {
  10845. "type": "zip",
  10846. "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/4f308d0fbb57673226cf42d296ca9f3befe86cdb",
  10847. "reference": "4f308d0fbb57673226cf42d296ca9f3befe86cdb",
  10848. "shasum": ""
  10849. },
  10850. "require": {
  10851. "illuminate/database": "^12",
  10852. "illuminate/filesystem": "^12",
  10853. "illuminate/http": "^12",
  10854. "illuminate/support": "^12",
  10855. "illuminate/view": "^12",
  10856. "php": "^8.2"
  10857. },
  10858. "require-dev": {
  10859. "algolia/algoliasearch-client-php": "^3.4.1",
  10860. "larastan/larastan": "^3.1.0",
  10861. "laravel/pint": "^1.14",
  10862. "laravel/scout": "^10.8.3",
  10863. "meilisearch/meilisearch-php": "^1.6.1",
  10864. "orchestra/testbench": "^10",
  10865. "rector/rector": "^2.0"
  10866. },
  10867. "suggest": {
  10868. "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
  10869. "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).",
  10870. "yajra/laravel-datatables-export": "Plugin for server-side exporting using livewire and queue worker.",
  10871. "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
  10872. "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables."
  10873. },
  10874. "type": "library",
  10875. "extra": {
  10876. "laravel": {
  10877. "aliases": {
  10878. "DataTables": "Yajra\\DataTables\\Facades\\DataTables"
  10879. },
  10880. "providers": [
  10881. "Yajra\\DataTables\\DataTablesServiceProvider"
  10882. ]
  10883. },
  10884. "branch-alias": {
  10885. "dev-master": "12.x-dev"
  10886. }
  10887. },
  10888. "autoload": {
  10889. "files": [
  10890. "src/helper.php"
  10891. ],
  10892. "psr-4": {
  10893. "Yajra\\DataTables\\": "src/"
  10894. }
  10895. },
  10896. "notification-url": "https://packagist.org/downloads/",
  10897. "license": [
  10898. "MIT"
  10899. ],
  10900. "authors": [
  10901. {
  10902. "name": "Arjay Angeles",
  10903. "email": "aqangeles@gmail.com"
  10904. }
  10905. ],
  10906. "description": "jQuery DataTables API for Laravel",
  10907. "keywords": [
  10908. "datatables",
  10909. "jquery",
  10910. "laravel",
  10911. "yajra"
  10912. ],
  10913. "support": {
  10914. "issues": "https://github.com/yajra/laravel-datatables/issues",
  10915. "source": "https://github.com/yajra/laravel-datatables/tree/v12.6.3"
  10916. },
  10917. "funding": [
  10918. {
  10919. "url": "https://github.com/sponsors/yajra",
  10920. "type": "github"
  10921. }
  10922. ],
  10923. "time": "2025-12-09T05:57:29+00:00"
  10924. }
  10925. ],
  10926. "packages-dev": [
  10927. {
  10928. "name": "fakerphp/faker",
  10929. "version": "v1.24.1",
  10930. "source": {
  10931. "type": "git",
  10932. "url": "https://github.com/FakerPHP/Faker.git",
  10933. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  10934. },
  10935. "dist": {
  10936. "type": "zip",
  10937. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  10938. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  10939. "shasum": ""
  10940. },
  10941. "require": {
  10942. "php": "^7.4 || ^8.0",
  10943. "psr/container": "^1.0 || ^2.0",
  10944. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10945. },
  10946. "conflict": {
  10947. "fzaninotto/faker": "*"
  10948. },
  10949. "require-dev": {
  10950. "bamarni/composer-bin-plugin": "^1.4.1",
  10951. "doctrine/persistence": "^1.3 || ^2.0",
  10952. "ext-intl": "*",
  10953. "phpunit/phpunit": "^9.5.26",
  10954. "symfony/phpunit-bridge": "^5.4.16"
  10955. },
  10956. "suggest": {
  10957. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10958. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10959. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10960. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10961. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10962. },
  10963. "type": "library",
  10964. "autoload": {
  10965. "psr-4": {
  10966. "Faker\\": "src/Faker/"
  10967. }
  10968. },
  10969. "notification-url": "https://packagist.org/downloads/",
  10970. "license": [
  10971. "MIT"
  10972. ],
  10973. "authors": [
  10974. {
  10975. "name": "François Zaninotto"
  10976. }
  10977. ],
  10978. "description": "Faker is a PHP library that generates fake data for you.",
  10979. "keywords": [
  10980. "data",
  10981. "faker",
  10982. "fixtures"
  10983. ],
  10984. "support": {
  10985. "issues": "https://github.com/FakerPHP/Faker/issues",
  10986. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  10987. },
  10988. "time": "2024-11-21T13:46:39+00:00"
  10989. },
  10990. {
  10991. "name": "filp/whoops",
  10992. "version": "2.18.4",
  10993. "source": {
  10994. "type": "git",
  10995. "url": "https://github.com/filp/whoops.git",
  10996. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d"
  10997. },
  10998. "dist": {
  10999. "type": "zip",
  11000. "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  11001. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  11002. "shasum": ""
  11003. },
  11004. "require": {
  11005. "php": "^7.1 || ^8.0",
  11006. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  11007. },
  11008. "require-dev": {
  11009. "mockery/mockery": "^1.0",
  11010. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  11011. "symfony/var-dumper": "^4.0 || ^5.0"
  11012. },
  11013. "suggest": {
  11014. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  11015. "whoops/soap": "Formats errors as SOAP responses"
  11016. },
  11017. "type": "library",
  11018. "extra": {
  11019. "branch-alias": {
  11020. "dev-master": "2.7-dev"
  11021. }
  11022. },
  11023. "autoload": {
  11024. "psr-4": {
  11025. "Whoops\\": "src/Whoops/"
  11026. }
  11027. },
  11028. "notification-url": "https://packagist.org/downloads/",
  11029. "license": [
  11030. "MIT"
  11031. ],
  11032. "authors": [
  11033. {
  11034. "name": "Filipe Dobreira",
  11035. "homepage": "https://github.com/filp",
  11036. "role": "Developer"
  11037. }
  11038. ],
  11039. "description": "php error handling for cool kids",
  11040. "homepage": "https://filp.github.io/whoops/",
  11041. "keywords": [
  11042. "error",
  11043. "exception",
  11044. "handling",
  11045. "library",
  11046. "throwable",
  11047. "whoops"
  11048. ],
  11049. "support": {
  11050. "issues": "https://github.com/filp/whoops/issues",
  11051. "source": "https://github.com/filp/whoops/tree/2.18.4"
  11052. },
  11053. "funding": [
  11054. {
  11055. "url": "https://github.com/denis-sokolov",
  11056. "type": "github"
  11057. }
  11058. ],
  11059. "time": "2025-08-08T12:00:00+00:00"
  11060. },
  11061. {
  11062. "name": "hamcrest/hamcrest-php",
  11063. "version": "v2.1.1",
  11064. "source": {
  11065. "type": "git",
  11066. "url": "https://github.com/hamcrest/hamcrest-php.git",
  11067. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  11068. },
  11069. "dist": {
  11070. "type": "zip",
  11071. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  11072. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  11073. "shasum": ""
  11074. },
  11075. "require": {
  11076. "php": "^7.4|^8.0"
  11077. },
  11078. "replace": {
  11079. "cordoval/hamcrest-php": "*",
  11080. "davedevelopment/hamcrest-php": "*",
  11081. "kodova/hamcrest-php": "*"
  11082. },
  11083. "require-dev": {
  11084. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  11085. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  11086. },
  11087. "type": "library",
  11088. "extra": {
  11089. "branch-alias": {
  11090. "dev-master": "2.1-dev"
  11091. }
  11092. },
  11093. "autoload": {
  11094. "classmap": [
  11095. "hamcrest"
  11096. ]
  11097. },
  11098. "notification-url": "https://packagist.org/downloads/",
  11099. "license": [
  11100. "BSD-3-Clause"
  11101. ],
  11102. "description": "This is the PHP port of Hamcrest Matchers",
  11103. "keywords": [
  11104. "test"
  11105. ],
  11106. "support": {
  11107. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  11108. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  11109. },
  11110. "time": "2025-04-30T06:54:44+00:00"
  11111. },
  11112. {
  11113. "name": "laravel/pail",
  11114. "version": "v1.2.4",
  11115. "source": {
  11116. "type": "git",
  11117. "url": "https://github.com/laravel/pail.git",
  11118. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30"
  11119. },
  11120. "dist": {
  11121. "type": "zip",
  11122. "url": "https://api.github.com/repos/laravel/pail/zipball/49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  11123. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  11124. "shasum": ""
  11125. },
  11126. "require": {
  11127. "ext-mbstring": "*",
  11128. "illuminate/console": "^10.24|^11.0|^12.0",
  11129. "illuminate/contracts": "^10.24|^11.0|^12.0",
  11130. "illuminate/log": "^10.24|^11.0|^12.0",
  11131. "illuminate/process": "^10.24|^11.0|^12.0",
  11132. "illuminate/support": "^10.24|^11.0|^12.0",
  11133. "nunomaduro/termwind": "^1.15|^2.0",
  11134. "php": "^8.2",
  11135. "symfony/console": "^6.0|^7.0"
  11136. },
  11137. "require-dev": {
  11138. "laravel/framework": "^10.24|^11.0|^12.0",
  11139. "laravel/pint": "^1.13",
  11140. "orchestra/testbench-core": "^8.13|^9.17|^10.8",
  11141. "pestphp/pest": "^2.20|^3.0|^4.0",
  11142. "pestphp/pest-plugin-type-coverage": "^2.3|^3.0|^4.0",
  11143. "phpstan/phpstan": "^1.12.27",
  11144. "symfony/var-dumper": "^6.3|^7.0"
  11145. },
  11146. "type": "library",
  11147. "extra": {
  11148. "laravel": {
  11149. "providers": [
  11150. "Laravel\\Pail\\PailServiceProvider"
  11151. ]
  11152. },
  11153. "branch-alias": {
  11154. "dev-main": "1.x-dev"
  11155. }
  11156. },
  11157. "autoload": {
  11158. "psr-4": {
  11159. "Laravel\\Pail\\": "src/"
  11160. }
  11161. },
  11162. "notification-url": "https://packagist.org/downloads/",
  11163. "license": [
  11164. "MIT"
  11165. ],
  11166. "authors": [
  11167. {
  11168. "name": "Taylor Otwell",
  11169. "email": "taylor@laravel.com"
  11170. },
  11171. {
  11172. "name": "Nuno Maduro",
  11173. "email": "enunomaduro@gmail.com"
  11174. }
  11175. ],
  11176. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  11177. "homepage": "https://github.com/laravel/pail",
  11178. "keywords": [
  11179. "dev",
  11180. "laravel",
  11181. "logs",
  11182. "php",
  11183. "tail"
  11184. ],
  11185. "support": {
  11186. "issues": "https://github.com/laravel/pail/issues",
  11187. "source": "https://github.com/laravel/pail"
  11188. },
  11189. "time": "2025-11-20T16:29:35+00:00"
  11190. },
  11191. {
  11192. "name": "laravel/pint",
  11193. "version": "v1.27.0",
  11194. "source": {
  11195. "type": "git",
  11196. "url": "https://github.com/laravel/pint.git",
  11197. "reference": "c67b4195b75491e4dfc6b00b1c78b68d86f54c90"
  11198. },
  11199. "dist": {
  11200. "type": "zip",
  11201. "url": "https://api.github.com/repos/laravel/pint/zipball/c67b4195b75491e4dfc6b00b1c78b68d86f54c90",
  11202. "reference": "c67b4195b75491e4dfc6b00b1c78b68d86f54c90",
  11203. "shasum": ""
  11204. },
  11205. "require": {
  11206. "ext-json": "*",
  11207. "ext-mbstring": "*",
  11208. "ext-tokenizer": "*",
  11209. "ext-xml": "*",
  11210. "php": "^8.2.0"
  11211. },
  11212. "require-dev": {
  11213. "friendsofphp/php-cs-fixer": "^3.92.4",
  11214. "illuminate/view": "^12.44.0",
  11215. "larastan/larastan": "^3.8.1",
  11216. "laravel-zero/framework": "^12.0.4",
  11217. "mockery/mockery": "^1.6.12",
  11218. "nunomaduro/termwind": "^2.3.3",
  11219. "pestphp/pest": "^3.8.4"
  11220. },
  11221. "bin": [
  11222. "builds/pint"
  11223. ],
  11224. "type": "project",
  11225. "autoload": {
  11226. "psr-4": {
  11227. "App\\": "app/",
  11228. "Database\\Seeders\\": "database/seeders/",
  11229. "Database\\Factories\\": "database/factories/"
  11230. }
  11231. },
  11232. "notification-url": "https://packagist.org/downloads/",
  11233. "license": [
  11234. "MIT"
  11235. ],
  11236. "authors": [
  11237. {
  11238. "name": "Nuno Maduro",
  11239. "email": "enunomaduro@gmail.com"
  11240. }
  11241. ],
  11242. "description": "An opinionated code formatter for PHP.",
  11243. "homepage": "https://laravel.com",
  11244. "keywords": [
  11245. "dev",
  11246. "format",
  11247. "formatter",
  11248. "lint",
  11249. "linter",
  11250. "php"
  11251. ],
  11252. "support": {
  11253. "issues": "https://github.com/laravel/pint/issues",
  11254. "source": "https://github.com/laravel/pint"
  11255. },
  11256. "time": "2026-01-05T16:49:17+00:00"
  11257. },
  11258. {
  11259. "name": "laravel/sail",
  11260. "version": "v1.52.0",
  11261. "source": {
  11262. "type": "git",
  11263. "url": "https://github.com/laravel/sail.git",
  11264. "reference": "64ac7d8abb2dbcf2b76e61289451bae79066b0b3"
  11265. },
  11266. "dist": {
  11267. "type": "zip",
  11268. "url": "https://api.github.com/repos/laravel/sail/zipball/64ac7d8abb2dbcf2b76e61289451bae79066b0b3",
  11269. "reference": "64ac7d8abb2dbcf2b76e61289451bae79066b0b3",
  11270. "shasum": ""
  11271. },
  11272. "require": {
  11273. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  11274. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  11275. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  11276. "php": "^8.0",
  11277. "symfony/console": "^6.0|^7.0",
  11278. "symfony/yaml": "^6.0|^7.0"
  11279. },
  11280. "require-dev": {
  11281. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  11282. "phpstan/phpstan": "^2.0"
  11283. },
  11284. "bin": [
  11285. "bin/sail"
  11286. ],
  11287. "type": "library",
  11288. "extra": {
  11289. "laravel": {
  11290. "providers": [
  11291. "Laravel\\Sail\\SailServiceProvider"
  11292. ]
  11293. }
  11294. },
  11295. "autoload": {
  11296. "psr-4": {
  11297. "Laravel\\Sail\\": "src/"
  11298. }
  11299. },
  11300. "notification-url": "https://packagist.org/downloads/",
  11301. "license": [
  11302. "MIT"
  11303. ],
  11304. "authors": [
  11305. {
  11306. "name": "Taylor Otwell",
  11307. "email": "taylor@laravel.com"
  11308. }
  11309. ],
  11310. "description": "Docker files for running a basic Laravel application.",
  11311. "keywords": [
  11312. "docker",
  11313. "laravel"
  11314. ],
  11315. "support": {
  11316. "issues": "https://github.com/laravel/sail/issues",
  11317. "source": "https://github.com/laravel/sail"
  11318. },
  11319. "time": "2026-01-01T02:46:03+00:00"
  11320. },
  11321. {
  11322. "name": "mockery/mockery",
  11323. "version": "1.6.12",
  11324. "source": {
  11325. "type": "git",
  11326. "url": "https://github.com/mockery/mockery.git",
  11327. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  11328. },
  11329. "dist": {
  11330. "type": "zip",
  11331. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  11332. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  11333. "shasum": ""
  11334. },
  11335. "require": {
  11336. "hamcrest/hamcrest-php": "^2.0.1",
  11337. "lib-pcre": ">=7.0",
  11338. "php": ">=7.3"
  11339. },
  11340. "conflict": {
  11341. "phpunit/phpunit": "<8.0"
  11342. },
  11343. "require-dev": {
  11344. "phpunit/phpunit": "^8.5 || ^9.6.17",
  11345. "symplify/easy-coding-standard": "^12.1.14"
  11346. },
  11347. "type": "library",
  11348. "autoload": {
  11349. "files": [
  11350. "library/helpers.php",
  11351. "library/Mockery.php"
  11352. ],
  11353. "psr-4": {
  11354. "Mockery\\": "library/Mockery"
  11355. }
  11356. },
  11357. "notification-url": "https://packagist.org/downloads/",
  11358. "license": [
  11359. "BSD-3-Clause"
  11360. ],
  11361. "authors": [
  11362. {
  11363. "name": "Pádraic Brady",
  11364. "email": "padraic.brady@gmail.com",
  11365. "homepage": "https://github.com/padraic",
  11366. "role": "Author"
  11367. },
  11368. {
  11369. "name": "Dave Marshall",
  11370. "email": "dave.marshall@atstsolutions.co.uk",
  11371. "homepage": "https://davedevelopment.co.uk",
  11372. "role": "Developer"
  11373. },
  11374. {
  11375. "name": "Nathanael Esayeas",
  11376. "email": "nathanael.esayeas@protonmail.com",
  11377. "homepage": "https://github.com/ghostwriter",
  11378. "role": "Lead Developer"
  11379. }
  11380. ],
  11381. "description": "Mockery is a simple yet flexible PHP mock object framework",
  11382. "homepage": "https://github.com/mockery/mockery",
  11383. "keywords": [
  11384. "BDD",
  11385. "TDD",
  11386. "library",
  11387. "mock",
  11388. "mock objects",
  11389. "mockery",
  11390. "stub",
  11391. "test",
  11392. "test double",
  11393. "testing"
  11394. ],
  11395. "support": {
  11396. "docs": "https://docs.mockery.io/",
  11397. "issues": "https://github.com/mockery/mockery/issues",
  11398. "rss": "https://github.com/mockery/mockery/releases.atom",
  11399. "security": "https://github.com/mockery/mockery/security/advisories",
  11400. "source": "https://github.com/mockery/mockery"
  11401. },
  11402. "time": "2024-05-16T03:13:13+00:00"
  11403. },
  11404. {
  11405. "name": "nunomaduro/collision",
  11406. "version": "v8.8.3",
  11407. "source": {
  11408. "type": "git",
  11409. "url": "https://github.com/nunomaduro/collision.git",
  11410. "reference": "1dc9e88d105699d0fee8bb18890f41b274f6b4c4"
  11411. },
  11412. "dist": {
  11413. "type": "zip",
  11414. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/1dc9e88d105699d0fee8bb18890f41b274f6b4c4",
  11415. "reference": "1dc9e88d105699d0fee8bb18890f41b274f6b4c4",
  11416. "shasum": ""
  11417. },
  11418. "require": {
  11419. "filp/whoops": "^2.18.1",
  11420. "nunomaduro/termwind": "^2.3.1",
  11421. "php": "^8.2.0",
  11422. "symfony/console": "^7.3.0"
  11423. },
  11424. "conflict": {
  11425. "laravel/framework": "<11.44.2 || >=13.0.0",
  11426. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  11427. },
  11428. "require-dev": {
  11429. "brianium/paratest": "^7.8.3",
  11430. "larastan/larastan": "^3.4.2",
  11431. "laravel/framework": "^11.44.2 || ^12.18",
  11432. "laravel/pint": "^1.22.1",
  11433. "laravel/sail": "^1.43.1",
  11434. "laravel/sanctum": "^4.1.1",
  11435. "laravel/tinker": "^2.10.1",
  11436. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  11437. "pestphp/pest": "^3.8.2 || ^4.0.0",
  11438. "sebastian/environment": "^7.2.1 || ^8.0"
  11439. },
  11440. "type": "library",
  11441. "extra": {
  11442. "laravel": {
  11443. "providers": [
  11444. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11445. ]
  11446. },
  11447. "branch-alias": {
  11448. "dev-8.x": "8.x-dev"
  11449. }
  11450. },
  11451. "autoload": {
  11452. "files": [
  11453. "./src/Adapters/Phpunit/Autoload.php"
  11454. ],
  11455. "psr-4": {
  11456. "NunoMaduro\\Collision\\": "src/"
  11457. }
  11458. },
  11459. "notification-url": "https://packagist.org/downloads/",
  11460. "license": [
  11461. "MIT"
  11462. ],
  11463. "authors": [
  11464. {
  11465. "name": "Nuno Maduro",
  11466. "email": "enunomaduro@gmail.com"
  11467. }
  11468. ],
  11469. "description": "Cli error handling for console/command-line PHP applications.",
  11470. "keywords": [
  11471. "artisan",
  11472. "cli",
  11473. "command-line",
  11474. "console",
  11475. "dev",
  11476. "error",
  11477. "handling",
  11478. "laravel",
  11479. "laravel-zero",
  11480. "php",
  11481. "symfony"
  11482. ],
  11483. "support": {
  11484. "issues": "https://github.com/nunomaduro/collision/issues",
  11485. "source": "https://github.com/nunomaduro/collision"
  11486. },
  11487. "funding": [
  11488. {
  11489. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11490. "type": "custom"
  11491. },
  11492. {
  11493. "url": "https://github.com/nunomaduro",
  11494. "type": "github"
  11495. },
  11496. {
  11497. "url": "https://www.patreon.com/nunomaduro",
  11498. "type": "patreon"
  11499. }
  11500. ],
  11501. "time": "2025-11-20T02:55:25+00:00"
  11502. },
  11503. {
  11504. "name": "phar-io/manifest",
  11505. "version": "2.0.4",
  11506. "source": {
  11507. "type": "git",
  11508. "url": "https://github.com/phar-io/manifest.git",
  11509. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  11510. },
  11511. "dist": {
  11512. "type": "zip",
  11513. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  11514. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  11515. "shasum": ""
  11516. },
  11517. "require": {
  11518. "ext-dom": "*",
  11519. "ext-libxml": "*",
  11520. "ext-phar": "*",
  11521. "ext-xmlwriter": "*",
  11522. "phar-io/version": "^3.0.1",
  11523. "php": "^7.2 || ^8.0"
  11524. },
  11525. "type": "library",
  11526. "extra": {
  11527. "branch-alias": {
  11528. "dev-master": "2.0.x-dev"
  11529. }
  11530. },
  11531. "autoload": {
  11532. "classmap": [
  11533. "src/"
  11534. ]
  11535. },
  11536. "notification-url": "https://packagist.org/downloads/",
  11537. "license": [
  11538. "BSD-3-Clause"
  11539. ],
  11540. "authors": [
  11541. {
  11542. "name": "Arne Blankerts",
  11543. "email": "arne@blankerts.de",
  11544. "role": "Developer"
  11545. },
  11546. {
  11547. "name": "Sebastian Heuer",
  11548. "email": "sebastian@phpeople.de",
  11549. "role": "Developer"
  11550. },
  11551. {
  11552. "name": "Sebastian Bergmann",
  11553. "email": "sebastian@phpunit.de",
  11554. "role": "Developer"
  11555. }
  11556. ],
  11557. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11558. "support": {
  11559. "issues": "https://github.com/phar-io/manifest/issues",
  11560. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  11561. },
  11562. "funding": [
  11563. {
  11564. "url": "https://github.com/theseer",
  11565. "type": "github"
  11566. }
  11567. ],
  11568. "time": "2024-03-03T12:33:53+00:00"
  11569. },
  11570. {
  11571. "name": "phar-io/version",
  11572. "version": "3.2.1",
  11573. "source": {
  11574. "type": "git",
  11575. "url": "https://github.com/phar-io/version.git",
  11576. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11577. },
  11578. "dist": {
  11579. "type": "zip",
  11580. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11581. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11582. "shasum": ""
  11583. },
  11584. "require": {
  11585. "php": "^7.2 || ^8.0"
  11586. },
  11587. "type": "library",
  11588. "autoload": {
  11589. "classmap": [
  11590. "src/"
  11591. ]
  11592. },
  11593. "notification-url": "https://packagist.org/downloads/",
  11594. "license": [
  11595. "BSD-3-Clause"
  11596. ],
  11597. "authors": [
  11598. {
  11599. "name": "Arne Blankerts",
  11600. "email": "arne@blankerts.de",
  11601. "role": "Developer"
  11602. },
  11603. {
  11604. "name": "Sebastian Heuer",
  11605. "email": "sebastian@phpeople.de",
  11606. "role": "Developer"
  11607. },
  11608. {
  11609. "name": "Sebastian Bergmann",
  11610. "email": "sebastian@phpunit.de",
  11611. "role": "Developer"
  11612. }
  11613. ],
  11614. "description": "Library for handling version information and constraints",
  11615. "support": {
  11616. "issues": "https://github.com/phar-io/version/issues",
  11617. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11618. },
  11619. "time": "2022-02-21T01:04:05+00:00"
  11620. },
  11621. {
  11622. "name": "phpunit/php-code-coverage",
  11623. "version": "11.0.12",
  11624. "source": {
  11625. "type": "git",
  11626. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11627. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56"
  11628. },
  11629. "dist": {
  11630. "type": "zip",
  11631. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56",
  11632. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56",
  11633. "shasum": ""
  11634. },
  11635. "require": {
  11636. "ext-dom": "*",
  11637. "ext-libxml": "*",
  11638. "ext-xmlwriter": "*",
  11639. "nikic/php-parser": "^5.7.0",
  11640. "php": ">=8.2",
  11641. "phpunit/php-file-iterator": "^5.1.0",
  11642. "phpunit/php-text-template": "^4.0.1",
  11643. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11644. "sebastian/complexity": "^4.0.1",
  11645. "sebastian/environment": "^7.2.1",
  11646. "sebastian/lines-of-code": "^3.0.1",
  11647. "sebastian/version": "^5.0.2",
  11648. "theseer/tokenizer": "^1.3.1"
  11649. },
  11650. "require-dev": {
  11651. "phpunit/phpunit": "^11.5.46"
  11652. },
  11653. "suggest": {
  11654. "ext-pcov": "PHP extension that provides line coverage",
  11655. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11656. },
  11657. "type": "library",
  11658. "extra": {
  11659. "branch-alias": {
  11660. "dev-main": "11.0.x-dev"
  11661. }
  11662. },
  11663. "autoload": {
  11664. "classmap": [
  11665. "src/"
  11666. ]
  11667. },
  11668. "notification-url": "https://packagist.org/downloads/",
  11669. "license": [
  11670. "BSD-3-Clause"
  11671. ],
  11672. "authors": [
  11673. {
  11674. "name": "Sebastian Bergmann",
  11675. "email": "sebastian@phpunit.de",
  11676. "role": "lead"
  11677. }
  11678. ],
  11679. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11680. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11681. "keywords": [
  11682. "coverage",
  11683. "testing",
  11684. "xunit"
  11685. ],
  11686. "support": {
  11687. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11688. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11689. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12"
  11690. },
  11691. "funding": [
  11692. {
  11693. "url": "https://github.com/sebastianbergmann",
  11694. "type": "github"
  11695. },
  11696. {
  11697. "url": "https://liberapay.com/sebastianbergmann",
  11698. "type": "liberapay"
  11699. },
  11700. {
  11701. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11702. "type": "thanks_dev"
  11703. },
  11704. {
  11705. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  11706. "type": "tidelift"
  11707. }
  11708. ],
  11709. "time": "2025-12-24T07:01:01+00:00"
  11710. },
  11711. {
  11712. "name": "phpunit/php-file-iterator",
  11713. "version": "5.1.0",
  11714. "source": {
  11715. "type": "git",
  11716. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11717. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11718. },
  11719. "dist": {
  11720. "type": "zip",
  11721. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11722. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11723. "shasum": ""
  11724. },
  11725. "require": {
  11726. "php": ">=8.2"
  11727. },
  11728. "require-dev": {
  11729. "phpunit/phpunit": "^11.0"
  11730. },
  11731. "type": "library",
  11732. "extra": {
  11733. "branch-alias": {
  11734. "dev-main": "5.0-dev"
  11735. }
  11736. },
  11737. "autoload": {
  11738. "classmap": [
  11739. "src/"
  11740. ]
  11741. },
  11742. "notification-url": "https://packagist.org/downloads/",
  11743. "license": [
  11744. "BSD-3-Clause"
  11745. ],
  11746. "authors": [
  11747. {
  11748. "name": "Sebastian Bergmann",
  11749. "email": "sebastian@phpunit.de",
  11750. "role": "lead"
  11751. }
  11752. ],
  11753. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11754. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11755. "keywords": [
  11756. "filesystem",
  11757. "iterator"
  11758. ],
  11759. "support": {
  11760. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11761. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11762. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11763. },
  11764. "funding": [
  11765. {
  11766. "url": "https://github.com/sebastianbergmann",
  11767. "type": "github"
  11768. }
  11769. ],
  11770. "time": "2024-08-27T05:02:59+00:00"
  11771. },
  11772. {
  11773. "name": "phpunit/php-invoker",
  11774. "version": "5.0.1",
  11775. "source": {
  11776. "type": "git",
  11777. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11778. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11779. },
  11780. "dist": {
  11781. "type": "zip",
  11782. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11783. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11784. "shasum": ""
  11785. },
  11786. "require": {
  11787. "php": ">=8.2"
  11788. },
  11789. "require-dev": {
  11790. "ext-pcntl": "*",
  11791. "phpunit/phpunit": "^11.0"
  11792. },
  11793. "suggest": {
  11794. "ext-pcntl": "*"
  11795. },
  11796. "type": "library",
  11797. "extra": {
  11798. "branch-alias": {
  11799. "dev-main": "5.0-dev"
  11800. }
  11801. },
  11802. "autoload": {
  11803. "classmap": [
  11804. "src/"
  11805. ]
  11806. },
  11807. "notification-url": "https://packagist.org/downloads/",
  11808. "license": [
  11809. "BSD-3-Clause"
  11810. ],
  11811. "authors": [
  11812. {
  11813. "name": "Sebastian Bergmann",
  11814. "email": "sebastian@phpunit.de",
  11815. "role": "lead"
  11816. }
  11817. ],
  11818. "description": "Invoke callables with a timeout",
  11819. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11820. "keywords": [
  11821. "process"
  11822. ],
  11823. "support": {
  11824. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11825. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11826. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11827. },
  11828. "funding": [
  11829. {
  11830. "url": "https://github.com/sebastianbergmann",
  11831. "type": "github"
  11832. }
  11833. ],
  11834. "time": "2024-07-03T05:07:44+00:00"
  11835. },
  11836. {
  11837. "name": "phpunit/php-text-template",
  11838. "version": "4.0.1",
  11839. "source": {
  11840. "type": "git",
  11841. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11842. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11843. },
  11844. "dist": {
  11845. "type": "zip",
  11846. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11847. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11848. "shasum": ""
  11849. },
  11850. "require": {
  11851. "php": ">=8.2"
  11852. },
  11853. "require-dev": {
  11854. "phpunit/phpunit": "^11.0"
  11855. },
  11856. "type": "library",
  11857. "extra": {
  11858. "branch-alias": {
  11859. "dev-main": "4.0-dev"
  11860. }
  11861. },
  11862. "autoload": {
  11863. "classmap": [
  11864. "src/"
  11865. ]
  11866. },
  11867. "notification-url": "https://packagist.org/downloads/",
  11868. "license": [
  11869. "BSD-3-Clause"
  11870. ],
  11871. "authors": [
  11872. {
  11873. "name": "Sebastian Bergmann",
  11874. "email": "sebastian@phpunit.de",
  11875. "role": "lead"
  11876. }
  11877. ],
  11878. "description": "Simple template engine.",
  11879. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11880. "keywords": [
  11881. "template"
  11882. ],
  11883. "support": {
  11884. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11885. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11886. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11887. },
  11888. "funding": [
  11889. {
  11890. "url": "https://github.com/sebastianbergmann",
  11891. "type": "github"
  11892. }
  11893. ],
  11894. "time": "2024-07-03T05:08:43+00:00"
  11895. },
  11896. {
  11897. "name": "phpunit/php-timer",
  11898. "version": "7.0.1",
  11899. "source": {
  11900. "type": "git",
  11901. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11902. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11903. },
  11904. "dist": {
  11905. "type": "zip",
  11906. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11907. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11908. "shasum": ""
  11909. },
  11910. "require": {
  11911. "php": ">=8.2"
  11912. },
  11913. "require-dev": {
  11914. "phpunit/phpunit": "^11.0"
  11915. },
  11916. "type": "library",
  11917. "extra": {
  11918. "branch-alias": {
  11919. "dev-main": "7.0-dev"
  11920. }
  11921. },
  11922. "autoload": {
  11923. "classmap": [
  11924. "src/"
  11925. ]
  11926. },
  11927. "notification-url": "https://packagist.org/downloads/",
  11928. "license": [
  11929. "BSD-3-Clause"
  11930. ],
  11931. "authors": [
  11932. {
  11933. "name": "Sebastian Bergmann",
  11934. "email": "sebastian@phpunit.de",
  11935. "role": "lead"
  11936. }
  11937. ],
  11938. "description": "Utility class for timing",
  11939. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11940. "keywords": [
  11941. "timer"
  11942. ],
  11943. "support": {
  11944. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11945. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11946. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11947. },
  11948. "funding": [
  11949. {
  11950. "url": "https://github.com/sebastianbergmann",
  11951. "type": "github"
  11952. }
  11953. ],
  11954. "time": "2024-07-03T05:09:35+00:00"
  11955. },
  11956. {
  11957. "name": "phpunit/phpunit",
  11958. "version": "11.5.48",
  11959. "source": {
  11960. "type": "git",
  11961. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11962. "reference": "fe3665c15e37140f55aaf658c81a2eb9030b6d89"
  11963. },
  11964. "dist": {
  11965. "type": "zip",
  11966. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fe3665c15e37140f55aaf658c81a2eb9030b6d89",
  11967. "reference": "fe3665c15e37140f55aaf658c81a2eb9030b6d89",
  11968. "shasum": ""
  11969. },
  11970. "require": {
  11971. "ext-dom": "*",
  11972. "ext-json": "*",
  11973. "ext-libxml": "*",
  11974. "ext-mbstring": "*",
  11975. "ext-xml": "*",
  11976. "ext-xmlwriter": "*",
  11977. "myclabs/deep-copy": "^1.13.4",
  11978. "phar-io/manifest": "^2.0.4",
  11979. "phar-io/version": "^3.2.1",
  11980. "php": ">=8.2",
  11981. "phpunit/php-code-coverage": "^11.0.12",
  11982. "phpunit/php-file-iterator": "^5.1.0",
  11983. "phpunit/php-invoker": "^5.0.1",
  11984. "phpunit/php-text-template": "^4.0.1",
  11985. "phpunit/php-timer": "^7.0.1",
  11986. "sebastian/cli-parser": "^3.0.2",
  11987. "sebastian/code-unit": "^3.0.3",
  11988. "sebastian/comparator": "^6.3.2",
  11989. "sebastian/diff": "^6.0.2",
  11990. "sebastian/environment": "^7.2.1",
  11991. "sebastian/exporter": "^6.3.2",
  11992. "sebastian/global-state": "^7.0.2",
  11993. "sebastian/object-enumerator": "^6.0.1",
  11994. "sebastian/type": "^5.1.3",
  11995. "sebastian/version": "^5.0.2",
  11996. "staabm/side-effects-detector": "^1.0.5"
  11997. },
  11998. "suggest": {
  11999. "ext-soap": "To be able to generate mocks based on WSDL files"
  12000. },
  12001. "bin": [
  12002. "phpunit"
  12003. ],
  12004. "type": "library",
  12005. "extra": {
  12006. "branch-alias": {
  12007. "dev-main": "11.5-dev"
  12008. }
  12009. },
  12010. "autoload": {
  12011. "files": [
  12012. "src/Framework/Assert/Functions.php"
  12013. ],
  12014. "classmap": [
  12015. "src/"
  12016. ]
  12017. },
  12018. "notification-url": "https://packagist.org/downloads/",
  12019. "license": [
  12020. "BSD-3-Clause"
  12021. ],
  12022. "authors": [
  12023. {
  12024. "name": "Sebastian Bergmann",
  12025. "email": "sebastian@phpunit.de",
  12026. "role": "lead"
  12027. }
  12028. ],
  12029. "description": "The PHP Unit Testing framework.",
  12030. "homepage": "https://phpunit.de/",
  12031. "keywords": [
  12032. "phpunit",
  12033. "testing",
  12034. "xunit"
  12035. ],
  12036. "support": {
  12037. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  12038. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  12039. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.48"
  12040. },
  12041. "funding": [
  12042. {
  12043. "url": "https://phpunit.de/sponsors.html",
  12044. "type": "custom"
  12045. },
  12046. {
  12047. "url": "https://github.com/sebastianbergmann",
  12048. "type": "github"
  12049. },
  12050. {
  12051. "url": "https://liberapay.com/sebastianbergmann",
  12052. "type": "liberapay"
  12053. },
  12054. {
  12055. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12056. "type": "thanks_dev"
  12057. },
  12058. {
  12059. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  12060. "type": "tidelift"
  12061. }
  12062. ],
  12063. "time": "2026-01-16T16:26:27+00:00"
  12064. },
  12065. {
  12066. "name": "sebastian/cli-parser",
  12067. "version": "3.0.2",
  12068. "source": {
  12069. "type": "git",
  12070. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  12071. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  12072. },
  12073. "dist": {
  12074. "type": "zip",
  12075. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  12076. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  12077. "shasum": ""
  12078. },
  12079. "require": {
  12080. "php": ">=8.2"
  12081. },
  12082. "require-dev": {
  12083. "phpunit/phpunit": "^11.0"
  12084. },
  12085. "type": "library",
  12086. "extra": {
  12087. "branch-alias": {
  12088. "dev-main": "3.0-dev"
  12089. }
  12090. },
  12091. "autoload": {
  12092. "classmap": [
  12093. "src/"
  12094. ]
  12095. },
  12096. "notification-url": "https://packagist.org/downloads/",
  12097. "license": [
  12098. "BSD-3-Clause"
  12099. ],
  12100. "authors": [
  12101. {
  12102. "name": "Sebastian Bergmann",
  12103. "email": "sebastian@phpunit.de",
  12104. "role": "lead"
  12105. }
  12106. ],
  12107. "description": "Library for parsing CLI options",
  12108. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  12109. "support": {
  12110. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  12111. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  12112. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  12113. },
  12114. "funding": [
  12115. {
  12116. "url": "https://github.com/sebastianbergmann",
  12117. "type": "github"
  12118. }
  12119. ],
  12120. "time": "2024-07-03T04:41:36+00:00"
  12121. },
  12122. {
  12123. "name": "sebastian/code-unit",
  12124. "version": "3.0.3",
  12125. "source": {
  12126. "type": "git",
  12127. "url": "https://github.com/sebastianbergmann/code-unit.git",
  12128. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  12129. },
  12130. "dist": {
  12131. "type": "zip",
  12132. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  12133. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  12134. "shasum": ""
  12135. },
  12136. "require": {
  12137. "php": ">=8.2"
  12138. },
  12139. "require-dev": {
  12140. "phpunit/phpunit": "^11.5"
  12141. },
  12142. "type": "library",
  12143. "extra": {
  12144. "branch-alias": {
  12145. "dev-main": "3.0-dev"
  12146. }
  12147. },
  12148. "autoload": {
  12149. "classmap": [
  12150. "src/"
  12151. ]
  12152. },
  12153. "notification-url": "https://packagist.org/downloads/",
  12154. "license": [
  12155. "BSD-3-Clause"
  12156. ],
  12157. "authors": [
  12158. {
  12159. "name": "Sebastian Bergmann",
  12160. "email": "sebastian@phpunit.de",
  12161. "role": "lead"
  12162. }
  12163. ],
  12164. "description": "Collection of value objects that represent the PHP code units",
  12165. "homepage": "https://github.com/sebastianbergmann/code-unit",
  12166. "support": {
  12167. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  12168. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  12169. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  12170. },
  12171. "funding": [
  12172. {
  12173. "url": "https://github.com/sebastianbergmann",
  12174. "type": "github"
  12175. }
  12176. ],
  12177. "time": "2025-03-19T07:56:08+00:00"
  12178. },
  12179. {
  12180. "name": "sebastian/code-unit-reverse-lookup",
  12181. "version": "4.0.1",
  12182. "source": {
  12183. "type": "git",
  12184. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  12185. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  12186. },
  12187. "dist": {
  12188. "type": "zip",
  12189. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  12190. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  12191. "shasum": ""
  12192. },
  12193. "require": {
  12194. "php": ">=8.2"
  12195. },
  12196. "require-dev": {
  12197. "phpunit/phpunit": "^11.0"
  12198. },
  12199. "type": "library",
  12200. "extra": {
  12201. "branch-alias": {
  12202. "dev-main": "4.0-dev"
  12203. }
  12204. },
  12205. "autoload": {
  12206. "classmap": [
  12207. "src/"
  12208. ]
  12209. },
  12210. "notification-url": "https://packagist.org/downloads/",
  12211. "license": [
  12212. "BSD-3-Clause"
  12213. ],
  12214. "authors": [
  12215. {
  12216. "name": "Sebastian Bergmann",
  12217. "email": "sebastian@phpunit.de"
  12218. }
  12219. ],
  12220. "description": "Looks up which function or method a line of code belongs to",
  12221. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  12222. "support": {
  12223. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  12224. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  12225. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  12226. },
  12227. "funding": [
  12228. {
  12229. "url": "https://github.com/sebastianbergmann",
  12230. "type": "github"
  12231. }
  12232. ],
  12233. "time": "2024-07-03T04:45:54+00:00"
  12234. },
  12235. {
  12236. "name": "sebastian/comparator",
  12237. "version": "6.3.2",
  12238. "source": {
  12239. "type": "git",
  12240. "url": "https://github.com/sebastianbergmann/comparator.git",
  12241. "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8"
  12242. },
  12243. "dist": {
  12244. "type": "zip",
  12245. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/85c77556683e6eee4323e4c5468641ca0237e2e8",
  12246. "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8",
  12247. "shasum": ""
  12248. },
  12249. "require": {
  12250. "ext-dom": "*",
  12251. "ext-mbstring": "*",
  12252. "php": ">=8.2",
  12253. "sebastian/diff": "^6.0",
  12254. "sebastian/exporter": "^6.0"
  12255. },
  12256. "require-dev": {
  12257. "phpunit/phpunit": "^11.4"
  12258. },
  12259. "suggest": {
  12260. "ext-bcmath": "For comparing BcMath\\Number objects"
  12261. },
  12262. "type": "library",
  12263. "extra": {
  12264. "branch-alias": {
  12265. "dev-main": "6.3-dev"
  12266. }
  12267. },
  12268. "autoload": {
  12269. "classmap": [
  12270. "src/"
  12271. ]
  12272. },
  12273. "notification-url": "https://packagist.org/downloads/",
  12274. "license": [
  12275. "BSD-3-Clause"
  12276. ],
  12277. "authors": [
  12278. {
  12279. "name": "Sebastian Bergmann",
  12280. "email": "sebastian@phpunit.de"
  12281. },
  12282. {
  12283. "name": "Jeff Welch",
  12284. "email": "whatthejeff@gmail.com"
  12285. },
  12286. {
  12287. "name": "Volker Dusch",
  12288. "email": "github@wallbash.com"
  12289. },
  12290. {
  12291. "name": "Bernhard Schussek",
  12292. "email": "bschussek@2bepublished.at"
  12293. }
  12294. ],
  12295. "description": "Provides the functionality to compare PHP values for equality",
  12296. "homepage": "https://github.com/sebastianbergmann/comparator",
  12297. "keywords": [
  12298. "comparator",
  12299. "compare",
  12300. "equality"
  12301. ],
  12302. "support": {
  12303. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12304. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  12305. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.2"
  12306. },
  12307. "funding": [
  12308. {
  12309. "url": "https://github.com/sebastianbergmann",
  12310. "type": "github"
  12311. },
  12312. {
  12313. "url": "https://liberapay.com/sebastianbergmann",
  12314. "type": "liberapay"
  12315. },
  12316. {
  12317. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12318. "type": "thanks_dev"
  12319. },
  12320. {
  12321. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  12322. "type": "tidelift"
  12323. }
  12324. ],
  12325. "time": "2025-08-10T08:07:46+00:00"
  12326. },
  12327. {
  12328. "name": "sebastian/complexity",
  12329. "version": "4.0.1",
  12330. "source": {
  12331. "type": "git",
  12332. "url": "https://github.com/sebastianbergmann/complexity.git",
  12333. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  12334. },
  12335. "dist": {
  12336. "type": "zip",
  12337. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  12338. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  12339. "shasum": ""
  12340. },
  12341. "require": {
  12342. "nikic/php-parser": "^5.0",
  12343. "php": ">=8.2"
  12344. },
  12345. "require-dev": {
  12346. "phpunit/phpunit": "^11.0"
  12347. },
  12348. "type": "library",
  12349. "extra": {
  12350. "branch-alias": {
  12351. "dev-main": "4.0-dev"
  12352. }
  12353. },
  12354. "autoload": {
  12355. "classmap": [
  12356. "src/"
  12357. ]
  12358. },
  12359. "notification-url": "https://packagist.org/downloads/",
  12360. "license": [
  12361. "BSD-3-Clause"
  12362. ],
  12363. "authors": [
  12364. {
  12365. "name": "Sebastian Bergmann",
  12366. "email": "sebastian@phpunit.de",
  12367. "role": "lead"
  12368. }
  12369. ],
  12370. "description": "Library for calculating the complexity of PHP code units",
  12371. "homepage": "https://github.com/sebastianbergmann/complexity",
  12372. "support": {
  12373. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12374. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  12375. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  12376. },
  12377. "funding": [
  12378. {
  12379. "url": "https://github.com/sebastianbergmann",
  12380. "type": "github"
  12381. }
  12382. ],
  12383. "time": "2024-07-03T04:49:50+00:00"
  12384. },
  12385. {
  12386. "name": "sebastian/diff",
  12387. "version": "6.0.2",
  12388. "source": {
  12389. "type": "git",
  12390. "url": "https://github.com/sebastianbergmann/diff.git",
  12391. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  12392. },
  12393. "dist": {
  12394. "type": "zip",
  12395. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  12396. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  12397. "shasum": ""
  12398. },
  12399. "require": {
  12400. "php": ">=8.2"
  12401. },
  12402. "require-dev": {
  12403. "phpunit/phpunit": "^11.0",
  12404. "symfony/process": "^4.2 || ^5"
  12405. },
  12406. "type": "library",
  12407. "extra": {
  12408. "branch-alias": {
  12409. "dev-main": "6.0-dev"
  12410. }
  12411. },
  12412. "autoload": {
  12413. "classmap": [
  12414. "src/"
  12415. ]
  12416. },
  12417. "notification-url": "https://packagist.org/downloads/",
  12418. "license": [
  12419. "BSD-3-Clause"
  12420. ],
  12421. "authors": [
  12422. {
  12423. "name": "Sebastian Bergmann",
  12424. "email": "sebastian@phpunit.de"
  12425. },
  12426. {
  12427. "name": "Kore Nordmann",
  12428. "email": "mail@kore-nordmann.de"
  12429. }
  12430. ],
  12431. "description": "Diff implementation",
  12432. "homepage": "https://github.com/sebastianbergmann/diff",
  12433. "keywords": [
  12434. "diff",
  12435. "udiff",
  12436. "unidiff",
  12437. "unified diff"
  12438. ],
  12439. "support": {
  12440. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12441. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  12442. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  12443. },
  12444. "funding": [
  12445. {
  12446. "url": "https://github.com/sebastianbergmann",
  12447. "type": "github"
  12448. }
  12449. ],
  12450. "time": "2024-07-03T04:53:05+00:00"
  12451. },
  12452. {
  12453. "name": "sebastian/environment",
  12454. "version": "7.2.1",
  12455. "source": {
  12456. "type": "git",
  12457. "url": "https://github.com/sebastianbergmann/environment.git",
  12458. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  12459. },
  12460. "dist": {
  12461. "type": "zip",
  12462. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  12463. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  12464. "shasum": ""
  12465. },
  12466. "require": {
  12467. "php": ">=8.2"
  12468. },
  12469. "require-dev": {
  12470. "phpunit/phpunit": "^11.3"
  12471. },
  12472. "suggest": {
  12473. "ext-posix": "*"
  12474. },
  12475. "type": "library",
  12476. "extra": {
  12477. "branch-alias": {
  12478. "dev-main": "7.2-dev"
  12479. }
  12480. },
  12481. "autoload": {
  12482. "classmap": [
  12483. "src/"
  12484. ]
  12485. },
  12486. "notification-url": "https://packagist.org/downloads/",
  12487. "license": [
  12488. "BSD-3-Clause"
  12489. ],
  12490. "authors": [
  12491. {
  12492. "name": "Sebastian Bergmann",
  12493. "email": "sebastian@phpunit.de"
  12494. }
  12495. ],
  12496. "description": "Provides functionality to handle HHVM/PHP environments",
  12497. "homepage": "https://github.com/sebastianbergmann/environment",
  12498. "keywords": [
  12499. "Xdebug",
  12500. "environment",
  12501. "hhvm"
  12502. ],
  12503. "support": {
  12504. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12505. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  12506. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  12507. },
  12508. "funding": [
  12509. {
  12510. "url": "https://github.com/sebastianbergmann",
  12511. "type": "github"
  12512. },
  12513. {
  12514. "url": "https://liberapay.com/sebastianbergmann",
  12515. "type": "liberapay"
  12516. },
  12517. {
  12518. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12519. "type": "thanks_dev"
  12520. },
  12521. {
  12522. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  12523. "type": "tidelift"
  12524. }
  12525. ],
  12526. "time": "2025-05-21T11:55:47+00:00"
  12527. },
  12528. {
  12529. "name": "sebastian/exporter",
  12530. "version": "6.3.2",
  12531. "source": {
  12532. "type": "git",
  12533. "url": "https://github.com/sebastianbergmann/exporter.git",
  12534. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74"
  12535. },
  12536. "dist": {
  12537. "type": "zip",
  12538. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74",
  12539. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74",
  12540. "shasum": ""
  12541. },
  12542. "require": {
  12543. "ext-mbstring": "*",
  12544. "php": ">=8.2",
  12545. "sebastian/recursion-context": "^6.0"
  12546. },
  12547. "require-dev": {
  12548. "phpunit/phpunit": "^11.3"
  12549. },
  12550. "type": "library",
  12551. "extra": {
  12552. "branch-alias": {
  12553. "dev-main": "6.3-dev"
  12554. }
  12555. },
  12556. "autoload": {
  12557. "classmap": [
  12558. "src/"
  12559. ]
  12560. },
  12561. "notification-url": "https://packagist.org/downloads/",
  12562. "license": [
  12563. "BSD-3-Clause"
  12564. ],
  12565. "authors": [
  12566. {
  12567. "name": "Sebastian Bergmann",
  12568. "email": "sebastian@phpunit.de"
  12569. },
  12570. {
  12571. "name": "Jeff Welch",
  12572. "email": "whatthejeff@gmail.com"
  12573. },
  12574. {
  12575. "name": "Volker Dusch",
  12576. "email": "github@wallbash.com"
  12577. },
  12578. {
  12579. "name": "Adam Harvey",
  12580. "email": "aharvey@php.net"
  12581. },
  12582. {
  12583. "name": "Bernhard Schussek",
  12584. "email": "bschussek@gmail.com"
  12585. }
  12586. ],
  12587. "description": "Provides the functionality to export PHP variables for visualization",
  12588. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12589. "keywords": [
  12590. "export",
  12591. "exporter"
  12592. ],
  12593. "support": {
  12594. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12595. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12596. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2"
  12597. },
  12598. "funding": [
  12599. {
  12600. "url": "https://github.com/sebastianbergmann",
  12601. "type": "github"
  12602. },
  12603. {
  12604. "url": "https://liberapay.com/sebastianbergmann",
  12605. "type": "liberapay"
  12606. },
  12607. {
  12608. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12609. "type": "thanks_dev"
  12610. },
  12611. {
  12612. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  12613. "type": "tidelift"
  12614. }
  12615. ],
  12616. "time": "2025-09-24T06:12:51+00:00"
  12617. },
  12618. {
  12619. "name": "sebastian/global-state",
  12620. "version": "7.0.2",
  12621. "source": {
  12622. "type": "git",
  12623. "url": "https://github.com/sebastianbergmann/global-state.git",
  12624. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  12625. },
  12626. "dist": {
  12627. "type": "zip",
  12628. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  12629. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  12630. "shasum": ""
  12631. },
  12632. "require": {
  12633. "php": ">=8.2",
  12634. "sebastian/object-reflector": "^4.0",
  12635. "sebastian/recursion-context": "^6.0"
  12636. },
  12637. "require-dev": {
  12638. "ext-dom": "*",
  12639. "phpunit/phpunit": "^11.0"
  12640. },
  12641. "type": "library",
  12642. "extra": {
  12643. "branch-alias": {
  12644. "dev-main": "7.0-dev"
  12645. }
  12646. },
  12647. "autoload": {
  12648. "classmap": [
  12649. "src/"
  12650. ]
  12651. },
  12652. "notification-url": "https://packagist.org/downloads/",
  12653. "license": [
  12654. "BSD-3-Clause"
  12655. ],
  12656. "authors": [
  12657. {
  12658. "name": "Sebastian Bergmann",
  12659. "email": "sebastian@phpunit.de"
  12660. }
  12661. ],
  12662. "description": "Snapshotting of global state",
  12663. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12664. "keywords": [
  12665. "global state"
  12666. ],
  12667. "support": {
  12668. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12669. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12670. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  12671. },
  12672. "funding": [
  12673. {
  12674. "url": "https://github.com/sebastianbergmann",
  12675. "type": "github"
  12676. }
  12677. ],
  12678. "time": "2024-07-03T04:57:36+00:00"
  12679. },
  12680. {
  12681. "name": "sebastian/lines-of-code",
  12682. "version": "3.0.1",
  12683. "source": {
  12684. "type": "git",
  12685. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12686. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  12687. },
  12688. "dist": {
  12689. "type": "zip",
  12690. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12691. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12692. "shasum": ""
  12693. },
  12694. "require": {
  12695. "nikic/php-parser": "^5.0",
  12696. "php": ">=8.2"
  12697. },
  12698. "require-dev": {
  12699. "phpunit/phpunit": "^11.0"
  12700. },
  12701. "type": "library",
  12702. "extra": {
  12703. "branch-alias": {
  12704. "dev-main": "3.0-dev"
  12705. }
  12706. },
  12707. "autoload": {
  12708. "classmap": [
  12709. "src/"
  12710. ]
  12711. },
  12712. "notification-url": "https://packagist.org/downloads/",
  12713. "license": [
  12714. "BSD-3-Clause"
  12715. ],
  12716. "authors": [
  12717. {
  12718. "name": "Sebastian Bergmann",
  12719. "email": "sebastian@phpunit.de",
  12720. "role": "lead"
  12721. }
  12722. ],
  12723. "description": "Library for counting the lines of code in PHP source code",
  12724. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12725. "support": {
  12726. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12727. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12728. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  12729. },
  12730. "funding": [
  12731. {
  12732. "url": "https://github.com/sebastianbergmann",
  12733. "type": "github"
  12734. }
  12735. ],
  12736. "time": "2024-07-03T04:58:38+00:00"
  12737. },
  12738. {
  12739. "name": "sebastian/object-enumerator",
  12740. "version": "6.0.1",
  12741. "source": {
  12742. "type": "git",
  12743. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12744. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12745. },
  12746. "dist": {
  12747. "type": "zip",
  12748. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12749. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12750. "shasum": ""
  12751. },
  12752. "require": {
  12753. "php": ">=8.2",
  12754. "sebastian/object-reflector": "^4.0",
  12755. "sebastian/recursion-context": "^6.0"
  12756. },
  12757. "require-dev": {
  12758. "phpunit/phpunit": "^11.0"
  12759. },
  12760. "type": "library",
  12761. "extra": {
  12762. "branch-alias": {
  12763. "dev-main": "6.0-dev"
  12764. }
  12765. },
  12766. "autoload": {
  12767. "classmap": [
  12768. "src/"
  12769. ]
  12770. },
  12771. "notification-url": "https://packagist.org/downloads/",
  12772. "license": [
  12773. "BSD-3-Clause"
  12774. ],
  12775. "authors": [
  12776. {
  12777. "name": "Sebastian Bergmann",
  12778. "email": "sebastian@phpunit.de"
  12779. }
  12780. ],
  12781. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12782. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12783. "support": {
  12784. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12785. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12786. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12787. },
  12788. "funding": [
  12789. {
  12790. "url": "https://github.com/sebastianbergmann",
  12791. "type": "github"
  12792. }
  12793. ],
  12794. "time": "2024-07-03T05:00:13+00:00"
  12795. },
  12796. {
  12797. "name": "sebastian/object-reflector",
  12798. "version": "4.0.1",
  12799. "source": {
  12800. "type": "git",
  12801. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12802. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12803. },
  12804. "dist": {
  12805. "type": "zip",
  12806. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12807. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12808. "shasum": ""
  12809. },
  12810. "require": {
  12811. "php": ">=8.2"
  12812. },
  12813. "require-dev": {
  12814. "phpunit/phpunit": "^11.0"
  12815. },
  12816. "type": "library",
  12817. "extra": {
  12818. "branch-alias": {
  12819. "dev-main": "4.0-dev"
  12820. }
  12821. },
  12822. "autoload": {
  12823. "classmap": [
  12824. "src/"
  12825. ]
  12826. },
  12827. "notification-url": "https://packagist.org/downloads/",
  12828. "license": [
  12829. "BSD-3-Clause"
  12830. ],
  12831. "authors": [
  12832. {
  12833. "name": "Sebastian Bergmann",
  12834. "email": "sebastian@phpunit.de"
  12835. }
  12836. ],
  12837. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12838. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12839. "support": {
  12840. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12841. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12842. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12843. },
  12844. "funding": [
  12845. {
  12846. "url": "https://github.com/sebastianbergmann",
  12847. "type": "github"
  12848. }
  12849. ],
  12850. "time": "2024-07-03T05:01:32+00:00"
  12851. },
  12852. {
  12853. "name": "sebastian/recursion-context",
  12854. "version": "6.0.3",
  12855. "source": {
  12856. "type": "git",
  12857. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12858. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc"
  12859. },
  12860. "dist": {
  12861. "type": "zip",
  12862. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  12863. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  12864. "shasum": ""
  12865. },
  12866. "require": {
  12867. "php": ">=8.2"
  12868. },
  12869. "require-dev": {
  12870. "phpunit/phpunit": "^11.3"
  12871. },
  12872. "type": "library",
  12873. "extra": {
  12874. "branch-alias": {
  12875. "dev-main": "6.0-dev"
  12876. }
  12877. },
  12878. "autoload": {
  12879. "classmap": [
  12880. "src/"
  12881. ]
  12882. },
  12883. "notification-url": "https://packagist.org/downloads/",
  12884. "license": [
  12885. "BSD-3-Clause"
  12886. ],
  12887. "authors": [
  12888. {
  12889. "name": "Sebastian Bergmann",
  12890. "email": "sebastian@phpunit.de"
  12891. },
  12892. {
  12893. "name": "Jeff Welch",
  12894. "email": "whatthejeff@gmail.com"
  12895. },
  12896. {
  12897. "name": "Adam Harvey",
  12898. "email": "aharvey@php.net"
  12899. }
  12900. ],
  12901. "description": "Provides functionality to recursively process PHP variables",
  12902. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12903. "support": {
  12904. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12905. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12906. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3"
  12907. },
  12908. "funding": [
  12909. {
  12910. "url": "https://github.com/sebastianbergmann",
  12911. "type": "github"
  12912. },
  12913. {
  12914. "url": "https://liberapay.com/sebastianbergmann",
  12915. "type": "liberapay"
  12916. },
  12917. {
  12918. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12919. "type": "thanks_dev"
  12920. },
  12921. {
  12922. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  12923. "type": "tidelift"
  12924. }
  12925. ],
  12926. "time": "2025-08-13T04:42:22+00:00"
  12927. },
  12928. {
  12929. "name": "sebastian/type",
  12930. "version": "5.1.3",
  12931. "source": {
  12932. "type": "git",
  12933. "url": "https://github.com/sebastianbergmann/type.git",
  12934. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449"
  12935. },
  12936. "dist": {
  12937. "type": "zip",
  12938. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  12939. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  12940. "shasum": ""
  12941. },
  12942. "require": {
  12943. "php": ">=8.2"
  12944. },
  12945. "require-dev": {
  12946. "phpunit/phpunit": "^11.3"
  12947. },
  12948. "type": "library",
  12949. "extra": {
  12950. "branch-alias": {
  12951. "dev-main": "5.1-dev"
  12952. }
  12953. },
  12954. "autoload": {
  12955. "classmap": [
  12956. "src/"
  12957. ]
  12958. },
  12959. "notification-url": "https://packagist.org/downloads/",
  12960. "license": [
  12961. "BSD-3-Clause"
  12962. ],
  12963. "authors": [
  12964. {
  12965. "name": "Sebastian Bergmann",
  12966. "email": "sebastian@phpunit.de",
  12967. "role": "lead"
  12968. }
  12969. ],
  12970. "description": "Collection of value objects that represent the types of the PHP type system",
  12971. "homepage": "https://github.com/sebastianbergmann/type",
  12972. "support": {
  12973. "issues": "https://github.com/sebastianbergmann/type/issues",
  12974. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12975. "source": "https://github.com/sebastianbergmann/type/tree/5.1.3"
  12976. },
  12977. "funding": [
  12978. {
  12979. "url": "https://github.com/sebastianbergmann",
  12980. "type": "github"
  12981. },
  12982. {
  12983. "url": "https://liberapay.com/sebastianbergmann",
  12984. "type": "liberapay"
  12985. },
  12986. {
  12987. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12988. "type": "thanks_dev"
  12989. },
  12990. {
  12991. "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
  12992. "type": "tidelift"
  12993. }
  12994. ],
  12995. "time": "2025-08-09T06:55:48+00:00"
  12996. },
  12997. {
  12998. "name": "sebastian/version",
  12999. "version": "5.0.2",
  13000. "source": {
  13001. "type": "git",
  13002. "url": "https://github.com/sebastianbergmann/version.git",
  13003. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  13004. },
  13005. "dist": {
  13006. "type": "zip",
  13007. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  13008. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  13009. "shasum": ""
  13010. },
  13011. "require": {
  13012. "php": ">=8.2"
  13013. },
  13014. "type": "library",
  13015. "extra": {
  13016. "branch-alias": {
  13017. "dev-main": "5.0-dev"
  13018. }
  13019. },
  13020. "autoload": {
  13021. "classmap": [
  13022. "src/"
  13023. ]
  13024. },
  13025. "notification-url": "https://packagist.org/downloads/",
  13026. "license": [
  13027. "BSD-3-Clause"
  13028. ],
  13029. "authors": [
  13030. {
  13031. "name": "Sebastian Bergmann",
  13032. "email": "sebastian@phpunit.de",
  13033. "role": "lead"
  13034. }
  13035. ],
  13036. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  13037. "homepage": "https://github.com/sebastianbergmann/version",
  13038. "support": {
  13039. "issues": "https://github.com/sebastianbergmann/version/issues",
  13040. "security": "https://github.com/sebastianbergmann/version/security/policy",
  13041. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  13042. },
  13043. "funding": [
  13044. {
  13045. "url": "https://github.com/sebastianbergmann",
  13046. "type": "github"
  13047. }
  13048. ],
  13049. "time": "2024-10-09T05:16:32+00:00"
  13050. },
  13051. {
  13052. "name": "staabm/side-effects-detector",
  13053. "version": "1.0.5",
  13054. "source": {
  13055. "type": "git",
  13056. "url": "https://github.com/staabm/side-effects-detector.git",
  13057. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13058. },
  13059. "dist": {
  13060. "type": "zip",
  13061. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13062. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13063. "shasum": ""
  13064. },
  13065. "require": {
  13066. "ext-tokenizer": "*",
  13067. "php": "^7.4 || ^8.0"
  13068. },
  13069. "require-dev": {
  13070. "phpstan/extension-installer": "^1.4.3",
  13071. "phpstan/phpstan": "^1.12.6",
  13072. "phpunit/phpunit": "^9.6.21",
  13073. "symfony/var-dumper": "^5.4.43",
  13074. "tomasvotruba/type-coverage": "1.0.0",
  13075. "tomasvotruba/unused-public": "1.0.0"
  13076. },
  13077. "type": "library",
  13078. "autoload": {
  13079. "classmap": [
  13080. "lib/"
  13081. ]
  13082. },
  13083. "notification-url": "https://packagist.org/downloads/",
  13084. "license": [
  13085. "MIT"
  13086. ],
  13087. "description": "A static analysis tool to detect side effects in PHP code",
  13088. "keywords": [
  13089. "static analysis"
  13090. ],
  13091. "support": {
  13092. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13093. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13094. },
  13095. "funding": [
  13096. {
  13097. "url": "https://github.com/staabm",
  13098. "type": "github"
  13099. }
  13100. ],
  13101. "time": "2024-10-20T05:08:20+00:00"
  13102. },
  13103. {
  13104. "name": "symfony/yaml",
  13105. "version": "v7.4.1",
  13106. "source": {
  13107. "type": "git",
  13108. "url": "https://github.com/symfony/yaml.git",
  13109. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345"
  13110. },
  13111. "dist": {
  13112. "type": "zip",
  13113. "url": "https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345",
  13114. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345",
  13115. "shasum": ""
  13116. },
  13117. "require": {
  13118. "php": ">=8.2",
  13119. "symfony/deprecation-contracts": "^2.5|^3",
  13120. "symfony/polyfill-ctype": "^1.8"
  13121. },
  13122. "conflict": {
  13123. "symfony/console": "<6.4"
  13124. },
  13125. "require-dev": {
  13126. "symfony/console": "^6.4|^7.0|^8.0"
  13127. },
  13128. "bin": [
  13129. "Resources/bin/yaml-lint"
  13130. ],
  13131. "type": "library",
  13132. "autoload": {
  13133. "psr-4": {
  13134. "Symfony\\Component\\Yaml\\": ""
  13135. },
  13136. "exclude-from-classmap": [
  13137. "/Tests/"
  13138. ]
  13139. },
  13140. "notification-url": "https://packagist.org/downloads/",
  13141. "license": [
  13142. "MIT"
  13143. ],
  13144. "authors": [
  13145. {
  13146. "name": "Fabien Potencier",
  13147. "email": "fabien@symfony.com"
  13148. },
  13149. {
  13150. "name": "Symfony Community",
  13151. "homepage": "https://symfony.com/contributors"
  13152. }
  13153. ],
  13154. "description": "Loads and dumps YAML files",
  13155. "homepage": "https://symfony.com",
  13156. "support": {
  13157. "source": "https://github.com/symfony/yaml/tree/v7.4.1"
  13158. },
  13159. "funding": [
  13160. {
  13161. "url": "https://symfony.com/sponsor",
  13162. "type": "custom"
  13163. },
  13164. {
  13165. "url": "https://github.com/fabpot",
  13166. "type": "github"
  13167. },
  13168. {
  13169. "url": "https://github.com/nicolas-grekas",
  13170. "type": "github"
  13171. },
  13172. {
  13173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13174. "type": "tidelift"
  13175. }
  13176. ],
  13177. "time": "2025-12-04T18:11:45+00:00"
  13178. },
  13179. {
  13180. "name": "theseer/tokenizer",
  13181. "version": "1.3.1",
  13182. "source": {
  13183. "type": "git",
  13184. "url": "https://github.com/theseer/tokenizer.git",
  13185. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  13186. },
  13187. "dist": {
  13188. "type": "zip",
  13189. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  13190. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  13191. "shasum": ""
  13192. },
  13193. "require": {
  13194. "ext-dom": "*",
  13195. "ext-tokenizer": "*",
  13196. "ext-xmlwriter": "*",
  13197. "php": "^7.2 || ^8.0"
  13198. },
  13199. "type": "library",
  13200. "autoload": {
  13201. "classmap": [
  13202. "src/"
  13203. ]
  13204. },
  13205. "notification-url": "https://packagist.org/downloads/",
  13206. "license": [
  13207. "BSD-3-Clause"
  13208. ],
  13209. "authors": [
  13210. {
  13211. "name": "Arne Blankerts",
  13212. "email": "arne@blankerts.de",
  13213. "role": "Developer"
  13214. }
  13215. ],
  13216. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13217. "support": {
  13218. "issues": "https://github.com/theseer/tokenizer/issues",
  13219. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  13220. },
  13221. "funding": [
  13222. {
  13223. "url": "https://github.com/theseer",
  13224. "type": "github"
  13225. }
  13226. ],
  13227. "time": "2025-11-17T20:03:58+00:00"
  13228. }
  13229. ],
  13230. "aliases": [],
  13231. "minimum-stability": "stable",
  13232. "stability-flags": {},
  13233. "prefer-stable": true,
  13234. "prefer-lowest": false,
  13235. "platform": {
  13236. "php": "^8.2"
  13237. },
  13238. "platform-dev": {},
  13239. "plugin-api-version": "2.6.0"
  13240. }