composer.lock 343 KB

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