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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648
  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": "370f1def076669e74e94cb2c1bf9c31f",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.2.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "d99a9e8e576cac40668d0a5afaf7ea153590aff9"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/d99a9e8e576cac40668d0a5afaf7ea153590aff9",
  20. "reference": "d99a9e8e576cac40668d0a5afaf7ea153590aff9",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0|^11.0",
  25. "illuminate/support": "^9.0|^10.0|^11.0",
  26. "illuminate/validation": "^9.0|^10.0|^11.0",
  27. "illuminate/view": "^9.0|^10.0|^11.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0|^9.0",
  33. "phpunit/phpunit": "^9.5|^10.0|^11.0",
  34. "vimeo/psalm": "^4.23|^5.1"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.2.2"
  75. },
  76. "time": "2024-09-25T10:06:11+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v4.2.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  89. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0|^12.0",
  96. "illuminate/contracts": "^11.0|^12.0",
  97. "illuminate/support": "^11.0|^12.0",
  98. "laravel/socialite": "^5.12",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.2"
  101. },
  102. "require-dev": {
  103. "laravel/pint": "^1.14",
  104. "laravel/sanctum": "^4.0",
  105. "livewire/livewire": "^3.4.9",
  106. "mockery/mockery": "^1.6",
  107. "orchestra/testbench": "^9.0|^10.0",
  108. "phpunit/phpunit": "^10.5|^11.5.3"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "laravel": {
  113. "providers": [
  114. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  115. ]
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Wallo\\FilamentCompanies\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Andrew Wallo",
  130. "email": "andrewdwallo@gmail.com",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.",
  135. "homepage": "https://github.com/andrewdwallo/filament-companies",
  136. "keywords": [
  137. "Authentication",
  138. "ERP",
  139. "andrewdwallo",
  140. "business management",
  141. "company management",
  142. "crm",
  143. "filament",
  144. "filament companies",
  145. "filament-companies",
  146. "laravel",
  147. "multi-tenant",
  148. "saas",
  149. "socialite"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  153. "source": "https://github.com/andrewdwallo/filament-companies/tree/v4.2.2"
  154. },
  155. "time": "2025-05-08T03:02:08+00:00"
  156. },
  157. {
  158. "name": "andrewdwallo/filament-selectify",
  159. "version": "v2.0.9",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  163. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  168. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "filament/forms": "^3.0",
  173. "php": "^8.1",
  174. "spatie/laravel-package-tools": "^1.15.0"
  175. },
  176. "require-dev": {
  177. "laravel/pint": "^1.0",
  178. "nunomaduro/collision": "^7.9",
  179. "orchestra/testbench": "^8.0",
  180. "pestphp/pest": "^2.0",
  181. "pestphp/pest-plugin-arch": "^2.0",
  182. "pestphp/pest-plugin-laravel": "^2.0"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "laravel": {
  187. "providers": [
  188. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  189. ]
  190. }
  191. },
  192. "autoload": {
  193. "psr-4": {
  194. "Wallo\\FilamentSelectify\\": "src/"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Andrew Wallo",
  204. "email": "andrewdwallo@gmail.com",
  205. "role": "Developer"
  206. }
  207. ],
  208. "description": "This is my package filament-selectify",
  209. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  210. "keywords": [
  211. "andrewdwallo",
  212. "filament-selectify",
  213. "laravel"
  214. ],
  215. "support": {
  216. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  217. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.9"
  218. },
  219. "time": "2024-09-10T00:21:38+00:00"
  220. },
  221. {
  222. "name": "andrewdwallo/transmatic",
  223. "version": "v1.2.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  232. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "aws/aws-sdk-php-laravel": "^3.8",
  237. "ext-intl": "*",
  238. "ext-json": "*",
  239. "illuminate/contracts": "^10.0|^11.0|^12.0",
  240. "php": "^8.1",
  241. "spatie/laravel-package-tools": "^1.14.0"
  242. },
  243. "require-dev": {
  244. "larastan/larastan": "^2.9",
  245. "laravel/pint": "^1.0",
  246. "nunomaduro/collision": "^7.8|^8.0",
  247. "orchestra/testbench": "^8.8|^9.0|^10.0",
  248. "pestphp/pest": "^2.20|^3.0",
  249. "pestphp/pest-plugin-arch": "^2.0|^3.0",
  250. "pestphp/pest-plugin-laravel": "^2.0|^3.0",
  251. "phpstan/extension-installer": "^1.1",
  252. "phpstan/phpstan-deprecation-rules": "^1.0",
  253. "phpstan/phpstan-phpunit": "^1.0",
  254. "spatie/laravel-ray": "^1.26"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "aliases": {
  260. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  261. },
  262. "providers": [
  263. "Wallo\\Transmatic\\TransmaticServiceProvider"
  264. ]
  265. }
  266. },
  267. "autoload": {
  268. "files": [
  269. "src/helpers.php"
  270. ],
  271. "psr-4": {
  272. "Wallo\\Transmatic\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Andrew Wallo",
  282. "email": "andrewdwallo@gmail.com",
  283. "role": "Developer"
  284. }
  285. ],
  286. "description": "Automate and streamline real-time text translations in your Laravel applications",
  287. "homepage": "https://github.com/andrewdwallo/transmatic",
  288. "keywords": [
  289. "andrewdwallo",
  290. "aws",
  291. "laravel",
  292. "localization",
  293. "translation",
  294. "translations",
  295. "transmatic"
  296. ],
  297. "support": {
  298. "issues": "https://github.com/andrewdwallo/transmatic/issues",
  299. "source": "https://github.com/andrewdwallo/transmatic/tree/v1.2.0"
  300. },
  301. "time": "2025-03-02T00:21:46+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.3.3",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "2f05023f1e465a91dc4f08483e6710325641a444"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/2f05023f1e465a91dc4f08483e6710325641a444",
  314. "reference": "2f05023f1e465a91dc4f08483e6710325641a444",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0|^12.0",
  319. "php": "^7.4|^8.0"
  320. },
  321. "require-dev": {
  322. "friendsofphp/php-cs-fixer": "^3.26",
  323. "laravel/legacy-factories": "^1.1",
  324. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  325. "phpstan/phpstan": "^2.0",
  326. "phpunit/phpunit": "^9.5|^10.5|^11.0",
  327. "psalm/plugin-laravel": "^2.8|^3.0",
  328. "squizlabs/php_codesniffer": "^3.7"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "laravel": {
  333. "aliases": {
  334. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  335. }
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "AnourValar\\EloquentSerialize\\": "src/"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "description": "Laravel Query Builder (Eloquent) serialization",
  348. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  349. "keywords": [
  350. "anourvalar",
  351. "builder",
  352. "copy",
  353. "eloquent",
  354. "job",
  355. "laravel",
  356. "query",
  357. "querybuilder",
  358. "queue",
  359. "serializable",
  360. "serialization",
  361. "serialize"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  365. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.3.3"
  366. },
  367. "time": "2025-05-28T17:07:28+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.1.4",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "275de32e2123a2f7e586404352ee4c794f019a09"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/275de32e2123a2f7e586404352ee4c794f019a09",
  380. "reference": "275de32e2123a2f7e586404352ee4c794f019a09",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "filament/forms": "^3.2.116",
  385. "php": "^8.1",
  386. "spatie/laravel-package-tools": "^1.13.5"
  387. },
  388. "require-dev": {
  389. "laravel/pint": "^1.0",
  390. "nunomaduro/collision": "^7.0",
  391. "orchestra/testbench": "^8.0",
  392. "pestphp/pest": "^2.0",
  393. "pestphp/pest-plugin-faker": "^2.0",
  394. "pestphp/pest-plugin-laravel": "^2.0",
  395. "pestphp/pest-plugin-livewire": "^2.0",
  396. "phpunit/phpunit": "^10.0",
  397. "spatie/laravel-ray": "^1.26"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "laravel": {
  402. "providers": [
  403. "Awcodes\\TableRepeater\\TableRepeaterServiceProvider"
  404. ]
  405. }
  406. },
  407. "autoload": {
  408. "psr-4": {
  409. "Awcodes\\TableRepeater\\": "src"
  410. }
  411. },
  412. "notification-url": "https://packagist.org/downloads/",
  413. "license": [
  414. "MIT"
  415. ],
  416. "authors": [
  417. {
  418. "name": "Adam Weston",
  419. "email": "awcodes1@gmail.com",
  420. "role": "Developer"
  421. }
  422. ],
  423. "description": "A modified version of the Filament Forms Repeater to display it as a table.",
  424. "homepage": "https://github.com/awcodes/filament-table-repeater",
  425. "keywords": [
  426. "awcodes",
  427. "filament",
  428. "laravel",
  429. "plugin",
  430. "table repeater"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/awcodes/filament-table-repeater/issues",
  434. "source": "https://github.com/awcodes/filament-table-repeater/tree/v3.1.4"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2025-05-15T15:46:52+00:00"
  443. },
  444. {
  445. "name": "aws/aws-crt-php",
  446. "version": "v1.2.7",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/awslabs/aws-crt-php.git",
  450. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  455. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": ">=5.5"
  460. },
  461. "require-dev": {
  462. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  463. "yoast/phpunit-polyfills": "^1.0"
  464. },
  465. "suggest": {
  466. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "classmap": [
  471. "src/"
  472. ]
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "Apache-2.0"
  477. ],
  478. "authors": [
  479. {
  480. "name": "AWS SDK Common Runtime Team",
  481. "email": "aws-sdk-common-runtime@amazon.com"
  482. }
  483. ],
  484. "description": "AWS Common Runtime for PHP",
  485. "homepage": "https://github.com/awslabs/aws-crt-php",
  486. "keywords": [
  487. "amazon",
  488. "aws",
  489. "crt",
  490. "sdk"
  491. ],
  492. "support": {
  493. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  494. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  495. },
  496. "time": "2024-10-18T22:15:13+00:00"
  497. },
  498. {
  499. "name": "aws/aws-sdk-php",
  500. "version": "3.344.6",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "eb0bc621472592545539329499961a15a3f9f6dc"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/eb0bc621472592545539329499961a15a3f9f6dc",
  509. "reference": "eb0bc621472592545539329499961a15a3f9f6dc",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "aws/aws-crt-php": "^1.2.3",
  514. "ext-json": "*",
  515. "ext-pcre": "*",
  516. "ext-simplexml": "*",
  517. "guzzlehttp/guzzle": "^7.4.5",
  518. "guzzlehttp/promises": "^2.0",
  519. "guzzlehttp/psr7": "^2.4.5",
  520. "mtdowling/jmespath.php": "^2.8.0",
  521. "php": ">=8.1",
  522. "psr/http-message": "^2.0"
  523. },
  524. "require-dev": {
  525. "andrewsville/php-token-reflection": "^1.4",
  526. "aws/aws-php-sns-message-validator": "~1.0",
  527. "behat/behat": "~3.0",
  528. "composer/composer": "^2.7.8",
  529. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  530. "doctrine/cache": "~1.4",
  531. "ext-dom": "*",
  532. "ext-openssl": "*",
  533. "ext-pcntl": "*",
  534. "ext-sockets": "*",
  535. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  536. "psr/cache": "^2.0 || ^3.0",
  537. "psr/simple-cache": "^2.0 || ^3.0",
  538. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  539. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  540. "yoast/phpunit-polyfills": "^2.0"
  541. },
  542. "suggest": {
  543. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  544. "doctrine/cache": "To use the DoctrineCacheAdapter",
  545. "ext-curl": "To send requests using cURL",
  546. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  547. "ext-sockets": "To use client-side monitoring"
  548. },
  549. "type": "library",
  550. "extra": {
  551. "branch-alias": {
  552. "dev-master": "3.0-dev"
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions.php"
  558. ],
  559. "psr-4": {
  560. "Aws\\": "src/"
  561. },
  562. "exclude-from-classmap": [
  563. "src/data/"
  564. ]
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "Apache-2.0"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Amazon Web Services",
  573. "homepage": "http://aws.amazon.com"
  574. }
  575. ],
  576. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  577. "homepage": "http://aws.amazon.com/sdkforphp",
  578. "keywords": [
  579. "amazon",
  580. "aws",
  581. "cloud",
  582. "dynamodb",
  583. "ec2",
  584. "glacier",
  585. "s3",
  586. "sdk"
  587. ],
  588. "support": {
  589. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  590. "issues": "https://github.com/aws/aws-sdk-php/issues",
  591. "source": "https://github.com/aws/aws-sdk-php/tree/3.344.6"
  592. },
  593. "time": "2025-06-12T18:03:59+00:00"
  594. },
  595. {
  596. "name": "aws/aws-sdk-php-laravel",
  597. "version": "3.10.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  601. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/c1477b1efd43a61238090c0e8f1ede979573dd4b",
  606. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "aws/aws-sdk-php": "^3.338.0",
  611. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  612. "php": ">=8.1"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^8.0 || ^9.0",
  616. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  617. "yoast/phpunit-polyfills": "^1.0"
  618. },
  619. "suggest": {
  620. "laravel/framework": "To test the Laravel bindings",
  621. "laravel/lumen-framework": "To test the Lumen bindings"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "laravel": {
  626. "aliases": {
  627. "AWS": "Aws\\Laravel\\AwsFacade"
  628. },
  629. "providers": [
  630. "Aws\\Laravel\\AwsServiceProvider"
  631. ]
  632. }
  633. },
  634. "autoload": {
  635. "psr-4": {
  636. "Aws\\Laravel\\": "src/"
  637. }
  638. },
  639. "notification-url": "https://packagist.org/downloads/",
  640. "license": [
  641. "Apache-2.0"
  642. ],
  643. "authors": [
  644. {
  645. "name": "Amazon Web Services",
  646. "homepage": "http://aws.amazon.com"
  647. }
  648. ],
  649. "description": "A simple Laravel 6/7/8/9/10/11/12 service provider for including the AWS SDK for PHP.",
  650. "homepage": "https://aws.amazon.com/sdk-for-php/",
  651. "keywords": [
  652. "amazon",
  653. "aws",
  654. "dynamodb",
  655. "ec2",
  656. "laravel",
  657. "laravel 10",
  658. "laravel 11",
  659. "laravel 12",
  660. "laravel 6",
  661. "laravel 7",
  662. "laravel 8",
  663. "laravel 9",
  664. "s3",
  665. "sdk"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  669. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.10.0"
  670. },
  671. "time": "2025-02-26T22:25:56+00:00"
  672. },
  673. {
  674. "name": "barryvdh/laravel-snappy",
  675. "version": "v1.0.4",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/barryvdh/laravel-snappy.git",
  679. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  684. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "illuminate/filesystem": "^9|^10|^11|^12",
  689. "illuminate/support": "^9|^10|^11|^12",
  690. "knplabs/knp-snappy": "^1.4.4",
  691. "php": "^8.1"
  692. },
  693. "require-dev": {
  694. "orchestra/testbench": "^7|^8|^9|^10"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "laravel": {
  699. "aliases": {
  700. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  701. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  702. },
  703. "providers": [
  704. "Barryvdh\\Snappy\\ServiceProvider"
  705. ]
  706. },
  707. "branch-alias": {
  708. "dev-master": "1.0-dev"
  709. }
  710. },
  711. "autoload": {
  712. "psr-4": {
  713. "Barryvdh\\Snappy\\": "src/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Barry vd. Heuvel",
  723. "email": "barryvdh@gmail.com"
  724. }
  725. ],
  726. "description": "Snappy PDF/Image for Laravel",
  727. "keywords": [
  728. "image",
  729. "laravel",
  730. "pdf",
  731. "snappy",
  732. "wkhtmltoimage",
  733. "wkhtmltopdf"
  734. ],
  735. "support": {
  736. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  737. "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.4"
  738. },
  739. "funding": [
  740. {
  741. "url": "https://fruitcake.nl",
  742. "type": "custom"
  743. },
  744. {
  745. "url": "https://github.com/barryvdh",
  746. "type": "github"
  747. }
  748. ],
  749. "time": "2025-02-24T15:20:06+00:00"
  750. },
  751. {
  752. "name": "blade-ui-kit/blade-heroicons",
  753. "version": "2.6.0",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/driesvints/blade-heroicons.git",
  757. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/driesvints/blade-heroicons/zipball/4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  762. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "blade-ui-kit/blade-icons": "^1.6",
  767. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  768. "php": "^8.0"
  769. },
  770. "require-dev": {
  771. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  772. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  773. },
  774. "type": "library",
  775. "extra": {
  776. "laravel": {
  777. "providers": [
  778. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  779. ]
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "BladeUI\\Heroicons\\": "src"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Dries Vints",
  794. "homepage": "https://driesvints.com"
  795. }
  796. ],
  797. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  798. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  799. "keywords": [
  800. "Heroicons",
  801. "blade",
  802. "laravel"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/driesvints/blade-heroicons/issues",
  806. "source": "https://github.com/driesvints/blade-heroicons/tree/2.6.0"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://github.com/sponsors/driesvints",
  811. "type": "github"
  812. },
  813. {
  814. "url": "https://www.paypal.com/paypalme/driesvints",
  815. "type": "paypal"
  816. }
  817. ],
  818. "time": "2025-02-13T20:53:33+00:00"
  819. },
  820. {
  821. "name": "blade-ui-kit/blade-icons",
  822. "version": "1.8.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/driesvints/blade-icons.git",
  826. "reference": "7b743f27476acb2ed04cb518213d78abe096e814"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/driesvints/blade-icons/zipball/7b743f27476acb2ed04cb518213d78abe096e814",
  831. "reference": "7b743f27476acb2ed04cb518213d78abe096e814",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
  836. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
  837. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  838. "illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
  839. "php": "^7.4|^8.0",
  840. "symfony/console": "^5.3|^6.0|^7.0",
  841. "symfony/finder": "^5.3|^6.0|^7.0"
  842. },
  843. "require-dev": {
  844. "mockery/mockery": "^1.5.1",
  845. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  846. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  847. },
  848. "bin": [
  849. "bin/blade-icons-generate"
  850. ],
  851. "type": "library",
  852. "extra": {
  853. "laravel": {
  854. "providers": [
  855. "BladeUI\\Icons\\BladeIconsServiceProvider"
  856. ]
  857. }
  858. },
  859. "autoload": {
  860. "files": [
  861. "src/helpers.php"
  862. ],
  863. "psr-4": {
  864. "BladeUI\\Icons\\": "src"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Dries Vints",
  874. "homepage": "https://driesvints.com"
  875. }
  876. ],
  877. "description": "A package to easily make use of icons in your Laravel Blade views.",
  878. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  879. "keywords": [
  880. "blade",
  881. "icons",
  882. "laravel",
  883. "svg"
  884. ],
  885. "support": {
  886. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  887. "source": "https://github.com/blade-ui-kit/blade-icons"
  888. },
  889. "funding": [
  890. {
  891. "url": "https://github.com/sponsors/driesvints",
  892. "type": "github"
  893. },
  894. {
  895. "url": "https://www.paypal.com/paypalme/driesvints",
  896. "type": "paypal"
  897. }
  898. ],
  899. "time": "2025-02-13T20:35:06+00:00"
  900. },
  901. {
  902. "name": "brick/math",
  903. "version": "0.12.3",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/brick/math.git",
  907. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  912. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "^8.1"
  917. },
  918. "require-dev": {
  919. "php-coveralls/php-coveralls": "^2.2",
  920. "phpunit/phpunit": "^10.1",
  921. "vimeo/psalm": "6.8.8"
  922. },
  923. "type": "library",
  924. "autoload": {
  925. "psr-4": {
  926. "Brick\\Math\\": "src/"
  927. }
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "MIT"
  932. ],
  933. "description": "Arbitrary-precision arithmetic library",
  934. "keywords": [
  935. "Arbitrary-precision",
  936. "BigInteger",
  937. "BigRational",
  938. "arithmetic",
  939. "bigdecimal",
  940. "bignum",
  941. "bignumber",
  942. "brick",
  943. "decimal",
  944. "integer",
  945. "math",
  946. "mathematics",
  947. "rational"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/brick/math/issues",
  951. "source": "https://github.com/brick/math/tree/0.12.3"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://github.com/BenMorel",
  956. "type": "github"
  957. }
  958. ],
  959. "time": "2025-02-28T13:11:00+00:00"
  960. },
  961. {
  962. "name": "carbonphp/carbon-doctrine-types",
  963. "version": "3.2.0",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  967. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  972. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "php": "^8.1"
  977. },
  978. "conflict": {
  979. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  980. },
  981. "require-dev": {
  982. "doctrine/dbal": "^4.0.0",
  983. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  984. "phpunit/phpunit": "^10.3"
  985. },
  986. "type": "library",
  987. "autoload": {
  988. "psr-4": {
  989. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "KyleKatarn",
  999. "email": "kylekatarnls@gmail.com"
  1000. }
  1001. ],
  1002. "description": "Types to use Carbon in Doctrine",
  1003. "keywords": [
  1004. "carbon",
  1005. "date",
  1006. "datetime",
  1007. "doctrine",
  1008. "time"
  1009. ],
  1010. "support": {
  1011. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1012. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1013. },
  1014. "funding": [
  1015. {
  1016. "url": "https://github.com/kylekatarnls",
  1017. "type": "github"
  1018. },
  1019. {
  1020. "url": "https://opencollective.com/Carbon",
  1021. "type": "open_collective"
  1022. },
  1023. {
  1024. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1025. "type": "tidelift"
  1026. }
  1027. ],
  1028. "time": "2024-02-09T16:56:22+00:00"
  1029. },
  1030. {
  1031. "name": "codewithdennis/filament-simple-alert",
  1032. "version": "v3.0.19",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/CodeWithDennis/filament-simple-alert.git",
  1036. "reference": "88214c9ce5f0a7855c016c7a6bd57acb5fb78a46"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/CodeWithDennis/filament-simple-alert/zipball/88214c9ce5f0a7855c016c7a6bd57acb5fb78a46",
  1041. "reference": "88214c9ce5f0a7855c016c7a6bd57acb5fb78a46",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "filament/filament": "^3.0",
  1046. "php": "^8.1",
  1047. "spatie/laravel-package-tools": "^1.15.0"
  1048. },
  1049. "require-dev": {
  1050. "laravel/pint": "^1.16",
  1051. "nunomaduro/collision": "^7.9",
  1052. "orchestra/testbench": "^8.0",
  1053. "pestphp/pest": "^2.1",
  1054. "pestphp/pest-plugin-arch": "^2.0",
  1055. "pestphp/pest-plugin-laravel": "^2.0"
  1056. },
  1057. "type": "library",
  1058. "extra": {
  1059. "laravel": {
  1060. "aliases": {
  1061. "SimpleAlert": "CodeWithDennis\\SimpleAlert\\Facades\\SimpleAlert"
  1062. },
  1063. "providers": [
  1064. "CodeWithDennis\\SimpleAlert\\SimpleAlertServiceProvider"
  1065. ]
  1066. }
  1067. },
  1068. "autoload": {
  1069. "psr-4": {
  1070. "CodeWithDennis\\SimpleAlert\\": "src/",
  1071. "CodeWithDennis\\SimpleAlert\\Database\\Factories\\": "database/factories/"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "CodeWithDennis",
  1081. "role": "Developer"
  1082. }
  1083. ],
  1084. "description": "A plugin for adding straightforward alerts to your filament pages",
  1085. "homepage": "https://github.com/codewithdennis/filament-simple-alert",
  1086. "keywords": [
  1087. "CodeWithDennis",
  1088. "filament-simple-alert",
  1089. "laravel"
  1090. ],
  1091. "support": {
  1092. "issues": "https://github.com/codewithdennis/filament-simple-alert/issues",
  1093. "source": "https://github.com/codewithdennis/filament-simple-alert"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://github.com/CodeWithDennis",
  1098. "type": "github"
  1099. }
  1100. ],
  1101. "time": "2025-06-09T11:29:49+00:00"
  1102. },
  1103. {
  1104. "name": "danharrin/date-format-converter",
  1105. "version": "v0.3.1",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/danharrin/date-format-converter.git",
  1109. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1114. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "php": "^7.2|^8.0"
  1119. },
  1120. "type": "library",
  1121. "autoload": {
  1122. "files": [
  1123. "src/helpers.php",
  1124. "src/standards.php"
  1125. ],
  1126. "psr-4": {
  1127. "DanHarrin\\DateFormatConverter\\": "src/"
  1128. }
  1129. },
  1130. "notification-url": "https://packagist.org/downloads/",
  1131. "license": [
  1132. "MIT"
  1133. ],
  1134. "authors": [
  1135. {
  1136. "name": "Dan Harrin",
  1137. "email": "dan@danharrin.com"
  1138. }
  1139. ],
  1140. "description": "Convert token-based date formats between standards.",
  1141. "homepage": "https://github.com/danharrin/date-format-converter",
  1142. "support": {
  1143. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1144. "source": "https://github.com/danharrin/date-format-converter"
  1145. },
  1146. "funding": [
  1147. {
  1148. "url": "https://github.com/danharrin",
  1149. "type": "github"
  1150. }
  1151. ],
  1152. "time": "2024-06-13T09:38:44+00:00"
  1153. },
  1154. {
  1155. "name": "danharrin/livewire-rate-limiting",
  1156. "version": "v2.1.0",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1160. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1165. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  1170. "php": "^8.0"
  1171. },
  1172. "require-dev": {
  1173. "livewire/livewire": "^3.0",
  1174. "livewire/volt": "^1.3",
  1175. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  1176. "phpunit/phpunit": "^9.0|^10.0|^11.5.3"
  1177. },
  1178. "type": "library",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "DanHarrin\\LivewireRateLimiting\\": "src"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Dan Harrin",
  1191. "email": "dan@danharrin.com"
  1192. }
  1193. ],
  1194. "description": "Apply rate limiters to Laravel Livewire actions.",
  1195. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1196. "support": {
  1197. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1198. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://github.com/danharrin",
  1203. "type": "github"
  1204. }
  1205. ],
  1206. "time": "2025-02-21T08:52:11+00:00"
  1207. },
  1208. {
  1209. "name": "dflydev/dot-access-data",
  1210. "version": "v3.0.3",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1214. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1219. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": "^7.1 || ^8.0"
  1224. },
  1225. "require-dev": {
  1226. "phpstan/phpstan": "^0.12.42",
  1227. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1228. "scrutinizer/ocular": "1.6.0",
  1229. "squizlabs/php_codesniffer": "^3.5",
  1230. "vimeo/psalm": "^4.0.0"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-main": "3.x-dev"
  1236. }
  1237. },
  1238. "autoload": {
  1239. "psr-4": {
  1240. "Dflydev\\DotAccessData\\": "src/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Dragonfly Development Inc.",
  1250. "email": "info@dflydev.com",
  1251. "homepage": "http://dflydev.com"
  1252. },
  1253. {
  1254. "name": "Beau Simensen",
  1255. "email": "beau@dflydev.com",
  1256. "homepage": "http://beausimensen.com"
  1257. },
  1258. {
  1259. "name": "Carlos Frutos",
  1260. "email": "carlos@kiwing.it",
  1261. "homepage": "https://github.com/cfrutos"
  1262. },
  1263. {
  1264. "name": "Colin O'Dell",
  1265. "email": "colinodell@gmail.com",
  1266. "homepage": "https://www.colinodell.com"
  1267. }
  1268. ],
  1269. "description": "Given a deep data structure, access data by dot notation.",
  1270. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1271. "keywords": [
  1272. "access",
  1273. "data",
  1274. "dot",
  1275. "notation"
  1276. ],
  1277. "support": {
  1278. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1279. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1280. },
  1281. "time": "2024-07-08T12:26:09+00:00"
  1282. },
  1283. {
  1284. "name": "doctrine/dbal",
  1285. "version": "4.2.3",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/doctrine/dbal.git",
  1289. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/doctrine/dbal/zipball/33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  1294. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "doctrine/deprecations": "^0.5.3|^1",
  1299. "php": "^8.1",
  1300. "psr/cache": "^1|^2|^3",
  1301. "psr/log": "^1|^2|^3"
  1302. },
  1303. "require-dev": {
  1304. "doctrine/coding-standard": "12.0.0",
  1305. "fig/log-test": "^1",
  1306. "jetbrains/phpstorm-stubs": "2023.2",
  1307. "phpstan/phpstan": "2.1.1",
  1308. "phpstan/phpstan-phpunit": "2.0.3",
  1309. "phpstan/phpstan-strict-rules": "^2",
  1310. "phpunit/phpunit": "10.5.39",
  1311. "slevomat/coding-standard": "8.13.1",
  1312. "squizlabs/php_codesniffer": "3.10.2",
  1313. "symfony/cache": "^6.3.8|^7.0",
  1314. "symfony/console": "^5.4|^6.3|^7.0"
  1315. },
  1316. "suggest": {
  1317. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1318. },
  1319. "type": "library",
  1320. "autoload": {
  1321. "psr-4": {
  1322. "Doctrine\\DBAL\\": "src"
  1323. }
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "MIT"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "Guilherme Blanco",
  1332. "email": "guilhermeblanco@gmail.com"
  1333. },
  1334. {
  1335. "name": "Roman Borschel",
  1336. "email": "roman@code-factory.org"
  1337. },
  1338. {
  1339. "name": "Benjamin Eberlei",
  1340. "email": "kontakt@beberlei.de"
  1341. },
  1342. {
  1343. "name": "Jonathan Wage",
  1344. "email": "jonwage@gmail.com"
  1345. }
  1346. ],
  1347. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1348. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1349. "keywords": [
  1350. "abstraction",
  1351. "database",
  1352. "db2",
  1353. "dbal",
  1354. "mariadb",
  1355. "mssql",
  1356. "mysql",
  1357. "oci8",
  1358. "oracle",
  1359. "pdo",
  1360. "pgsql",
  1361. "postgresql",
  1362. "queryobject",
  1363. "sasql",
  1364. "sql",
  1365. "sqlite",
  1366. "sqlserver",
  1367. "sqlsrv"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/dbal/issues",
  1371. "source": "https://github.com/doctrine/dbal/tree/4.2.3"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://www.doctrine-project.org/sponsorship.html",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://www.patreon.com/phpdoctrine",
  1380. "type": "patreon"
  1381. },
  1382. {
  1383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1384. "type": "tidelift"
  1385. }
  1386. ],
  1387. "time": "2025-03-07T18:29:05+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/deprecations",
  1391. "version": "1.1.5",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/deprecations.git",
  1395. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1400. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^7.1 || ^8.0"
  1405. },
  1406. "conflict": {
  1407. "phpunit/phpunit": "<=7.5 || >=13"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1411. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1412. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1413. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1414. "psr/log": "^1 || ^2 || ^3"
  1415. },
  1416. "suggest": {
  1417. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1418. },
  1419. "type": "library",
  1420. "autoload": {
  1421. "psr-4": {
  1422. "Doctrine\\Deprecations\\": "src"
  1423. }
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "MIT"
  1428. ],
  1429. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1430. "homepage": "https://www.doctrine-project.org/",
  1431. "support": {
  1432. "issues": "https://github.com/doctrine/deprecations/issues",
  1433. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1434. },
  1435. "time": "2025-04-07T20:06:18+00:00"
  1436. },
  1437. {
  1438. "name": "doctrine/inflector",
  1439. "version": "2.0.10",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/doctrine/inflector.git",
  1443. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1448. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "php": "^7.2 || ^8.0"
  1453. },
  1454. "require-dev": {
  1455. "doctrine/coding-standard": "^11.0",
  1456. "phpstan/phpstan": "^1.8",
  1457. "phpstan/phpstan-phpunit": "^1.1",
  1458. "phpstan/phpstan-strict-rules": "^1.3",
  1459. "phpunit/phpunit": "^8.5 || ^9.5",
  1460. "vimeo/psalm": "^4.25 || ^5.4"
  1461. },
  1462. "type": "library",
  1463. "autoload": {
  1464. "psr-4": {
  1465. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1466. }
  1467. },
  1468. "notification-url": "https://packagist.org/downloads/",
  1469. "license": [
  1470. "MIT"
  1471. ],
  1472. "authors": [
  1473. {
  1474. "name": "Guilherme Blanco",
  1475. "email": "guilhermeblanco@gmail.com"
  1476. },
  1477. {
  1478. "name": "Roman Borschel",
  1479. "email": "roman@code-factory.org"
  1480. },
  1481. {
  1482. "name": "Benjamin Eberlei",
  1483. "email": "kontakt@beberlei.de"
  1484. },
  1485. {
  1486. "name": "Jonathan Wage",
  1487. "email": "jonwage@gmail.com"
  1488. },
  1489. {
  1490. "name": "Johannes Schmitt",
  1491. "email": "schmittjoh@gmail.com"
  1492. }
  1493. ],
  1494. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1495. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1496. "keywords": [
  1497. "inflection",
  1498. "inflector",
  1499. "lowercase",
  1500. "manipulation",
  1501. "php",
  1502. "plural",
  1503. "singular",
  1504. "strings",
  1505. "uppercase",
  1506. "words"
  1507. ],
  1508. "support": {
  1509. "issues": "https://github.com/doctrine/inflector/issues",
  1510. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1511. },
  1512. "funding": [
  1513. {
  1514. "url": "https://www.doctrine-project.org/sponsorship.html",
  1515. "type": "custom"
  1516. },
  1517. {
  1518. "url": "https://www.patreon.com/phpdoctrine",
  1519. "type": "patreon"
  1520. },
  1521. {
  1522. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1523. "type": "tidelift"
  1524. }
  1525. ],
  1526. "time": "2024-02-18T20:23:39+00:00"
  1527. },
  1528. {
  1529. "name": "doctrine/lexer",
  1530. "version": "3.0.1",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/doctrine/lexer.git",
  1534. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1539. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "php": "^8.1"
  1544. },
  1545. "require-dev": {
  1546. "doctrine/coding-standard": "^12",
  1547. "phpstan/phpstan": "^1.10",
  1548. "phpunit/phpunit": "^10.5",
  1549. "psalm/plugin-phpunit": "^0.18.3",
  1550. "vimeo/psalm": "^5.21"
  1551. },
  1552. "type": "library",
  1553. "autoload": {
  1554. "psr-4": {
  1555. "Doctrine\\Common\\Lexer\\": "src"
  1556. }
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "MIT"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "Guilherme Blanco",
  1565. "email": "guilhermeblanco@gmail.com"
  1566. },
  1567. {
  1568. "name": "Roman Borschel",
  1569. "email": "roman@code-factory.org"
  1570. },
  1571. {
  1572. "name": "Johannes Schmitt",
  1573. "email": "schmittjoh@gmail.com"
  1574. }
  1575. ],
  1576. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1577. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1578. "keywords": [
  1579. "annotations",
  1580. "docblock",
  1581. "lexer",
  1582. "parser",
  1583. "php"
  1584. ],
  1585. "support": {
  1586. "issues": "https://github.com/doctrine/lexer/issues",
  1587. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1588. },
  1589. "funding": [
  1590. {
  1591. "url": "https://www.doctrine-project.org/sponsorship.html",
  1592. "type": "custom"
  1593. },
  1594. {
  1595. "url": "https://www.patreon.com/phpdoctrine",
  1596. "type": "patreon"
  1597. },
  1598. {
  1599. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1600. "type": "tidelift"
  1601. }
  1602. ],
  1603. "time": "2024-02-05T11:56:58+00:00"
  1604. },
  1605. {
  1606. "name": "dragonmantank/cron-expression",
  1607. "version": "v3.4.0",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/dragonmantank/cron-expression.git",
  1611. "reference": "8c784d071debd117328803d86b2097615b457500"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1616. "reference": "8c784d071debd117328803d86b2097615b457500",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": "^7.2|^8.0",
  1621. "webmozart/assert": "^1.0"
  1622. },
  1623. "replace": {
  1624. "mtdowling/cron-expression": "^1.0"
  1625. },
  1626. "require-dev": {
  1627. "phpstan/extension-installer": "^1.0",
  1628. "phpstan/phpstan": "^1.0",
  1629. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "3.x-dev"
  1635. }
  1636. },
  1637. "autoload": {
  1638. "psr-4": {
  1639. "Cron\\": "src/Cron/"
  1640. }
  1641. },
  1642. "notification-url": "https://packagist.org/downloads/",
  1643. "license": [
  1644. "MIT"
  1645. ],
  1646. "authors": [
  1647. {
  1648. "name": "Chris Tankersley",
  1649. "email": "chris@ctankersley.com",
  1650. "homepage": "https://github.com/dragonmantank"
  1651. }
  1652. ],
  1653. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1654. "keywords": [
  1655. "cron",
  1656. "schedule"
  1657. ],
  1658. "support": {
  1659. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1660. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1661. },
  1662. "funding": [
  1663. {
  1664. "url": "https://github.com/dragonmantank",
  1665. "type": "github"
  1666. }
  1667. ],
  1668. "time": "2024-10-09T13:47:03+00:00"
  1669. },
  1670. {
  1671. "name": "egulias/email-validator",
  1672. "version": "4.0.4",
  1673. "source": {
  1674. "type": "git",
  1675. "url": "https://github.com/egulias/EmailValidator.git",
  1676. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1677. },
  1678. "dist": {
  1679. "type": "zip",
  1680. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1681. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1682. "shasum": ""
  1683. },
  1684. "require": {
  1685. "doctrine/lexer": "^2.0 || ^3.0",
  1686. "php": ">=8.1",
  1687. "symfony/polyfill-intl-idn": "^1.26"
  1688. },
  1689. "require-dev": {
  1690. "phpunit/phpunit": "^10.2",
  1691. "vimeo/psalm": "^5.12"
  1692. },
  1693. "suggest": {
  1694. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-master": "4.0.x-dev"
  1700. }
  1701. },
  1702. "autoload": {
  1703. "psr-4": {
  1704. "Egulias\\EmailValidator\\": "src"
  1705. }
  1706. },
  1707. "notification-url": "https://packagist.org/downloads/",
  1708. "license": [
  1709. "MIT"
  1710. ],
  1711. "authors": [
  1712. {
  1713. "name": "Eduardo Gulias Davis"
  1714. }
  1715. ],
  1716. "description": "A library for validating emails against several RFCs",
  1717. "homepage": "https://github.com/egulias/EmailValidator",
  1718. "keywords": [
  1719. "email",
  1720. "emailvalidation",
  1721. "emailvalidator",
  1722. "validation",
  1723. "validator"
  1724. ],
  1725. "support": {
  1726. "issues": "https://github.com/egulias/EmailValidator/issues",
  1727. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1728. },
  1729. "funding": [
  1730. {
  1731. "url": "https://github.com/egulias",
  1732. "type": "github"
  1733. }
  1734. ],
  1735. "time": "2025-03-06T22:45:56+00:00"
  1736. },
  1737. {
  1738. "name": "fakerphp/faker",
  1739. "version": "v1.24.1",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/FakerPHP/Faker.git",
  1743. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1748. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1749. "shasum": ""
  1750. },
  1751. "require": {
  1752. "php": "^7.4 || ^8.0",
  1753. "psr/container": "^1.0 || ^2.0",
  1754. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1755. },
  1756. "conflict": {
  1757. "fzaninotto/faker": "*"
  1758. },
  1759. "require-dev": {
  1760. "bamarni/composer-bin-plugin": "^1.4.1",
  1761. "doctrine/persistence": "^1.3 || ^2.0",
  1762. "ext-intl": "*",
  1763. "phpunit/phpunit": "^9.5.26",
  1764. "symfony/phpunit-bridge": "^5.4.16"
  1765. },
  1766. "suggest": {
  1767. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  1768. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  1769. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  1770. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  1771. "ext-mbstring": "Required for multibyte Unicode string functionality."
  1772. },
  1773. "type": "library",
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Faker\\": "src/Faker/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "François Zaninotto"
  1786. }
  1787. ],
  1788. "description": "Faker is a PHP library that generates fake data for you.",
  1789. "keywords": [
  1790. "data",
  1791. "faker",
  1792. "fixtures"
  1793. ],
  1794. "support": {
  1795. "issues": "https://github.com/FakerPHP/Faker/issues",
  1796. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  1797. },
  1798. "time": "2024-11-21T13:46:39+00:00"
  1799. },
  1800. {
  1801. "name": "filament/actions",
  1802. "version": "v3.3.26",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/filamentphp/actions.git",
  1806. "reference": "67dd0da772f19e2d74e60eb53f99330faf183892"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/filamentphp/actions/zipball/67dd0da772f19e2d74e60eb53f99330faf183892",
  1811. "reference": "67dd0da772f19e2d74e60eb53f99330faf183892",
  1812. "shasum": ""
  1813. },
  1814. "require": {
  1815. "anourvalar/eloquent-serialize": "^1.2",
  1816. "filament/forms": "self.version",
  1817. "filament/infolists": "self.version",
  1818. "filament/notifications": "self.version",
  1819. "filament/support": "self.version",
  1820. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1821. "illuminate/database": "^10.45|^11.0|^12.0",
  1822. "illuminate/support": "^10.45|^11.0|^12.0",
  1823. "league/csv": "^9.16",
  1824. "openspout/openspout": "^4.23",
  1825. "php": "^8.1",
  1826. "spatie/laravel-package-tools": "^1.9"
  1827. },
  1828. "type": "library",
  1829. "extra": {
  1830. "laravel": {
  1831. "providers": [
  1832. "Filament\\Actions\\ActionsServiceProvider"
  1833. ]
  1834. }
  1835. },
  1836. "autoload": {
  1837. "psr-4": {
  1838. "Filament\\Actions\\": "src"
  1839. }
  1840. },
  1841. "notification-url": "https://packagist.org/downloads/",
  1842. "license": [
  1843. "MIT"
  1844. ],
  1845. "description": "Easily add beautiful action modals to any Livewire component.",
  1846. "homepage": "https://github.com/filamentphp/filament",
  1847. "support": {
  1848. "issues": "https://github.com/filamentphp/filament/issues",
  1849. "source": "https://github.com/filamentphp/filament"
  1850. },
  1851. "time": "2025-06-13T14:47:50+00:00"
  1852. },
  1853. {
  1854. "name": "filament/filament",
  1855. "version": "v3.3.26",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/filamentphp/panels.git",
  1859. "reference": "b060d2d01a969e3b6541ab4f1e24c745352f51c1"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/filamentphp/panels/zipball/b060d2d01a969e3b6541ab4f1e24c745352f51c1",
  1864. "reference": "b060d2d01a969e3b6541ab4f1e24c745352f51c1",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "danharrin/livewire-rate-limiting": "^0.3|^1.0|^2.0",
  1869. "filament/actions": "self.version",
  1870. "filament/forms": "self.version",
  1871. "filament/infolists": "self.version",
  1872. "filament/notifications": "self.version",
  1873. "filament/support": "self.version",
  1874. "filament/tables": "self.version",
  1875. "filament/widgets": "self.version",
  1876. "illuminate/auth": "^10.45|^11.0|^12.0",
  1877. "illuminate/console": "^10.45|^11.0|^12.0",
  1878. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1879. "illuminate/cookie": "^10.45|^11.0|^12.0",
  1880. "illuminate/database": "^10.45|^11.0|^12.0",
  1881. "illuminate/http": "^10.45|^11.0|^12.0",
  1882. "illuminate/routing": "^10.45|^11.0|^12.0",
  1883. "illuminate/session": "^10.45|^11.0|^12.0",
  1884. "illuminate/support": "^10.45|^11.0|^12.0",
  1885. "illuminate/view": "^10.45|^11.0|^12.0",
  1886. "php": "^8.1",
  1887. "spatie/laravel-package-tools": "^1.9"
  1888. },
  1889. "type": "library",
  1890. "extra": {
  1891. "laravel": {
  1892. "providers": [
  1893. "Filament\\FilamentServiceProvider"
  1894. ]
  1895. }
  1896. },
  1897. "autoload": {
  1898. "files": [
  1899. "src/global_helpers.php",
  1900. "src/helpers.php"
  1901. ],
  1902. "psr-4": {
  1903. "Filament\\": "src"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1911. "homepage": "https://github.com/filamentphp/filament",
  1912. "support": {
  1913. "issues": "https://github.com/filamentphp/filament/issues",
  1914. "source": "https://github.com/filamentphp/filament"
  1915. },
  1916. "time": "2025-06-12T15:10:00+00:00"
  1917. },
  1918. {
  1919. "name": "filament/forms",
  1920. "version": "v3.3.26",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/filamentphp/forms.git",
  1924. "reference": "586a13f9d2a6f395ffdc8557730c85a5858b4c4f"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/filamentphp/forms/zipball/586a13f9d2a6f395ffdc8557730c85a5858b4c4f",
  1929. "reference": "586a13f9d2a6f395ffdc8557730c85a5858b4c4f",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "danharrin/date-format-converter": "^0.3",
  1934. "filament/actions": "self.version",
  1935. "filament/support": "self.version",
  1936. "illuminate/console": "^10.45|^11.0|^12.0",
  1937. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1938. "illuminate/database": "^10.45|^11.0|^12.0",
  1939. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1940. "illuminate/support": "^10.45|^11.0|^12.0",
  1941. "illuminate/validation": "^10.45|^11.0|^12.0",
  1942. "illuminate/view": "^10.45|^11.0|^12.0",
  1943. "php": "^8.1",
  1944. "spatie/laravel-package-tools": "^1.9"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "laravel": {
  1949. "providers": [
  1950. "Filament\\Forms\\FormsServiceProvider"
  1951. ]
  1952. }
  1953. },
  1954. "autoload": {
  1955. "files": [
  1956. "src/helpers.php"
  1957. ],
  1958. "psr-4": {
  1959. "Filament\\Forms\\": "src"
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "description": "Easily add beautiful forms to any Livewire component.",
  1967. "homepage": "https://github.com/filamentphp/filament",
  1968. "support": {
  1969. "issues": "https://github.com/filamentphp/filament/issues",
  1970. "source": "https://github.com/filamentphp/filament"
  1971. },
  1972. "time": "2025-06-12T15:10:19+00:00"
  1973. },
  1974. {
  1975. "name": "filament/infolists",
  1976. "version": "v3.3.26",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/filamentphp/infolists.git",
  1980. "reference": "b54ff0fa89f654eca1c14edfd41a7e16ccb8165d"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/b54ff0fa89f654eca1c14edfd41a7e16ccb8165d",
  1985. "reference": "b54ff0fa89f654eca1c14edfd41a7e16ccb8165d",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "filament/actions": "self.version",
  1990. "filament/support": "self.version",
  1991. "illuminate/console": "^10.45|^11.0|^12.0",
  1992. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1993. "illuminate/database": "^10.45|^11.0|^12.0",
  1994. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1995. "illuminate/support": "^10.45|^11.0|^12.0",
  1996. "illuminate/view": "^10.45|^11.0|^12.0",
  1997. "php": "^8.1",
  1998. "spatie/laravel-package-tools": "^1.9"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "laravel": {
  2003. "providers": [
  2004. "Filament\\Infolists\\InfolistsServiceProvider"
  2005. ]
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Filament\\Infolists\\": "src"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  2018. "homepage": "https://github.com/filamentphp/filament",
  2019. "support": {
  2020. "issues": "https://github.com/filamentphp/filament/issues",
  2021. "source": "https://github.com/filamentphp/filament"
  2022. },
  2023. "time": "2025-06-02T09:43:23+00:00"
  2024. },
  2025. {
  2026. "name": "filament/notifications",
  2027. "version": "v3.3.26",
  2028. "source": {
  2029. "type": "git",
  2030. "url": "https://github.com/filamentphp/notifications.git",
  2031. "reference": "356f50e24798a6f06522bfa5123c6ffd054171d3"
  2032. },
  2033. "dist": {
  2034. "type": "zip",
  2035. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/356f50e24798a6f06522bfa5123c6ffd054171d3",
  2036. "reference": "356f50e24798a6f06522bfa5123c6ffd054171d3",
  2037. "shasum": ""
  2038. },
  2039. "require": {
  2040. "filament/actions": "self.version",
  2041. "filament/support": "self.version",
  2042. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2043. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2044. "illuminate/notifications": "^10.45|^11.0|^12.0",
  2045. "illuminate/support": "^10.45|^11.0|^12.0",
  2046. "php": "^8.1",
  2047. "spatie/laravel-package-tools": "^1.9"
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "laravel": {
  2052. "providers": [
  2053. "Filament\\Notifications\\NotificationsServiceProvider"
  2054. ]
  2055. }
  2056. },
  2057. "autoload": {
  2058. "files": [
  2059. "src/Testing/Autoload.php"
  2060. ],
  2061. "psr-4": {
  2062. "Filament\\Notifications\\": "src"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "description": "Easily add beautiful notifications to any Livewire app.",
  2070. "homepage": "https://github.com/filamentphp/filament",
  2071. "support": {
  2072. "issues": "https://github.com/filamentphp/filament/issues",
  2073. "source": "https://github.com/filamentphp/filament"
  2074. },
  2075. "time": "2025-05-21T08:44:14+00:00"
  2076. },
  2077. {
  2078. "name": "filament/support",
  2079. "version": "v3.3.26",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/filamentphp/support.git",
  2083. "reference": "7d850347ffbd8c84d84040ffb8c5ceb0f709a9fe"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/filamentphp/support/zipball/7d850347ffbd8c84d84040ffb8c5ceb0f709a9fe",
  2088. "reference": "7d850347ffbd8c84d84040ffb8c5ceb0f709a9fe",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "blade-ui-kit/blade-heroicons": "^2.5",
  2093. "doctrine/dbal": "^3.2|^4.0",
  2094. "ext-intl": "*",
  2095. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2096. "illuminate/support": "^10.45|^11.0|^12.0",
  2097. "illuminate/view": "^10.45|^11.0|^12.0",
  2098. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  2099. "livewire/livewire": "^3.5",
  2100. "php": "^8.1",
  2101. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2102. "spatie/color": "^1.5",
  2103. "spatie/invade": "^1.0|^2.0",
  2104. "spatie/laravel-package-tools": "^1.9",
  2105. "symfony/console": "^6.0|^7.0",
  2106. "symfony/html-sanitizer": "^6.1|^7.0"
  2107. },
  2108. "type": "library",
  2109. "extra": {
  2110. "laravel": {
  2111. "providers": [
  2112. "Filament\\Support\\SupportServiceProvider"
  2113. ]
  2114. }
  2115. },
  2116. "autoload": {
  2117. "files": [
  2118. "src/helpers.php"
  2119. ],
  2120. "psr-4": {
  2121. "Filament\\Support\\": "src"
  2122. }
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "description": "Core helper methods and foundation code for all Filament packages.",
  2129. "homepage": "https://github.com/filamentphp/filament",
  2130. "support": {
  2131. "issues": "https://github.com/filamentphp/filament/issues",
  2132. "source": "https://github.com/filamentphp/filament"
  2133. },
  2134. "time": "2025-06-12T15:02:34+00:00"
  2135. },
  2136. {
  2137. "name": "filament/tables",
  2138. "version": "v3.3.26",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/filamentphp/tables.git",
  2142. "reference": "920204cd5ec1550209cf398fea8dba3dece979de"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/filamentphp/tables/zipball/920204cd5ec1550209cf398fea8dba3dece979de",
  2147. "reference": "920204cd5ec1550209cf398fea8dba3dece979de",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "filament/actions": "self.version",
  2152. "filament/forms": "self.version",
  2153. "filament/support": "self.version",
  2154. "illuminate/console": "^10.45|^11.0|^12.0",
  2155. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2156. "illuminate/database": "^10.45|^11.0|^12.0",
  2157. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2158. "illuminate/support": "^10.45|^11.0|^12.0",
  2159. "illuminate/view": "^10.45|^11.0|^12.0",
  2160. "php": "^8.1",
  2161. "spatie/laravel-package-tools": "^1.9"
  2162. },
  2163. "type": "library",
  2164. "extra": {
  2165. "laravel": {
  2166. "providers": [
  2167. "Filament\\Tables\\TablesServiceProvider"
  2168. ]
  2169. }
  2170. },
  2171. "autoload": {
  2172. "psr-4": {
  2173. "Filament\\Tables\\": "src"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "MIT"
  2179. ],
  2180. "description": "Easily add beautiful tables to any Livewire component.",
  2181. "homepage": "https://github.com/filamentphp/filament",
  2182. "support": {
  2183. "issues": "https://github.com/filamentphp/filament/issues",
  2184. "source": "https://github.com/filamentphp/filament"
  2185. },
  2186. "time": "2025-06-12T15:01:25+00:00"
  2187. },
  2188. {
  2189. "name": "filament/widgets",
  2190. "version": "v3.3.26",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/filamentphp/widgets.git",
  2194. "reference": "5b956f884aaef479f6091463cb829e7c9f2afc2c"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/5b956f884aaef479f6091463cb829e7c9f2afc2c",
  2199. "reference": "5b956f884aaef479f6091463cb829e7c9f2afc2c",
  2200. "shasum": ""
  2201. },
  2202. "require": {
  2203. "filament/support": "self.version",
  2204. "php": "^8.1",
  2205. "spatie/laravel-package-tools": "^1.9"
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "laravel": {
  2210. "providers": [
  2211. "Filament\\Widgets\\WidgetsServiceProvider"
  2212. ]
  2213. }
  2214. },
  2215. "autoload": {
  2216. "psr-4": {
  2217. "Filament\\Widgets\\": "src"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2225. "homepage": "https://github.com/filamentphp/filament",
  2226. "support": {
  2227. "issues": "https://github.com/filamentphp/filament/issues",
  2228. "source": "https://github.com/filamentphp/filament"
  2229. },
  2230. "time": "2025-06-12T15:11:14+00:00"
  2231. },
  2232. {
  2233. "name": "firebase/php-jwt",
  2234. "version": "v6.11.1",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/firebase/php-jwt.git",
  2238. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2243. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "php": "^8.0"
  2248. },
  2249. "require-dev": {
  2250. "guzzlehttp/guzzle": "^7.4",
  2251. "phpspec/prophecy-phpunit": "^2.0",
  2252. "phpunit/phpunit": "^9.5",
  2253. "psr/cache": "^2.0||^3.0",
  2254. "psr/http-client": "^1.0",
  2255. "psr/http-factory": "^1.0"
  2256. },
  2257. "suggest": {
  2258. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2259. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2260. },
  2261. "type": "library",
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Firebase\\JWT\\": "src"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "BSD-3-Clause"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "Neuman Vong",
  2274. "email": "neuman+pear@twilio.com",
  2275. "role": "Developer"
  2276. },
  2277. {
  2278. "name": "Anant Narayanan",
  2279. "email": "anant@php.net",
  2280. "role": "Developer"
  2281. }
  2282. ],
  2283. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2284. "homepage": "https://github.com/firebase/php-jwt",
  2285. "keywords": [
  2286. "jwt",
  2287. "php"
  2288. ],
  2289. "support": {
  2290. "issues": "https://github.com/firebase/php-jwt/issues",
  2291. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  2292. },
  2293. "time": "2025-04-09T20:32:01+00:00"
  2294. },
  2295. {
  2296. "name": "fruitcake/php-cors",
  2297. "version": "v1.3.0",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/fruitcake/php-cors.git",
  2301. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2306. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "php": "^7.4|^8.0",
  2311. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2312. },
  2313. "require-dev": {
  2314. "phpstan/phpstan": "^1.4",
  2315. "phpunit/phpunit": "^9",
  2316. "squizlabs/php_codesniffer": "^3.5"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "1.2-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Fruitcake\\Cors\\": "src/"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "MIT"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "Fruitcake",
  2336. "homepage": "https://fruitcake.nl"
  2337. },
  2338. {
  2339. "name": "Barryvdh",
  2340. "email": "barryvdh@gmail.com"
  2341. }
  2342. ],
  2343. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2344. "homepage": "https://github.com/fruitcake/php-cors",
  2345. "keywords": [
  2346. "cors",
  2347. "laravel",
  2348. "symfony"
  2349. ],
  2350. "support": {
  2351. "issues": "https://github.com/fruitcake/php-cors/issues",
  2352. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2353. },
  2354. "funding": [
  2355. {
  2356. "url": "https://fruitcake.nl",
  2357. "type": "custom"
  2358. },
  2359. {
  2360. "url": "https://github.com/barryvdh",
  2361. "type": "github"
  2362. }
  2363. ],
  2364. "time": "2023-10-12T05:21:21+00:00"
  2365. },
  2366. {
  2367. "name": "graham-campbell/result-type",
  2368. "version": "v1.1.3",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2372. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2377. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "php": "^7.2.5 || ^8.0",
  2382. "phpoption/phpoption": "^1.9.3"
  2383. },
  2384. "require-dev": {
  2385. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2386. },
  2387. "type": "library",
  2388. "autoload": {
  2389. "psr-4": {
  2390. "GrahamCampbell\\ResultType\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Graham Campbell",
  2400. "email": "hello@gjcampbell.co.uk",
  2401. "homepage": "https://github.com/GrahamCampbell"
  2402. }
  2403. ],
  2404. "description": "An Implementation Of The Result Type",
  2405. "keywords": [
  2406. "Graham Campbell",
  2407. "GrahamCampbell",
  2408. "Result Type",
  2409. "Result-Type",
  2410. "result"
  2411. ],
  2412. "support": {
  2413. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2414. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2415. },
  2416. "funding": [
  2417. {
  2418. "url": "https://github.com/GrahamCampbell",
  2419. "type": "github"
  2420. },
  2421. {
  2422. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2423. "type": "tidelift"
  2424. }
  2425. ],
  2426. "time": "2024-07-20T21:45:45+00:00"
  2427. },
  2428. {
  2429. "name": "guava/filament-clusters",
  2430. "version": "1.5.0",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2434. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2439. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "filament/filament": "^3.0",
  2444. "illuminate/contracts": "^10.0 | ^11.0 | ^12.0",
  2445. "php": "^8.1",
  2446. "spatie/laravel-package-tools": "^1.14.0"
  2447. },
  2448. "require-dev": {
  2449. "laravel/pint": "^1.0",
  2450. "nunomaduro/collision": "^7.8",
  2451. "nunomaduro/larastan": "^2.0.1",
  2452. "orchestra/testbench": "^8.8 | ^10.0",
  2453. "pestphp/pest": "^2.0 | ^3.7",
  2454. "pestphp/pest-plugin-arch": "^2.0 | ^3.0",
  2455. "pestphp/pest-plugin-laravel": "^2.0 | ^3.1",
  2456. "phpstan/extension-installer": "^1.1",
  2457. "phpstan/phpstan-deprecation-rules": "^1.0 | ^2.0",
  2458. "phpstan/phpstan-phpunit": "^1.0 | ^2.0"
  2459. },
  2460. "type": "library",
  2461. "extra": {
  2462. "laravel": {
  2463. "providers": [
  2464. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2465. ]
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Guava\\FilamentClusters\\": "src/"
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Lukas Frey",
  2480. "email": "lukas.frey@guava.cz",
  2481. "role": "Developer"
  2482. }
  2483. ],
  2484. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2485. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2486. "keywords": [
  2487. "Guava",
  2488. "filament-clusters",
  2489. "laravel"
  2490. ],
  2491. "support": {
  2492. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2493. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.5.0"
  2494. },
  2495. "funding": [
  2496. {
  2497. "url": "https://github.com/GuavaCZ",
  2498. "type": "github"
  2499. }
  2500. ],
  2501. "time": "2025-02-25T13:48:00+00:00"
  2502. },
  2503. {
  2504. "name": "guzzlehttp/guzzle",
  2505. "version": "7.9.3",
  2506. "source": {
  2507. "type": "git",
  2508. "url": "https://github.com/guzzle/guzzle.git",
  2509. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  2510. },
  2511. "dist": {
  2512. "type": "zip",
  2513. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2514. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2515. "shasum": ""
  2516. },
  2517. "require": {
  2518. "ext-json": "*",
  2519. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2520. "guzzlehttp/psr7": "^2.7.0",
  2521. "php": "^7.2.5 || ^8.0",
  2522. "psr/http-client": "^1.0",
  2523. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2524. },
  2525. "provide": {
  2526. "psr/http-client-implementation": "1.0"
  2527. },
  2528. "require-dev": {
  2529. "bamarni/composer-bin-plugin": "^1.8.2",
  2530. "ext-curl": "*",
  2531. "guzzle/client-integration-tests": "3.0.2",
  2532. "php-http/message-factory": "^1.1",
  2533. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2534. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2535. },
  2536. "suggest": {
  2537. "ext-curl": "Required for CURL handler support",
  2538. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2539. "psr/log": "Required for using the Log middleware"
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "bamarni-bin": {
  2544. "bin-links": true,
  2545. "forward-command": false
  2546. }
  2547. },
  2548. "autoload": {
  2549. "files": [
  2550. "src/functions_include.php"
  2551. ],
  2552. "psr-4": {
  2553. "GuzzleHttp\\": "src/"
  2554. }
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Graham Campbell",
  2563. "email": "hello@gjcampbell.co.uk",
  2564. "homepage": "https://github.com/GrahamCampbell"
  2565. },
  2566. {
  2567. "name": "Michael Dowling",
  2568. "email": "mtdowling@gmail.com",
  2569. "homepage": "https://github.com/mtdowling"
  2570. },
  2571. {
  2572. "name": "Jeremy Lindblom",
  2573. "email": "jeremeamia@gmail.com",
  2574. "homepage": "https://github.com/jeremeamia"
  2575. },
  2576. {
  2577. "name": "George Mponos",
  2578. "email": "gmponos@gmail.com",
  2579. "homepage": "https://github.com/gmponos"
  2580. },
  2581. {
  2582. "name": "Tobias Nyholm",
  2583. "email": "tobias.nyholm@gmail.com",
  2584. "homepage": "https://github.com/Nyholm"
  2585. },
  2586. {
  2587. "name": "Márk Sági-Kazár",
  2588. "email": "mark.sagikazar@gmail.com",
  2589. "homepage": "https://github.com/sagikazarmark"
  2590. },
  2591. {
  2592. "name": "Tobias Schultze",
  2593. "email": "webmaster@tubo-world.de",
  2594. "homepage": "https://github.com/Tobion"
  2595. }
  2596. ],
  2597. "description": "Guzzle is a PHP HTTP client library",
  2598. "keywords": [
  2599. "client",
  2600. "curl",
  2601. "framework",
  2602. "http",
  2603. "http client",
  2604. "psr-18",
  2605. "psr-7",
  2606. "rest",
  2607. "web service"
  2608. ],
  2609. "support": {
  2610. "issues": "https://github.com/guzzle/guzzle/issues",
  2611. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  2612. },
  2613. "funding": [
  2614. {
  2615. "url": "https://github.com/GrahamCampbell",
  2616. "type": "github"
  2617. },
  2618. {
  2619. "url": "https://github.com/Nyholm",
  2620. "type": "github"
  2621. },
  2622. {
  2623. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2624. "type": "tidelift"
  2625. }
  2626. ],
  2627. "time": "2025-03-27T13:37:11+00:00"
  2628. },
  2629. {
  2630. "name": "guzzlehttp/promises",
  2631. "version": "2.2.0",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/guzzle/promises.git",
  2635. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  2640. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "php": "^7.2.5 || ^8.0"
  2645. },
  2646. "require-dev": {
  2647. "bamarni/composer-bin-plugin": "^1.8.2",
  2648. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2649. },
  2650. "type": "library",
  2651. "extra": {
  2652. "bamarni-bin": {
  2653. "bin-links": true,
  2654. "forward-command": false
  2655. }
  2656. },
  2657. "autoload": {
  2658. "psr-4": {
  2659. "GuzzleHttp\\Promise\\": "src/"
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "authors": [
  2667. {
  2668. "name": "Graham Campbell",
  2669. "email": "hello@gjcampbell.co.uk",
  2670. "homepage": "https://github.com/GrahamCampbell"
  2671. },
  2672. {
  2673. "name": "Michael Dowling",
  2674. "email": "mtdowling@gmail.com",
  2675. "homepage": "https://github.com/mtdowling"
  2676. },
  2677. {
  2678. "name": "Tobias Nyholm",
  2679. "email": "tobias.nyholm@gmail.com",
  2680. "homepage": "https://github.com/Nyholm"
  2681. },
  2682. {
  2683. "name": "Tobias Schultze",
  2684. "email": "webmaster@tubo-world.de",
  2685. "homepage": "https://github.com/Tobion"
  2686. }
  2687. ],
  2688. "description": "Guzzle promises library",
  2689. "keywords": [
  2690. "promise"
  2691. ],
  2692. "support": {
  2693. "issues": "https://github.com/guzzle/promises/issues",
  2694. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  2695. },
  2696. "funding": [
  2697. {
  2698. "url": "https://github.com/GrahamCampbell",
  2699. "type": "github"
  2700. },
  2701. {
  2702. "url": "https://github.com/Nyholm",
  2703. "type": "github"
  2704. },
  2705. {
  2706. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2707. "type": "tidelift"
  2708. }
  2709. ],
  2710. "time": "2025-03-27T13:27:01+00:00"
  2711. },
  2712. {
  2713. "name": "guzzlehttp/psr7",
  2714. "version": "2.7.1",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/guzzle/psr7.git",
  2718. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  2723. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "php": "^7.2.5 || ^8.0",
  2728. "psr/http-factory": "^1.0",
  2729. "psr/http-message": "^1.1 || ^2.0",
  2730. "ralouphie/getallheaders": "^3.0"
  2731. },
  2732. "provide": {
  2733. "psr/http-factory-implementation": "1.0",
  2734. "psr/http-message-implementation": "1.0"
  2735. },
  2736. "require-dev": {
  2737. "bamarni/composer-bin-plugin": "^1.8.2",
  2738. "http-interop/http-factory-tests": "0.9.0",
  2739. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2740. },
  2741. "suggest": {
  2742. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "bamarni-bin": {
  2747. "bin-links": true,
  2748. "forward-command": false
  2749. }
  2750. },
  2751. "autoload": {
  2752. "psr-4": {
  2753. "GuzzleHttp\\Psr7\\": "src/"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "Graham Campbell",
  2763. "email": "hello@gjcampbell.co.uk",
  2764. "homepage": "https://github.com/GrahamCampbell"
  2765. },
  2766. {
  2767. "name": "Michael Dowling",
  2768. "email": "mtdowling@gmail.com",
  2769. "homepage": "https://github.com/mtdowling"
  2770. },
  2771. {
  2772. "name": "George Mponos",
  2773. "email": "gmponos@gmail.com",
  2774. "homepage": "https://github.com/gmponos"
  2775. },
  2776. {
  2777. "name": "Tobias Nyholm",
  2778. "email": "tobias.nyholm@gmail.com",
  2779. "homepage": "https://github.com/Nyholm"
  2780. },
  2781. {
  2782. "name": "Márk Sági-Kazár",
  2783. "email": "mark.sagikazar@gmail.com",
  2784. "homepage": "https://github.com/sagikazarmark"
  2785. },
  2786. {
  2787. "name": "Tobias Schultze",
  2788. "email": "webmaster@tubo-world.de",
  2789. "homepage": "https://github.com/Tobion"
  2790. },
  2791. {
  2792. "name": "Márk Sági-Kazár",
  2793. "email": "mark.sagikazar@gmail.com",
  2794. "homepage": "https://sagikazarmark.hu"
  2795. }
  2796. ],
  2797. "description": "PSR-7 message implementation that also provides common utility methods",
  2798. "keywords": [
  2799. "http",
  2800. "message",
  2801. "psr-7",
  2802. "request",
  2803. "response",
  2804. "stream",
  2805. "uri",
  2806. "url"
  2807. ],
  2808. "support": {
  2809. "issues": "https://github.com/guzzle/psr7/issues",
  2810. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  2811. },
  2812. "funding": [
  2813. {
  2814. "url": "https://github.com/GrahamCampbell",
  2815. "type": "github"
  2816. },
  2817. {
  2818. "url": "https://github.com/Nyholm",
  2819. "type": "github"
  2820. },
  2821. {
  2822. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2823. "type": "tidelift"
  2824. }
  2825. ],
  2826. "time": "2025-03-27T12:30:47+00:00"
  2827. },
  2828. {
  2829. "name": "guzzlehttp/uri-template",
  2830. "version": "v1.0.4",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/guzzle/uri-template.git",
  2834. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  2839. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  2840. "shasum": ""
  2841. },
  2842. "require": {
  2843. "php": "^7.2.5 || ^8.0",
  2844. "symfony/polyfill-php80": "^1.24"
  2845. },
  2846. "require-dev": {
  2847. "bamarni/composer-bin-plugin": "^1.8.2",
  2848. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2849. "uri-template/tests": "1.0.0"
  2850. },
  2851. "type": "library",
  2852. "extra": {
  2853. "bamarni-bin": {
  2854. "bin-links": true,
  2855. "forward-command": false
  2856. }
  2857. },
  2858. "autoload": {
  2859. "psr-4": {
  2860. "GuzzleHttp\\UriTemplate\\": "src"
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "Graham Campbell",
  2870. "email": "hello@gjcampbell.co.uk",
  2871. "homepage": "https://github.com/GrahamCampbell"
  2872. },
  2873. {
  2874. "name": "Michael Dowling",
  2875. "email": "mtdowling@gmail.com",
  2876. "homepage": "https://github.com/mtdowling"
  2877. },
  2878. {
  2879. "name": "George Mponos",
  2880. "email": "gmponos@gmail.com",
  2881. "homepage": "https://github.com/gmponos"
  2882. },
  2883. {
  2884. "name": "Tobias Nyholm",
  2885. "email": "tobias.nyholm@gmail.com",
  2886. "homepage": "https://github.com/Nyholm"
  2887. }
  2888. ],
  2889. "description": "A polyfill class for uri_template of PHP",
  2890. "keywords": [
  2891. "guzzlehttp",
  2892. "uri-template"
  2893. ],
  2894. "support": {
  2895. "issues": "https://github.com/guzzle/uri-template/issues",
  2896. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  2897. },
  2898. "funding": [
  2899. {
  2900. "url": "https://github.com/GrahamCampbell",
  2901. "type": "github"
  2902. },
  2903. {
  2904. "url": "https://github.com/Nyholm",
  2905. "type": "github"
  2906. },
  2907. {
  2908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2909. "type": "tidelift"
  2910. }
  2911. ],
  2912. "time": "2025-02-03T10:55:03+00:00"
  2913. },
  2914. {
  2915. "name": "jaocero/radio-deck",
  2916. "version": "v1.2.10",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/199ocero/radio-deck.git",
  2920. "reference": "7e876322049ab611fe0dc4ec0803f60a2353ddf8"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/7e876322049ab611fe0dc4ec0803f60a2353ddf8",
  2925. "reference": "7e876322049ab611fe0dc4ec0803f60a2353ddf8",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "filament/forms": "^3.0",
  2930. "illuminate/contracts": "^10.0|^11.0|^12.0",
  2931. "php": "^8.1",
  2932. "spatie/laravel-package-tools": "^1.15.0"
  2933. },
  2934. "require-dev": {
  2935. "nunomaduro/collision": "^7.9",
  2936. "orchestra/testbench": "^8.0|^9.0",
  2937. "pestphp/pest": "^2.0",
  2938. "pestphp/pest-plugin-arch": "^2.0",
  2939. "pestphp/pest-plugin-laravel": "^2.0"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "laravel": {
  2944. "providers": [
  2945. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2946. ]
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "JaOcero\\RadioDeck\\": "src/",
  2952. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2953. }
  2954. },
  2955. "notification-url": "https://packagist.org/downloads/",
  2956. "license": [
  2957. "MIT"
  2958. ],
  2959. "authors": [
  2960. {
  2961. "name": "Jay-Are Ocero",
  2962. "email": "199ocero@gmail.com",
  2963. "role": "Developer"
  2964. }
  2965. ],
  2966. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2967. "homepage": "https://github.com/jaocero/radio-deck",
  2968. "keywords": [
  2969. "filament-form",
  2970. "filament-plugin",
  2971. "filamentphp",
  2972. "jaocero",
  2973. "laravel",
  2974. "radio-deck"
  2975. ],
  2976. "support": {
  2977. "issues": "https://github.com/jaocero/radio-deck/issues",
  2978. "source": "https://github.com/jaocero/radio-deck"
  2979. },
  2980. "funding": [
  2981. {
  2982. "url": "https://github.com/jaocero",
  2983. "type": "github"
  2984. }
  2985. ],
  2986. "time": "2025-02-27T00:00:03+00:00"
  2987. },
  2988. {
  2989. "name": "kirschbaum-development/eloquent-power-joins",
  2990. "version": "4.2.4",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2994. "reference": "4a8012cef7abed8ac3633a180c69138a228b6c4c"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/4a8012cef7abed8ac3633a180c69138a228b6c4c",
  2999. "reference": "4a8012cef7abed8ac3633a180c69138a228b6c4c",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "illuminate/database": "^11.42|^12.0",
  3004. "illuminate/support": "^11.42|^12.0",
  3005. "php": "^8.2"
  3006. },
  3007. "require-dev": {
  3008. "friendsofphp/php-cs-fixer": "dev-master",
  3009. "laravel/legacy-factories": "^1.0@dev",
  3010. "orchestra/testbench": "^9.0|^10.0",
  3011. "phpunit/phpunit": "^10.0|^11.0"
  3012. },
  3013. "type": "library",
  3014. "extra": {
  3015. "laravel": {
  3016. "providers": [
  3017. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  3018. ]
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Kirschbaum\\PowerJoins\\": "src"
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Luis Dalmolin",
  3033. "email": "luis.nh@gmail.com",
  3034. "role": "Developer"
  3035. }
  3036. ],
  3037. "description": "The Laravel magic applied to joins.",
  3038. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  3039. "keywords": [
  3040. "eloquent",
  3041. "join",
  3042. "laravel",
  3043. "mysql"
  3044. ],
  3045. "support": {
  3046. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  3047. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.4"
  3048. },
  3049. "time": "2025-05-19T14:14:41+00:00"
  3050. },
  3051. {
  3052. "name": "knplabs/knp-snappy",
  3053. "version": "v1.5.1",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/KnpLabs/snappy.git",
  3057. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3062. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3063. "shasum": ""
  3064. },
  3065. "require": {
  3066. "php": ">=8.1",
  3067. "psr/log": "^2.0||^3.0",
  3068. "symfony/process": "^5.0||^6.0||^7.0"
  3069. },
  3070. "require-dev": {
  3071. "friendsofphp/php-cs-fixer": "^3.0",
  3072. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3073. "phpstan/phpstan": "^1.0.0",
  3074. "phpstan/phpstan-phpunit": "^1.0.0",
  3075. "phpunit/phpunit": "^8.5"
  3076. },
  3077. "type": "library",
  3078. "extra": {
  3079. "branch-alias": {
  3080. "dev-master": "1.x-dev"
  3081. }
  3082. },
  3083. "autoload": {
  3084. "psr-4": {
  3085. "Knp\\Snappy\\": "src/Knp/Snappy"
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "KNP Labs Team",
  3095. "homepage": "http://knplabs.com"
  3096. },
  3097. {
  3098. "name": "Symfony Community",
  3099. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3100. }
  3101. ],
  3102. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3103. "homepage": "http://github.com/KnpLabs/snappy",
  3104. "keywords": [
  3105. "knp",
  3106. "knplabs",
  3107. "pdf",
  3108. "snapshot",
  3109. "thumbnail",
  3110. "wkhtmltopdf"
  3111. ],
  3112. "support": {
  3113. "issues": "https://github.com/KnpLabs/snappy/issues",
  3114. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.1"
  3115. },
  3116. "time": "2025-01-06T16:53:26+00:00"
  3117. },
  3118. {
  3119. "name": "laravel/framework",
  3120. "version": "v11.45.1",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/laravel/framework.git",
  3124. "reference": "b09ba32795b8e71df10856a2694706663984a239"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/laravel/framework/zipball/b09ba32795b8e71df10856a2694706663984a239",
  3129. "reference": "b09ba32795b8e71df10856a2694706663984a239",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3134. "composer-runtime-api": "^2.2",
  3135. "doctrine/inflector": "^2.0.5",
  3136. "dragonmantank/cron-expression": "^3.4",
  3137. "egulias/email-validator": "^3.2.1|^4.0",
  3138. "ext-ctype": "*",
  3139. "ext-filter": "*",
  3140. "ext-hash": "*",
  3141. "ext-mbstring": "*",
  3142. "ext-openssl": "*",
  3143. "ext-session": "*",
  3144. "ext-tokenizer": "*",
  3145. "fruitcake/php-cors": "^1.3",
  3146. "guzzlehttp/guzzle": "^7.8.2",
  3147. "guzzlehttp/uri-template": "^1.0",
  3148. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3149. "laravel/serializable-closure": "^1.3|^2.0",
  3150. "league/commonmark": "^2.7",
  3151. "league/flysystem": "^3.25.1",
  3152. "league/flysystem-local": "^3.25.1",
  3153. "league/uri": "^7.5.1",
  3154. "monolog/monolog": "^3.0",
  3155. "nesbot/carbon": "^2.72.6|^3.8.4",
  3156. "nunomaduro/termwind": "^2.0",
  3157. "php": "^8.2",
  3158. "psr/container": "^1.1.1|^2.0.1",
  3159. "psr/log": "^1.0|^2.0|^3.0",
  3160. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3161. "ramsey/uuid": "^4.7",
  3162. "symfony/console": "^7.0.3",
  3163. "symfony/error-handler": "^7.0.3",
  3164. "symfony/finder": "^7.0.3",
  3165. "symfony/http-foundation": "^7.2.0",
  3166. "symfony/http-kernel": "^7.0.3",
  3167. "symfony/mailer": "^7.0.3",
  3168. "symfony/mime": "^7.0.3",
  3169. "symfony/polyfill-php83": "^1.31",
  3170. "symfony/process": "^7.0.3",
  3171. "symfony/routing": "^7.0.3",
  3172. "symfony/uid": "^7.0.3",
  3173. "symfony/var-dumper": "^7.0.3",
  3174. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3175. "vlucas/phpdotenv": "^5.6.1",
  3176. "voku/portable-ascii": "^2.0.2"
  3177. },
  3178. "conflict": {
  3179. "tightenco/collect": "<5.5.33"
  3180. },
  3181. "provide": {
  3182. "psr/container-implementation": "1.1|2.0",
  3183. "psr/log-implementation": "1.0|2.0|3.0",
  3184. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3185. },
  3186. "replace": {
  3187. "illuminate/auth": "self.version",
  3188. "illuminate/broadcasting": "self.version",
  3189. "illuminate/bus": "self.version",
  3190. "illuminate/cache": "self.version",
  3191. "illuminate/collections": "self.version",
  3192. "illuminate/concurrency": "self.version",
  3193. "illuminate/conditionable": "self.version",
  3194. "illuminate/config": "self.version",
  3195. "illuminate/console": "self.version",
  3196. "illuminate/container": "self.version",
  3197. "illuminate/contracts": "self.version",
  3198. "illuminate/cookie": "self.version",
  3199. "illuminate/database": "self.version",
  3200. "illuminate/encryption": "self.version",
  3201. "illuminate/events": "self.version",
  3202. "illuminate/filesystem": "self.version",
  3203. "illuminate/hashing": "self.version",
  3204. "illuminate/http": "self.version",
  3205. "illuminate/log": "self.version",
  3206. "illuminate/macroable": "self.version",
  3207. "illuminate/mail": "self.version",
  3208. "illuminate/notifications": "self.version",
  3209. "illuminate/pagination": "self.version",
  3210. "illuminate/pipeline": "self.version",
  3211. "illuminate/process": "self.version",
  3212. "illuminate/queue": "self.version",
  3213. "illuminate/redis": "self.version",
  3214. "illuminate/routing": "self.version",
  3215. "illuminate/session": "self.version",
  3216. "illuminate/support": "self.version",
  3217. "illuminate/testing": "self.version",
  3218. "illuminate/translation": "self.version",
  3219. "illuminate/validation": "self.version",
  3220. "illuminate/view": "self.version",
  3221. "spatie/once": "*"
  3222. },
  3223. "require-dev": {
  3224. "ably/ably-php": "^1.0",
  3225. "aws/aws-sdk-php": "^3.322.9",
  3226. "ext-gmp": "*",
  3227. "fakerphp/faker": "^1.24",
  3228. "guzzlehttp/promises": "^2.0.3",
  3229. "guzzlehttp/psr7": "^2.4",
  3230. "laravel/pint": "^1.18",
  3231. "league/flysystem-aws-s3-v3": "^3.25.1",
  3232. "league/flysystem-ftp": "^3.25.1",
  3233. "league/flysystem-path-prefixing": "^3.25.1",
  3234. "league/flysystem-read-only": "^3.25.1",
  3235. "league/flysystem-sftp-v3": "^3.25.1",
  3236. "mockery/mockery": "^1.6.10",
  3237. "orchestra/testbench-core": "^9.13.2",
  3238. "pda/pheanstalk": "^5.0.6",
  3239. "php-http/discovery": "^1.15",
  3240. "phpstan/phpstan": "^2.0",
  3241. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  3242. "predis/predis": "^2.3",
  3243. "resend/resend-php": "^0.10.0",
  3244. "symfony/cache": "^7.0.3",
  3245. "symfony/http-client": "^7.0.3",
  3246. "symfony/psr-http-message-bridge": "^7.0.3",
  3247. "symfony/translation": "^7.0.3"
  3248. },
  3249. "suggest": {
  3250. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3251. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3252. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3253. "ext-apcu": "Required to use the APC cache driver.",
  3254. "ext-fileinfo": "Required to use the Filesystem class.",
  3255. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3256. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3257. "ext-memcached": "Required to use the memcache cache driver.",
  3258. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3259. "ext-pdo": "Required to use all database features.",
  3260. "ext-posix": "Required to use all features of the queue worker.",
  3261. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3262. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3263. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3264. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3265. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3266. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3267. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3268. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3269. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3270. "mockery/mockery": "Required to use mocking (^1.6).",
  3271. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3272. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3273. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  3274. "predis/predis": "Required to use the predis connector (^2.3).",
  3275. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3276. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3277. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3278. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3279. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3280. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3281. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3282. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3283. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3284. },
  3285. "type": "library",
  3286. "extra": {
  3287. "branch-alias": {
  3288. "dev-master": "11.x-dev"
  3289. }
  3290. },
  3291. "autoload": {
  3292. "files": [
  3293. "src/Illuminate/Collections/functions.php",
  3294. "src/Illuminate/Collections/helpers.php",
  3295. "src/Illuminate/Events/functions.php",
  3296. "src/Illuminate/Filesystem/functions.php",
  3297. "src/Illuminate/Foundation/helpers.php",
  3298. "src/Illuminate/Log/functions.php",
  3299. "src/Illuminate/Support/functions.php",
  3300. "src/Illuminate/Support/helpers.php"
  3301. ],
  3302. "psr-4": {
  3303. "Illuminate\\": "src/Illuminate/",
  3304. "Illuminate\\Support\\": [
  3305. "src/Illuminate/Macroable/",
  3306. "src/Illuminate/Collections/",
  3307. "src/Illuminate/Conditionable/"
  3308. ]
  3309. }
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "Taylor Otwell",
  3318. "email": "taylor@laravel.com"
  3319. }
  3320. ],
  3321. "description": "The Laravel Framework.",
  3322. "homepage": "https://laravel.com",
  3323. "keywords": [
  3324. "framework",
  3325. "laravel"
  3326. ],
  3327. "support": {
  3328. "issues": "https://github.com/laravel/framework/issues",
  3329. "source": "https://github.com/laravel/framework"
  3330. },
  3331. "time": "2025-06-03T14:01:40+00:00"
  3332. },
  3333. {
  3334. "name": "laravel/prompts",
  3335. "version": "v0.3.5",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/laravel/prompts.git",
  3339. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  3344. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "composer-runtime-api": "^2.2",
  3349. "ext-mbstring": "*",
  3350. "php": "^8.1",
  3351. "symfony/console": "^6.2|^7.0"
  3352. },
  3353. "conflict": {
  3354. "illuminate/console": ">=10.17.0 <10.25.0",
  3355. "laravel/framework": ">=10.17.0 <10.25.0"
  3356. },
  3357. "require-dev": {
  3358. "illuminate/collections": "^10.0|^11.0|^12.0",
  3359. "mockery/mockery": "^1.5",
  3360. "pestphp/pest": "^2.3|^3.4",
  3361. "phpstan/phpstan": "^1.11",
  3362. "phpstan/phpstan-mockery": "^1.1"
  3363. },
  3364. "suggest": {
  3365. "ext-pcntl": "Required for the spinner to be animated."
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-main": "0.3.x-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "files": [
  3375. "src/helpers.php"
  3376. ],
  3377. "psr-4": {
  3378. "Laravel\\Prompts\\": "src/"
  3379. }
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "MIT"
  3384. ],
  3385. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3386. "support": {
  3387. "issues": "https://github.com/laravel/prompts/issues",
  3388. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  3389. },
  3390. "time": "2025-02-11T13:34:40+00:00"
  3391. },
  3392. {
  3393. "name": "laravel/sanctum",
  3394. "version": "v4.1.1",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/laravel/sanctum.git",
  3398. "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/laravel/sanctum/zipball/a360a6a1fd2400ead4eb9b6a9c1bb272939194f5",
  3403. "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "ext-json": "*",
  3408. "illuminate/console": "^11.0|^12.0",
  3409. "illuminate/contracts": "^11.0|^12.0",
  3410. "illuminate/database": "^11.0|^12.0",
  3411. "illuminate/support": "^11.0|^12.0",
  3412. "php": "^8.2",
  3413. "symfony/console": "^7.0"
  3414. },
  3415. "require-dev": {
  3416. "mockery/mockery": "^1.6",
  3417. "orchestra/testbench": "^9.0|^10.0",
  3418. "phpstan/phpstan": "^1.10",
  3419. "phpunit/phpunit": "^11.3"
  3420. },
  3421. "type": "library",
  3422. "extra": {
  3423. "laravel": {
  3424. "providers": [
  3425. "Laravel\\Sanctum\\SanctumServiceProvider"
  3426. ]
  3427. }
  3428. },
  3429. "autoload": {
  3430. "psr-4": {
  3431. "Laravel\\Sanctum\\": "src/"
  3432. }
  3433. },
  3434. "notification-url": "https://packagist.org/downloads/",
  3435. "license": [
  3436. "MIT"
  3437. ],
  3438. "authors": [
  3439. {
  3440. "name": "Taylor Otwell",
  3441. "email": "taylor@laravel.com"
  3442. }
  3443. ],
  3444. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3445. "keywords": [
  3446. "auth",
  3447. "laravel",
  3448. "sanctum"
  3449. ],
  3450. "support": {
  3451. "issues": "https://github.com/laravel/sanctum/issues",
  3452. "source": "https://github.com/laravel/sanctum"
  3453. },
  3454. "time": "2025-04-23T13:03:38+00:00"
  3455. },
  3456. {
  3457. "name": "laravel/serializable-closure",
  3458. "version": "v2.0.4",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/laravel/serializable-closure.git",
  3462. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3467. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3468. "shasum": ""
  3469. },
  3470. "require": {
  3471. "php": "^8.1"
  3472. },
  3473. "require-dev": {
  3474. "illuminate/support": "^10.0|^11.0|^12.0",
  3475. "nesbot/carbon": "^2.67|^3.0",
  3476. "pestphp/pest": "^2.36|^3.0",
  3477. "phpstan/phpstan": "^2.0",
  3478. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-master": "2.x-dev"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "psr-4": {
  3488. "Laravel\\SerializableClosure\\": "src/"
  3489. }
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Taylor Otwell",
  3498. "email": "taylor@laravel.com"
  3499. },
  3500. {
  3501. "name": "Nuno Maduro",
  3502. "email": "nuno@laravel.com"
  3503. }
  3504. ],
  3505. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3506. "keywords": [
  3507. "closure",
  3508. "laravel",
  3509. "serializable"
  3510. ],
  3511. "support": {
  3512. "issues": "https://github.com/laravel/serializable-closure/issues",
  3513. "source": "https://github.com/laravel/serializable-closure"
  3514. },
  3515. "time": "2025-03-19T13:51:03+00:00"
  3516. },
  3517. {
  3518. "name": "laravel/socialite",
  3519. "version": "v5.21.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/laravel/socialite.git",
  3523. "reference": "d83639499ad14985c9a6a9713b70073300ce998d"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/laravel/socialite/zipball/d83639499ad14985c9a6a9713b70073300ce998d",
  3528. "reference": "d83639499ad14985c9a6a9713b70073300ce998d",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "ext-json": "*",
  3533. "firebase/php-jwt": "^6.4",
  3534. "guzzlehttp/guzzle": "^6.0|^7.0",
  3535. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3536. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3537. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3538. "league/oauth1-client": "^1.11",
  3539. "php": "^7.2|^8.0",
  3540. "phpseclib/phpseclib": "^3.0"
  3541. },
  3542. "require-dev": {
  3543. "mockery/mockery": "^1.0",
  3544. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  3545. "phpstan/phpstan": "^1.12.23",
  3546. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "laravel": {
  3551. "aliases": {
  3552. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3553. },
  3554. "providers": [
  3555. "Laravel\\Socialite\\SocialiteServiceProvider"
  3556. ]
  3557. },
  3558. "branch-alias": {
  3559. "dev-master": "5.x-dev"
  3560. }
  3561. },
  3562. "autoload": {
  3563. "psr-4": {
  3564. "Laravel\\Socialite\\": "src/"
  3565. }
  3566. },
  3567. "notification-url": "https://packagist.org/downloads/",
  3568. "license": [
  3569. "MIT"
  3570. ],
  3571. "authors": [
  3572. {
  3573. "name": "Taylor Otwell",
  3574. "email": "taylor@laravel.com"
  3575. }
  3576. ],
  3577. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3578. "homepage": "https://laravel.com",
  3579. "keywords": [
  3580. "laravel",
  3581. "oauth"
  3582. ],
  3583. "support": {
  3584. "issues": "https://github.com/laravel/socialite/issues",
  3585. "source": "https://github.com/laravel/socialite"
  3586. },
  3587. "time": "2025-05-19T12:56:37+00:00"
  3588. },
  3589. {
  3590. "name": "laravel/tinker",
  3591. "version": "v2.10.1",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/laravel/tinker.git",
  3595. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3600. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3601. "shasum": ""
  3602. },
  3603. "require": {
  3604. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3605. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3606. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3607. "php": "^7.2.5|^8.0",
  3608. "psy/psysh": "^0.11.1|^0.12.0",
  3609. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3610. },
  3611. "require-dev": {
  3612. "mockery/mockery": "~1.3.3|^1.4.2",
  3613. "phpstan/phpstan": "^1.10",
  3614. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3615. },
  3616. "suggest": {
  3617. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "laravel": {
  3622. "providers": [
  3623. "Laravel\\Tinker\\TinkerServiceProvider"
  3624. ]
  3625. }
  3626. },
  3627. "autoload": {
  3628. "psr-4": {
  3629. "Laravel\\Tinker\\": "src/"
  3630. }
  3631. },
  3632. "notification-url": "https://packagist.org/downloads/",
  3633. "license": [
  3634. "MIT"
  3635. ],
  3636. "authors": [
  3637. {
  3638. "name": "Taylor Otwell",
  3639. "email": "taylor@laravel.com"
  3640. }
  3641. ],
  3642. "description": "Powerful REPL for the Laravel framework.",
  3643. "keywords": [
  3644. "REPL",
  3645. "Tinker",
  3646. "laravel",
  3647. "psysh"
  3648. ],
  3649. "support": {
  3650. "issues": "https://github.com/laravel/tinker/issues",
  3651. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3652. },
  3653. "time": "2025-01-27T14:24:01+00:00"
  3654. },
  3655. {
  3656. "name": "league/commonmark",
  3657. "version": "2.7.0",
  3658. "source": {
  3659. "type": "git",
  3660. "url": "https://github.com/thephpleague/commonmark.git",
  3661. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  3662. },
  3663. "dist": {
  3664. "type": "zip",
  3665. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  3666. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  3667. "shasum": ""
  3668. },
  3669. "require": {
  3670. "ext-mbstring": "*",
  3671. "league/config": "^1.1.1",
  3672. "php": "^7.4 || ^8.0",
  3673. "psr/event-dispatcher": "^1.0",
  3674. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3675. "symfony/polyfill-php80": "^1.16"
  3676. },
  3677. "require-dev": {
  3678. "cebe/markdown": "^1.0",
  3679. "commonmark/cmark": "0.31.1",
  3680. "commonmark/commonmark.js": "0.31.1",
  3681. "composer/package-versions-deprecated": "^1.8",
  3682. "embed/embed": "^4.4",
  3683. "erusev/parsedown": "^1.0",
  3684. "ext-json": "*",
  3685. "github/gfm": "0.29.0",
  3686. "michelf/php-markdown": "^1.4 || ^2.0",
  3687. "nyholm/psr7": "^1.5",
  3688. "phpstan/phpstan": "^1.8.2",
  3689. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3690. "scrutinizer/ocular": "^1.8.1",
  3691. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3692. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3693. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3694. "unleashedtech/php-coding-standard": "^3.1.1",
  3695. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3696. },
  3697. "suggest": {
  3698. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3699. },
  3700. "type": "library",
  3701. "extra": {
  3702. "branch-alias": {
  3703. "dev-main": "2.8-dev"
  3704. }
  3705. },
  3706. "autoload": {
  3707. "psr-4": {
  3708. "League\\CommonMark\\": "src"
  3709. }
  3710. },
  3711. "notification-url": "https://packagist.org/downloads/",
  3712. "license": [
  3713. "BSD-3-Clause"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Colin O'Dell",
  3718. "email": "colinodell@gmail.com",
  3719. "homepage": "https://www.colinodell.com",
  3720. "role": "Lead Developer"
  3721. }
  3722. ],
  3723. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3724. "homepage": "https://commonmark.thephpleague.com",
  3725. "keywords": [
  3726. "commonmark",
  3727. "flavored",
  3728. "gfm",
  3729. "github",
  3730. "github-flavored",
  3731. "markdown",
  3732. "md",
  3733. "parser"
  3734. ],
  3735. "support": {
  3736. "docs": "https://commonmark.thephpleague.com/",
  3737. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3738. "issues": "https://github.com/thephpleague/commonmark/issues",
  3739. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3740. "source": "https://github.com/thephpleague/commonmark"
  3741. },
  3742. "funding": [
  3743. {
  3744. "url": "https://www.colinodell.com/sponsor",
  3745. "type": "custom"
  3746. },
  3747. {
  3748. "url": "https://www.paypal.me/colinpodell/10.00",
  3749. "type": "custom"
  3750. },
  3751. {
  3752. "url": "https://github.com/colinodell",
  3753. "type": "github"
  3754. },
  3755. {
  3756. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3757. "type": "tidelift"
  3758. }
  3759. ],
  3760. "time": "2025-05-05T12:20:28+00:00"
  3761. },
  3762. {
  3763. "name": "league/config",
  3764. "version": "v1.2.0",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://github.com/thephpleague/config.git",
  3768. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3773. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3774. "shasum": ""
  3775. },
  3776. "require": {
  3777. "dflydev/dot-access-data": "^3.0.1",
  3778. "nette/schema": "^1.2",
  3779. "php": "^7.4 || ^8.0"
  3780. },
  3781. "require-dev": {
  3782. "phpstan/phpstan": "^1.8.2",
  3783. "phpunit/phpunit": "^9.5.5",
  3784. "scrutinizer/ocular": "^1.8.1",
  3785. "unleashedtech/php-coding-standard": "^3.1",
  3786. "vimeo/psalm": "^4.7.3"
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-main": "1.2-dev"
  3792. }
  3793. },
  3794. "autoload": {
  3795. "psr-4": {
  3796. "League\\Config\\": "src"
  3797. }
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "BSD-3-Clause"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Colin O'Dell",
  3806. "email": "colinodell@gmail.com",
  3807. "homepage": "https://www.colinodell.com",
  3808. "role": "Lead Developer"
  3809. }
  3810. ],
  3811. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3812. "homepage": "https://config.thephpleague.com",
  3813. "keywords": [
  3814. "array",
  3815. "config",
  3816. "configuration",
  3817. "dot",
  3818. "dot-access",
  3819. "nested",
  3820. "schema"
  3821. ],
  3822. "support": {
  3823. "docs": "https://config.thephpleague.com/",
  3824. "issues": "https://github.com/thephpleague/config/issues",
  3825. "rss": "https://github.com/thephpleague/config/releases.atom",
  3826. "source": "https://github.com/thephpleague/config"
  3827. },
  3828. "funding": [
  3829. {
  3830. "url": "https://www.colinodell.com/sponsor",
  3831. "type": "custom"
  3832. },
  3833. {
  3834. "url": "https://www.paypal.me/colinpodell/10.00",
  3835. "type": "custom"
  3836. },
  3837. {
  3838. "url": "https://github.com/colinodell",
  3839. "type": "github"
  3840. }
  3841. ],
  3842. "time": "2022-12-11T20:36:23+00:00"
  3843. },
  3844. {
  3845. "name": "league/csv",
  3846. "version": "9.23.0",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/thephpleague/csv.git",
  3850. "reference": "774008ad8a634448e4f8e288905e070e8b317ff3"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/thephpleague/csv/zipball/774008ad8a634448e4f8e288905e070e8b317ff3",
  3855. "reference": "774008ad8a634448e4f8e288905e070e8b317ff3",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "ext-filter": "*",
  3860. "php": "^8.1.2"
  3861. },
  3862. "require-dev": {
  3863. "ext-dom": "*",
  3864. "ext-xdebug": "*",
  3865. "friendsofphp/php-cs-fixer": "^3.69.0",
  3866. "phpbench/phpbench": "^1.4.0",
  3867. "phpstan/phpstan": "^1.12.18",
  3868. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3869. "phpstan/phpstan-phpunit": "^1.4.2",
  3870. "phpstan/phpstan-strict-rules": "^1.6.2",
  3871. "phpunit/phpunit": "^10.5.16 || ^11.5.7",
  3872. "symfony/var-dumper": "^6.4.8 || ^7.2.3"
  3873. },
  3874. "suggest": {
  3875. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3876. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3877. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters",
  3878. "ext-mysqli": "Requiered to use the package with the MySQLi extension",
  3879. "ext-pdo": "Required to use the package with the PDO extension",
  3880. "ext-pgsql": "Requiered to use the package with the PgSQL extension",
  3881. "ext-sqlite3": "Required to use the package with the SQLite3 extension"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-master": "9.x-dev"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "files": [
  3891. "src/functions_include.php"
  3892. ],
  3893. "psr-4": {
  3894. "League\\Csv\\": "src"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Ignace Nyamagana Butera",
  3904. "email": "nyamsprod@gmail.com",
  3905. "homepage": "https://github.com/nyamsprod/",
  3906. "role": "Developer"
  3907. }
  3908. ],
  3909. "description": "CSV data manipulation made easy in PHP",
  3910. "homepage": "https://csv.thephpleague.com",
  3911. "keywords": [
  3912. "convert",
  3913. "csv",
  3914. "export",
  3915. "filter",
  3916. "import",
  3917. "read",
  3918. "transform",
  3919. "write"
  3920. ],
  3921. "support": {
  3922. "docs": "https://csv.thephpleague.com",
  3923. "issues": "https://github.com/thephpleague/csv/issues",
  3924. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3925. "source": "https://github.com/thephpleague/csv"
  3926. },
  3927. "funding": [
  3928. {
  3929. "url": "https://github.com/sponsors/nyamsprod",
  3930. "type": "github"
  3931. }
  3932. ],
  3933. "time": "2025-03-28T06:52:04+00:00"
  3934. },
  3935. {
  3936. "name": "league/flysystem",
  3937. "version": "3.29.1",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://github.com/thephpleague/flysystem.git",
  3941. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3946. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3947. "shasum": ""
  3948. },
  3949. "require": {
  3950. "league/flysystem-local": "^3.0.0",
  3951. "league/mime-type-detection": "^1.0.0",
  3952. "php": "^8.0.2"
  3953. },
  3954. "conflict": {
  3955. "async-aws/core": "<1.19.0",
  3956. "async-aws/s3": "<1.14.0",
  3957. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3958. "guzzlehttp/guzzle": "<7.0",
  3959. "guzzlehttp/ringphp": "<1.1.1",
  3960. "phpseclib/phpseclib": "3.0.15",
  3961. "symfony/http-client": "<5.2"
  3962. },
  3963. "require-dev": {
  3964. "async-aws/s3": "^1.5 || ^2.0",
  3965. "async-aws/simple-s3": "^1.1 || ^2.0",
  3966. "aws/aws-sdk-php": "^3.295.10",
  3967. "composer/semver": "^3.0",
  3968. "ext-fileinfo": "*",
  3969. "ext-ftp": "*",
  3970. "ext-mongodb": "^1.3",
  3971. "ext-zip": "*",
  3972. "friendsofphp/php-cs-fixer": "^3.5",
  3973. "google/cloud-storage": "^1.23",
  3974. "guzzlehttp/psr7": "^2.6",
  3975. "microsoft/azure-storage-blob": "^1.1",
  3976. "mongodb/mongodb": "^1.2",
  3977. "phpseclib/phpseclib": "^3.0.36",
  3978. "phpstan/phpstan": "^1.10",
  3979. "phpunit/phpunit": "^9.5.11|^10.0",
  3980. "sabre/dav": "^4.6.0"
  3981. },
  3982. "type": "library",
  3983. "autoload": {
  3984. "psr-4": {
  3985. "League\\Flysystem\\": "src"
  3986. }
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "MIT"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Frank de Jonge",
  3995. "email": "info@frankdejonge.nl"
  3996. }
  3997. ],
  3998. "description": "File storage abstraction for PHP",
  3999. "keywords": [
  4000. "WebDAV",
  4001. "aws",
  4002. "cloud",
  4003. "file",
  4004. "files",
  4005. "filesystem",
  4006. "filesystems",
  4007. "ftp",
  4008. "s3",
  4009. "sftp",
  4010. "storage"
  4011. ],
  4012. "support": {
  4013. "issues": "https://github.com/thephpleague/flysystem/issues",
  4014. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  4015. },
  4016. "time": "2024-10-08T08:58:34+00:00"
  4017. },
  4018. {
  4019. "name": "league/flysystem-local",
  4020. "version": "3.29.0",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/thephpleague/flysystem-local.git",
  4024. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4029. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4030. "shasum": ""
  4031. },
  4032. "require": {
  4033. "ext-fileinfo": "*",
  4034. "league/flysystem": "^3.0.0",
  4035. "league/mime-type-detection": "^1.0.0",
  4036. "php": "^8.0.2"
  4037. },
  4038. "type": "library",
  4039. "autoload": {
  4040. "psr-4": {
  4041. "League\\Flysystem\\Local\\": ""
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "Frank de Jonge",
  4051. "email": "info@frankdejonge.nl"
  4052. }
  4053. ],
  4054. "description": "Local filesystem adapter for Flysystem.",
  4055. "keywords": [
  4056. "Flysystem",
  4057. "file",
  4058. "files",
  4059. "filesystem",
  4060. "local"
  4061. ],
  4062. "support": {
  4063. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  4064. },
  4065. "time": "2024-08-09T21:24:39+00:00"
  4066. },
  4067. {
  4068. "name": "league/mime-type-detection",
  4069. "version": "1.16.0",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4073. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4078. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4079. "shasum": ""
  4080. },
  4081. "require": {
  4082. "ext-fileinfo": "*",
  4083. "php": "^7.4 || ^8.0"
  4084. },
  4085. "require-dev": {
  4086. "friendsofphp/php-cs-fixer": "^3.2",
  4087. "phpstan/phpstan": "^0.12.68",
  4088. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4089. },
  4090. "type": "library",
  4091. "autoload": {
  4092. "psr-4": {
  4093. "League\\MimeTypeDetection\\": "src"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Frank de Jonge",
  4103. "email": "info@frankdejonge.nl"
  4104. }
  4105. ],
  4106. "description": "Mime-type detection for Flysystem",
  4107. "support": {
  4108. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4109. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4110. },
  4111. "funding": [
  4112. {
  4113. "url": "https://github.com/frankdejonge",
  4114. "type": "github"
  4115. },
  4116. {
  4117. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4118. "type": "tidelift"
  4119. }
  4120. ],
  4121. "time": "2024-09-21T08:32:55+00:00"
  4122. },
  4123. {
  4124. "name": "league/oauth1-client",
  4125. "version": "v1.11.0",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/thephpleague/oauth1-client.git",
  4129. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4134. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4135. "shasum": ""
  4136. },
  4137. "require": {
  4138. "ext-json": "*",
  4139. "ext-openssl": "*",
  4140. "guzzlehttp/guzzle": "^6.0|^7.0",
  4141. "guzzlehttp/psr7": "^1.7|^2.0",
  4142. "php": ">=7.1||>=8.0"
  4143. },
  4144. "require-dev": {
  4145. "ext-simplexml": "*",
  4146. "friendsofphp/php-cs-fixer": "^2.17",
  4147. "mockery/mockery": "^1.3.3",
  4148. "phpstan/phpstan": "^0.12.42",
  4149. "phpunit/phpunit": "^7.5||9.5"
  4150. },
  4151. "suggest": {
  4152. "ext-simplexml": "For decoding XML-based responses."
  4153. },
  4154. "type": "library",
  4155. "extra": {
  4156. "branch-alias": {
  4157. "dev-master": "1.0-dev",
  4158. "dev-develop": "2.0-dev"
  4159. }
  4160. },
  4161. "autoload": {
  4162. "psr-4": {
  4163. "League\\OAuth1\\Client\\": "src/"
  4164. }
  4165. },
  4166. "notification-url": "https://packagist.org/downloads/",
  4167. "license": [
  4168. "MIT"
  4169. ],
  4170. "authors": [
  4171. {
  4172. "name": "Ben Corlett",
  4173. "email": "bencorlett@me.com",
  4174. "homepage": "http://www.webcomm.com.au",
  4175. "role": "Developer"
  4176. }
  4177. ],
  4178. "description": "OAuth 1.0 Client Library",
  4179. "keywords": [
  4180. "Authentication",
  4181. "SSO",
  4182. "authorization",
  4183. "bitbucket",
  4184. "identity",
  4185. "idp",
  4186. "oauth",
  4187. "oauth1",
  4188. "single sign on",
  4189. "trello",
  4190. "tumblr",
  4191. "twitter"
  4192. ],
  4193. "support": {
  4194. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4195. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4196. },
  4197. "time": "2024-12-10T19:59:05+00:00"
  4198. },
  4199. {
  4200. "name": "league/uri",
  4201. "version": "7.5.1",
  4202. "source": {
  4203. "type": "git",
  4204. "url": "https://github.com/thephpleague/uri.git",
  4205. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4206. },
  4207. "dist": {
  4208. "type": "zip",
  4209. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4210. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4211. "shasum": ""
  4212. },
  4213. "require": {
  4214. "league/uri-interfaces": "^7.5",
  4215. "php": "^8.1"
  4216. },
  4217. "conflict": {
  4218. "league/uri-schemes": "^1.0"
  4219. },
  4220. "suggest": {
  4221. "ext-bcmath": "to improve IPV4 host parsing",
  4222. "ext-fileinfo": "to create Data URI from file contennts",
  4223. "ext-gmp": "to improve IPV4 host parsing",
  4224. "ext-intl": "to handle IDN host with the best performance",
  4225. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4226. "league/uri-components": "Needed to easily manipulate URI objects components",
  4227. "php-64bit": "to improve IPV4 host parsing",
  4228. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4229. },
  4230. "type": "library",
  4231. "extra": {
  4232. "branch-alias": {
  4233. "dev-master": "7.x-dev"
  4234. }
  4235. },
  4236. "autoload": {
  4237. "psr-4": {
  4238. "League\\Uri\\": ""
  4239. }
  4240. },
  4241. "notification-url": "https://packagist.org/downloads/",
  4242. "license": [
  4243. "MIT"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Ignace Nyamagana Butera",
  4248. "email": "nyamsprod@gmail.com",
  4249. "homepage": "https://nyamsprod.com"
  4250. }
  4251. ],
  4252. "description": "URI manipulation library",
  4253. "homepage": "https://uri.thephpleague.com",
  4254. "keywords": [
  4255. "data-uri",
  4256. "file-uri",
  4257. "ftp",
  4258. "hostname",
  4259. "http",
  4260. "https",
  4261. "middleware",
  4262. "parse_str",
  4263. "parse_url",
  4264. "psr-7",
  4265. "query-string",
  4266. "querystring",
  4267. "rfc3986",
  4268. "rfc3987",
  4269. "rfc6570",
  4270. "uri",
  4271. "uri-template",
  4272. "url",
  4273. "ws"
  4274. ],
  4275. "support": {
  4276. "docs": "https://uri.thephpleague.com",
  4277. "forum": "https://thephpleague.slack.com",
  4278. "issues": "https://github.com/thephpleague/uri-src/issues",
  4279. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4280. },
  4281. "funding": [
  4282. {
  4283. "url": "https://github.com/sponsors/nyamsprod",
  4284. "type": "github"
  4285. }
  4286. ],
  4287. "time": "2024-12-08T08:40:02+00:00"
  4288. },
  4289. {
  4290. "name": "league/uri-interfaces",
  4291. "version": "7.5.0",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4295. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4300. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4301. "shasum": ""
  4302. },
  4303. "require": {
  4304. "ext-filter": "*",
  4305. "php": "^8.1",
  4306. "psr/http-factory": "^1",
  4307. "psr/http-message": "^1.1 || ^2.0"
  4308. },
  4309. "suggest": {
  4310. "ext-bcmath": "to improve IPV4 host parsing",
  4311. "ext-gmp": "to improve IPV4 host parsing",
  4312. "ext-intl": "to handle IDN host with the best performance",
  4313. "php-64bit": "to improve IPV4 host parsing",
  4314. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "7.x-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "psr-4": {
  4324. "League\\Uri\\": ""
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Ignace Nyamagana Butera",
  4334. "email": "nyamsprod@gmail.com",
  4335. "homepage": "https://nyamsprod.com"
  4336. }
  4337. ],
  4338. "description": "Common interfaces and classes for URI representation and interaction",
  4339. "homepage": "https://uri.thephpleague.com",
  4340. "keywords": [
  4341. "data-uri",
  4342. "file-uri",
  4343. "ftp",
  4344. "hostname",
  4345. "http",
  4346. "https",
  4347. "parse_str",
  4348. "parse_url",
  4349. "psr-7",
  4350. "query-string",
  4351. "querystring",
  4352. "rfc3986",
  4353. "rfc3987",
  4354. "rfc6570",
  4355. "uri",
  4356. "url",
  4357. "ws"
  4358. ],
  4359. "support": {
  4360. "docs": "https://uri.thephpleague.com",
  4361. "forum": "https://thephpleague.slack.com",
  4362. "issues": "https://github.com/thephpleague/uri-src/issues",
  4363. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4364. },
  4365. "funding": [
  4366. {
  4367. "url": "https://github.com/sponsors/nyamsprod",
  4368. "type": "github"
  4369. }
  4370. ],
  4371. "time": "2024-12-08T08:18:47+00:00"
  4372. },
  4373. {
  4374. "name": "livewire/livewire",
  4375. "version": "v3.6.3",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/livewire/livewire.git",
  4379. "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/livewire/livewire/zipball/56aa1bb63a46e06181c56fa64717a7287e19115e",
  4384. "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e",
  4385. "shasum": ""
  4386. },
  4387. "require": {
  4388. "illuminate/database": "^10.0|^11.0|^12.0",
  4389. "illuminate/routing": "^10.0|^11.0|^12.0",
  4390. "illuminate/support": "^10.0|^11.0|^12.0",
  4391. "illuminate/validation": "^10.0|^11.0|^12.0",
  4392. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4393. "league/mime-type-detection": "^1.9",
  4394. "php": "^8.1",
  4395. "symfony/console": "^6.0|^7.0",
  4396. "symfony/http-kernel": "^6.2|^7.0"
  4397. },
  4398. "require-dev": {
  4399. "calebporzio/sushi": "^2.1",
  4400. "laravel/framework": "^10.15.0|^11.0|^12.0",
  4401. "mockery/mockery": "^1.3.1",
  4402. "orchestra/testbench": "^8.21.0|^9.0|^10.0",
  4403. "orchestra/testbench-dusk": "^8.24|^9.1|^10.0",
  4404. "phpunit/phpunit": "^10.4|^11.5",
  4405. "psy/psysh": "^0.11.22|^0.12"
  4406. },
  4407. "type": "library",
  4408. "extra": {
  4409. "laravel": {
  4410. "aliases": {
  4411. "Livewire": "Livewire\\Livewire"
  4412. },
  4413. "providers": [
  4414. "Livewire\\LivewireServiceProvider"
  4415. ]
  4416. }
  4417. },
  4418. "autoload": {
  4419. "files": [
  4420. "src/helpers.php"
  4421. ],
  4422. "psr-4": {
  4423. "Livewire\\": "src/"
  4424. }
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "MIT"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "Caleb Porzio",
  4433. "email": "calebporzio@gmail.com"
  4434. }
  4435. ],
  4436. "description": "A front-end framework for Laravel.",
  4437. "support": {
  4438. "issues": "https://github.com/livewire/livewire/issues",
  4439. "source": "https://github.com/livewire/livewire/tree/v3.6.3"
  4440. },
  4441. "funding": [
  4442. {
  4443. "url": "https://github.com/livewire",
  4444. "type": "github"
  4445. }
  4446. ],
  4447. "time": "2025-04-12T22:26:52+00:00"
  4448. },
  4449. {
  4450. "name": "masterminds/html5",
  4451. "version": "2.9.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/Masterminds/html5-php.git",
  4455. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4460. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "ext-dom": "*",
  4465. "php": ">=5.3.0"
  4466. },
  4467. "require-dev": {
  4468. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4469. },
  4470. "type": "library",
  4471. "extra": {
  4472. "branch-alias": {
  4473. "dev-master": "2.7-dev"
  4474. }
  4475. },
  4476. "autoload": {
  4477. "psr-4": {
  4478. "Masterminds\\": "src"
  4479. }
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "Matt Butcher",
  4488. "email": "technosophos@gmail.com"
  4489. },
  4490. {
  4491. "name": "Matt Farina",
  4492. "email": "matt@mattfarina.com"
  4493. },
  4494. {
  4495. "name": "Asmir Mustafic",
  4496. "email": "goetas@gmail.com"
  4497. }
  4498. ],
  4499. "description": "An HTML5 parser and serializer.",
  4500. "homepage": "http://masterminds.github.io/html5-php",
  4501. "keywords": [
  4502. "HTML5",
  4503. "dom",
  4504. "html",
  4505. "parser",
  4506. "querypath",
  4507. "serializer",
  4508. "xml"
  4509. ],
  4510. "support": {
  4511. "issues": "https://github.com/Masterminds/html5-php/issues",
  4512. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4513. },
  4514. "time": "2024-03-31T07:05:07+00:00"
  4515. },
  4516. {
  4517. "name": "matomo/device-detector",
  4518. "version": "6.4.6",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://github.com/matomo-org/device-detector.git",
  4522. "reference": "6f07f615199851548db47a900815d2ea2cdcde08"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/6f07f615199851548db47a900815d2ea2cdcde08",
  4527. "reference": "6f07f615199851548db47a900815d2ea2cdcde08",
  4528. "shasum": ""
  4529. },
  4530. "require": {
  4531. "mustangostang/spyc": "*",
  4532. "php": "^7.2|^8.0"
  4533. },
  4534. "replace": {
  4535. "piwik/device-detector": "self.version"
  4536. },
  4537. "require-dev": {
  4538. "matthiasmullie/scrapbook": "^1.4.7",
  4539. "mayflower/mo4-coding-standard": "^v9.0.0",
  4540. "phpstan/phpstan": "^1.10.44",
  4541. "phpunit/phpunit": "^8.5.8",
  4542. "psr/cache": "^1.0.1",
  4543. "psr/simple-cache": "^1.0.1",
  4544. "slevomat/coding-standard": "<8.16.0",
  4545. "symfony/yaml": "^5.1.7"
  4546. },
  4547. "suggest": {
  4548. "doctrine/cache": "Can directly be used for caching purpose",
  4549. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-4": {
  4554. "DeviceDetector\\": ""
  4555. },
  4556. "exclude-from-classmap": [
  4557. "Tests/"
  4558. ]
  4559. },
  4560. "notification-url": "https://packagist.org/downloads/",
  4561. "license": [
  4562. "LGPL-3.0-or-later"
  4563. ],
  4564. "authors": [
  4565. {
  4566. "name": "The Matomo Team",
  4567. "email": "hello@matomo.org",
  4568. "homepage": "https://matomo.org/team/"
  4569. }
  4570. ],
  4571. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  4572. "homepage": "https://matomo.org",
  4573. "keywords": [
  4574. "devicedetection",
  4575. "parser",
  4576. "useragent"
  4577. ],
  4578. "support": {
  4579. "forum": "https://forum.matomo.org/",
  4580. "issues": "https://github.com/matomo-org/device-detector/issues",
  4581. "source": "https://github.com/matomo-org/matomo",
  4582. "wiki": "https://dev.matomo.org/"
  4583. },
  4584. "time": "2025-06-10T10:00:59+00:00"
  4585. },
  4586. {
  4587. "name": "monolog/monolog",
  4588. "version": "3.9.0",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/Seldaek/monolog.git",
  4592. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4597. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "php": ">=8.1",
  4602. "psr/log": "^2.0 || ^3.0"
  4603. },
  4604. "provide": {
  4605. "psr/log-implementation": "3.0.0"
  4606. },
  4607. "require-dev": {
  4608. "aws/aws-sdk-php": "^3.0",
  4609. "doctrine/couchdb": "~1.0@dev",
  4610. "elasticsearch/elasticsearch": "^7 || ^8",
  4611. "ext-json": "*",
  4612. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4613. "guzzlehttp/guzzle": "^7.4.5",
  4614. "guzzlehttp/psr7": "^2.2",
  4615. "mongodb/mongodb": "^1.8",
  4616. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4617. "php-console/php-console": "^3.1.8",
  4618. "phpstan/phpstan": "^2",
  4619. "phpstan/phpstan-deprecation-rules": "^2",
  4620. "phpstan/phpstan-strict-rules": "^2",
  4621. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4622. "predis/predis": "^1.1 || ^2",
  4623. "rollbar/rollbar": "^4.0",
  4624. "ruflin/elastica": "^7 || ^8",
  4625. "symfony/mailer": "^5.4 || ^6",
  4626. "symfony/mime": "^5.4 || ^6"
  4627. },
  4628. "suggest": {
  4629. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4630. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4631. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4632. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4633. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4634. "ext-mbstring": "Allow to work properly with unicode symbols",
  4635. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4636. "ext-openssl": "Required to send log messages using SSL",
  4637. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4638. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4639. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4640. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4641. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4642. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4643. },
  4644. "type": "library",
  4645. "extra": {
  4646. "branch-alias": {
  4647. "dev-main": "3.x-dev"
  4648. }
  4649. },
  4650. "autoload": {
  4651. "psr-4": {
  4652. "Monolog\\": "src/Monolog"
  4653. }
  4654. },
  4655. "notification-url": "https://packagist.org/downloads/",
  4656. "license": [
  4657. "MIT"
  4658. ],
  4659. "authors": [
  4660. {
  4661. "name": "Jordi Boggiano",
  4662. "email": "j.boggiano@seld.be",
  4663. "homepage": "https://seld.be"
  4664. }
  4665. ],
  4666. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4667. "homepage": "https://github.com/Seldaek/monolog",
  4668. "keywords": [
  4669. "log",
  4670. "logging",
  4671. "psr-3"
  4672. ],
  4673. "support": {
  4674. "issues": "https://github.com/Seldaek/monolog/issues",
  4675. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  4676. },
  4677. "funding": [
  4678. {
  4679. "url": "https://github.com/Seldaek",
  4680. "type": "github"
  4681. },
  4682. {
  4683. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4684. "type": "tidelift"
  4685. }
  4686. ],
  4687. "time": "2025-03-24T10:02:05+00:00"
  4688. },
  4689. {
  4690. "name": "mtdowling/jmespath.php",
  4691. "version": "2.8.0",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/jmespath/jmespath.php.git",
  4695. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4700. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4701. "shasum": ""
  4702. },
  4703. "require": {
  4704. "php": "^7.2.5 || ^8.0",
  4705. "symfony/polyfill-mbstring": "^1.17"
  4706. },
  4707. "require-dev": {
  4708. "composer/xdebug-handler": "^3.0.3",
  4709. "phpunit/phpunit": "^8.5.33"
  4710. },
  4711. "bin": [
  4712. "bin/jp.php"
  4713. ],
  4714. "type": "library",
  4715. "extra": {
  4716. "branch-alias": {
  4717. "dev-master": "2.8-dev"
  4718. }
  4719. },
  4720. "autoload": {
  4721. "files": [
  4722. "src/JmesPath.php"
  4723. ],
  4724. "psr-4": {
  4725. "JmesPath\\": "src/"
  4726. }
  4727. },
  4728. "notification-url": "https://packagist.org/downloads/",
  4729. "license": [
  4730. "MIT"
  4731. ],
  4732. "authors": [
  4733. {
  4734. "name": "Graham Campbell",
  4735. "email": "hello@gjcampbell.co.uk",
  4736. "homepage": "https://github.com/GrahamCampbell"
  4737. },
  4738. {
  4739. "name": "Michael Dowling",
  4740. "email": "mtdowling@gmail.com",
  4741. "homepage": "https://github.com/mtdowling"
  4742. }
  4743. ],
  4744. "description": "Declaratively specify how to extract elements from a JSON document",
  4745. "keywords": [
  4746. "json",
  4747. "jsonpath"
  4748. ],
  4749. "support": {
  4750. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4751. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4752. },
  4753. "time": "2024-09-04T18:46:31+00:00"
  4754. },
  4755. {
  4756. "name": "mustangostang/spyc",
  4757. "version": "0.6.3",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/mustangostang/spyc.git",
  4761. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4766. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "php": ">=5.3.1"
  4771. },
  4772. "require-dev": {
  4773. "phpunit/phpunit": "4.3.*@dev"
  4774. },
  4775. "type": "library",
  4776. "extra": {
  4777. "branch-alias": {
  4778. "dev-master": "0.5.x-dev"
  4779. }
  4780. },
  4781. "autoload": {
  4782. "files": [
  4783. "Spyc.php"
  4784. ]
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "MIT"
  4789. ],
  4790. "authors": [
  4791. {
  4792. "name": "mustangostang",
  4793. "email": "vlad.andersen@gmail.com"
  4794. }
  4795. ],
  4796. "description": "A simple YAML loader/dumper class for PHP",
  4797. "homepage": "https://github.com/mustangostang/spyc/",
  4798. "keywords": [
  4799. "spyc",
  4800. "yaml",
  4801. "yml"
  4802. ],
  4803. "support": {
  4804. "issues": "https://github.com/mustangostang/spyc/issues",
  4805. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4806. },
  4807. "time": "2019-09-10T13:16:29+00:00"
  4808. },
  4809. {
  4810. "name": "nesbot/carbon",
  4811. "version": "3.10.0",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/CarbonPHP/carbon.git",
  4815. "reference": "c1397390dd0a7e0f11660f0ae20f753d88c1f3d9"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/c1397390dd0a7e0f11660f0ae20f753d88c1f3d9",
  4820. "reference": "c1397390dd0a7e0f11660f0ae20f753d88c1f3d9",
  4821. "shasum": ""
  4822. },
  4823. "require": {
  4824. "carbonphp/carbon-doctrine-types": "<100.0",
  4825. "ext-json": "*",
  4826. "php": "^8.1",
  4827. "psr/clock": "^1.0",
  4828. "symfony/clock": "^6.3.12 || ^7.0",
  4829. "symfony/polyfill-mbstring": "^1.0",
  4830. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
  4831. },
  4832. "provide": {
  4833. "psr/clock-implementation": "1.0"
  4834. },
  4835. "require-dev": {
  4836. "doctrine/dbal": "^3.6.3 || ^4.0",
  4837. "doctrine/orm": "^2.15.2 || ^3.0",
  4838. "friendsofphp/php-cs-fixer": "^3.75.0",
  4839. "kylekatarnls/multi-tester": "^2.5.3",
  4840. "phpmd/phpmd": "^2.15.0",
  4841. "phpstan/extension-installer": "^1.4.3",
  4842. "phpstan/phpstan": "^2.1.17",
  4843. "phpunit/phpunit": "^10.5.46",
  4844. "squizlabs/php_codesniffer": "^3.13.0"
  4845. },
  4846. "bin": [
  4847. "bin/carbon"
  4848. ],
  4849. "type": "library",
  4850. "extra": {
  4851. "laravel": {
  4852. "providers": [
  4853. "Carbon\\Laravel\\ServiceProvider"
  4854. ]
  4855. },
  4856. "phpstan": {
  4857. "includes": [
  4858. "extension.neon"
  4859. ]
  4860. },
  4861. "branch-alias": {
  4862. "dev-2.x": "2.x-dev",
  4863. "dev-master": "3.x-dev"
  4864. }
  4865. },
  4866. "autoload": {
  4867. "psr-4": {
  4868. "Carbon\\": "src/Carbon/"
  4869. }
  4870. },
  4871. "notification-url": "https://packagist.org/downloads/",
  4872. "license": [
  4873. "MIT"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "Brian Nesbitt",
  4878. "email": "brian@nesbot.com",
  4879. "homepage": "https://markido.com"
  4880. },
  4881. {
  4882. "name": "kylekatarnls",
  4883. "homepage": "https://github.com/kylekatarnls"
  4884. }
  4885. ],
  4886. "description": "An API extension for DateTime that supports 281 different languages.",
  4887. "homepage": "https://carbon.nesbot.com",
  4888. "keywords": [
  4889. "date",
  4890. "datetime",
  4891. "time"
  4892. ],
  4893. "support": {
  4894. "docs": "https://carbon.nesbot.com/docs",
  4895. "issues": "https://github.com/CarbonPHP/carbon/issues",
  4896. "source": "https://github.com/CarbonPHP/carbon"
  4897. },
  4898. "funding": [
  4899. {
  4900. "url": "https://github.com/sponsors/kylekatarnls",
  4901. "type": "github"
  4902. },
  4903. {
  4904. "url": "https://opencollective.com/Carbon#sponsor",
  4905. "type": "opencollective"
  4906. },
  4907. {
  4908. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4909. "type": "tidelift"
  4910. }
  4911. ],
  4912. "time": "2025-06-12T10:24:28+00:00"
  4913. },
  4914. {
  4915. "name": "nette/schema",
  4916. "version": "v1.3.2",
  4917. "source": {
  4918. "type": "git",
  4919. "url": "https://github.com/nette/schema.git",
  4920. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4921. },
  4922. "dist": {
  4923. "type": "zip",
  4924. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4925. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4926. "shasum": ""
  4927. },
  4928. "require": {
  4929. "nette/utils": "^4.0",
  4930. "php": "8.1 - 8.4"
  4931. },
  4932. "require-dev": {
  4933. "nette/tester": "^2.5.2",
  4934. "phpstan/phpstan-nette": "^1.0",
  4935. "tracy/tracy": "^2.8"
  4936. },
  4937. "type": "library",
  4938. "extra": {
  4939. "branch-alias": {
  4940. "dev-master": "1.3-dev"
  4941. }
  4942. },
  4943. "autoload": {
  4944. "classmap": [
  4945. "src/"
  4946. ]
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "BSD-3-Clause",
  4951. "GPL-2.0-only",
  4952. "GPL-3.0-only"
  4953. ],
  4954. "authors": [
  4955. {
  4956. "name": "David Grudl",
  4957. "homepage": "https://davidgrudl.com"
  4958. },
  4959. {
  4960. "name": "Nette Community",
  4961. "homepage": "https://nette.org/contributors"
  4962. }
  4963. ],
  4964. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4965. "homepage": "https://nette.org",
  4966. "keywords": [
  4967. "config",
  4968. "nette"
  4969. ],
  4970. "support": {
  4971. "issues": "https://github.com/nette/schema/issues",
  4972. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4973. },
  4974. "time": "2024-10-06T23:10:23+00:00"
  4975. },
  4976. {
  4977. "name": "nette/utils",
  4978. "version": "v4.0.7",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/nette/utils.git",
  4982. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  4987. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  4988. "shasum": ""
  4989. },
  4990. "require": {
  4991. "php": "8.0 - 8.4"
  4992. },
  4993. "conflict": {
  4994. "nette/finder": "<3",
  4995. "nette/schema": "<1.2.2"
  4996. },
  4997. "require-dev": {
  4998. "jetbrains/phpstorm-attributes": "dev-master",
  4999. "nette/tester": "^2.5",
  5000. "phpstan/phpstan": "^1.0",
  5001. "tracy/tracy": "^2.9"
  5002. },
  5003. "suggest": {
  5004. "ext-gd": "to use Image",
  5005. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5006. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5007. "ext-json": "to use Nette\\Utils\\Json",
  5008. "ext-mbstring": "to use Strings::lower() etc...",
  5009. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5010. },
  5011. "type": "library",
  5012. "extra": {
  5013. "branch-alias": {
  5014. "dev-master": "4.0-dev"
  5015. }
  5016. },
  5017. "autoload": {
  5018. "classmap": [
  5019. "src/"
  5020. ]
  5021. },
  5022. "notification-url": "https://packagist.org/downloads/",
  5023. "license": [
  5024. "BSD-3-Clause",
  5025. "GPL-2.0-only",
  5026. "GPL-3.0-only"
  5027. ],
  5028. "authors": [
  5029. {
  5030. "name": "David Grudl",
  5031. "homepage": "https://davidgrudl.com"
  5032. },
  5033. {
  5034. "name": "Nette Community",
  5035. "homepage": "https://nette.org/contributors"
  5036. }
  5037. ],
  5038. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5039. "homepage": "https://nette.org",
  5040. "keywords": [
  5041. "array",
  5042. "core",
  5043. "datetime",
  5044. "images",
  5045. "json",
  5046. "nette",
  5047. "paginator",
  5048. "password",
  5049. "slugify",
  5050. "string",
  5051. "unicode",
  5052. "utf-8",
  5053. "utility",
  5054. "validation"
  5055. ],
  5056. "support": {
  5057. "issues": "https://github.com/nette/utils/issues",
  5058. "source": "https://github.com/nette/utils/tree/v4.0.7"
  5059. },
  5060. "time": "2025-06-03T04:55:08+00:00"
  5061. },
  5062. {
  5063. "name": "nikic/php-parser",
  5064. "version": "v5.5.0",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/nikic/PHP-Parser.git",
  5068. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  5073. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  5074. "shasum": ""
  5075. },
  5076. "require": {
  5077. "ext-ctype": "*",
  5078. "ext-json": "*",
  5079. "ext-tokenizer": "*",
  5080. "php": ">=7.4"
  5081. },
  5082. "require-dev": {
  5083. "ircmaxell/php-yacc": "^0.0.7",
  5084. "phpunit/phpunit": "^9.0"
  5085. },
  5086. "bin": [
  5087. "bin/php-parse"
  5088. ],
  5089. "type": "library",
  5090. "extra": {
  5091. "branch-alias": {
  5092. "dev-master": "5.0-dev"
  5093. }
  5094. },
  5095. "autoload": {
  5096. "psr-4": {
  5097. "PhpParser\\": "lib/PhpParser"
  5098. }
  5099. },
  5100. "notification-url": "https://packagist.org/downloads/",
  5101. "license": [
  5102. "BSD-3-Clause"
  5103. ],
  5104. "authors": [
  5105. {
  5106. "name": "Nikita Popov"
  5107. }
  5108. ],
  5109. "description": "A PHP parser written in PHP",
  5110. "keywords": [
  5111. "parser",
  5112. "php"
  5113. ],
  5114. "support": {
  5115. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5116. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  5117. },
  5118. "time": "2025-05-31T08:24:38+00:00"
  5119. },
  5120. {
  5121. "name": "nunomaduro/termwind",
  5122. "version": "v2.3.1",
  5123. "source": {
  5124. "type": "git",
  5125. "url": "https://github.com/nunomaduro/termwind.git",
  5126. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
  5127. },
  5128. "dist": {
  5129. "type": "zip",
  5130. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
  5131. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
  5132. "shasum": ""
  5133. },
  5134. "require": {
  5135. "ext-mbstring": "*",
  5136. "php": "^8.2",
  5137. "symfony/console": "^7.2.6"
  5138. },
  5139. "require-dev": {
  5140. "illuminate/console": "^11.44.7",
  5141. "laravel/pint": "^1.22.0",
  5142. "mockery/mockery": "^1.6.12",
  5143. "pestphp/pest": "^2.36.0 || ^3.8.2",
  5144. "phpstan/phpstan": "^1.12.25",
  5145. "phpstan/phpstan-strict-rules": "^1.6.2",
  5146. "symfony/var-dumper": "^7.2.6",
  5147. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5148. },
  5149. "type": "library",
  5150. "extra": {
  5151. "laravel": {
  5152. "providers": [
  5153. "Termwind\\Laravel\\TermwindServiceProvider"
  5154. ]
  5155. },
  5156. "branch-alias": {
  5157. "dev-2.x": "2.x-dev"
  5158. }
  5159. },
  5160. "autoload": {
  5161. "files": [
  5162. "src/Functions.php"
  5163. ],
  5164. "psr-4": {
  5165. "Termwind\\": "src/"
  5166. }
  5167. },
  5168. "notification-url": "https://packagist.org/downloads/",
  5169. "license": [
  5170. "MIT"
  5171. ],
  5172. "authors": [
  5173. {
  5174. "name": "Nuno Maduro",
  5175. "email": "enunomaduro@gmail.com"
  5176. }
  5177. ],
  5178. "description": "Its like Tailwind CSS, but for the console.",
  5179. "keywords": [
  5180. "cli",
  5181. "console",
  5182. "css",
  5183. "package",
  5184. "php",
  5185. "style"
  5186. ],
  5187. "support": {
  5188. "issues": "https://github.com/nunomaduro/termwind/issues",
  5189. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
  5190. },
  5191. "funding": [
  5192. {
  5193. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5194. "type": "custom"
  5195. },
  5196. {
  5197. "url": "https://github.com/nunomaduro",
  5198. "type": "github"
  5199. },
  5200. {
  5201. "url": "https://github.com/xiCO2k",
  5202. "type": "github"
  5203. }
  5204. ],
  5205. "time": "2025-05-08T08:14:37+00:00"
  5206. },
  5207. {
  5208. "name": "openspout/openspout",
  5209. "version": "v4.30.0",
  5210. "source": {
  5211. "type": "git",
  5212. "url": "https://github.com/openspout/openspout.git",
  5213. "reference": "df9b0f4d229c37c3caa5a9252a6ad8a94efb0fb5"
  5214. },
  5215. "dist": {
  5216. "type": "zip",
  5217. "url": "https://api.github.com/repos/openspout/openspout/zipball/df9b0f4d229c37c3caa5a9252a6ad8a94efb0fb5",
  5218. "reference": "df9b0f4d229c37c3caa5a9252a6ad8a94efb0fb5",
  5219. "shasum": ""
  5220. },
  5221. "require": {
  5222. "ext-dom": "*",
  5223. "ext-fileinfo": "*",
  5224. "ext-filter": "*",
  5225. "ext-libxml": "*",
  5226. "ext-xmlreader": "*",
  5227. "ext-zip": "*",
  5228. "php": "~8.3.0 || ~8.4.0"
  5229. },
  5230. "require-dev": {
  5231. "ext-zlib": "*",
  5232. "friendsofphp/php-cs-fixer": "^3.75.0",
  5233. "infection/infection": "^0.29.14",
  5234. "phpbench/phpbench": "^1.4.1",
  5235. "phpstan/phpstan": "^2.1.16",
  5236. "phpstan/phpstan-phpunit": "^2.0.6",
  5237. "phpstan/phpstan-strict-rules": "^2.0.4",
  5238. "phpunit/phpunit": "^12.1.5"
  5239. },
  5240. "suggest": {
  5241. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5242. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5243. },
  5244. "type": "library",
  5245. "extra": {
  5246. "branch-alias": {
  5247. "dev-master": "3.3.x-dev"
  5248. }
  5249. },
  5250. "autoload": {
  5251. "psr-4": {
  5252. "OpenSpout\\": "src/"
  5253. }
  5254. },
  5255. "notification-url": "https://packagist.org/downloads/",
  5256. "license": [
  5257. "MIT"
  5258. ],
  5259. "authors": [
  5260. {
  5261. "name": "Adrien Loison",
  5262. "email": "adrien@box.com"
  5263. }
  5264. ],
  5265. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5266. "homepage": "https://github.com/openspout/openspout",
  5267. "keywords": [
  5268. "OOXML",
  5269. "csv",
  5270. "excel",
  5271. "memory",
  5272. "odf",
  5273. "ods",
  5274. "office",
  5275. "open",
  5276. "php",
  5277. "read",
  5278. "scale",
  5279. "spreadsheet",
  5280. "stream",
  5281. "write",
  5282. "xlsx"
  5283. ],
  5284. "support": {
  5285. "issues": "https://github.com/openspout/openspout/issues",
  5286. "source": "https://github.com/openspout/openspout/tree/v4.30.0"
  5287. },
  5288. "funding": [
  5289. {
  5290. "url": "https://paypal.me/filippotessarotto",
  5291. "type": "custom"
  5292. },
  5293. {
  5294. "url": "https://github.com/Slamdunk",
  5295. "type": "github"
  5296. }
  5297. ],
  5298. "time": "2025-05-20T12:33:06+00:00"
  5299. },
  5300. {
  5301. "name": "paragonie/constant_time_encoding",
  5302. "version": "v3.0.0",
  5303. "source": {
  5304. "type": "git",
  5305. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5306. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5307. },
  5308. "dist": {
  5309. "type": "zip",
  5310. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5311. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5312. "shasum": ""
  5313. },
  5314. "require": {
  5315. "php": "^8"
  5316. },
  5317. "require-dev": {
  5318. "phpunit/phpunit": "^9",
  5319. "vimeo/psalm": "^4|^5"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "ParagonIE\\ConstantTime\\": "src/"
  5325. }
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Paragon Initiative Enterprises",
  5334. "email": "security@paragonie.com",
  5335. "homepage": "https://paragonie.com",
  5336. "role": "Maintainer"
  5337. },
  5338. {
  5339. "name": "Steve 'Sc00bz' Thomas",
  5340. "email": "steve@tobtu.com",
  5341. "homepage": "https://www.tobtu.com",
  5342. "role": "Original Developer"
  5343. }
  5344. ],
  5345. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5346. "keywords": [
  5347. "base16",
  5348. "base32",
  5349. "base32_decode",
  5350. "base32_encode",
  5351. "base64",
  5352. "base64_decode",
  5353. "base64_encode",
  5354. "bin2hex",
  5355. "encoding",
  5356. "hex",
  5357. "hex2bin",
  5358. "rfc4648"
  5359. ],
  5360. "support": {
  5361. "email": "info@paragonie.com",
  5362. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5363. "source": "https://github.com/paragonie/constant_time_encoding"
  5364. },
  5365. "time": "2024-05-08T12:36:18+00:00"
  5366. },
  5367. {
  5368. "name": "paragonie/random_compat",
  5369. "version": "v9.99.100",
  5370. "source": {
  5371. "type": "git",
  5372. "url": "https://github.com/paragonie/random_compat.git",
  5373. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5374. },
  5375. "dist": {
  5376. "type": "zip",
  5377. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5378. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5379. "shasum": ""
  5380. },
  5381. "require": {
  5382. "php": ">= 7"
  5383. },
  5384. "require-dev": {
  5385. "phpunit/phpunit": "4.*|5.*",
  5386. "vimeo/psalm": "^1"
  5387. },
  5388. "suggest": {
  5389. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5390. },
  5391. "type": "library",
  5392. "notification-url": "https://packagist.org/downloads/",
  5393. "license": [
  5394. "MIT"
  5395. ],
  5396. "authors": [
  5397. {
  5398. "name": "Paragon Initiative Enterprises",
  5399. "email": "security@paragonie.com",
  5400. "homepage": "https://paragonie.com"
  5401. }
  5402. ],
  5403. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5404. "keywords": [
  5405. "csprng",
  5406. "polyfill",
  5407. "pseudorandom",
  5408. "random"
  5409. ],
  5410. "support": {
  5411. "email": "info@paragonie.com",
  5412. "issues": "https://github.com/paragonie/random_compat/issues",
  5413. "source": "https://github.com/paragonie/random_compat"
  5414. },
  5415. "time": "2020-10-15T08:29:30+00:00"
  5416. },
  5417. {
  5418. "name": "phpoption/phpoption",
  5419. "version": "1.9.3",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://github.com/schmittjoh/php-option.git",
  5423. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5428. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5429. "shasum": ""
  5430. },
  5431. "require": {
  5432. "php": "^7.2.5 || ^8.0"
  5433. },
  5434. "require-dev": {
  5435. "bamarni/composer-bin-plugin": "^1.8.2",
  5436. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5437. },
  5438. "type": "library",
  5439. "extra": {
  5440. "bamarni-bin": {
  5441. "bin-links": true,
  5442. "forward-command": false
  5443. },
  5444. "branch-alias": {
  5445. "dev-master": "1.9-dev"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "psr-4": {
  5450. "PhpOption\\": "src/PhpOption/"
  5451. }
  5452. },
  5453. "notification-url": "https://packagist.org/downloads/",
  5454. "license": [
  5455. "Apache-2.0"
  5456. ],
  5457. "authors": [
  5458. {
  5459. "name": "Johannes M. Schmitt",
  5460. "email": "schmittjoh@gmail.com",
  5461. "homepage": "https://github.com/schmittjoh"
  5462. },
  5463. {
  5464. "name": "Graham Campbell",
  5465. "email": "hello@gjcampbell.co.uk",
  5466. "homepage": "https://github.com/GrahamCampbell"
  5467. }
  5468. ],
  5469. "description": "Option Type for PHP",
  5470. "keywords": [
  5471. "language",
  5472. "option",
  5473. "php",
  5474. "type"
  5475. ],
  5476. "support": {
  5477. "issues": "https://github.com/schmittjoh/php-option/issues",
  5478. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5479. },
  5480. "funding": [
  5481. {
  5482. "url": "https://github.com/GrahamCampbell",
  5483. "type": "github"
  5484. },
  5485. {
  5486. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5487. "type": "tidelift"
  5488. }
  5489. ],
  5490. "time": "2024-07-20T21:41:07+00:00"
  5491. },
  5492. {
  5493. "name": "phpseclib/phpseclib",
  5494. "version": "3.0.44",
  5495. "source": {
  5496. "type": "git",
  5497. "url": "https://github.com/phpseclib/phpseclib.git",
  5498. "reference": "1d0b5e7e1434678411787c5a0535e68907cf82d9"
  5499. },
  5500. "dist": {
  5501. "type": "zip",
  5502. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/1d0b5e7e1434678411787c5a0535e68907cf82d9",
  5503. "reference": "1d0b5e7e1434678411787c5a0535e68907cf82d9",
  5504. "shasum": ""
  5505. },
  5506. "require": {
  5507. "paragonie/constant_time_encoding": "^1|^2|^3",
  5508. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5509. "php": ">=5.6.1"
  5510. },
  5511. "require-dev": {
  5512. "phpunit/phpunit": "*"
  5513. },
  5514. "suggest": {
  5515. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5516. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5517. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5518. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5519. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5520. },
  5521. "type": "library",
  5522. "autoload": {
  5523. "files": [
  5524. "phpseclib/bootstrap.php"
  5525. ],
  5526. "psr-4": {
  5527. "phpseclib3\\": "phpseclib/"
  5528. }
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "MIT"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "Jim Wigginton",
  5537. "email": "terrafrost@php.net",
  5538. "role": "Lead Developer"
  5539. },
  5540. {
  5541. "name": "Patrick Monnerat",
  5542. "email": "pm@datasphere.ch",
  5543. "role": "Developer"
  5544. },
  5545. {
  5546. "name": "Andreas Fischer",
  5547. "email": "bantu@phpbb.com",
  5548. "role": "Developer"
  5549. },
  5550. {
  5551. "name": "Hans-Jürgen Petrich",
  5552. "email": "petrich@tronic-media.com",
  5553. "role": "Developer"
  5554. },
  5555. {
  5556. "name": "Graham Campbell",
  5557. "email": "graham@alt-three.com",
  5558. "role": "Developer"
  5559. }
  5560. ],
  5561. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5562. "homepage": "http://phpseclib.sourceforge.net",
  5563. "keywords": [
  5564. "BigInteger",
  5565. "aes",
  5566. "asn.1",
  5567. "asn1",
  5568. "blowfish",
  5569. "crypto",
  5570. "cryptography",
  5571. "encryption",
  5572. "rsa",
  5573. "security",
  5574. "sftp",
  5575. "signature",
  5576. "signing",
  5577. "ssh",
  5578. "twofish",
  5579. "x.509",
  5580. "x509"
  5581. ],
  5582. "support": {
  5583. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5584. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.44"
  5585. },
  5586. "funding": [
  5587. {
  5588. "url": "https://github.com/terrafrost",
  5589. "type": "github"
  5590. },
  5591. {
  5592. "url": "https://www.patreon.com/phpseclib",
  5593. "type": "patreon"
  5594. },
  5595. {
  5596. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5597. "type": "tidelift"
  5598. }
  5599. ],
  5600. "time": "2025-06-15T09:59:26+00:00"
  5601. },
  5602. {
  5603. "name": "psr/cache",
  5604. "version": "3.0.0",
  5605. "source": {
  5606. "type": "git",
  5607. "url": "https://github.com/php-fig/cache.git",
  5608. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5609. },
  5610. "dist": {
  5611. "type": "zip",
  5612. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5613. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5614. "shasum": ""
  5615. },
  5616. "require": {
  5617. "php": ">=8.0.0"
  5618. },
  5619. "type": "library",
  5620. "extra": {
  5621. "branch-alias": {
  5622. "dev-master": "1.0.x-dev"
  5623. }
  5624. },
  5625. "autoload": {
  5626. "psr-4": {
  5627. "Psr\\Cache\\": "src/"
  5628. }
  5629. },
  5630. "notification-url": "https://packagist.org/downloads/",
  5631. "license": [
  5632. "MIT"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "PHP-FIG",
  5637. "homepage": "https://www.php-fig.org/"
  5638. }
  5639. ],
  5640. "description": "Common interface for caching libraries",
  5641. "keywords": [
  5642. "cache",
  5643. "psr",
  5644. "psr-6"
  5645. ],
  5646. "support": {
  5647. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5648. },
  5649. "time": "2021-02-03T23:26:27+00:00"
  5650. },
  5651. {
  5652. "name": "psr/clock",
  5653. "version": "1.0.0",
  5654. "source": {
  5655. "type": "git",
  5656. "url": "https://github.com/php-fig/clock.git",
  5657. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5658. },
  5659. "dist": {
  5660. "type": "zip",
  5661. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5662. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5663. "shasum": ""
  5664. },
  5665. "require": {
  5666. "php": "^7.0 || ^8.0"
  5667. },
  5668. "type": "library",
  5669. "autoload": {
  5670. "psr-4": {
  5671. "Psr\\Clock\\": "src/"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "PHP-FIG",
  5681. "homepage": "https://www.php-fig.org/"
  5682. }
  5683. ],
  5684. "description": "Common interface for reading the clock.",
  5685. "homepage": "https://github.com/php-fig/clock",
  5686. "keywords": [
  5687. "clock",
  5688. "now",
  5689. "psr",
  5690. "psr-20",
  5691. "time"
  5692. ],
  5693. "support": {
  5694. "issues": "https://github.com/php-fig/clock/issues",
  5695. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5696. },
  5697. "time": "2022-11-25T14:36:26+00:00"
  5698. },
  5699. {
  5700. "name": "psr/container",
  5701. "version": "2.0.2",
  5702. "source": {
  5703. "type": "git",
  5704. "url": "https://github.com/php-fig/container.git",
  5705. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5706. },
  5707. "dist": {
  5708. "type": "zip",
  5709. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5710. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5711. "shasum": ""
  5712. },
  5713. "require": {
  5714. "php": ">=7.4.0"
  5715. },
  5716. "type": "library",
  5717. "extra": {
  5718. "branch-alias": {
  5719. "dev-master": "2.0.x-dev"
  5720. }
  5721. },
  5722. "autoload": {
  5723. "psr-4": {
  5724. "Psr\\Container\\": "src/"
  5725. }
  5726. },
  5727. "notification-url": "https://packagist.org/downloads/",
  5728. "license": [
  5729. "MIT"
  5730. ],
  5731. "authors": [
  5732. {
  5733. "name": "PHP-FIG",
  5734. "homepage": "https://www.php-fig.org/"
  5735. }
  5736. ],
  5737. "description": "Common Container Interface (PHP FIG PSR-11)",
  5738. "homepage": "https://github.com/php-fig/container",
  5739. "keywords": [
  5740. "PSR-11",
  5741. "container",
  5742. "container-interface",
  5743. "container-interop",
  5744. "psr"
  5745. ],
  5746. "support": {
  5747. "issues": "https://github.com/php-fig/container/issues",
  5748. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5749. },
  5750. "time": "2021-11-05T16:47:00+00:00"
  5751. },
  5752. {
  5753. "name": "psr/event-dispatcher",
  5754. "version": "1.0.0",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/php-fig/event-dispatcher.git",
  5758. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5763. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5764. "shasum": ""
  5765. },
  5766. "require": {
  5767. "php": ">=7.2.0"
  5768. },
  5769. "type": "library",
  5770. "extra": {
  5771. "branch-alias": {
  5772. "dev-master": "1.0.x-dev"
  5773. }
  5774. },
  5775. "autoload": {
  5776. "psr-4": {
  5777. "Psr\\EventDispatcher\\": "src/"
  5778. }
  5779. },
  5780. "notification-url": "https://packagist.org/downloads/",
  5781. "license": [
  5782. "MIT"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "PHP-FIG",
  5787. "homepage": "http://www.php-fig.org/"
  5788. }
  5789. ],
  5790. "description": "Standard interfaces for event handling.",
  5791. "keywords": [
  5792. "events",
  5793. "psr",
  5794. "psr-14"
  5795. ],
  5796. "support": {
  5797. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5798. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5799. },
  5800. "time": "2019-01-08T18:20:26+00:00"
  5801. },
  5802. {
  5803. "name": "psr/http-client",
  5804. "version": "1.0.3",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/php-fig/http-client.git",
  5808. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5813. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "php": "^7.0 || ^8.0",
  5818. "psr/http-message": "^1.0 || ^2.0"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-master": "1.0.x-dev"
  5824. }
  5825. },
  5826. "autoload": {
  5827. "psr-4": {
  5828. "Psr\\Http\\Client\\": "src/"
  5829. }
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "MIT"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "PHP-FIG",
  5838. "homepage": "https://www.php-fig.org/"
  5839. }
  5840. ],
  5841. "description": "Common interface for HTTP clients",
  5842. "homepage": "https://github.com/php-fig/http-client",
  5843. "keywords": [
  5844. "http",
  5845. "http-client",
  5846. "psr",
  5847. "psr-18"
  5848. ],
  5849. "support": {
  5850. "source": "https://github.com/php-fig/http-client"
  5851. },
  5852. "time": "2023-09-23T14:17:50+00:00"
  5853. },
  5854. {
  5855. "name": "psr/http-factory",
  5856. "version": "1.1.0",
  5857. "source": {
  5858. "type": "git",
  5859. "url": "https://github.com/php-fig/http-factory.git",
  5860. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5861. },
  5862. "dist": {
  5863. "type": "zip",
  5864. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5865. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5866. "shasum": ""
  5867. },
  5868. "require": {
  5869. "php": ">=7.1",
  5870. "psr/http-message": "^1.0 || ^2.0"
  5871. },
  5872. "type": "library",
  5873. "extra": {
  5874. "branch-alias": {
  5875. "dev-master": "1.0.x-dev"
  5876. }
  5877. },
  5878. "autoload": {
  5879. "psr-4": {
  5880. "Psr\\Http\\Message\\": "src/"
  5881. }
  5882. },
  5883. "notification-url": "https://packagist.org/downloads/",
  5884. "license": [
  5885. "MIT"
  5886. ],
  5887. "authors": [
  5888. {
  5889. "name": "PHP-FIG",
  5890. "homepage": "https://www.php-fig.org/"
  5891. }
  5892. ],
  5893. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5894. "keywords": [
  5895. "factory",
  5896. "http",
  5897. "message",
  5898. "psr",
  5899. "psr-17",
  5900. "psr-7",
  5901. "request",
  5902. "response"
  5903. ],
  5904. "support": {
  5905. "source": "https://github.com/php-fig/http-factory"
  5906. },
  5907. "time": "2024-04-15T12:06:14+00:00"
  5908. },
  5909. {
  5910. "name": "psr/http-message",
  5911. "version": "2.0",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/php-fig/http-message.git",
  5915. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5920. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5921. "shasum": ""
  5922. },
  5923. "require": {
  5924. "php": "^7.2 || ^8.0"
  5925. },
  5926. "type": "library",
  5927. "extra": {
  5928. "branch-alias": {
  5929. "dev-master": "2.0.x-dev"
  5930. }
  5931. },
  5932. "autoload": {
  5933. "psr-4": {
  5934. "Psr\\Http\\Message\\": "src/"
  5935. }
  5936. },
  5937. "notification-url": "https://packagist.org/downloads/",
  5938. "license": [
  5939. "MIT"
  5940. ],
  5941. "authors": [
  5942. {
  5943. "name": "PHP-FIG",
  5944. "homepage": "https://www.php-fig.org/"
  5945. }
  5946. ],
  5947. "description": "Common interface for HTTP messages",
  5948. "homepage": "https://github.com/php-fig/http-message",
  5949. "keywords": [
  5950. "http",
  5951. "http-message",
  5952. "psr",
  5953. "psr-7",
  5954. "request",
  5955. "response"
  5956. ],
  5957. "support": {
  5958. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5959. },
  5960. "time": "2023-04-04T09:54:51+00:00"
  5961. },
  5962. {
  5963. "name": "psr/log",
  5964. "version": "3.0.2",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/php-fig/log.git",
  5968. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5973. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "php": ">=8.0.0"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "branch-alias": {
  5982. "dev-master": "3.x-dev"
  5983. }
  5984. },
  5985. "autoload": {
  5986. "psr-4": {
  5987. "Psr\\Log\\": "src"
  5988. }
  5989. },
  5990. "notification-url": "https://packagist.org/downloads/",
  5991. "license": [
  5992. "MIT"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "PHP-FIG",
  5997. "homepage": "https://www.php-fig.org/"
  5998. }
  5999. ],
  6000. "description": "Common interface for logging libraries",
  6001. "homepage": "https://github.com/php-fig/log",
  6002. "keywords": [
  6003. "log",
  6004. "psr",
  6005. "psr-3"
  6006. ],
  6007. "support": {
  6008. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6009. },
  6010. "time": "2024-09-11T13:17:53+00:00"
  6011. },
  6012. {
  6013. "name": "psr/simple-cache",
  6014. "version": "3.0.0",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://github.com/php-fig/simple-cache.git",
  6018. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6023. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6024. "shasum": ""
  6025. },
  6026. "require": {
  6027. "php": ">=8.0.0"
  6028. },
  6029. "type": "library",
  6030. "extra": {
  6031. "branch-alias": {
  6032. "dev-master": "3.0.x-dev"
  6033. }
  6034. },
  6035. "autoload": {
  6036. "psr-4": {
  6037. "Psr\\SimpleCache\\": "src/"
  6038. }
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "PHP-FIG",
  6047. "homepage": "https://www.php-fig.org/"
  6048. }
  6049. ],
  6050. "description": "Common interfaces for simple caching",
  6051. "keywords": [
  6052. "cache",
  6053. "caching",
  6054. "psr",
  6055. "psr-16",
  6056. "simple-cache"
  6057. ],
  6058. "support": {
  6059. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6060. },
  6061. "time": "2021-10-29T13:26:27+00:00"
  6062. },
  6063. {
  6064. "name": "psy/psysh",
  6065. "version": "v0.12.8",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/bobthecow/psysh.git",
  6069. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  6074. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "ext-json": "*",
  6079. "ext-tokenizer": "*",
  6080. "nikic/php-parser": "^5.0 || ^4.0",
  6081. "php": "^8.0 || ^7.4",
  6082. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6083. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6084. },
  6085. "conflict": {
  6086. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6087. },
  6088. "require-dev": {
  6089. "bamarni/composer-bin-plugin": "^1.2"
  6090. },
  6091. "suggest": {
  6092. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6093. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6094. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6095. },
  6096. "bin": [
  6097. "bin/psysh"
  6098. ],
  6099. "type": "library",
  6100. "extra": {
  6101. "bamarni-bin": {
  6102. "bin-links": false,
  6103. "forward-command": false
  6104. },
  6105. "branch-alias": {
  6106. "dev-main": "0.12.x-dev"
  6107. }
  6108. },
  6109. "autoload": {
  6110. "files": [
  6111. "src/functions.php"
  6112. ],
  6113. "psr-4": {
  6114. "Psy\\": "src/"
  6115. }
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "MIT"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Justin Hileman",
  6124. "email": "justin@justinhileman.info",
  6125. "homepage": "http://justinhileman.com"
  6126. }
  6127. ],
  6128. "description": "An interactive shell for modern PHP.",
  6129. "homepage": "http://psysh.org",
  6130. "keywords": [
  6131. "REPL",
  6132. "console",
  6133. "interactive",
  6134. "shell"
  6135. ],
  6136. "support": {
  6137. "issues": "https://github.com/bobthecow/psysh/issues",
  6138. "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
  6139. },
  6140. "time": "2025-03-16T03:05:19+00:00"
  6141. },
  6142. {
  6143. "name": "ralouphie/getallheaders",
  6144. "version": "3.0.3",
  6145. "source": {
  6146. "type": "git",
  6147. "url": "https://github.com/ralouphie/getallheaders.git",
  6148. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6149. },
  6150. "dist": {
  6151. "type": "zip",
  6152. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6153. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6154. "shasum": ""
  6155. },
  6156. "require": {
  6157. "php": ">=5.6"
  6158. },
  6159. "require-dev": {
  6160. "php-coveralls/php-coveralls": "^2.1",
  6161. "phpunit/phpunit": "^5 || ^6.5"
  6162. },
  6163. "type": "library",
  6164. "autoload": {
  6165. "files": [
  6166. "src/getallheaders.php"
  6167. ]
  6168. },
  6169. "notification-url": "https://packagist.org/downloads/",
  6170. "license": [
  6171. "MIT"
  6172. ],
  6173. "authors": [
  6174. {
  6175. "name": "Ralph Khattar",
  6176. "email": "ralph.khattar@gmail.com"
  6177. }
  6178. ],
  6179. "description": "A polyfill for getallheaders.",
  6180. "support": {
  6181. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6182. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6183. },
  6184. "time": "2019-03-08T08:55:37+00:00"
  6185. },
  6186. {
  6187. "name": "ramsey/collection",
  6188. "version": "2.1.1",
  6189. "source": {
  6190. "type": "git",
  6191. "url": "https://github.com/ramsey/collection.git",
  6192. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  6193. },
  6194. "dist": {
  6195. "type": "zip",
  6196. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  6197. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  6198. "shasum": ""
  6199. },
  6200. "require": {
  6201. "php": "^8.1"
  6202. },
  6203. "require-dev": {
  6204. "captainhook/plugin-composer": "^5.3",
  6205. "ergebnis/composer-normalize": "^2.45",
  6206. "fakerphp/faker": "^1.24",
  6207. "hamcrest/hamcrest-php": "^2.0",
  6208. "jangregor/phpstan-prophecy": "^2.1",
  6209. "mockery/mockery": "^1.6",
  6210. "php-parallel-lint/php-console-highlighter": "^1.0",
  6211. "php-parallel-lint/php-parallel-lint": "^1.4",
  6212. "phpspec/prophecy-phpunit": "^2.3",
  6213. "phpstan/extension-installer": "^1.4",
  6214. "phpstan/phpstan": "^2.1",
  6215. "phpstan/phpstan-mockery": "^2.0",
  6216. "phpstan/phpstan-phpunit": "^2.0",
  6217. "phpunit/phpunit": "^10.5",
  6218. "ramsey/coding-standard": "^2.3",
  6219. "ramsey/conventional-commits": "^1.6",
  6220. "roave/security-advisories": "dev-latest"
  6221. },
  6222. "type": "library",
  6223. "extra": {
  6224. "captainhook": {
  6225. "force-install": true
  6226. },
  6227. "ramsey/conventional-commits": {
  6228. "configFile": "conventional-commits.json"
  6229. }
  6230. },
  6231. "autoload": {
  6232. "psr-4": {
  6233. "Ramsey\\Collection\\": "src/"
  6234. }
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Ben Ramsey",
  6243. "email": "ben@benramsey.com",
  6244. "homepage": "https://benramsey.com"
  6245. }
  6246. ],
  6247. "description": "A PHP library for representing and manipulating collections.",
  6248. "keywords": [
  6249. "array",
  6250. "collection",
  6251. "hash",
  6252. "map",
  6253. "queue",
  6254. "set"
  6255. ],
  6256. "support": {
  6257. "issues": "https://github.com/ramsey/collection/issues",
  6258. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  6259. },
  6260. "time": "2025-03-22T05:38:12+00:00"
  6261. },
  6262. {
  6263. "name": "ramsey/uuid",
  6264. "version": "4.8.1",
  6265. "source": {
  6266. "type": "git",
  6267. "url": "https://github.com/ramsey/uuid.git",
  6268. "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28"
  6269. },
  6270. "dist": {
  6271. "type": "zip",
  6272. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
  6273. "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
  6274. "shasum": ""
  6275. },
  6276. "require": {
  6277. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  6278. "ext-json": "*",
  6279. "php": "^8.0",
  6280. "ramsey/collection": "^1.2 || ^2.0"
  6281. },
  6282. "replace": {
  6283. "rhumsaa/uuid": "self.version"
  6284. },
  6285. "require-dev": {
  6286. "captainhook/captainhook": "^5.25",
  6287. "captainhook/plugin-composer": "^5.3",
  6288. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  6289. "ergebnis/composer-normalize": "^2.47",
  6290. "mockery/mockery": "^1.6",
  6291. "paragonie/random-lib": "^2",
  6292. "php-mock/php-mock": "^2.6",
  6293. "php-mock/php-mock-mockery": "^1.5",
  6294. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  6295. "phpbench/phpbench": "^1.2.14",
  6296. "phpstan/extension-installer": "^1.4",
  6297. "phpstan/phpstan": "^2.1",
  6298. "phpstan/phpstan-mockery": "^2.0",
  6299. "phpstan/phpstan-phpunit": "^2.0",
  6300. "phpunit/phpunit": "^9.6",
  6301. "slevomat/coding-standard": "^8.18",
  6302. "squizlabs/php_codesniffer": "^3.13"
  6303. },
  6304. "suggest": {
  6305. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6306. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6307. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6308. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6309. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6310. },
  6311. "type": "library",
  6312. "extra": {
  6313. "captainhook": {
  6314. "force-install": true
  6315. }
  6316. },
  6317. "autoload": {
  6318. "files": [
  6319. "src/functions.php"
  6320. ],
  6321. "psr-4": {
  6322. "Ramsey\\Uuid\\": "src/"
  6323. }
  6324. },
  6325. "notification-url": "https://packagist.org/downloads/",
  6326. "license": [
  6327. "MIT"
  6328. ],
  6329. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6330. "keywords": [
  6331. "guid",
  6332. "identifier",
  6333. "uuid"
  6334. ],
  6335. "support": {
  6336. "issues": "https://github.com/ramsey/uuid/issues",
  6337. "source": "https://github.com/ramsey/uuid/tree/4.8.1"
  6338. },
  6339. "time": "2025-06-01T06:28:46+00:00"
  6340. },
  6341. {
  6342. "name": "ryangjchandler/blade-capture-directive",
  6343. "version": "v1.1.0",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6347. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6352. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6353. "shasum": ""
  6354. },
  6355. "require": {
  6356. "illuminate/contracts": "^10.0|^11.0|^12.0",
  6357. "php": "^8.1",
  6358. "spatie/laravel-package-tools": "^1.9.2"
  6359. },
  6360. "require-dev": {
  6361. "nunomaduro/collision": "^7.0|^8.0",
  6362. "nunomaduro/larastan": "^2.0|^3.0",
  6363. "orchestra/testbench": "^8.0|^9.0|^10.0",
  6364. "pestphp/pest": "^2.0|^3.7",
  6365. "pestphp/pest-plugin-laravel": "^2.0|^3.1",
  6366. "phpstan/extension-installer": "^1.1",
  6367. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  6368. "phpstan/phpstan-phpunit": "^1.0|^2.0",
  6369. "phpunit/phpunit": "^10.0|^11.5.3",
  6370. "spatie/laravel-ray": "^1.26"
  6371. },
  6372. "type": "library",
  6373. "extra": {
  6374. "laravel": {
  6375. "aliases": {
  6376. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6377. },
  6378. "providers": [
  6379. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6380. ]
  6381. }
  6382. },
  6383. "autoload": {
  6384. "psr-4": {
  6385. "RyanChandler\\BladeCaptureDirective\\": "src",
  6386. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6387. }
  6388. },
  6389. "notification-url": "https://packagist.org/downloads/",
  6390. "license": [
  6391. "MIT"
  6392. ],
  6393. "authors": [
  6394. {
  6395. "name": "Ryan Chandler",
  6396. "email": "support@ryangjchandler.co.uk",
  6397. "role": "Developer"
  6398. }
  6399. ],
  6400. "description": "Create inline partials in your Blade templates with ease.",
  6401. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6402. "keywords": [
  6403. "blade-capture-directive",
  6404. "laravel",
  6405. "ryangjchandler"
  6406. ],
  6407. "support": {
  6408. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6409. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.1.0"
  6410. },
  6411. "funding": [
  6412. {
  6413. "url": "https://github.com/ryangjchandler",
  6414. "type": "github"
  6415. }
  6416. ],
  6417. "time": "2025-02-25T09:09:36+00:00"
  6418. },
  6419. {
  6420. "name": "spatie/color",
  6421. "version": "1.8.0",
  6422. "source": {
  6423. "type": "git",
  6424. "url": "https://github.com/spatie/color.git",
  6425. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c"
  6426. },
  6427. "dist": {
  6428. "type": "zip",
  6429. "url": "https://api.github.com/repos/spatie/color/zipball/142af7fec069a420babea80a5412eb2f646dcd8c",
  6430. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c",
  6431. "shasum": ""
  6432. },
  6433. "require": {
  6434. "php": "^7.3|^8.0"
  6435. },
  6436. "require-dev": {
  6437. "pestphp/pest": "^1.22",
  6438. "phpunit/phpunit": "^6.5||^9.0"
  6439. },
  6440. "type": "library",
  6441. "autoload": {
  6442. "psr-4": {
  6443. "Spatie\\Color\\": "src"
  6444. }
  6445. },
  6446. "notification-url": "https://packagist.org/downloads/",
  6447. "license": [
  6448. "MIT"
  6449. ],
  6450. "authors": [
  6451. {
  6452. "name": "Sebastian De Deyne",
  6453. "email": "sebastian@spatie.be",
  6454. "homepage": "https://spatie.be",
  6455. "role": "Developer"
  6456. }
  6457. ],
  6458. "description": "A little library to handle color conversions",
  6459. "homepage": "https://github.com/spatie/color",
  6460. "keywords": [
  6461. "color",
  6462. "conversion",
  6463. "rgb",
  6464. "spatie"
  6465. ],
  6466. "support": {
  6467. "issues": "https://github.com/spatie/color/issues",
  6468. "source": "https://github.com/spatie/color/tree/1.8.0"
  6469. },
  6470. "funding": [
  6471. {
  6472. "url": "https://github.com/spatie",
  6473. "type": "github"
  6474. }
  6475. ],
  6476. "time": "2025-02-10T09:22:41+00:00"
  6477. },
  6478. {
  6479. "name": "spatie/invade",
  6480. "version": "2.1.0",
  6481. "source": {
  6482. "type": "git",
  6483. "url": "https://github.com/spatie/invade.git",
  6484. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6485. },
  6486. "dist": {
  6487. "type": "zip",
  6488. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6489. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6490. "shasum": ""
  6491. },
  6492. "require": {
  6493. "php": "^8.0"
  6494. },
  6495. "require-dev": {
  6496. "pestphp/pest": "^1.20",
  6497. "phpstan/phpstan": "^1.4",
  6498. "spatie/ray": "^1.28"
  6499. },
  6500. "type": "library",
  6501. "autoload": {
  6502. "files": [
  6503. "src/functions.php"
  6504. ],
  6505. "psr-4": {
  6506. "Spatie\\Invade\\": "src"
  6507. }
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "license": [
  6511. "MIT"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "Freek Van der Herten",
  6516. "email": "freek@spatie.be",
  6517. "role": "Developer"
  6518. }
  6519. ],
  6520. "description": "A PHP function to work with private properties and methods",
  6521. "homepage": "https://github.com/spatie/invade",
  6522. "keywords": [
  6523. "invade",
  6524. "spatie"
  6525. ],
  6526. "support": {
  6527. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6528. },
  6529. "funding": [
  6530. {
  6531. "url": "https://github.com/spatie",
  6532. "type": "github"
  6533. }
  6534. ],
  6535. "time": "2024-05-17T09:06:10+00:00"
  6536. },
  6537. {
  6538. "name": "spatie/laravel-package-tools",
  6539. "version": "1.92.4",
  6540. "source": {
  6541. "type": "git",
  6542. "url": "https://github.com/spatie/laravel-package-tools.git",
  6543. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c"
  6544. },
  6545. "dist": {
  6546. "type": "zip",
  6547. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/d20b1969f836d210459b78683d85c9cd5c5f508c",
  6548. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c",
  6549. "shasum": ""
  6550. },
  6551. "require": {
  6552. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  6553. "php": "^8.0"
  6554. },
  6555. "require-dev": {
  6556. "mockery/mockery": "^1.5",
  6557. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  6558. "pestphp/pest": "^1.23|^2.1|^3.1",
  6559. "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
  6560. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  6561. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6562. },
  6563. "type": "library",
  6564. "autoload": {
  6565. "psr-4": {
  6566. "Spatie\\LaravelPackageTools\\": "src"
  6567. }
  6568. },
  6569. "notification-url": "https://packagist.org/downloads/",
  6570. "license": [
  6571. "MIT"
  6572. ],
  6573. "authors": [
  6574. {
  6575. "name": "Freek Van der Herten",
  6576. "email": "freek@spatie.be",
  6577. "role": "Developer"
  6578. }
  6579. ],
  6580. "description": "Tools for creating Laravel packages",
  6581. "homepage": "https://github.com/spatie/laravel-package-tools",
  6582. "keywords": [
  6583. "laravel-package-tools",
  6584. "spatie"
  6585. ],
  6586. "support": {
  6587. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6588. "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.4"
  6589. },
  6590. "funding": [
  6591. {
  6592. "url": "https://github.com/spatie",
  6593. "type": "github"
  6594. }
  6595. ],
  6596. "time": "2025-04-11T15:27:14+00:00"
  6597. },
  6598. {
  6599. "name": "squirephp/model",
  6600. "version": "v3.10.0",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/squirephp/model.git",
  6604. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/squirephp/model/zipball/cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6609. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6610. "shasum": ""
  6611. },
  6612. "require": {
  6613. "ext-pdo_sqlite": "*",
  6614. "illuminate/database": "^8.40|^9.0|^10.0|^11.0|^12.0",
  6615. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6616. "php": "^8.0"
  6617. },
  6618. "type": "library",
  6619. "extra": {
  6620. "laravel": {
  6621. "providers": [
  6622. "Squire\\ModelServiceProvider"
  6623. ]
  6624. }
  6625. },
  6626. "autoload": {
  6627. "psr-4": {
  6628. "Squire\\": "src"
  6629. }
  6630. },
  6631. "notification-url": "https://packagist.org/downloads/",
  6632. "license": [
  6633. "MIT"
  6634. ],
  6635. "authors": [
  6636. {
  6637. "name": "Dan Harrin",
  6638. "email": "dan@danharrin.com"
  6639. }
  6640. ],
  6641. "description": "A library containing the base Squire model class.",
  6642. "homepage": "https://github.com/squirephp",
  6643. "keywords": [
  6644. "squire"
  6645. ],
  6646. "support": {
  6647. "issues": "https://github.com/squirephp/squire/issues",
  6648. "source": "https://github.com/squirephp/squire"
  6649. },
  6650. "time": "2025-02-25T08:15:59+00:00"
  6651. },
  6652. {
  6653. "name": "squirephp/repository",
  6654. "version": "v3.10.0",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/squirephp/repository.git",
  6658. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/squirephp/repository/zipball/6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6663. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6664. "shasum": ""
  6665. },
  6666. "require": {
  6667. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6668. "php": "^8.0"
  6669. },
  6670. "type": "library",
  6671. "extra": {
  6672. "laravel": {
  6673. "aliases": {
  6674. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6675. },
  6676. "providers": [
  6677. "Squire\\RepositoryServiceProvider"
  6678. ]
  6679. }
  6680. },
  6681. "autoload": {
  6682. "psr-4": {
  6683. "Squire\\": "src"
  6684. }
  6685. },
  6686. "notification-url": "https://packagist.org/downloads/",
  6687. "license": [
  6688. "MIT"
  6689. ],
  6690. "authors": [
  6691. {
  6692. "name": "Dan Harrin",
  6693. "email": "dan@danharrin.com"
  6694. }
  6695. ],
  6696. "description": "A library containing the Squire repository.",
  6697. "homepage": "https://github.com/squirephp",
  6698. "keywords": [
  6699. "squire"
  6700. ],
  6701. "support": {
  6702. "issues": "https://github.com/squirephp/squire/issues",
  6703. "source": "https://github.com/squirephp/squire"
  6704. },
  6705. "time": "2025-02-25T08:16:09+00:00"
  6706. },
  6707. {
  6708. "name": "symfony/clock",
  6709. "version": "v7.3.0",
  6710. "source": {
  6711. "type": "git",
  6712. "url": "https://github.com/symfony/clock.git",
  6713. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6714. },
  6715. "dist": {
  6716. "type": "zip",
  6717. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6718. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6719. "shasum": ""
  6720. },
  6721. "require": {
  6722. "php": ">=8.2",
  6723. "psr/clock": "^1.0",
  6724. "symfony/polyfill-php83": "^1.28"
  6725. },
  6726. "provide": {
  6727. "psr/clock-implementation": "1.0"
  6728. },
  6729. "type": "library",
  6730. "autoload": {
  6731. "files": [
  6732. "Resources/now.php"
  6733. ],
  6734. "psr-4": {
  6735. "Symfony\\Component\\Clock\\": ""
  6736. },
  6737. "exclude-from-classmap": [
  6738. "/Tests/"
  6739. ]
  6740. },
  6741. "notification-url": "https://packagist.org/downloads/",
  6742. "license": [
  6743. "MIT"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "Nicolas Grekas",
  6748. "email": "p@tchwork.com"
  6749. },
  6750. {
  6751. "name": "Symfony Community",
  6752. "homepage": "https://symfony.com/contributors"
  6753. }
  6754. ],
  6755. "description": "Decouples applications from the system clock",
  6756. "homepage": "https://symfony.com",
  6757. "keywords": [
  6758. "clock",
  6759. "psr20",
  6760. "time"
  6761. ],
  6762. "support": {
  6763. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  6764. },
  6765. "funding": [
  6766. {
  6767. "url": "https://symfony.com/sponsor",
  6768. "type": "custom"
  6769. },
  6770. {
  6771. "url": "https://github.com/fabpot",
  6772. "type": "github"
  6773. },
  6774. {
  6775. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6776. "type": "tidelift"
  6777. }
  6778. ],
  6779. "time": "2024-09-25T14:21:43+00:00"
  6780. },
  6781. {
  6782. "name": "symfony/console",
  6783. "version": "v7.3.0",
  6784. "source": {
  6785. "type": "git",
  6786. "url": "https://github.com/symfony/console.git",
  6787. "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44"
  6788. },
  6789. "dist": {
  6790. "type": "zip",
  6791. "url": "https://api.github.com/repos/symfony/console/zipball/66c1440edf6f339fd82ed6c7caa76cb006211b44",
  6792. "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44",
  6793. "shasum": ""
  6794. },
  6795. "require": {
  6796. "php": ">=8.2",
  6797. "symfony/deprecation-contracts": "^2.5|^3",
  6798. "symfony/polyfill-mbstring": "~1.0",
  6799. "symfony/service-contracts": "^2.5|^3",
  6800. "symfony/string": "^7.2"
  6801. },
  6802. "conflict": {
  6803. "symfony/dependency-injection": "<6.4",
  6804. "symfony/dotenv": "<6.4",
  6805. "symfony/event-dispatcher": "<6.4",
  6806. "symfony/lock": "<6.4",
  6807. "symfony/process": "<6.4"
  6808. },
  6809. "provide": {
  6810. "psr/log-implementation": "1.0|2.0|3.0"
  6811. },
  6812. "require-dev": {
  6813. "psr/log": "^1|^2|^3",
  6814. "symfony/config": "^6.4|^7.0",
  6815. "symfony/dependency-injection": "^6.4|^7.0",
  6816. "symfony/event-dispatcher": "^6.4|^7.0",
  6817. "symfony/http-foundation": "^6.4|^7.0",
  6818. "symfony/http-kernel": "^6.4|^7.0",
  6819. "symfony/lock": "^6.4|^7.0",
  6820. "symfony/messenger": "^6.4|^7.0",
  6821. "symfony/process": "^6.4|^7.0",
  6822. "symfony/stopwatch": "^6.4|^7.0",
  6823. "symfony/var-dumper": "^6.4|^7.0"
  6824. },
  6825. "type": "library",
  6826. "autoload": {
  6827. "psr-4": {
  6828. "Symfony\\Component\\Console\\": ""
  6829. },
  6830. "exclude-from-classmap": [
  6831. "/Tests/"
  6832. ]
  6833. },
  6834. "notification-url": "https://packagist.org/downloads/",
  6835. "license": [
  6836. "MIT"
  6837. ],
  6838. "authors": [
  6839. {
  6840. "name": "Fabien Potencier",
  6841. "email": "fabien@symfony.com"
  6842. },
  6843. {
  6844. "name": "Symfony Community",
  6845. "homepage": "https://symfony.com/contributors"
  6846. }
  6847. ],
  6848. "description": "Eases the creation of beautiful and testable command line interfaces",
  6849. "homepage": "https://symfony.com",
  6850. "keywords": [
  6851. "cli",
  6852. "command-line",
  6853. "console",
  6854. "terminal"
  6855. ],
  6856. "support": {
  6857. "source": "https://github.com/symfony/console/tree/v7.3.0"
  6858. },
  6859. "funding": [
  6860. {
  6861. "url": "https://symfony.com/sponsor",
  6862. "type": "custom"
  6863. },
  6864. {
  6865. "url": "https://github.com/fabpot",
  6866. "type": "github"
  6867. },
  6868. {
  6869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6870. "type": "tidelift"
  6871. }
  6872. ],
  6873. "time": "2025-05-24T10:34:04+00:00"
  6874. },
  6875. {
  6876. "name": "symfony/css-selector",
  6877. "version": "v7.3.0",
  6878. "source": {
  6879. "type": "git",
  6880. "url": "https://github.com/symfony/css-selector.git",
  6881. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6882. },
  6883. "dist": {
  6884. "type": "zip",
  6885. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6886. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6887. "shasum": ""
  6888. },
  6889. "require": {
  6890. "php": ">=8.2"
  6891. },
  6892. "type": "library",
  6893. "autoload": {
  6894. "psr-4": {
  6895. "Symfony\\Component\\CssSelector\\": ""
  6896. },
  6897. "exclude-from-classmap": [
  6898. "/Tests/"
  6899. ]
  6900. },
  6901. "notification-url": "https://packagist.org/downloads/",
  6902. "license": [
  6903. "MIT"
  6904. ],
  6905. "authors": [
  6906. {
  6907. "name": "Fabien Potencier",
  6908. "email": "fabien@symfony.com"
  6909. },
  6910. {
  6911. "name": "Jean-François Simon",
  6912. "email": "jeanfrancois.simon@sensiolabs.com"
  6913. },
  6914. {
  6915. "name": "Symfony Community",
  6916. "homepage": "https://symfony.com/contributors"
  6917. }
  6918. ],
  6919. "description": "Converts CSS selectors to XPath expressions",
  6920. "homepage": "https://symfony.com",
  6921. "support": {
  6922. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  6923. },
  6924. "funding": [
  6925. {
  6926. "url": "https://symfony.com/sponsor",
  6927. "type": "custom"
  6928. },
  6929. {
  6930. "url": "https://github.com/fabpot",
  6931. "type": "github"
  6932. },
  6933. {
  6934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6935. "type": "tidelift"
  6936. }
  6937. ],
  6938. "time": "2024-09-25T14:21:43+00:00"
  6939. },
  6940. {
  6941. "name": "symfony/deprecation-contracts",
  6942. "version": "v3.6.0",
  6943. "source": {
  6944. "type": "git",
  6945. "url": "https://github.com/symfony/deprecation-contracts.git",
  6946. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  6947. },
  6948. "dist": {
  6949. "type": "zip",
  6950. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6951. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6952. "shasum": ""
  6953. },
  6954. "require": {
  6955. "php": ">=8.1"
  6956. },
  6957. "type": "library",
  6958. "extra": {
  6959. "thanks": {
  6960. "url": "https://github.com/symfony/contracts",
  6961. "name": "symfony/contracts"
  6962. },
  6963. "branch-alias": {
  6964. "dev-main": "3.6-dev"
  6965. }
  6966. },
  6967. "autoload": {
  6968. "files": [
  6969. "function.php"
  6970. ]
  6971. },
  6972. "notification-url": "https://packagist.org/downloads/",
  6973. "license": [
  6974. "MIT"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "Nicolas Grekas",
  6979. "email": "p@tchwork.com"
  6980. },
  6981. {
  6982. "name": "Symfony Community",
  6983. "homepage": "https://symfony.com/contributors"
  6984. }
  6985. ],
  6986. "description": "A generic function and convention to trigger deprecation notices",
  6987. "homepage": "https://symfony.com",
  6988. "support": {
  6989. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  6990. },
  6991. "funding": [
  6992. {
  6993. "url": "https://symfony.com/sponsor",
  6994. "type": "custom"
  6995. },
  6996. {
  6997. "url": "https://github.com/fabpot",
  6998. "type": "github"
  6999. },
  7000. {
  7001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7002. "type": "tidelift"
  7003. }
  7004. ],
  7005. "time": "2024-09-25T14:21:43+00:00"
  7006. },
  7007. {
  7008. "name": "symfony/error-handler",
  7009. "version": "v7.3.0",
  7010. "source": {
  7011. "type": "git",
  7012. "url": "https://github.com/symfony/error-handler.git",
  7013. "reference": "cf68d225bc43629de4ff54778029aee6dc191b83"
  7014. },
  7015. "dist": {
  7016. "type": "zip",
  7017. "url": "https://api.github.com/repos/symfony/error-handler/zipball/cf68d225bc43629de4ff54778029aee6dc191b83",
  7018. "reference": "cf68d225bc43629de4ff54778029aee6dc191b83",
  7019. "shasum": ""
  7020. },
  7021. "require": {
  7022. "php": ">=8.2",
  7023. "psr/log": "^1|^2|^3",
  7024. "symfony/var-dumper": "^6.4|^7.0"
  7025. },
  7026. "conflict": {
  7027. "symfony/deprecation-contracts": "<2.5",
  7028. "symfony/http-kernel": "<6.4"
  7029. },
  7030. "require-dev": {
  7031. "symfony/console": "^6.4|^7.0",
  7032. "symfony/deprecation-contracts": "^2.5|^3",
  7033. "symfony/http-kernel": "^6.4|^7.0",
  7034. "symfony/serializer": "^6.4|^7.0",
  7035. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  7036. },
  7037. "bin": [
  7038. "Resources/bin/patch-type-declarations"
  7039. ],
  7040. "type": "library",
  7041. "autoload": {
  7042. "psr-4": {
  7043. "Symfony\\Component\\ErrorHandler\\": ""
  7044. },
  7045. "exclude-from-classmap": [
  7046. "/Tests/"
  7047. ]
  7048. },
  7049. "notification-url": "https://packagist.org/downloads/",
  7050. "license": [
  7051. "MIT"
  7052. ],
  7053. "authors": [
  7054. {
  7055. "name": "Fabien Potencier",
  7056. "email": "fabien@symfony.com"
  7057. },
  7058. {
  7059. "name": "Symfony Community",
  7060. "homepage": "https://symfony.com/contributors"
  7061. }
  7062. ],
  7063. "description": "Provides tools to manage errors and ease debugging PHP code",
  7064. "homepage": "https://symfony.com",
  7065. "support": {
  7066. "source": "https://github.com/symfony/error-handler/tree/v7.3.0"
  7067. },
  7068. "funding": [
  7069. {
  7070. "url": "https://symfony.com/sponsor",
  7071. "type": "custom"
  7072. },
  7073. {
  7074. "url": "https://github.com/fabpot",
  7075. "type": "github"
  7076. },
  7077. {
  7078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7079. "type": "tidelift"
  7080. }
  7081. ],
  7082. "time": "2025-05-29T07:19:49+00:00"
  7083. },
  7084. {
  7085. "name": "symfony/event-dispatcher",
  7086. "version": "v7.3.0",
  7087. "source": {
  7088. "type": "git",
  7089. "url": "https://github.com/symfony/event-dispatcher.git",
  7090. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  7091. },
  7092. "dist": {
  7093. "type": "zip",
  7094. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  7095. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  7096. "shasum": ""
  7097. },
  7098. "require": {
  7099. "php": ">=8.2",
  7100. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7101. },
  7102. "conflict": {
  7103. "symfony/dependency-injection": "<6.4",
  7104. "symfony/service-contracts": "<2.5"
  7105. },
  7106. "provide": {
  7107. "psr/event-dispatcher-implementation": "1.0",
  7108. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7109. },
  7110. "require-dev": {
  7111. "psr/log": "^1|^2|^3",
  7112. "symfony/config": "^6.4|^7.0",
  7113. "symfony/dependency-injection": "^6.4|^7.0",
  7114. "symfony/error-handler": "^6.4|^7.0",
  7115. "symfony/expression-language": "^6.4|^7.0",
  7116. "symfony/http-foundation": "^6.4|^7.0",
  7117. "symfony/service-contracts": "^2.5|^3",
  7118. "symfony/stopwatch": "^6.4|^7.0"
  7119. },
  7120. "type": "library",
  7121. "autoload": {
  7122. "psr-4": {
  7123. "Symfony\\Component\\EventDispatcher\\": ""
  7124. },
  7125. "exclude-from-classmap": [
  7126. "/Tests/"
  7127. ]
  7128. },
  7129. "notification-url": "https://packagist.org/downloads/",
  7130. "license": [
  7131. "MIT"
  7132. ],
  7133. "authors": [
  7134. {
  7135. "name": "Fabien Potencier",
  7136. "email": "fabien@symfony.com"
  7137. },
  7138. {
  7139. "name": "Symfony Community",
  7140. "homepage": "https://symfony.com/contributors"
  7141. }
  7142. ],
  7143. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7144. "homepage": "https://symfony.com",
  7145. "support": {
  7146. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  7147. },
  7148. "funding": [
  7149. {
  7150. "url": "https://symfony.com/sponsor",
  7151. "type": "custom"
  7152. },
  7153. {
  7154. "url": "https://github.com/fabpot",
  7155. "type": "github"
  7156. },
  7157. {
  7158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7159. "type": "tidelift"
  7160. }
  7161. ],
  7162. "time": "2025-04-22T09:11:45+00:00"
  7163. },
  7164. {
  7165. "name": "symfony/event-dispatcher-contracts",
  7166. "version": "v3.6.0",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7170. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7175. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7176. "shasum": ""
  7177. },
  7178. "require": {
  7179. "php": ">=8.1",
  7180. "psr/event-dispatcher": "^1"
  7181. },
  7182. "type": "library",
  7183. "extra": {
  7184. "thanks": {
  7185. "url": "https://github.com/symfony/contracts",
  7186. "name": "symfony/contracts"
  7187. },
  7188. "branch-alias": {
  7189. "dev-main": "3.6-dev"
  7190. }
  7191. },
  7192. "autoload": {
  7193. "psr-4": {
  7194. "Symfony\\Contracts\\EventDispatcher\\": ""
  7195. }
  7196. },
  7197. "notification-url": "https://packagist.org/downloads/",
  7198. "license": [
  7199. "MIT"
  7200. ],
  7201. "authors": [
  7202. {
  7203. "name": "Nicolas Grekas",
  7204. "email": "p@tchwork.com"
  7205. },
  7206. {
  7207. "name": "Symfony Community",
  7208. "homepage": "https://symfony.com/contributors"
  7209. }
  7210. ],
  7211. "description": "Generic abstractions related to dispatching event",
  7212. "homepage": "https://symfony.com",
  7213. "keywords": [
  7214. "abstractions",
  7215. "contracts",
  7216. "decoupling",
  7217. "interfaces",
  7218. "interoperability",
  7219. "standards"
  7220. ],
  7221. "support": {
  7222. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7223. },
  7224. "funding": [
  7225. {
  7226. "url": "https://symfony.com/sponsor",
  7227. "type": "custom"
  7228. },
  7229. {
  7230. "url": "https://github.com/fabpot",
  7231. "type": "github"
  7232. },
  7233. {
  7234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7235. "type": "tidelift"
  7236. }
  7237. ],
  7238. "time": "2024-09-25T14:21:43+00:00"
  7239. },
  7240. {
  7241. "name": "symfony/finder",
  7242. "version": "v7.3.0",
  7243. "source": {
  7244. "type": "git",
  7245. "url": "https://github.com/symfony/finder.git",
  7246. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  7247. },
  7248. "dist": {
  7249. "type": "zip",
  7250. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  7251. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  7252. "shasum": ""
  7253. },
  7254. "require": {
  7255. "php": ">=8.2"
  7256. },
  7257. "require-dev": {
  7258. "symfony/filesystem": "^6.4|^7.0"
  7259. },
  7260. "type": "library",
  7261. "autoload": {
  7262. "psr-4": {
  7263. "Symfony\\Component\\Finder\\": ""
  7264. },
  7265. "exclude-from-classmap": [
  7266. "/Tests/"
  7267. ]
  7268. },
  7269. "notification-url": "https://packagist.org/downloads/",
  7270. "license": [
  7271. "MIT"
  7272. ],
  7273. "authors": [
  7274. {
  7275. "name": "Fabien Potencier",
  7276. "email": "fabien@symfony.com"
  7277. },
  7278. {
  7279. "name": "Symfony Community",
  7280. "homepage": "https://symfony.com/contributors"
  7281. }
  7282. ],
  7283. "description": "Finds files and directories via an intuitive fluent interface",
  7284. "homepage": "https://symfony.com",
  7285. "support": {
  7286. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  7287. },
  7288. "funding": [
  7289. {
  7290. "url": "https://symfony.com/sponsor",
  7291. "type": "custom"
  7292. },
  7293. {
  7294. "url": "https://github.com/fabpot",
  7295. "type": "github"
  7296. },
  7297. {
  7298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7299. "type": "tidelift"
  7300. }
  7301. ],
  7302. "time": "2024-12-30T19:00:26+00:00"
  7303. },
  7304. {
  7305. "name": "symfony/html-sanitizer",
  7306. "version": "v7.3.0",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/symfony/html-sanitizer.git",
  7310. "reference": "cf21254e982b12276329940ca4af5e623ee06c58"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/cf21254e982b12276329940ca4af5e623ee06c58",
  7315. "reference": "cf21254e982b12276329940ca4af5e623ee06c58",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "ext-dom": "*",
  7320. "league/uri": "^6.5|^7.0",
  7321. "masterminds/html5": "^2.7.2",
  7322. "php": ">=8.2"
  7323. },
  7324. "type": "library",
  7325. "autoload": {
  7326. "psr-4": {
  7327. "Symfony\\Component\\HtmlSanitizer\\": ""
  7328. },
  7329. "exclude-from-classmap": [
  7330. "/Tests/"
  7331. ]
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "MIT"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Titouan Galopin",
  7340. "email": "galopintitouan@gmail.com"
  7341. },
  7342. {
  7343. "name": "Symfony Community",
  7344. "homepage": "https://symfony.com/contributors"
  7345. }
  7346. ],
  7347. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7348. "homepage": "https://symfony.com",
  7349. "keywords": [
  7350. "Purifier",
  7351. "html",
  7352. "sanitizer"
  7353. ],
  7354. "support": {
  7355. "source": "https://github.com/symfony/html-sanitizer/tree/v7.3.0"
  7356. },
  7357. "funding": [
  7358. {
  7359. "url": "https://symfony.com/sponsor",
  7360. "type": "custom"
  7361. },
  7362. {
  7363. "url": "https://github.com/fabpot",
  7364. "type": "github"
  7365. },
  7366. {
  7367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7368. "type": "tidelift"
  7369. }
  7370. ],
  7371. "time": "2025-03-31T08:49:55+00:00"
  7372. },
  7373. {
  7374. "name": "symfony/http-foundation",
  7375. "version": "v7.3.0",
  7376. "source": {
  7377. "type": "git",
  7378. "url": "https://github.com/symfony/http-foundation.git",
  7379. "reference": "4236baf01609667d53b20371486228231eb135fd"
  7380. },
  7381. "dist": {
  7382. "type": "zip",
  7383. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4236baf01609667d53b20371486228231eb135fd",
  7384. "reference": "4236baf01609667d53b20371486228231eb135fd",
  7385. "shasum": ""
  7386. },
  7387. "require": {
  7388. "php": ">=8.2",
  7389. "symfony/deprecation-contracts": "^2.5|^3.0",
  7390. "symfony/polyfill-mbstring": "~1.1",
  7391. "symfony/polyfill-php83": "^1.27"
  7392. },
  7393. "conflict": {
  7394. "doctrine/dbal": "<3.6",
  7395. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7396. },
  7397. "require-dev": {
  7398. "doctrine/dbal": "^3.6|^4",
  7399. "predis/predis": "^1.1|^2.0",
  7400. "symfony/cache": "^6.4.12|^7.1.5",
  7401. "symfony/clock": "^6.4|^7.0",
  7402. "symfony/dependency-injection": "^6.4|^7.0",
  7403. "symfony/expression-language": "^6.4|^7.0",
  7404. "symfony/http-kernel": "^6.4|^7.0",
  7405. "symfony/mime": "^6.4|^7.0",
  7406. "symfony/rate-limiter": "^6.4|^7.0"
  7407. },
  7408. "type": "library",
  7409. "autoload": {
  7410. "psr-4": {
  7411. "Symfony\\Component\\HttpFoundation\\": ""
  7412. },
  7413. "exclude-from-classmap": [
  7414. "/Tests/"
  7415. ]
  7416. },
  7417. "notification-url": "https://packagist.org/downloads/",
  7418. "license": [
  7419. "MIT"
  7420. ],
  7421. "authors": [
  7422. {
  7423. "name": "Fabien Potencier",
  7424. "email": "fabien@symfony.com"
  7425. },
  7426. {
  7427. "name": "Symfony Community",
  7428. "homepage": "https://symfony.com/contributors"
  7429. }
  7430. ],
  7431. "description": "Defines an object-oriented layer for the HTTP specification",
  7432. "homepage": "https://symfony.com",
  7433. "support": {
  7434. "source": "https://github.com/symfony/http-foundation/tree/v7.3.0"
  7435. },
  7436. "funding": [
  7437. {
  7438. "url": "https://symfony.com/sponsor",
  7439. "type": "custom"
  7440. },
  7441. {
  7442. "url": "https://github.com/fabpot",
  7443. "type": "github"
  7444. },
  7445. {
  7446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7447. "type": "tidelift"
  7448. }
  7449. ],
  7450. "time": "2025-05-12T14:48:23+00:00"
  7451. },
  7452. {
  7453. "name": "symfony/http-kernel",
  7454. "version": "v7.3.0",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/symfony/http-kernel.git",
  7458. "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ac7b8e163e8c83dce3abcc055a502d4486051a9f",
  7463. "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f",
  7464. "shasum": ""
  7465. },
  7466. "require": {
  7467. "php": ">=8.2",
  7468. "psr/log": "^1|^2|^3",
  7469. "symfony/deprecation-contracts": "^2.5|^3",
  7470. "symfony/error-handler": "^6.4|^7.0",
  7471. "symfony/event-dispatcher": "^7.3",
  7472. "symfony/http-foundation": "^7.3",
  7473. "symfony/polyfill-ctype": "^1.8"
  7474. },
  7475. "conflict": {
  7476. "symfony/browser-kit": "<6.4",
  7477. "symfony/cache": "<6.4",
  7478. "symfony/config": "<6.4",
  7479. "symfony/console": "<6.4",
  7480. "symfony/dependency-injection": "<6.4",
  7481. "symfony/doctrine-bridge": "<6.4",
  7482. "symfony/form": "<6.4",
  7483. "symfony/http-client": "<6.4",
  7484. "symfony/http-client-contracts": "<2.5",
  7485. "symfony/mailer": "<6.4",
  7486. "symfony/messenger": "<6.4",
  7487. "symfony/translation": "<6.4",
  7488. "symfony/translation-contracts": "<2.5",
  7489. "symfony/twig-bridge": "<6.4",
  7490. "symfony/validator": "<6.4",
  7491. "symfony/var-dumper": "<6.4",
  7492. "twig/twig": "<3.12"
  7493. },
  7494. "provide": {
  7495. "psr/log-implementation": "1.0|2.0|3.0"
  7496. },
  7497. "require-dev": {
  7498. "psr/cache": "^1.0|^2.0|^3.0",
  7499. "symfony/browser-kit": "^6.4|^7.0",
  7500. "symfony/clock": "^6.4|^7.0",
  7501. "symfony/config": "^6.4|^7.0",
  7502. "symfony/console": "^6.4|^7.0",
  7503. "symfony/css-selector": "^6.4|^7.0",
  7504. "symfony/dependency-injection": "^6.4|^7.0",
  7505. "symfony/dom-crawler": "^6.4|^7.0",
  7506. "symfony/expression-language": "^6.4|^7.0",
  7507. "symfony/finder": "^6.4|^7.0",
  7508. "symfony/http-client-contracts": "^2.5|^3",
  7509. "symfony/process": "^6.4|^7.0",
  7510. "symfony/property-access": "^7.1",
  7511. "symfony/routing": "^6.4|^7.0",
  7512. "symfony/serializer": "^7.1",
  7513. "symfony/stopwatch": "^6.4|^7.0",
  7514. "symfony/translation": "^6.4|^7.0",
  7515. "symfony/translation-contracts": "^2.5|^3",
  7516. "symfony/uid": "^6.4|^7.0",
  7517. "symfony/validator": "^6.4|^7.0",
  7518. "symfony/var-dumper": "^6.4|^7.0",
  7519. "symfony/var-exporter": "^6.4|^7.0",
  7520. "twig/twig": "^3.12"
  7521. },
  7522. "type": "library",
  7523. "autoload": {
  7524. "psr-4": {
  7525. "Symfony\\Component\\HttpKernel\\": ""
  7526. },
  7527. "exclude-from-classmap": [
  7528. "/Tests/"
  7529. ]
  7530. },
  7531. "notification-url": "https://packagist.org/downloads/",
  7532. "license": [
  7533. "MIT"
  7534. ],
  7535. "authors": [
  7536. {
  7537. "name": "Fabien Potencier",
  7538. "email": "fabien@symfony.com"
  7539. },
  7540. {
  7541. "name": "Symfony Community",
  7542. "homepage": "https://symfony.com/contributors"
  7543. }
  7544. ],
  7545. "description": "Provides a structured process for converting a Request into a Response",
  7546. "homepage": "https://symfony.com",
  7547. "support": {
  7548. "source": "https://github.com/symfony/http-kernel/tree/v7.3.0"
  7549. },
  7550. "funding": [
  7551. {
  7552. "url": "https://symfony.com/sponsor",
  7553. "type": "custom"
  7554. },
  7555. {
  7556. "url": "https://github.com/fabpot",
  7557. "type": "github"
  7558. },
  7559. {
  7560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7561. "type": "tidelift"
  7562. }
  7563. ],
  7564. "time": "2025-05-29T07:47:32+00:00"
  7565. },
  7566. {
  7567. "name": "symfony/intl",
  7568. "version": "v6.4.22",
  7569. "source": {
  7570. "type": "git",
  7571. "url": "https://github.com/symfony/intl.git",
  7572. "reference": "aaecb52f18a6f95766a239ca0a6cc0df983d92cc"
  7573. },
  7574. "dist": {
  7575. "type": "zip",
  7576. "url": "https://api.github.com/repos/symfony/intl/zipball/aaecb52f18a6f95766a239ca0a6cc0df983d92cc",
  7577. "reference": "aaecb52f18a6f95766a239ca0a6cc0df983d92cc",
  7578. "shasum": ""
  7579. },
  7580. "require": {
  7581. "php": ">=8.1"
  7582. },
  7583. "require-dev": {
  7584. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7585. "symfony/finder": "^5.4|^6.0|^7.0",
  7586. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7587. },
  7588. "type": "library",
  7589. "autoload": {
  7590. "psr-4": {
  7591. "Symfony\\Component\\Intl\\": ""
  7592. },
  7593. "exclude-from-classmap": [
  7594. "/Tests/",
  7595. "/Resources/data/"
  7596. ]
  7597. },
  7598. "notification-url": "https://packagist.org/downloads/",
  7599. "license": [
  7600. "MIT"
  7601. ],
  7602. "authors": [
  7603. {
  7604. "name": "Bernhard Schussek",
  7605. "email": "bschussek@gmail.com"
  7606. },
  7607. {
  7608. "name": "Eriksen Costa",
  7609. "email": "eriksen.costa@infranology.com.br"
  7610. },
  7611. {
  7612. "name": "Igor Wiedler",
  7613. "email": "igor@wiedler.ch"
  7614. },
  7615. {
  7616. "name": "Symfony Community",
  7617. "homepage": "https://symfony.com/contributors"
  7618. }
  7619. ],
  7620. "description": "Provides access to the localization data of the ICU library",
  7621. "homepage": "https://symfony.com",
  7622. "keywords": [
  7623. "i18n",
  7624. "icu",
  7625. "internationalization",
  7626. "intl",
  7627. "l10n",
  7628. "localization"
  7629. ],
  7630. "support": {
  7631. "source": "https://github.com/symfony/intl/tree/v6.4.22"
  7632. },
  7633. "funding": [
  7634. {
  7635. "url": "https://symfony.com/sponsor",
  7636. "type": "custom"
  7637. },
  7638. {
  7639. "url": "https://github.com/fabpot",
  7640. "type": "github"
  7641. },
  7642. {
  7643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7644. "type": "tidelift"
  7645. }
  7646. ],
  7647. "time": "2025-05-04T12:02:38+00:00"
  7648. },
  7649. {
  7650. "name": "symfony/mailer",
  7651. "version": "v7.3.0",
  7652. "source": {
  7653. "type": "git",
  7654. "url": "https://github.com/symfony/mailer.git",
  7655. "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c"
  7656. },
  7657. "dist": {
  7658. "type": "zip",
  7659. "url": "https://api.github.com/repos/symfony/mailer/zipball/0f375bbbde96ae8c78e4aa3e63aabd486e33364c",
  7660. "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c",
  7661. "shasum": ""
  7662. },
  7663. "require": {
  7664. "egulias/email-validator": "^2.1.10|^3|^4",
  7665. "php": ">=8.2",
  7666. "psr/event-dispatcher": "^1",
  7667. "psr/log": "^1|^2|^3",
  7668. "symfony/event-dispatcher": "^6.4|^7.0",
  7669. "symfony/mime": "^7.2",
  7670. "symfony/service-contracts": "^2.5|^3"
  7671. },
  7672. "conflict": {
  7673. "symfony/http-client-contracts": "<2.5",
  7674. "symfony/http-kernel": "<6.4",
  7675. "symfony/messenger": "<6.4",
  7676. "symfony/mime": "<6.4",
  7677. "symfony/twig-bridge": "<6.4"
  7678. },
  7679. "require-dev": {
  7680. "symfony/console": "^6.4|^7.0",
  7681. "symfony/http-client": "^6.4|^7.0",
  7682. "symfony/messenger": "^6.4|^7.0",
  7683. "symfony/twig-bridge": "^6.4|^7.0"
  7684. },
  7685. "type": "library",
  7686. "autoload": {
  7687. "psr-4": {
  7688. "Symfony\\Component\\Mailer\\": ""
  7689. },
  7690. "exclude-from-classmap": [
  7691. "/Tests/"
  7692. ]
  7693. },
  7694. "notification-url": "https://packagist.org/downloads/",
  7695. "license": [
  7696. "MIT"
  7697. ],
  7698. "authors": [
  7699. {
  7700. "name": "Fabien Potencier",
  7701. "email": "fabien@symfony.com"
  7702. },
  7703. {
  7704. "name": "Symfony Community",
  7705. "homepage": "https://symfony.com/contributors"
  7706. }
  7707. ],
  7708. "description": "Helps sending emails",
  7709. "homepage": "https://symfony.com",
  7710. "support": {
  7711. "source": "https://github.com/symfony/mailer/tree/v7.3.0"
  7712. },
  7713. "funding": [
  7714. {
  7715. "url": "https://symfony.com/sponsor",
  7716. "type": "custom"
  7717. },
  7718. {
  7719. "url": "https://github.com/fabpot",
  7720. "type": "github"
  7721. },
  7722. {
  7723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7724. "type": "tidelift"
  7725. }
  7726. ],
  7727. "time": "2025-04-04T09:51:09+00:00"
  7728. },
  7729. {
  7730. "name": "symfony/mime",
  7731. "version": "v7.3.0",
  7732. "source": {
  7733. "type": "git",
  7734. "url": "https://github.com/symfony/mime.git",
  7735. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  7736. },
  7737. "dist": {
  7738. "type": "zip",
  7739. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  7740. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  7741. "shasum": ""
  7742. },
  7743. "require": {
  7744. "php": ">=8.2",
  7745. "symfony/polyfill-intl-idn": "^1.10",
  7746. "symfony/polyfill-mbstring": "^1.0"
  7747. },
  7748. "conflict": {
  7749. "egulias/email-validator": "~3.0.0",
  7750. "phpdocumentor/reflection-docblock": "<3.2.2",
  7751. "phpdocumentor/type-resolver": "<1.4.0",
  7752. "symfony/mailer": "<6.4",
  7753. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7754. },
  7755. "require-dev": {
  7756. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7757. "league/html-to-markdown": "^5.0",
  7758. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7759. "symfony/dependency-injection": "^6.4|^7.0",
  7760. "symfony/process": "^6.4|^7.0",
  7761. "symfony/property-access": "^6.4|^7.0",
  7762. "symfony/property-info": "^6.4|^7.0",
  7763. "symfony/serializer": "^6.4.3|^7.0.3"
  7764. },
  7765. "type": "library",
  7766. "autoload": {
  7767. "psr-4": {
  7768. "Symfony\\Component\\Mime\\": ""
  7769. },
  7770. "exclude-from-classmap": [
  7771. "/Tests/"
  7772. ]
  7773. },
  7774. "notification-url": "https://packagist.org/downloads/",
  7775. "license": [
  7776. "MIT"
  7777. ],
  7778. "authors": [
  7779. {
  7780. "name": "Fabien Potencier",
  7781. "email": "fabien@symfony.com"
  7782. },
  7783. {
  7784. "name": "Symfony Community",
  7785. "homepage": "https://symfony.com/contributors"
  7786. }
  7787. ],
  7788. "description": "Allows manipulating MIME messages",
  7789. "homepage": "https://symfony.com",
  7790. "keywords": [
  7791. "mime",
  7792. "mime-type"
  7793. ],
  7794. "support": {
  7795. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  7796. },
  7797. "funding": [
  7798. {
  7799. "url": "https://symfony.com/sponsor",
  7800. "type": "custom"
  7801. },
  7802. {
  7803. "url": "https://github.com/fabpot",
  7804. "type": "github"
  7805. },
  7806. {
  7807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7808. "type": "tidelift"
  7809. }
  7810. ],
  7811. "time": "2025-02-19T08:51:26+00:00"
  7812. },
  7813. {
  7814. "name": "symfony/polyfill-ctype",
  7815. "version": "v1.32.0",
  7816. "source": {
  7817. "type": "git",
  7818. "url": "https://github.com/symfony/polyfill-ctype.git",
  7819. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7820. },
  7821. "dist": {
  7822. "type": "zip",
  7823. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7824. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7825. "shasum": ""
  7826. },
  7827. "require": {
  7828. "php": ">=7.2"
  7829. },
  7830. "provide": {
  7831. "ext-ctype": "*"
  7832. },
  7833. "suggest": {
  7834. "ext-ctype": "For best performance"
  7835. },
  7836. "type": "library",
  7837. "extra": {
  7838. "thanks": {
  7839. "url": "https://github.com/symfony/polyfill",
  7840. "name": "symfony/polyfill"
  7841. }
  7842. },
  7843. "autoload": {
  7844. "files": [
  7845. "bootstrap.php"
  7846. ],
  7847. "psr-4": {
  7848. "Symfony\\Polyfill\\Ctype\\": ""
  7849. }
  7850. },
  7851. "notification-url": "https://packagist.org/downloads/",
  7852. "license": [
  7853. "MIT"
  7854. ],
  7855. "authors": [
  7856. {
  7857. "name": "Gert de Pagter",
  7858. "email": "BackEndTea@gmail.com"
  7859. },
  7860. {
  7861. "name": "Symfony Community",
  7862. "homepage": "https://symfony.com/contributors"
  7863. }
  7864. ],
  7865. "description": "Symfony polyfill for ctype functions",
  7866. "homepage": "https://symfony.com",
  7867. "keywords": [
  7868. "compatibility",
  7869. "ctype",
  7870. "polyfill",
  7871. "portable"
  7872. ],
  7873. "support": {
  7874. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  7875. },
  7876. "funding": [
  7877. {
  7878. "url": "https://symfony.com/sponsor",
  7879. "type": "custom"
  7880. },
  7881. {
  7882. "url": "https://github.com/fabpot",
  7883. "type": "github"
  7884. },
  7885. {
  7886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7887. "type": "tidelift"
  7888. }
  7889. ],
  7890. "time": "2024-09-09T11:45:10+00:00"
  7891. },
  7892. {
  7893. "name": "symfony/polyfill-intl-grapheme",
  7894. "version": "v1.32.0",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7898. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7903. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7904. "shasum": ""
  7905. },
  7906. "require": {
  7907. "php": ">=7.2"
  7908. },
  7909. "suggest": {
  7910. "ext-intl": "For best performance"
  7911. },
  7912. "type": "library",
  7913. "extra": {
  7914. "thanks": {
  7915. "url": "https://github.com/symfony/polyfill",
  7916. "name": "symfony/polyfill"
  7917. }
  7918. },
  7919. "autoload": {
  7920. "files": [
  7921. "bootstrap.php"
  7922. ],
  7923. "psr-4": {
  7924. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7925. }
  7926. },
  7927. "notification-url": "https://packagist.org/downloads/",
  7928. "license": [
  7929. "MIT"
  7930. ],
  7931. "authors": [
  7932. {
  7933. "name": "Nicolas Grekas",
  7934. "email": "p@tchwork.com"
  7935. },
  7936. {
  7937. "name": "Symfony Community",
  7938. "homepage": "https://symfony.com/contributors"
  7939. }
  7940. ],
  7941. "description": "Symfony polyfill for intl's grapheme_* functions",
  7942. "homepage": "https://symfony.com",
  7943. "keywords": [
  7944. "compatibility",
  7945. "grapheme",
  7946. "intl",
  7947. "polyfill",
  7948. "portable",
  7949. "shim"
  7950. ],
  7951. "support": {
  7952. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  7953. },
  7954. "funding": [
  7955. {
  7956. "url": "https://symfony.com/sponsor",
  7957. "type": "custom"
  7958. },
  7959. {
  7960. "url": "https://github.com/fabpot",
  7961. "type": "github"
  7962. },
  7963. {
  7964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7965. "type": "tidelift"
  7966. }
  7967. ],
  7968. "time": "2024-09-09T11:45:10+00:00"
  7969. },
  7970. {
  7971. "name": "symfony/polyfill-intl-idn",
  7972. "version": "v1.32.0",
  7973. "source": {
  7974. "type": "git",
  7975. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7976. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  7977. },
  7978. "dist": {
  7979. "type": "zip",
  7980. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7981. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7982. "shasum": ""
  7983. },
  7984. "require": {
  7985. "php": ">=7.2",
  7986. "symfony/polyfill-intl-normalizer": "^1.10"
  7987. },
  7988. "suggest": {
  7989. "ext-intl": "For best performance"
  7990. },
  7991. "type": "library",
  7992. "extra": {
  7993. "thanks": {
  7994. "url": "https://github.com/symfony/polyfill",
  7995. "name": "symfony/polyfill"
  7996. }
  7997. },
  7998. "autoload": {
  7999. "files": [
  8000. "bootstrap.php"
  8001. ],
  8002. "psr-4": {
  8003. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8004. }
  8005. },
  8006. "notification-url": "https://packagist.org/downloads/",
  8007. "license": [
  8008. "MIT"
  8009. ],
  8010. "authors": [
  8011. {
  8012. "name": "Laurent Bassin",
  8013. "email": "laurent@bassin.info"
  8014. },
  8015. {
  8016. "name": "Trevor Rowbotham",
  8017. "email": "trevor.rowbotham@pm.me"
  8018. },
  8019. {
  8020. "name": "Symfony Community",
  8021. "homepage": "https://symfony.com/contributors"
  8022. }
  8023. ],
  8024. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8025. "homepage": "https://symfony.com",
  8026. "keywords": [
  8027. "compatibility",
  8028. "idn",
  8029. "intl",
  8030. "polyfill",
  8031. "portable",
  8032. "shim"
  8033. ],
  8034. "support": {
  8035. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  8036. },
  8037. "funding": [
  8038. {
  8039. "url": "https://symfony.com/sponsor",
  8040. "type": "custom"
  8041. },
  8042. {
  8043. "url": "https://github.com/fabpot",
  8044. "type": "github"
  8045. },
  8046. {
  8047. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8048. "type": "tidelift"
  8049. }
  8050. ],
  8051. "time": "2024-09-10T14:38:51+00:00"
  8052. },
  8053. {
  8054. "name": "symfony/polyfill-intl-normalizer",
  8055. "version": "v1.32.0",
  8056. "source": {
  8057. "type": "git",
  8058. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8059. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8060. },
  8061. "dist": {
  8062. "type": "zip",
  8063. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8064. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8065. "shasum": ""
  8066. },
  8067. "require": {
  8068. "php": ">=7.2"
  8069. },
  8070. "suggest": {
  8071. "ext-intl": "For best performance"
  8072. },
  8073. "type": "library",
  8074. "extra": {
  8075. "thanks": {
  8076. "url": "https://github.com/symfony/polyfill",
  8077. "name": "symfony/polyfill"
  8078. }
  8079. },
  8080. "autoload": {
  8081. "files": [
  8082. "bootstrap.php"
  8083. ],
  8084. "psr-4": {
  8085. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8086. },
  8087. "classmap": [
  8088. "Resources/stubs"
  8089. ]
  8090. },
  8091. "notification-url": "https://packagist.org/downloads/",
  8092. "license": [
  8093. "MIT"
  8094. ],
  8095. "authors": [
  8096. {
  8097. "name": "Nicolas Grekas",
  8098. "email": "p@tchwork.com"
  8099. },
  8100. {
  8101. "name": "Symfony Community",
  8102. "homepage": "https://symfony.com/contributors"
  8103. }
  8104. ],
  8105. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8106. "homepage": "https://symfony.com",
  8107. "keywords": [
  8108. "compatibility",
  8109. "intl",
  8110. "normalizer",
  8111. "polyfill",
  8112. "portable",
  8113. "shim"
  8114. ],
  8115. "support": {
  8116. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  8117. },
  8118. "funding": [
  8119. {
  8120. "url": "https://symfony.com/sponsor",
  8121. "type": "custom"
  8122. },
  8123. {
  8124. "url": "https://github.com/fabpot",
  8125. "type": "github"
  8126. },
  8127. {
  8128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8129. "type": "tidelift"
  8130. }
  8131. ],
  8132. "time": "2024-09-09T11:45:10+00:00"
  8133. },
  8134. {
  8135. "name": "symfony/polyfill-mbstring",
  8136. "version": "v1.32.0",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8140. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8145. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "ext-iconv": "*",
  8150. "php": ">=7.2"
  8151. },
  8152. "provide": {
  8153. "ext-mbstring": "*"
  8154. },
  8155. "suggest": {
  8156. "ext-mbstring": "For best performance"
  8157. },
  8158. "type": "library",
  8159. "extra": {
  8160. "thanks": {
  8161. "url": "https://github.com/symfony/polyfill",
  8162. "name": "symfony/polyfill"
  8163. }
  8164. },
  8165. "autoload": {
  8166. "files": [
  8167. "bootstrap.php"
  8168. ],
  8169. "psr-4": {
  8170. "Symfony\\Polyfill\\Mbstring\\": ""
  8171. }
  8172. },
  8173. "notification-url": "https://packagist.org/downloads/",
  8174. "license": [
  8175. "MIT"
  8176. ],
  8177. "authors": [
  8178. {
  8179. "name": "Nicolas Grekas",
  8180. "email": "p@tchwork.com"
  8181. },
  8182. {
  8183. "name": "Symfony Community",
  8184. "homepage": "https://symfony.com/contributors"
  8185. }
  8186. ],
  8187. "description": "Symfony polyfill for the Mbstring extension",
  8188. "homepage": "https://symfony.com",
  8189. "keywords": [
  8190. "compatibility",
  8191. "mbstring",
  8192. "polyfill",
  8193. "portable",
  8194. "shim"
  8195. ],
  8196. "support": {
  8197. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  8198. },
  8199. "funding": [
  8200. {
  8201. "url": "https://symfony.com/sponsor",
  8202. "type": "custom"
  8203. },
  8204. {
  8205. "url": "https://github.com/fabpot",
  8206. "type": "github"
  8207. },
  8208. {
  8209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8210. "type": "tidelift"
  8211. }
  8212. ],
  8213. "time": "2024-12-23T08:48:59+00:00"
  8214. },
  8215. {
  8216. "name": "symfony/polyfill-php80",
  8217. "version": "v1.32.0",
  8218. "source": {
  8219. "type": "git",
  8220. "url": "https://github.com/symfony/polyfill-php80.git",
  8221. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  8222. },
  8223. "dist": {
  8224. "type": "zip",
  8225. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8226. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8227. "shasum": ""
  8228. },
  8229. "require": {
  8230. "php": ">=7.2"
  8231. },
  8232. "type": "library",
  8233. "extra": {
  8234. "thanks": {
  8235. "url": "https://github.com/symfony/polyfill",
  8236. "name": "symfony/polyfill"
  8237. }
  8238. },
  8239. "autoload": {
  8240. "files": [
  8241. "bootstrap.php"
  8242. ],
  8243. "psr-4": {
  8244. "Symfony\\Polyfill\\Php80\\": ""
  8245. },
  8246. "classmap": [
  8247. "Resources/stubs"
  8248. ]
  8249. },
  8250. "notification-url": "https://packagist.org/downloads/",
  8251. "license": [
  8252. "MIT"
  8253. ],
  8254. "authors": [
  8255. {
  8256. "name": "Ion Bazan",
  8257. "email": "ion.bazan@gmail.com"
  8258. },
  8259. {
  8260. "name": "Nicolas Grekas",
  8261. "email": "p@tchwork.com"
  8262. },
  8263. {
  8264. "name": "Symfony Community",
  8265. "homepage": "https://symfony.com/contributors"
  8266. }
  8267. ],
  8268. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8269. "homepage": "https://symfony.com",
  8270. "keywords": [
  8271. "compatibility",
  8272. "polyfill",
  8273. "portable",
  8274. "shim"
  8275. ],
  8276. "support": {
  8277. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  8278. },
  8279. "funding": [
  8280. {
  8281. "url": "https://symfony.com/sponsor",
  8282. "type": "custom"
  8283. },
  8284. {
  8285. "url": "https://github.com/fabpot",
  8286. "type": "github"
  8287. },
  8288. {
  8289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8290. "type": "tidelift"
  8291. }
  8292. ],
  8293. "time": "2025-01-02T08:10:11+00:00"
  8294. },
  8295. {
  8296. "name": "symfony/polyfill-php83",
  8297. "version": "v1.32.0",
  8298. "source": {
  8299. "type": "git",
  8300. "url": "https://github.com/symfony/polyfill-php83.git",
  8301. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8302. },
  8303. "dist": {
  8304. "type": "zip",
  8305. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8306. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8307. "shasum": ""
  8308. },
  8309. "require": {
  8310. "php": ">=7.2"
  8311. },
  8312. "type": "library",
  8313. "extra": {
  8314. "thanks": {
  8315. "url": "https://github.com/symfony/polyfill",
  8316. "name": "symfony/polyfill"
  8317. }
  8318. },
  8319. "autoload": {
  8320. "files": [
  8321. "bootstrap.php"
  8322. ],
  8323. "psr-4": {
  8324. "Symfony\\Polyfill\\Php83\\": ""
  8325. },
  8326. "classmap": [
  8327. "Resources/stubs"
  8328. ]
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Nicolas Grekas",
  8337. "email": "p@tchwork.com"
  8338. },
  8339. {
  8340. "name": "Symfony Community",
  8341. "homepage": "https://symfony.com/contributors"
  8342. }
  8343. ],
  8344. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8345. "homepage": "https://symfony.com",
  8346. "keywords": [
  8347. "compatibility",
  8348. "polyfill",
  8349. "portable",
  8350. "shim"
  8351. ],
  8352. "support": {
  8353. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  8354. },
  8355. "funding": [
  8356. {
  8357. "url": "https://symfony.com/sponsor",
  8358. "type": "custom"
  8359. },
  8360. {
  8361. "url": "https://github.com/fabpot",
  8362. "type": "github"
  8363. },
  8364. {
  8365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8366. "type": "tidelift"
  8367. }
  8368. ],
  8369. "time": "2024-09-09T11:45:10+00:00"
  8370. },
  8371. {
  8372. "name": "symfony/polyfill-uuid",
  8373. "version": "v1.32.0",
  8374. "source": {
  8375. "type": "git",
  8376. "url": "https://github.com/symfony/polyfill-uuid.git",
  8377. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8378. },
  8379. "dist": {
  8380. "type": "zip",
  8381. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8382. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8383. "shasum": ""
  8384. },
  8385. "require": {
  8386. "php": ">=7.2"
  8387. },
  8388. "provide": {
  8389. "ext-uuid": "*"
  8390. },
  8391. "suggest": {
  8392. "ext-uuid": "For best performance"
  8393. },
  8394. "type": "library",
  8395. "extra": {
  8396. "thanks": {
  8397. "url": "https://github.com/symfony/polyfill",
  8398. "name": "symfony/polyfill"
  8399. }
  8400. },
  8401. "autoload": {
  8402. "files": [
  8403. "bootstrap.php"
  8404. ],
  8405. "psr-4": {
  8406. "Symfony\\Polyfill\\Uuid\\": ""
  8407. }
  8408. },
  8409. "notification-url": "https://packagist.org/downloads/",
  8410. "license": [
  8411. "MIT"
  8412. ],
  8413. "authors": [
  8414. {
  8415. "name": "Grégoire Pineau",
  8416. "email": "lyrixx@lyrixx.info"
  8417. },
  8418. {
  8419. "name": "Symfony Community",
  8420. "homepage": "https://symfony.com/contributors"
  8421. }
  8422. ],
  8423. "description": "Symfony polyfill for uuid functions",
  8424. "homepage": "https://symfony.com",
  8425. "keywords": [
  8426. "compatibility",
  8427. "polyfill",
  8428. "portable",
  8429. "uuid"
  8430. ],
  8431. "support": {
  8432. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  8433. },
  8434. "funding": [
  8435. {
  8436. "url": "https://symfony.com/sponsor",
  8437. "type": "custom"
  8438. },
  8439. {
  8440. "url": "https://github.com/fabpot",
  8441. "type": "github"
  8442. },
  8443. {
  8444. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8445. "type": "tidelift"
  8446. }
  8447. ],
  8448. "time": "2024-09-09T11:45:10+00:00"
  8449. },
  8450. {
  8451. "name": "symfony/process",
  8452. "version": "v7.3.0",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/symfony/process.git",
  8456. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8461. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8462. "shasum": ""
  8463. },
  8464. "require": {
  8465. "php": ">=8.2"
  8466. },
  8467. "type": "library",
  8468. "autoload": {
  8469. "psr-4": {
  8470. "Symfony\\Component\\Process\\": ""
  8471. },
  8472. "exclude-from-classmap": [
  8473. "/Tests/"
  8474. ]
  8475. },
  8476. "notification-url": "https://packagist.org/downloads/",
  8477. "license": [
  8478. "MIT"
  8479. ],
  8480. "authors": [
  8481. {
  8482. "name": "Fabien Potencier",
  8483. "email": "fabien@symfony.com"
  8484. },
  8485. {
  8486. "name": "Symfony Community",
  8487. "homepage": "https://symfony.com/contributors"
  8488. }
  8489. ],
  8490. "description": "Executes commands in sub-processes",
  8491. "homepage": "https://symfony.com",
  8492. "support": {
  8493. "source": "https://github.com/symfony/process/tree/v7.3.0"
  8494. },
  8495. "funding": [
  8496. {
  8497. "url": "https://symfony.com/sponsor",
  8498. "type": "custom"
  8499. },
  8500. {
  8501. "url": "https://github.com/fabpot",
  8502. "type": "github"
  8503. },
  8504. {
  8505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8506. "type": "tidelift"
  8507. }
  8508. ],
  8509. "time": "2025-04-17T09:11:12+00:00"
  8510. },
  8511. {
  8512. "name": "symfony/routing",
  8513. "version": "v7.3.0",
  8514. "source": {
  8515. "type": "git",
  8516. "url": "https://github.com/symfony/routing.git",
  8517. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  8518. },
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  8522. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  8523. "shasum": ""
  8524. },
  8525. "require": {
  8526. "php": ">=8.2",
  8527. "symfony/deprecation-contracts": "^2.5|^3"
  8528. },
  8529. "conflict": {
  8530. "symfony/config": "<6.4",
  8531. "symfony/dependency-injection": "<6.4",
  8532. "symfony/yaml": "<6.4"
  8533. },
  8534. "require-dev": {
  8535. "psr/log": "^1|^2|^3",
  8536. "symfony/config": "^6.4|^7.0",
  8537. "symfony/dependency-injection": "^6.4|^7.0",
  8538. "symfony/expression-language": "^6.4|^7.0",
  8539. "symfony/http-foundation": "^6.4|^7.0",
  8540. "symfony/yaml": "^6.4|^7.0"
  8541. },
  8542. "type": "library",
  8543. "autoload": {
  8544. "psr-4": {
  8545. "Symfony\\Component\\Routing\\": ""
  8546. },
  8547. "exclude-from-classmap": [
  8548. "/Tests/"
  8549. ]
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "MIT"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Fabien Potencier",
  8558. "email": "fabien@symfony.com"
  8559. },
  8560. {
  8561. "name": "Symfony Community",
  8562. "homepage": "https://symfony.com/contributors"
  8563. }
  8564. ],
  8565. "description": "Maps an HTTP request to a set of configuration variables",
  8566. "homepage": "https://symfony.com",
  8567. "keywords": [
  8568. "router",
  8569. "routing",
  8570. "uri",
  8571. "url"
  8572. ],
  8573. "support": {
  8574. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  8575. },
  8576. "funding": [
  8577. {
  8578. "url": "https://symfony.com/sponsor",
  8579. "type": "custom"
  8580. },
  8581. {
  8582. "url": "https://github.com/fabpot",
  8583. "type": "github"
  8584. },
  8585. {
  8586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8587. "type": "tidelift"
  8588. }
  8589. ],
  8590. "time": "2025-05-24T20:43:28+00:00"
  8591. },
  8592. {
  8593. "name": "symfony/service-contracts",
  8594. "version": "v3.6.0",
  8595. "source": {
  8596. "type": "git",
  8597. "url": "https://github.com/symfony/service-contracts.git",
  8598. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  8599. },
  8600. "dist": {
  8601. "type": "zip",
  8602. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8603. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8604. "shasum": ""
  8605. },
  8606. "require": {
  8607. "php": ">=8.1",
  8608. "psr/container": "^1.1|^2.0",
  8609. "symfony/deprecation-contracts": "^2.5|^3"
  8610. },
  8611. "conflict": {
  8612. "ext-psr": "<1.1|>=2"
  8613. },
  8614. "type": "library",
  8615. "extra": {
  8616. "thanks": {
  8617. "url": "https://github.com/symfony/contracts",
  8618. "name": "symfony/contracts"
  8619. },
  8620. "branch-alias": {
  8621. "dev-main": "3.6-dev"
  8622. }
  8623. },
  8624. "autoload": {
  8625. "psr-4": {
  8626. "Symfony\\Contracts\\Service\\": ""
  8627. },
  8628. "exclude-from-classmap": [
  8629. "/Test/"
  8630. ]
  8631. },
  8632. "notification-url": "https://packagist.org/downloads/",
  8633. "license": [
  8634. "MIT"
  8635. ],
  8636. "authors": [
  8637. {
  8638. "name": "Nicolas Grekas",
  8639. "email": "p@tchwork.com"
  8640. },
  8641. {
  8642. "name": "Symfony Community",
  8643. "homepage": "https://symfony.com/contributors"
  8644. }
  8645. ],
  8646. "description": "Generic abstractions related to writing services",
  8647. "homepage": "https://symfony.com",
  8648. "keywords": [
  8649. "abstractions",
  8650. "contracts",
  8651. "decoupling",
  8652. "interfaces",
  8653. "interoperability",
  8654. "standards"
  8655. ],
  8656. "support": {
  8657. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  8658. },
  8659. "funding": [
  8660. {
  8661. "url": "https://symfony.com/sponsor",
  8662. "type": "custom"
  8663. },
  8664. {
  8665. "url": "https://github.com/fabpot",
  8666. "type": "github"
  8667. },
  8668. {
  8669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8670. "type": "tidelift"
  8671. }
  8672. ],
  8673. "time": "2025-04-25T09:37:31+00:00"
  8674. },
  8675. {
  8676. "name": "symfony/string",
  8677. "version": "v7.3.0",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/symfony/string.git",
  8681. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8686. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8687. "shasum": ""
  8688. },
  8689. "require": {
  8690. "php": ">=8.2",
  8691. "symfony/polyfill-ctype": "~1.8",
  8692. "symfony/polyfill-intl-grapheme": "~1.0",
  8693. "symfony/polyfill-intl-normalizer": "~1.0",
  8694. "symfony/polyfill-mbstring": "~1.0"
  8695. },
  8696. "conflict": {
  8697. "symfony/translation-contracts": "<2.5"
  8698. },
  8699. "require-dev": {
  8700. "symfony/emoji": "^7.1",
  8701. "symfony/error-handler": "^6.4|^7.0",
  8702. "symfony/http-client": "^6.4|^7.0",
  8703. "symfony/intl": "^6.4|^7.0",
  8704. "symfony/translation-contracts": "^2.5|^3.0",
  8705. "symfony/var-exporter": "^6.4|^7.0"
  8706. },
  8707. "type": "library",
  8708. "autoload": {
  8709. "files": [
  8710. "Resources/functions.php"
  8711. ],
  8712. "psr-4": {
  8713. "Symfony\\Component\\String\\": ""
  8714. },
  8715. "exclude-from-classmap": [
  8716. "/Tests/"
  8717. ]
  8718. },
  8719. "notification-url": "https://packagist.org/downloads/",
  8720. "license": [
  8721. "MIT"
  8722. ],
  8723. "authors": [
  8724. {
  8725. "name": "Nicolas Grekas",
  8726. "email": "p@tchwork.com"
  8727. },
  8728. {
  8729. "name": "Symfony Community",
  8730. "homepage": "https://symfony.com/contributors"
  8731. }
  8732. ],
  8733. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8734. "homepage": "https://symfony.com",
  8735. "keywords": [
  8736. "grapheme",
  8737. "i18n",
  8738. "string",
  8739. "unicode",
  8740. "utf-8",
  8741. "utf8"
  8742. ],
  8743. "support": {
  8744. "source": "https://github.com/symfony/string/tree/v7.3.0"
  8745. },
  8746. "funding": [
  8747. {
  8748. "url": "https://symfony.com/sponsor",
  8749. "type": "custom"
  8750. },
  8751. {
  8752. "url": "https://github.com/fabpot",
  8753. "type": "github"
  8754. },
  8755. {
  8756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8757. "type": "tidelift"
  8758. }
  8759. ],
  8760. "time": "2025-04-20T20:19:01+00:00"
  8761. },
  8762. {
  8763. "name": "symfony/translation",
  8764. "version": "v7.3.0",
  8765. "source": {
  8766. "type": "git",
  8767. "url": "https://github.com/symfony/translation.git",
  8768. "reference": "4aba29076a29a3aa667e09b791e5f868973a8667"
  8769. },
  8770. "dist": {
  8771. "type": "zip",
  8772. "url": "https://api.github.com/repos/symfony/translation/zipball/4aba29076a29a3aa667e09b791e5f868973a8667",
  8773. "reference": "4aba29076a29a3aa667e09b791e5f868973a8667",
  8774. "shasum": ""
  8775. },
  8776. "require": {
  8777. "php": ">=8.2",
  8778. "symfony/deprecation-contracts": "^2.5|^3",
  8779. "symfony/polyfill-mbstring": "~1.0",
  8780. "symfony/translation-contracts": "^2.5|^3.0"
  8781. },
  8782. "conflict": {
  8783. "nikic/php-parser": "<5.0",
  8784. "symfony/config": "<6.4",
  8785. "symfony/console": "<6.4",
  8786. "symfony/dependency-injection": "<6.4",
  8787. "symfony/http-client-contracts": "<2.5",
  8788. "symfony/http-kernel": "<6.4",
  8789. "symfony/service-contracts": "<2.5",
  8790. "symfony/twig-bundle": "<6.4",
  8791. "symfony/yaml": "<6.4"
  8792. },
  8793. "provide": {
  8794. "symfony/translation-implementation": "2.3|3.0"
  8795. },
  8796. "require-dev": {
  8797. "nikic/php-parser": "^5.0",
  8798. "psr/log": "^1|^2|^3",
  8799. "symfony/config": "^6.4|^7.0",
  8800. "symfony/console": "^6.4|^7.0",
  8801. "symfony/dependency-injection": "^6.4|^7.0",
  8802. "symfony/finder": "^6.4|^7.0",
  8803. "symfony/http-client-contracts": "^2.5|^3.0",
  8804. "symfony/http-kernel": "^6.4|^7.0",
  8805. "symfony/intl": "^6.4|^7.0",
  8806. "symfony/polyfill-intl-icu": "^1.21",
  8807. "symfony/routing": "^6.4|^7.0",
  8808. "symfony/service-contracts": "^2.5|^3",
  8809. "symfony/yaml": "^6.4|^7.0"
  8810. },
  8811. "type": "library",
  8812. "autoload": {
  8813. "files": [
  8814. "Resources/functions.php"
  8815. ],
  8816. "psr-4": {
  8817. "Symfony\\Component\\Translation\\": ""
  8818. },
  8819. "exclude-from-classmap": [
  8820. "/Tests/"
  8821. ]
  8822. },
  8823. "notification-url": "https://packagist.org/downloads/",
  8824. "license": [
  8825. "MIT"
  8826. ],
  8827. "authors": [
  8828. {
  8829. "name": "Fabien Potencier",
  8830. "email": "fabien@symfony.com"
  8831. },
  8832. {
  8833. "name": "Symfony Community",
  8834. "homepage": "https://symfony.com/contributors"
  8835. }
  8836. ],
  8837. "description": "Provides tools to internationalize your application",
  8838. "homepage": "https://symfony.com",
  8839. "support": {
  8840. "source": "https://github.com/symfony/translation/tree/v7.3.0"
  8841. },
  8842. "funding": [
  8843. {
  8844. "url": "https://symfony.com/sponsor",
  8845. "type": "custom"
  8846. },
  8847. {
  8848. "url": "https://github.com/fabpot",
  8849. "type": "github"
  8850. },
  8851. {
  8852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8853. "type": "tidelift"
  8854. }
  8855. ],
  8856. "time": "2025-05-29T07:19:49+00:00"
  8857. },
  8858. {
  8859. "name": "symfony/translation-contracts",
  8860. "version": "v3.6.0",
  8861. "source": {
  8862. "type": "git",
  8863. "url": "https://github.com/symfony/translation-contracts.git",
  8864. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  8865. },
  8866. "dist": {
  8867. "type": "zip",
  8868. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8869. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8870. "shasum": ""
  8871. },
  8872. "require": {
  8873. "php": ">=8.1"
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "thanks": {
  8878. "url": "https://github.com/symfony/contracts",
  8879. "name": "symfony/contracts"
  8880. },
  8881. "branch-alias": {
  8882. "dev-main": "3.6-dev"
  8883. }
  8884. },
  8885. "autoload": {
  8886. "psr-4": {
  8887. "Symfony\\Contracts\\Translation\\": ""
  8888. },
  8889. "exclude-from-classmap": [
  8890. "/Test/"
  8891. ]
  8892. },
  8893. "notification-url": "https://packagist.org/downloads/",
  8894. "license": [
  8895. "MIT"
  8896. ],
  8897. "authors": [
  8898. {
  8899. "name": "Nicolas Grekas",
  8900. "email": "p@tchwork.com"
  8901. },
  8902. {
  8903. "name": "Symfony Community",
  8904. "homepage": "https://symfony.com/contributors"
  8905. }
  8906. ],
  8907. "description": "Generic abstractions related to translation",
  8908. "homepage": "https://symfony.com",
  8909. "keywords": [
  8910. "abstractions",
  8911. "contracts",
  8912. "decoupling",
  8913. "interfaces",
  8914. "interoperability",
  8915. "standards"
  8916. ],
  8917. "support": {
  8918. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  8919. },
  8920. "funding": [
  8921. {
  8922. "url": "https://symfony.com/sponsor",
  8923. "type": "custom"
  8924. },
  8925. {
  8926. "url": "https://github.com/fabpot",
  8927. "type": "github"
  8928. },
  8929. {
  8930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8931. "type": "tidelift"
  8932. }
  8933. ],
  8934. "time": "2024-09-27T08:32:26+00:00"
  8935. },
  8936. {
  8937. "name": "symfony/uid",
  8938. "version": "v7.3.0",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/symfony/uid.git",
  8942. "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/symfony/uid/zipball/7beeb2b885cd584cd01e126c5777206ae4c3c6a3",
  8947. "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "php": ">=8.2",
  8952. "symfony/polyfill-uuid": "^1.15"
  8953. },
  8954. "require-dev": {
  8955. "symfony/console": "^6.4|^7.0"
  8956. },
  8957. "type": "library",
  8958. "autoload": {
  8959. "psr-4": {
  8960. "Symfony\\Component\\Uid\\": ""
  8961. },
  8962. "exclude-from-classmap": [
  8963. "/Tests/"
  8964. ]
  8965. },
  8966. "notification-url": "https://packagist.org/downloads/",
  8967. "license": [
  8968. "MIT"
  8969. ],
  8970. "authors": [
  8971. {
  8972. "name": "Grégoire Pineau",
  8973. "email": "lyrixx@lyrixx.info"
  8974. },
  8975. {
  8976. "name": "Nicolas Grekas",
  8977. "email": "p@tchwork.com"
  8978. },
  8979. {
  8980. "name": "Symfony Community",
  8981. "homepage": "https://symfony.com/contributors"
  8982. }
  8983. ],
  8984. "description": "Provides an object-oriented API to generate and represent UIDs",
  8985. "homepage": "https://symfony.com",
  8986. "keywords": [
  8987. "UID",
  8988. "ulid",
  8989. "uuid"
  8990. ],
  8991. "support": {
  8992. "source": "https://github.com/symfony/uid/tree/v7.3.0"
  8993. },
  8994. "funding": [
  8995. {
  8996. "url": "https://symfony.com/sponsor",
  8997. "type": "custom"
  8998. },
  8999. {
  9000. "url": "https://github.com/fabpot",
  9001. "type": "github"
  9002. },
  9003. {
  9004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9005. "type": "tidelift"
  9006. }
  9007. ],
  9008. "time": "2025-05-24T14:28:13+00:00"
  9009. },
  9010. {
  9011. "name": "symfony/var-dumper",
  9012. "version": "v7.3.0",
  9013. "source": {
  9014. "type": "git",
  9015. "url": "https://github.com/symfony/var-dumper.git",
  9016. "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e"
  9017. },
  9018. "dist": {
  9019. "type": "zip",
  9020. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/548f6760c54197b1084e1e5c71f6d9d523f2f78e",
  9021. "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e",
  9022. "shasum": ""
  9023. },
  9024. "require": {
  9025. "php": ">=8.2",
  9026. "symfony/deprecation-contracts": "^2.5|^3",
  9027. "symfony/polyfill-mbstring": "~1.0"
  9028. },
  9029. "conflict": {
  9030. "symfony/console": "<6.4"
  9031. },
  9032. "require-dev": {
  9033. "ext-iconv": "*",
  9034. "symfony/console": "^6.4|^7.0",
  9035. "symfony/http-kernel": "^6.4|^7.0",
  9036. "symfony/process": "^6.4|^7.0",
  9037. "symfony/uid": "^6.4|^7.0",
  9038. "twig/twig": "^3.12"
  9039. },
  9040. "bin": [
  9041. "Resources/bin/var-dump-server"
  9042. ],
  9043. "type": "library",
  9044. "autoload": {
  9045. "files": [
  9046. "Resources/functions/dump.php"
  9047. ],
  9048. "psr-4": {
  9049. "Symfony\\Component\\VarDumper\\": ""
  9050. },
  9051. "exclude-from-classmap": [
  9052. "/Tests/"
  9053. ]
  9054. },
  9055. "notification-url": "https://packagist.org/downloads/",
  9056. "license": [
  9057. "MIT"
  9058. ],
  9059. "authors": [
  9060. {
  9061. "name": "Nicolas Grekas",
  9062. "email": "p@tchwork.com"
  9063. },
  9064. {
  9065. "name": "Symfony Community",
  9066. "homepage": "https://symfony.com/contributors"
  9067. }
  9068. ],
  9069. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9070. "homepage": "https://symfony.com",
  9071. "keywords": [
  9072. "debug",
  9073. "dump"
  9074. ],
  9075. "support": {
  9076. "source": "https://github.com/symfony/var-dumper/tree/v7.3.0"
  9077. },
  9078. "funding": [
  9079. {
  9080. "url": "https://symfony.com/sponsor",
  9081. "type": "custom"
  9082. },
  9083. {
  9084. "url": "https://github.com/fabpot",
  9085. "type": "github"
  9086. },
  9087. {
  9088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9089. "type": "tidelift"
  9090. }
  9091. ],
  9092. "time": "2025-04-27T18:39:23+00:00"
  9093. },
  9094. {
  9095. "name": "tijsverkoyen/css-to-inline-styles",
  9096. "version": "v2.3.0",
  9097. "source": {
  9098. "type": "git",
  9099. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9100. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9101. },
  9102. "dist": {
  9103. "type": "zip",
  9104. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9105. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9106. "shasum": ""
  9107. },
  9108. "require": {
  9109. "ext-dom": "*",
  9110. "ext-libxml": "*",
  9111. "php": "^7.4 || ^8.0",
  9112. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9113. },
  9114. "require-dev": {
  9115. "phpstan/phpstan": "^2.0",
  9116. "phpstan/phpstan-phpunit": "^2.0",
  9117. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9118. },
  9119. "type": "library",
  9120. "extra": {
  9121. "branch-alias": {
  9122. "dev-master": "2.x-dev"
  9123. }
  9124. },
  9125. "autoload": {
  9126. "psr-4": {
  9127. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9128. }
  9129. },
  9130. "notification-url": "https://packagist.org/downloads/",
  9131. "license": [
  9132. "BSD-3-Clause"
  9133. ],
  9134. "authors": [
  9135. {
  9136. "name": "Tijs Verkoyen",
  9137. "email": "css_to_inline_styles@verkoyen.eu",
  9138. "role": "Developer"
  9139. }
  9140. ],
  9141. "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.",
  9142. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9143. "support": {
  9144. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9145. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9146. },
  9147. "time": "2024-12-21T16:25:41+00:00"
  9148. },
  9149. {
  9150. "name": "vlucas/phpdotenv",
  9151. "version": "v5.6.2",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/vlucas/phpdotenv.git",
  9155. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9160. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "ext-pcre": "*",
  9165. "graham-campbell/result-type": "^1.1.3",
  9166. "php": "^7.2.5 || ^8.0",
  9167. "phpoption/phpoption": "^1.9.3",
  9168. "symfony/polyfill-ctype": "^1.24",
  9169. "symfony/polyfill-mbstring": "^1.24",
  9170. "symfony/polyfill-php80": "^1.24"
  9171. },
  9172. "require-dev": {
  9173. "bamarni/composer-bin-plugin": "^1.8.2",
  9174. "ext-filter": "*",
  9175. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9176. },
  9177. "suggest": {
  9178. "ext-filter": "Required to use the boolean validator."
  9179. },
  9180. "type": "library",
  9181. "extra": {
  9182. "bamarni-bin": {
  9183. "bin-links": true,
  9184. "forward-command": false
  9185. },
  9186. "branch-alias": {
  9187. "dev-master": "5.6-dev"
  9188. }
  9189. },
  9190. "autoload": {
  9191. "psr-4": {
  9192. "Dotenv\\": "src/"
  9193. }
  9194. },
  9195. "notification-url": "https://packagist.org/downloads/",
  9196. "license": [
  9197. "BSD-3-Clause"
  9198. ],
  9199. "authors": [
  9200. {
  9201. "name": "Graham Campbell",
  9202. "email": "hello@gjcampbell.co.uk",
  9203. "homepage": "https://github.com/GrahamCampbell"
  9204. },
  9205. {
  9206. "name": "Vance Lucas",
  9207. "email": "vance@vancelucas.com",
  9208. "homepage": "https://github.com/vlucas"
  9209. }
  9210. ],
  9211. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9212. "keywords": [
  9213. "dotenv",
  9214. "env",
  9215. "environment"
  9216. ],
  9217. "support": {
  9218. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9219. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  9220. },
  9221. "funding": [
  9222. {
  9223. "url": "https://github.com/GrahamCampbell",
  9224. "type": "github"
  9225. },
  9226. {
  9227. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9228. "type": "tidelift"
  9229. }
  9230. ],
  9231. "time": "2025-04-30T23:37:27+00:00"
  9232. },
  9233. {
  9234. "name": "voku/portable-ascii",
  9235. "version": "2.0.3",
  9236. "source": {
  9237. "type": "git",
  9238. "url": "https://github.com/voku/portable-ascii.git",
  9239. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9240. },
  9241. "dist": {
  9242. "type": "zip",
  9243. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9244. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9245. "shasum": ""
  9246. },
  9247. "require": {
  9248. "php": ">=7.0.0"
  9249. },
  9250. "require-dev": {
  9251. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9252. },
  9253. "suggest": {
  9254. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9255. },
  9256. "type": "library",
  9257. "autoload": {
  9258. "psr-4": {
  9259. "voku\\": "src/voku/"
  9260. }
  9261. },
  9262. "notification-url": "https://packagist.org/downloads/",
  9263. "license": [
  9264. "MIT"
  9265. ],
  9266. "authors": [
  9267. {
  9268. "name": "Lars Moelleken",
  9269. "homepage": "https://www.moelleken.org/"
  9270. }
  9271. ],
  9272. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9273. "homepage": "https://github.com/voku/portable-ascii",
  9274. "keywords": [
  9275. "ascii",
  9276. "clean",
  9277. "php"
  9278. ],
  9279. "support": {
  9280. "issues": "https://github.com/voku/portable-ascii/issues",
  9281. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9282. },
  9283. "funding": [
  9284. {
  9285. "url": "https://www.paypal.me/moelleken",
  9286. "type": "custom"
  9287. },
  9288. {
  9289. "url": "https://github.com/voku",
  9290. "type": "github"
  9291. },
  9292. {
  9293. "url": "https://opencollective.com/portable-ascii",
  9294. "type": "open_collective"
  9295. },
  9296. {
  9297. "url": "https://www.patreon.com/voku",
  9298. "type": "patreon"
  9299. },
  9300. {
  9301. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9302. "type": "tidelift"
  9303. }
  9304. ],
  9305. "time": "2024-11-21T01:49:47+00:00"
  9306. },
  9307. {
  9308. "name": "webmozart/assert",
  9309. "version": "1.11.0",
  9310. "source": {
  9311. "type": "git",
  9312. "url": "https://github.com/webmozarts/assert.git",
  9313. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9314. },
  9315. "dist": {
  9316. "type": "zip",
  9317. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9318. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9319. "shasum": ""
  9320. },
  9321. "require": {
  9322. "ext-ctype": "*",
  9323. "php": "^7.2 || ^8.0"
  9324. },
  9325. "conflict": {
  9326. "phpstan/phpstan": "<0.12.20",
  9327. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9328. },
  9329. "require-dev": {
  9330. "phpunit/phpunit": "^8.5.13"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "1.10-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-4": {
  9340. "Webmozart\\Assert\\": "src/"
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "MIT"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "Bernhard Schussek",
  9350. "email": "bschussek@gmail.com"
  9351. }
  9352. ],
  9353. "description": "Assertions to validate method input/output with nice error messages.",
  9354. "keywords": [
  9355. "assert",
  9356. "check",
  9357. "validate"
  9358. ],
  9359. "support": {
  9360. "issues": "https://github.com/webmozarts/assert/issues",
  9361. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9362. },
  9363. "time": "2022-06-03T18:03:27+00:00"
  9364. }
  9365. ],
  9366. "packages-dev": [
  9367. {
  9368. "name": "barryvdh/laravel-debugbar",
  9369. "version": "v3.15.4",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  9373. "reference": "c0667ea91f7185f1e074402c5788195e96bf8106"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c0667ea91f7185f1e074402c5788195e96bf8106",
  9378. "reference": "c0667ea91f7185f1e074402c5788195e96bf8106",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "illuminate/routing": "^9|^10|^11|^12",
  9383. "illuminate/session": "^9|^10|^11|^12",
  9384. "illuminate/support": "^9|^10|^11|^12",
  9385. "php": "^8.1",
  9386. "php-debugbar/php-debugbar": "~2.1.1",
  9387. "symfony/finder": "^6|^7"
  9388. },
  9389. "require-dev": {
  9390. "mockery/mockery": "^1.3.3",
  9391. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  9392. "phpunit/phpunit": "^9.5.10|^10|^11",
  9393. "squizlabs/php_codesniffer": "^3.5"
  9394. },
  9395. "type": "library",
  9396. "extra": {
  9397. "laravel": {
  9398. "aliases": {
  9399. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  9400. },
  9401. "providers": [
  9402. "Barryvdh\\Debugbar\\ServiceProvider"
  9403. ]
  9404. },
  9405. "branch-alias": {
  9406. "dev-master": "3.15-dev"
  9407. }
  9408. },
  9409. "autoload": {
  9410. "files": [
  9411. "src/helpers.php"
  9412. ],
  9413. "psr-4": {
  9414. "Barryvdh\\Debugbar\\": "src/"
  9415. }
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "MIT"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Barry vd. Heuvel",
  9424. "email": "barryvdh@gmail.com"
  9425. }
  9426. ],
  9427. "description": "PHP Debugbar integration for Laravel",
  9428. "keywords": [
  9429. "debug",
  9430. "debugbar",
  9431. "dev",
  9432. "laravel",
  9433. "profiler",
  9434. "webprofiler"
  9435. ],
  9436. "support": {
  9437. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  9438. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.4"
  9439. },
  9440. "funding": [
  9441. {
  9442. "url": "https://fruitcake.nl",
  9443. "type": "custom"
  9444. },
  9445. {
  9446. "url": "https://github.com/barryvdh",
  9447. "type": "github"
  9448. }
  9449. ],
  9450. "time": "2025-04-16T06:32:06+00:00"
  9451. },
  9452. {
  9453. "name": "brianium/paratest",
  9454. "version": "v7.8.3",
  9455. "source": {
  9456. "type": "git",
  9457. "url": "https://github.com/paratestphp/paratest.git",
  9458. "reference": "a585c346ddf1bec22e51e20b5387607905604a71"
  9459. },
  9460. "dist": {
  9461. "type": "zip",
  9462. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/a585c346ddf1bec22e51e20b5387607905604a71",
  9463. "reference": "a585c346ddf1bec22e51e20b5387607905604a71",
  9464. "shasum": ""
  9465. },
  9466. "require": {
  9467. "ext-dom": "*",
  9468. "ext-pcre": "*",
  9469. "ext-reflection": "*",
  9470. "ext-simplexml": "*",
  9471. "fidry/cpu-core-counter": "^1.2.0",
  9472. "jean85/pretty-package-versions": "^2.1.0",
  9473. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9474. "phpunit/php-code-coverage": "^11.0.9 || ^12.0.4",
  9475. "phpunit/php-file-iterator": "^5.1.0 || ^6",
  9476. "phpunit/php-timer": "^7.0.1 || ^8",
  9477. "phpunit/phpunit": "^11.5.11 || ^12.0.6",
  9478. "sebastian/environment": "^7.2.0 || ^8",
  9479. "symfony/console": "^6.4.17 || ^7.2.1",
  9480. "symfony/process": "^6.4.19 || ^7.2.4"
  9481. },
  9482. "require-dev": {
  9483. "doctrine/coding-standard": "^12.0.0",
  9484. "ext-pcov": "*",
  9485. "ext-posix": "*",
  9486. "phpstan/phpstan": "^2.1.6",
  9487. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9488. "phpstan/phpstan-phpunit": "^2.0.4",
  9489. "phpstan/phpstan-strict-rules": "^2.0.3",
  9490. "squizlabs/php_codesniffer": "^3.11.3",
  9491. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9492. },
  9493. "bin": [
  9494. "bin/paratest",
  9495. "bin/paratest_for_phpstorm"
  9496. ],
  9497. "type": "library",
  9498. "autoload": {
  9499. "psr-4": {
  9500. "ParaTest\\": [
  9501. "src/"
  9502. ]
  9503. }
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "MIT"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Brian Scaturro",
  9512. "email": "scaturrob@gmail.com",
  9513. "role": "Developer"
  9514. },
  9515. {
  9516. "name": "Filippo Tessarotto",
  9517. "email": "zoeslam@gmail.com",
  9518. "role": "Developer"
  9519. }
  9520. ],
  9521. "description": "Parallel testing for PHP",
  9522. "homepage": "https://github.com/paratestphp/paratest",
  9523. "keywords": [
  9524. "concurrent",
  9525. "parallel",
  9526. "phpunit",
  9527. "testing"
  9528. ],
  9529. "support": {
  9530. "issues": "https://github.com/paratestphp/paratest/issues",
  9531. "source": "https://github.com/paratestphp/paratest/tree/v7.8.3"
  9532. },
  9533. "funding": [
  9534. {
  9535. "url": "https://github.com/sponsors/Slamdunk",
  9536. "type": "github"
  9537. },
  9538. {
  9539. "url": "https://paypal.me/filippotessarotto",
  9540. "type": "paypal"
  9541. }
  9542. ],
  9543. "time": "2025-03-05T08:29:11+00:00"
  9544. },
  9545. {
  9546. "name": "fidry/cpu-core-counter",
  9547. "version": "1.2.0",
  9548. "source": {
  9549. "type": "git",
  9550. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9551. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9552. },
  9553. "dist": {
  9554. "type": "zip",
  9555. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9556. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9557. "shasum": ""
  9558. },
  9559. "require": {
  9560. "php": "^7.2 || ^8.0"
  9561. },
  9562. "require-dev": {
  9563. "fidry/makefile": "^0.2.0",
  9564. "fidry/php-cs-fixer-config": "^1.1.2",
  9565. "phpstan/extension-installer": "^1.2.0",
  9566. "phpstan/phpstan": "^1.9.2",
  9567. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9568. "phpstan/phpstan-phpunit": "^1.2.2",
  9569. "phpstan/phpstan-strict-rules": "^1.4.4",
  9570. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9571. "webmozarts/strict-phpunit": "^7.5"
  9572. },
  9573. "type": "library",
  9574. "autoload": {
  9575. "psr-4": {
  9576. "Fidry\\CpuCoreCounter\\": "src/"
  9577. }
  9578. },
  9579. "notification-url": "https://packagist.org/downloads/",
  9580. "license": [
  9581. "MIT"
  9582. ],
  9583. "authors": [
  9584. {
  9585. "name": "Théo FIDRY",
  9586. "email": "theo.fidry@gmail.com"
  9587. }
  9588. ],
  9589. "description": "Tiny utility to get the number of CPU cores.",
  9590. "keywords": [
  9591. "CPU",
  9592. "core"
  9593. ],
  9594. "support": {
  9595. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9596. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9597. },
  9598. "funding": [
  9599. {
  9600. "url": "https://github.com/theofidry",
  9601. "type": "github"
  9602. }
  9603. ],
  9604. "time": "2024-08-06T10:04:20+00:00"
  9605. },
  9606. {
  9607. "name": "filp/whoops",
  9608. "version": "2.18.2",
  9609. "source": {
  9610. "type": "git",
  9611. "url": "https://github.com/filp/whoops.git",
  9612. "reference": "89dabca1490bc77dbcab41c2b20968c7e44bf7c3"
  9613. },
  9614. "dist": {
  9615. "type": "zip",
  9616. "url": "https://api.github.com/repos/filp/whoops/zipball/89dabca1490bc77dbcab41c2b20968c7e44bf7c3",
  9617. "reference": "89dabca1490bc77dbcab41c2b20968c7e44bf7c3",
  9618. "shasum": ""
  9619. },
  9620. "require": {
  9621. "php": "^7.1 || ^8.0",
  9622. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9623. },
  9624. "require-dev": {
  9625. "mockery/mockery": "^1.0",
  9626. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9627. "symfony/var-dumper": "^4.0 || ^5.0"
  9628. },
  9629. "suggest": {
  9630. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9631. "whoops/soap": "Formats errors as SOAP responses"
  9632. },
  9633. "type": "library",
  9634. "extra": {
  9635. "branch-alias": {
  9636. "dev-master": "2.7-dev"
  9637. }
  9638. },
  9639. "autoload": {
  9640. "psr-4": {
  9641. "Whoops\\": "src/Whoops/"
  9642. }
  9643. },
  9644. "notification-url": "https://packagist.org/downloads/",
  9645. "license": [
  9646. "MIT"
  9647. ],
  9648. "authors": [
  9649. {
  9650. "name": "Filipe Dobreira",
  9651. "homepage": "https://github.com/filp",
  9652. "role": "Developer"
  9653. }
  9654. ],
  9655. "description": "php error handling for cool kids",
  9656. "homepage": "https://filp.github.io/whoops/",
  9657. "keywords": [
  9658. "error",
  9659. "exception",
  9660. "handling",
  9661. "library",
  9662. "throwable",
  9663. "whoops"
  9664. ],
  9665. "support": {
  9666. "issues": "https://github.com/filp/whoops/issues",
  9667. "source": "https://github.com/filp/whoops/tree/2.18.2"
  9668. },
  9669. "funding": [
  9670. {
  9671. "url": "https://github.com/denis-sokolov",
  9672. "type": "github"
  9673. }
  9674. ],
  9675. "time": "2025-06-11T20:42:19+00:00"
  9676. },
  9677. {
  9678. "name": "hamcrest/hamcrest-php",
  9679. "version": "v2.1.1",
  9680. "source": {
  9681. "type": "git",
  9682. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9683. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  9684. },
  9685. "dist": {
  9686. "type": "zip",
  9687. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9688. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9689. "shasum": ""
  9690. },
  9691. "require": {
  9692. "php": "^7.4|^8.0"
  9693. },
  9694. "replace": {
  9695. "cordoval/hamcrest-php": "*",
  9696. "davedevelopment/hamcrest-php": "*",
  9697. "kodova/hamcrest-php": "*"
  9698. },
  9699. "require-dev": {
  9700. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  9701. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  9702. },
  9703. "type": "library",
  9704. "extra": {
  9705. "branch-alias": {
  9706. "dev-master": "2.1-dev"
  9707. }
  9708. },
  9709. "autoload": {
  9710. "classmap": [
  9711. "hamcrest"
  9712. ]
  9713. },
  9714. "notification-url": "https://packagist.org/downloads/",
  9715. "license": [
  9716. "BSD-3-Clause"
  9717. ],
  9718. "description": "This is the PHP port of Hamcrest Matchers",
  9719. "keywords": [
  9720. "test"
  9721. ],
  9722. "support": {
  9723. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9724. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  9725. },
  9726. "time": "2025-04-30T06:54:44+00:00"
  9727. },
  9728. {
  9729. "name": "jean85/pretty-package-versions",
  9730. "version": "2.1.1",
  9731. "source": {
  9732. "type": "git",
  9733. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9734. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  9735. },
  9736. "dist": {
  9737. "type": "zip",
  9738. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9739. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9740. "shasum": ""
  9741. },
  9742. "require": {
  9743. "composer-runtime-api": "^2.1.0",
  9744. "php": "^7.4|^8.0"
  9745. },
  9746. "require-dev": {
  9747. "friendsofphp/php-cs-fixer": "^3.2",
  9748. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9749. "phpstan/phpstan": "^2.0",
  9750. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9751. "rector/rector": "^2.0",
  9752. "vimeo/psalm": "^4.3 || ^5.0"
  9753. },
  9754. "type": "library",
  9755. "extra": {
  9756. "branch-alias": {
  9757. "dev-master": "1.x-dev"
  9758. }
  9759. },
  9760. "autoload": {
  9761. "psr-4": {
  9762. "Jean85\\": "src/"
  9763. }
  9764. },
  9765. "notification-url": "https://packagist.org/downloads/",
  9766. "license": [
  9767. "MIT"
  9768. ],
  9769. "authors": [
  9770. {
  9771. "name": "Alessandro Lai",
  9772. "email": "alessandro.lai85@gmail.com"
  9773. }
  9774. ],
  9775. "description": "A library to get pretty versions strings of installed dependencies",
  9776. "keywords": [
  9777. "composer",
  9778. "package",
  9779. "release",
  9780. "versions"
  9781. ],
  9782. "support": {
  9783. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9784. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  9785. },
  9786. "time": "2025-03-19T14:43:43+00:00"
  9787. },
  9788. {
  9789. "name": "laravel/pint",
  9790. "version": "v1.22.1",
  9791. "source": {
  9792. "type": "git",
  9793. "url": "https://github.com/laravel/pint.git",
  9794. "reference": "941d1927c5ca420c22710e98420287169c7bcaf7"
  9795. },
  9796. "dist": {
  9797. "type": "zip",
  9798. "url": "https://api.github.com/repos/laravel/pint/zipball/941d1927c5ca420c22710e98420287169c7bcaf7",
  9799. "reference": "941d1927c5ca420c22710e98420287169c7bcaf7",
  9800. "shasum": ""
  9801. },
  9802. "require": {
  9803. "ext-json": "*",
  9804. "ext-mbstring": "*",
  9805. "ext-tokenizer": "*",
  9806. "ext-xml": "*",
  9807. "php": "^8.2.0"
  9808. },
  9809. "require-dev": {
  9810. "friendsofphp/php-cs-fixer": "^3.75.0",
  9811. "illuminate/view": "^11.44.7",
  9812. "larastan/larastan": "^3.4.0",
  9813. "laravel-zero/framework": "^11.36.1",
  9814. "mockery/mockery": "^1.6.12",
  9815. "nunomaduro/termwind": "^2.3.1",
  9816. "pestphp/pest": "^2.36.0"
  9817. },
  9818. "bin": [
  9819. "builds/pint"
  9820. ],
  9821. "type": "project",
  9822. "autoload": {
  9823. "psr-4": {
  9824. "App\\": "app/",
  9825. "Database\\Seeders\\": "database/seeders/",
  9826. "Database\\Factories\\": "database/factories/"
  9827. }
  9828. },
  9829. "notification-url": "https://packagist.org/downloads/",
  9830. "license": [
  9831. "MIT"
  9832. ],
  9833. "authors": [
  9834. {
  9835. "name": "Nuno Maduro",
  9836. "email": "enunomaduro@gmail.com"
  9837. }
  9838. ],
  9839. "description": "An opinionated code formatter for PHP.",
  9840. "homepage": "https://laravel.com",
  9841. "keywords": [
  9842. "format",
  9843. "formatter",
  9844. "lint",
  9845. "linter",
  9846. "php"
  9847. ],
  9848. "support": {
  9849. "issues": "https://github.com/laravel/pint/issues",
  9850. "source": "https://github.com/laravel/pint"
  9851. },
  9852. "time": "2025-05-08T08:38:12+00:00"
  9853. },
  9854. {
  9855. "name": "laravel/sail",
  9856. "version": "v1.43.1",
  9857. "source": {
  9858. "type": "git",
  9859. "url": "https://github.com/laravel/sail.git",
  9860. "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72"
  9861. },
  9862. "dist": {
  9863. "type": "zip",
  9864. "url": "https://api.github.com/repos/laravel/sail/zipball/3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
  9865. "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
  9866. "shasum": ""
  9867. },
  9868. "require": {
  9869. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  9870. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  9871. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  9872. "php": "^8.0",
  9873. "symfony/console": "^6.0|^7.0",
  9874. "symfony/yaml": "^6.0|^7.0"
  9875. },
  9876. "require-dev": {
  9877. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  9878. "phpstan/phpstan": "^1.10"
  9879. },
  9880. "bin": [
  9881. "bin/sail"
  9882. ],
  9883. "type": "library",
  9884. "extra": {
  9885. "laravel": {
  9886. "providers": [
  9887. "Laravel\\Sail\\SailServiceProvider"
  9888. ]
  9889. }
  9890. },
  9891. "autoload": {
  9892. "psr-4": {
  9893. "Laravel\\Sail\\": "src/"
  9894. }
  9895. },
  9896. "notification-url": "https://packagist.org/downloads/",
  9897. "license": [
  9898. "MIT"
  9899. ],
  9900. "authors": [
  9901. {
  9902. "name": "Taylor Otwell",
  9903. "email": "taylor@laravel.com"
  9904. }
  9905. ],
  9906. "description": "Docker files for running a basic Laravel application.",
  9907. "keywords": [
  9908. "docker",
  9909. "laravel"
  9910. ],
  9911. "support": {
  9912. "issues": "https://github.com/laravel/sail/issues",
  9913. "source": "https://github.com/laravel/sail"
  9914. },
  9915. "time": "2025-05-19T13:19:21+00:00"
  9916. },
  9917. {
  9918. "name": "mockery/mockery",
  9919. "version": "1.6.12",
  9920. "source": {
  9921. "type": "git",
  9922. "url": "https://github.com/mockery/mockery.git",
  9923. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9924. },
  9925. "dist": {
  9926. "type": "zip",
  9927. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9928. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9929. "shasum": ""
  9930. },
  9931. "require": {
  9932. "hamcrest/hamcrest-php": "^2.0.1",
  9933. "lib-pcre": ">=7.0",
  9934. "php": ">=7.3"
  9935. },
  9936. "conflict": {
  9937. "phpunit/phpunit": "<8.0"
  9938. },
  9939. "require-dev": {
  9940. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9941. "symplify/easy-coding-standard": "^12.1.14"
  9942. },
  9943. "type": "library",
  9944. "autoload": {
  9945. "files": [
  9946. "library/helpers.php",
  9947. "library/Mockery.php"
  9948. ],
  9949. "psr-4": {
  9950. "Mockery\\": "library/Mockery"
  9951. }
  9952. },
  9953. "notification-url": "https://packagist.org/downloads/",
  9954. "license": [
  9955. "BSD-3-Clause"
  9956. ],
  9957. "authors": [
  9958. {
  9959. "name": "Pádraic Brady",
  9960. "email": "padraic.brady@gmail.com",
  9961. "homepage": "https://github.com/padraic",
  9962. "role": "Author"
  9963. },
  9964. {
  9965. "name": "Dave Marshall",
  9966. "email": "dave.marshall@atstsolutions.co.uk",
  9967. "homepage": "https://davedevelopment.co.uk",
  9968. "role": "Developer"
  9969. },
  9970. {
  9971. "name": "Nathanael Esayeas",
  9972. "email": "nathanael.esayeas@protonmail.com",
  9973. "homepage": "https://github.com/ghostwriter",
  9974. "role": "Lead Developer"
  9975. }
  9976. ],
  9977. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9978. "homepage": "https://github.com/mockery/mockery",
  9979. "keywords": [
  9980. "BDD",
  9981. "TDD",
  9982. "library",
  9983. "mock",
  9984. "mock objects",
  9985. "mockery",
  9986. "stub",
  9987. "test",
  9988. "test double",
  9989. "testing"
  9990. ],
  9991. "support": {
  9992. "docs": "https://docs.mockery.io/",
  9993. "issues": "https://github.com/mockery/mockery/issues",
  9994. "rss": "https://github.com/mockery/mockery/releases.atom",
  9995. "security": "https://github.com/mockery/mockery/security/advisories",
  9996. "source": "https://github.com/mockery/mockery"
  9997. },
  9998. "time": "2024-05-16T03:13:13+00:00"
  9999. },
  10000. {
  10001. "name": "myclabs/deep-copy",
  10002. "version": "1.13.1",
  10003. "source": {
  10004. "type": "git",
  10005. "url": "https://github.com/myclabs/DeepCopy.git",
  10006. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
  10007. },
  10008. "dist": {
  10009. "type": "zip",
  10010. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
  10011. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
  10012. "shasum": ""
  10013. },
  10014. "require": {
  10015. "php": "^7.1 || ^8.0"
  10016. },
  10017. "conflict": {
  10018. "doctrine/collections": "<1.6.8",
  10019. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10020. },
  10021. "require-dev": {
  10022. "doctrine/collections": "^1.6.8",
  10023. "doctrine/common": "^2.13.3 || ^3.2.2",
  10024. "phpspec/prophecy": "^1.10",
  10025. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10026. },
  10027. "type": "library",
  10028. "autoload": {
  10029. "files": [
  10030. "src/DeepCopy/deep_copy.php"
  10031. ],
  10032. "psr-4": {
  10033. "DeepCopy\\": "src/DeepCopy/"
  10034. }
  10035. },
  10036. "notification-url": "https://packagist.org/downloads/",
  10037. "license": [
  10038. "MIT"
  10039. ],
  10040. "description": "Create deep copies (clones) of your objects",
  10041. "keywords": [
  10042. "clone",
  10043. "copy",
  10044. "duplicate",
  10045. "object",
  10046. "object graph"
  10047. ],
  10048. "support": {
  10049. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10050. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
  10051. },
  10052. "funding": [
  10053. {
  10054. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10055. "type": "tidelift"
  10056. }
  10057. ],
  10058. "time": "2025-04-29T12:36:36+00:00"
  10059. },
  10060. {
  10061. "name": "nunomaduro/collision",
  10062. "version": "v8.8.1",
  10063. "source": {
  10064. "type": "git",
  10065. "url": "https://github.com/nunomaduro/collision.git",
  10066. "reference": "44ccb82e3e21efb5446748d2a3c81a030ac22bd5"
  10067. },
  10068. "dist": {
  10069. "type": "zip",
  10070. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/44ccb82e3e21efb5446748d2a3c81a030ac22bd5",
  10071. "reference": "44ccb82e3e21efb5446748d2a3c81a030ac22bd5",
  10072. "shasum": ""
  10073. },
  10074. "require": {
  10075. "filp/whoops": "^2.18.1",
  10076. "nunomaduro/termwind": "^2.3.1",
  10077. "php": "^8.2.0",
  10078. "symfony/console": "^7.3.0"
  10079. },
  10080. "conflict": {
  10081. "laravel/framework": "<11.44.2 || >=13.0.0",
  10082. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  10083. },
  10084. "require-dev": {
  10085. "brianium/paratest": "^7.8.3",
  10086. "larastan/larastan": "^3.4.2",
  10087. "laravel/framework": "^11.44.2 || ^12.18",
  10088. "laravel/pint": "^1.22.1",
  10089. "laravel/sail": "^1.43.1",
  10090. "laravel/sanctum": "^4.1.1",
  10091. "laravel/tinker": "^2.10.1",
  10092. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  10093. "pestphp/pest": "^3.8.2",
  10094. "sebastian/environment": "^7.2.1 || ^8.0"
  10095. },
  10096. "type": "library",
  10097. "extra": {
  10098. "laravel": {
  10099. "providers": [
  10100. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10101. ]
  10102. },
  10103. "branch-alias": {
  10104. "dev-8.x": "8.x-dev"
  10105. }
  10106. },
  10107. "autoload": {
  10108. "files": [
  10109. "./src/Adapters/Phpunit/Autoload.php"
  10110. ],
  10111. "psr-4": {
  10112. "NunoMaduro\\Collision\\": "src/"
  10113. }
  10114. },
  10115. "notification-url": "https://packagist.org/downloads/",
  10116. "license": [
  10117. "MIT"
  10118. ],
  10119. "authors": [
  10120. {
  10121. "name": "Nuno Maduro",
  10122. "email": "enunomaduro@gmail.com"
  10123. }
  10124. ],
  10125. "description": "Cli error handling for console/command-line PHP applications.",
  10126. "keywords": [
  10127. "artisan",
  10128. "cli",
  10129. "command-line",
  10130. "console",
  10131. "dev",
  10132. "error",
  10133. "handling",
  10134. "laravel",
  10135. "laravel-zero",
  10136. "php",
  10137. "symfony"
  10138. ],
  10139. "support": {
  10140. "issues": "https://github.com/nunomaduro/collision/issues",
  10141. "source": "https://github.com/nunomaduro/collision"
  10142. },
  10143. "funding": [
  10144. {
  10145. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10146. "type": "custom"
  10147. },
  10148. {
  10149. "url": "https://github.com/nunomaduro",
  10150. "type": "github"
  10151. },
  10152. {
  10153. "url": "https://www.patreon.com/nunomaduro",
  10154. "type": "patreon"
  10155. }
  10156. ],
  10157. "time": "2025-06-11T01:04:21+00:00"
  10158. },
  10159. {
  10160. "name": "pestphp/pest",
  10161. "version": "v3.8.2",
  10162. "source": {
  10163. "type": "git",
  10164. "url": "https://github.com/pestphp/pest.git",
  10165. "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d"
  10166. },
  10167. "dist": {
  10168. "type": "zip",
  10169. "url": "https://api.github.com/repos/pestphp/pest/zipball/c6244a8712968dbac88eb998e7ff3b5caa556b0d",
  10170. "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d",
  10171. "shasum": ""
  10172. },
  10173. "require": {
  10174. "brianium/paratest": "^7.8.3",
  10175. "nunomaduro/collision": "^8.8.0",
  10176. "nunomaduro/termwind": "^2.3.0",
  10177. "pestphp/pest-plugin": "^3.0.0",
  10178. "pestphp/pest-plugin-arch": "^3.1.0",
  10179. "pestphp/pest-plugin-mutate": "^3.0.5",
  10180. "php": "^8.2.0",
  10181. "phpunit/phpunit": "^11.5.15"
  10182. },
  10183. "conflict": {
  10184. "filp/whoops": "<2.16.0",
  10185. "phpunit/phpunit": ">11.5.15",
  10186. "sebastian/exporter": "<6.0.0",
  10187. "webmozart/assert": "<1.11.0"
  10188. },
  10189. "require-dev": {
  10190. "pestphp/pest-dev-tools": "^3.4.0",
  10191. "pestphp/pest-plugin-type-coverage": "^3.5.0",
  10192. "symfony/process": "^7.2.5"
  10193. },
  10194. "bin": [
  10195. "bin/pest"
  10196. ],
  10197. "type": "library",
  10198. "extra": {
  10199. "pest": {
  10200. "plugins": [
  10201. "Pest\\Mutate\\Plugins\\Mutate",
  10202. "Pest\\Plugins\\Configuration",
  10203. "Pest\\Plugins\\Bail",
  10204. "Pest\\Plugins\\Cache",
  10205. "Pest\\Plugins\\Coverage",
  10206. "Pest\\Plugins\\Init",
  10207. "Pest\\Plugins\\Environment",
  10208. "Pest\\Plugins\\Help",
  10209. "Pest\\Plugins\\Memory",
  10210. "Pest\\Plugins\\Only",
  10211. "Pest\\Plugins\\Printer",
  10212. "Pest\\Plugins\\ProcessIsolation",
  10213. "Pest\\Plugins\\Profile",
  10214. "Pest\\Plugins\\Retry",
  10215. "Pest\\Plugins\\Snapshot",
  10216. "Pest\\Plugins\\Verbose",
  10217. "Pest\\Plugins\\Version",
  10218. "Pest\\Plugins\\Parallel"
  10219. ]
  10220. },
  10221. "phpstan": {
  10222. "includes": [
  10223. "extension.neon"
  10224. ]
  10225. }
  10226. },
  10227. "autoload": {
  10228. "files": [
  10229. "src/Functions.php",
  10230. "src/Pest.php"
  10231. ],
  10232. "psr-4": {
  10233. "Pest\\": "src/"
  10234. }
  10235. },
  10236. "notification-url": "https://packagist.org/downloads/",
  10237. "license": [
  10238. "MIT"
  10239. ],
  10240. "authors": [
  10241. {
  10242. "name": "Nuno Maduro",
  10243. "email": "enunomaduro@gmail.com"
  10244. }
  10245. ],
  10246. "description": "The elegant PHP Testing Framework.",
  10247. "keywords": [
  10248. "framework",
  10249. "pest",
  10250. "php",
  10251. "test",
  10252. "testing",
  10253. "unit"
  10254. ],
  10255. "support": {
  10256. "issues": "https://github.com/pestphp/pest/issues",
  10257. "source": "https://github.com/pestphp/pest/tree/v3.8.2"
  10258. },
  10259. "funding": [
  10260. {
  10261. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10262. "type": "custom"
  10263. },
  10264. {
  10265. "url": "https://github.com/nunomaduro",
  10266. "type": "github"
  10267. }
  10268. ],
  10269. "time": "2025-04-17T10:53:02+00:00"
  10270. },
  10271. {
  10272. "name": "pestphp/pest-plugin",
  10273. "version": "v3.0.0",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/pestphp/pest-plugin.git",
  10277. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10282. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "composer-plugin-api": "^2.0.0",
  10287. "composer-runtime-api": "^2.2.2",
  10288. "php": "^8.2"
  10289. },
  10290. "conflict": {
  10291. "pestphp/pest": "<3.0.0"
  10292. },
  10293. "require-dev": {
  10294. "composer/composer": "^2.7.9",
  10295. "pestphp/pest": "^3.0.0",
  10296. "pestphp/pest-dev-tools": "^3.0.0"
  10297. },
  10298. "type": "composer-plugin",
  10299. "extra": {
  10300. "class": "Pest\\Plugin\\Manager"
  10301. },
  10302. "autoload": {
  10303. "psr-4": {
  10304. "Pest\\Plugin\\": "src/"
  10305. }
  10306. },
  10307. "notification-url": "https://packagist.org/downloads/",
  10308. "license": [
  10309. "MIT"
  10310. ],
  10311. "description": "The Pest plugin manager",
  10312. "keywords": [
  10313. "framework",
  10314. "manager",
  10315. "pest",
  10316. "php",
  10317. "plugin",
  10318. "test",
  10319. "testing",
  10320. "unit"
  10321. ],
  10322. "support": {
  10323. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10324. },
  10325. "funding": [
  10326. {
  10327. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10328. "type": "custom"
  10329. },
  10330. {
  10331. "url": "https://github.com/nunomaduro",
  10332. "type": "github"
  10333. },
  10334. {
  10335. "url": "https://www.patreon.com/nunomaduro",
  10336. "type": "patreon"
  10337. }
  10338. ],
  10339. "time": "2024-09-08T23:21:41+00:00"
  10340. },
  10341. {
  10342. "name": "pestphp/pest-plugin-arch",
  10343. "version": "v3.1.1",
  10344. "source": {
  10345. "type": "git",
  10346. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10347. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa"
  10348. },
  10349. "dist": {
  10350. "type": "zip",
  10351. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10352. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10353. "shasum": ""
  10354. },
  10355. "require": {
  10356. "pestphp/pest-plugin": "^3.0.0",
  10357. "php": "^8.2",
  10358. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10359. },
  10360. "require-dev": {
  10361. "pestphp/pest": "^3.8.1",
  10362. "pestphp/pest-dev-tools": "^3.4.0"
  10363. },
  10364. "type": "library",
  10365. "extra": {
  10366. "pest": {
  10367. "plugins": [
  10368. "Pest\\Arch\\Plugin"
  10369. ]
  10370. }
  10371. },
  10372. "autoload": {
  10373. "files": [
  10374. "src/Autoload.php"
  10375. ],
  10376. "psr-4": {
  10377. "Pest\\Arch\\": "src/"
  10378. }
  10379. },
  10380. "notification-url": "https://packagist.org/downloads/",
  10381. "license": [
  10382. "MIT"
  10383. ],
  10384. "description": "The Arch plugin for Pest PHP.",
  10385. "keywords": [
  10386. "arch",
  10387. "architecture",
  10388. "framework",
  10389. "pest",
  10390. "php",
  10391. "plugin",
  10392. "test",
  10393. "testing",
  10394. "unit"
  10395. ],
  10396. "support": {
  10397. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.1.1"
  10398. },
  10399. "funding": [
  10400. {
  10401. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10402. "type": "custom"
  10403. },
  10404. {
  10405. "url": "https://github.com/nunomaduro",
  10406. "type": "github"
  10407. }
  10408. ],
  10409. "time": "2025-04-16T22:59:48+00:00"
  10410. },
  10411. {
  10412. "name": "pestphp/pest-plugin-livewire",
  10413. "version": "v3.0.0",
  10414. "source": {
  10415. "type": "git",
  10416. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10417. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10418. },
  10419. "dist": {
  10420. "type": "zip",
  10421. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10422. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10423. "shasum": ""
  10424. },
  10425. "require": {
  10426. "livewire/livewire": "^3.5.6",
  10427. "pestphp/pest": "^3.0.0",
  10428. "php": "^8.1"
  10429. },
  10430. "require-dev": {
  10431. "orchestra/testbench": "^9.4.0",
  10432. "pestphp/pest-dev-tools": "^3.0.0"
  10433. },
  10434. "type": "library",
  10435. "autoload": {
  10436. "files": [
  10437. "src/Autoload.php"
  10438. ],
  10439. "psr-4": {
  10440. "Pest\\Livewire\\": "src/"
  10441. }
  10442. },
  10443. "notification-url": "https://packagist.org/downloads/",
  10444. "license": [
  10445. "MIT"
  10446. ],
  10447. "description": "The Pest Livewire Plugin",
  10448. "keywords": [
  10449. "framework",
  10450. "livewire",
  10451. "pest",
  10452. "php",
  10453. "plugin",
  10454. "test",
  10455. "testing",
  10456. "unit"
  10457. ],
  10458. "support": {
  10459. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10460. },
  10461. "funding": [
  10462. {
  10463. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10464. "type": "custom"
  10465. },
  10466. {
  10467. "url": "https://github.com/nunomaduro",
  10468. "type": "github"
  10469. },
  10470. {
  10471. "url": "https://www.patreon.com/nunomaduro",
  10472. "type": "patreon"
  10473. }
  10474. ],
  10475. "time": "2024-09-09T00:05:59+00:00"
  10476. },
  10477. {
  10478. "name": "pestphp/pest-plugin-mutate",
  10479. "version": "v3.0.5",
  10480. "source": {
  10481. "type": "git",
  10482. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10483. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10484. },
  10485. "dist": {
  10486. "type": "zip",
  10487. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10488. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10489. "shasum": ""
  10490. },
  10491. "require": {
  10492. "nikic/php-parser": "^5.2.0",
  10493. "pestphp/pest-plugin": "^3.0.0",
  10494. "php": "^8.2",
  10495. "psr/simple-cache": "^3.0.0"
  10496. },
  10497. "require-dev": {
  10498. "pestphp/pest": "^3.0.8",
  10499. "pestphp/pest-dev-tools": "^3.0.0",
  10500. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10501. },
  10502. "type": "library",
  10503. "autoload": {
  10504. "psr-4": {
  10505. "Pest\\Mutate\\": "src/"
  10506. }
  10507. },
  10508. "notification-url": "https://packagist.org/downloads/",
  10509. "license": [
  10510. "MIT"
  10511. ],
  10512. "authors": [
  10513. {
  10514. "name": "Sandro Gehri",
  10515. "email": "sandrogehri@gmail.com"
  10516. }
  10517. ],
  10518. "description": "Mutates your code to find untested cases",
  10519. "keywords": [
  10520. "framework",
  10521. "mutate",
  10522. "mutation",
  10523. "pest",
  10524. "php",
  10525. "plugin",
  10526. "test",
  10527. "testing",
  10528. "unit"
  10529. ],
  10530. "support": {
  10531. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10532. },
  10533. "funding": [
  10534. {
  10535. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10536. "type": "custom"
  10537. },
  10538. {
  10539. "url": "https://github.com/gehrisandro",
  10540. "type": "github"
  10541. },
  10542. {
  10543. "url": "https://github.com/nunomaduro",
  10544. "type": "github"
  10545. }
  10546. ],
  10547. "time": "2024-09-22T07:54:40+00:00"
  10548. },
  10549. {
  10550. "name": "phar-io/manifest",
  10551. "version": "2.0.4",
  10552. "source": {
  10553. "type": "git",
  10554. "url": "https://github.com/phar-io/manifest.git",
  10555. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10556. },
  10557. "dist": {
  10558. "type": "zip",
  10559. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10560. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10561. "shasum": ""
  10562. },
  10563. "require": {
  10564. "ext-dom": "*",
  10565. "ext-libxml": "*",
  10566. "ext-phar": "*",
  10567. "ext-xmlwriter": "*",
  10568. "phar-io/version": "^3.0.1",
  10569. "php": "^7.2 || ^8.0"
  10570. },
  10571. "type": "library",
  10572. "extra": {
  10573. "branch-alias": {
  10574. "dev-master": "2.0.x-dev"
  10575. }
  10576. },
  10577. "autoload": {
  10578. "classmap": [
  10579. "src/"
  10580. ]
  10581. },
  10582. "notification-url": "https://packagist.org/downloads/",
  10583. "license": [
  10584. "BSD-3-Clause"
  10585. ],
  10586. "authors": [
  10587. {
  10588. "name": "Arne Blankerts",
  10589. "email": "arne@blankerts.de",
  10590. "role": "Developer"
  10591. },
  10592. {
  10593. "name": "Sebastian Heuer",
  10594. "email": "sebastian@phpeople.de",
  10595. "role": "Developer"
  10596. },
  10597. {
  10598. "name": "Sebastian Bergmann",
  10599. "email": "sebastian@phpunit.de",
  10600. "role": "Developer"
  10601. }
  10602. ],
  10603. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10604. "support": {
  10605. "issues": "https://github.com/phar-io/manifest/issues",
  10606. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10607. },
  10608. "funding": [
  10609. {
  10610. "url": "https://github.com/theseer",
  10611. "type": "github"
  10612. }
  10613. ],
  10614. "time": "2024-03-03T12:33:53+00:00"
  10615. },
  10616. {
  10617. "name": "phar-io/version",
  10618. "version": "3.2.1",
  10619. "source": {
  10620. "type": "git",
  10621. "url": "https://github.com/phar-io/version.git",
  10622. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10623. },
  10624. "dist": {
  10625. "type": "zip",
  10626. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10627. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10628. "shasum": ""
  10629. },
  10630. "require": {
  10631. "php": "^7.2 || ^8.0"
  10632. },
  10633. "type": "library",
  10634. "autoload": {
  10635. "classmap": [
  10636. "src/"
  10637. ]
  10638. },
  10639. "notification-url": "https://packagist.org/downloads/",
  10640. "license": [
  10641. "BSD-3-Clause"
  10642. ],
  10643. "authors": [
  10644. {
  10645. "name": "Arne Blankerts",
  10646. "email": "arne@blankerts.de",
  10647. "role": "Developer"
  10648. },
  10649. {
  10650. "name": "Sebastian Heuer",
  10651. "email": "sebastian@phpeople.de",
  10652. "role": "Developer"
  10653. },
  10654. {
  10655. "name": "Sebastian Bergmann",
  10656. "email": "sebastian@phpunit.de",
  10657. "role": "Developer"
  10658. }
  10659. ],
  10660. "description": "Library for handling version information and constraints",
  10661. "support": {
  10662. "issues": "https://github.com/phar-io/version/issues",
  10663. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10664. },
  10665. "time": "2022-02-21T01:04:05+00:00"
  10666. },
  10667. {
  10668. "name": "php-debugbar/php-debugbar",
  10669. "version": "v2.1.6",
  10670. "source": {
  10671. "type": "git",
  10672. "url": "https://github.com/php-debugbar/php-debugbar.git",
  10673. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
  10674. },
  10675. "dist": {
  10676. "type": "zip",
  10677. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
  10678. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
  10679. "shasum": ""
  10680. },
  10681. "require": {
  10682. "php": "^8",
  10683. "psr/log": "^1|^2|^3",
  10684. "symfony/var-dumper": "^4|^5|^6|^7"
  10685. },
  10686. "require-dev": {
  10687. "dbrekelmans/bdi": "^1",
  10688. "phpunit/phpunit": "^8|^9",
  10689. "symfony/panther": "^1|^2.1",
  10690. "twig/twig": "^1.38|^2.7|^3.0"
  10691. },
  10692. "suggest": {
  10693. "kriswallsmith/assetic": "The best way to manage assets",
  10694. "monolog/monolog": "Log using Monolog",
  10695. "predis/predis": "Redis storage"
  10696. },
  10697. "type": "library",
  10698. "extra": {
  10699. "branch-alias": {
  10700. "dev-master": "2.0-dev"
  10701. }
  10702. },
  10703. "autoload": {
  10704. "psr-4": {
  10705. "DebugBar\\": "src/DebugBar/"
  10706. }
  10707. },
  10708. "notification-url": "https://packagist.org/downloads/",
  10709. "license": [
  10710. "MIT"
  10711. ],
  10712. "authors": [
  10713. {
  10714. "name": "Maxime Bouroumeau-Fuseau",
  10715. "email": "maxime.bouroumeau@gmail.com",
  10716. "homepage": "http://maximebf.com"
  10717. },
  10718. {
  10719. "name": "Barry vd. Heuvel",
  10720. "email": "barryvdh@gmail.com"
  10721. }
  10722. ],
  10723. "description": "Debug bar in the browser for php application",
  10724. "homepage": "https://github.com/php-debugbar/php-debugbar",
  10725. "keywords": [
  10726. "debug",
  10727. "debug bar",
  10728. "debugbar",
  10729. "dev"
  10730. ],
  10731. "support": {
  10732. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  10733. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
  10734. },
  10735. "time": "2025-02-21T17:47:03+00:00"
  10736. },
  10737. {
  10738. "name": "php-di/invoker",
  10739. "version": "2.3.6",
  10740. "source": {
  10741. "type": "git",
  10742. "url": "https://github.com/PHP-DI/Invoker.git",
  10743. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576"
  10744. },
  10745. "dist": {
  10746. "type": "zip",
  10747. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/59f15608528d8a8838d69b422a919fd6b16aa576",
  10748. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576",
  10749. "shasum": ""
  10750. },
  10751. "require": {
  10752. "php": ">=7.3",
  10753. "psr/container": "^1.0|^2.0"
  10754. },
  10755. "require-dev": {
  10756. "athletic/athletic": "~0.1.8",
  10757. "mnapoli/hard-mode": "~0.3.0",
  10758. "phpunit/phpunit": "^9.0"
  10759. },
  10760. "type": "library",
  10761. "autoload": {
  10762. "psr-4": {
  10763. "Invoker\\": "src/"
  10764. }
  10765. },
  10766. "notification-url": "https://packagist.org/downloads/",
  10767. "license": [
  10768. "MIT"
  10769. ],
  10770. "description": "Generic and extensible callable invoker",
  10771. "homepage": "https://github.com/PHP-DI/Invoker",
  10772. "keywords": [
  10773. "callable",
  10774. "dependency",
  10775. "dependency-injection",
  10776. "injection",
  10777. "invoke",
  10778. "invoker"
  10779. ],
  10780. "support": {
  10781. "issues": "https://github.com/PHP-DI/Invoker/issues",
  10782. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.6"
  10783. },
  10784. "funding": [
  10785. {
  10786. "url": "https://github.com/mnapoli",
  10787. "type": "github"
  10788. }
  10789. ],
  10790. "time": "2025-01-17T12:49:27+00:00"
  10791. },
  10792. {
  10793. "name": "php-di/php-di",
  10794. "version": "7.0.11",
  10795. "source": {
  10796. "type": "git",
  10797. "url": "https://github.com/PHP-DI/PHP-DI.git",
  10798. "reference": "32f111a6d214564520a57831d397263e8946c1d2"
  10799. },
  10800. "dist": {
  10801. "type": "zip",
  10802. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/32f111a6d214564520a57831d397263e8946c1d2",
  10803. "reference": "32f111a6d214564520a57831d397263e8946c1d2",
  10804. "shasum": ""
  10805. },
  10806. "require": {
  10807. "laravel/serializable-closure": "^1.0 || ^2.0",
  10808. "php": ">=8.0",
  10809. "php-di/invoker": "^2.0",
  10810. "psr/container": "^1.1 || ^2.0"
  10811. },
  10812. "provide": {
  10813. "psr/container-implementation": "^1.0"
  10814. },
  10815. "require-dev": {
  10816. "friendsofphp/php-cs-fixer": "^3",
  10817. "friendsofphp/proxy-manager-lts": "^1",
  10818. "mnapoli/phpunit-easymock": "^1.3",
  10819. "phpunit/phpunit": "^9.6 || ^10 || ^11",
  10820. "vimeo/psalm": "^5|^6"
  10821. },
  10822. "suggest": {
  10823. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  10824. },
  10825. "type": "library",
  10826. "autoload": {
  10827. "files": [
  10828. "src/functions.php"
  10829. ],
  10830. "psr-4": {
  10831. "DI\\": "src/"
  10832. }
  10833. },
  10834. "notification-url": "https://packagist.org/downloads/",
  10835. "license": [
  10836. "MIT"
  10837. ],
  10838. "description": "The dependency injection container for humans",
  10839. "homepage": "https://php-di.org/",
  10840. "keywords": [
  10841. "PSR-11",
  10842. "container",
  10843. "container-interop",
  10844. "dependency injection",
  10845. "di",
  10846. "ioc",
  10847. "psr11"
  10848. ],
  10849. "support": {
  10850. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10851. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.11"
  10852. },
  10853. "funding": [
  10854. {
  10855. "url": "https://github.com/mnapoli",
  10856. "type": "github"
  10857. },
  10858. {
  10859. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10860. "type": "tidelift"
  10861. }
  10862. ],
  10863. "time": "2025-06-03T07:45:57+00:00"
  10864. },
  10865. {
  10866. "name": "phpdocumentor/reflection-common",
  10867. "version": "2.2.0",
  10868. "source": {
  10869. "type": "git",
  10870. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10871. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10872. },
  10873. "dist": {
  10874. "type": "zip",
  10875. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10876. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10877. "shasum": ""
  10878. },
  10879. "require": {
  10880. "php": "^7.2 || ^8.0"
  10881. },
  10882. "type": "library",
  10883. "extra": {
  10884. "branch-alias": {
  10885. "dev-2.x": "2.x-dev"
  10886. }
  10887. },
  10888. "autoload": {
  10889. "psr-4": {
  10890. "phpDocumentor\\Reflection\\": "src/"
  10891. }
  10892. },
  10893. "notification-url": "https://packagist.org/downloads/",
  10894. "license": [
  10895. "MIT"
  10896. ],
  10897. "authors": [
  10898. {
  10899. "name": "Jaap van Otterdijk",
  10900. "email": "opensource@ijaap.nl"
  10901. }
  10902. ],
  10903. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10904. "homepage": "http://www.phpdoc.org",
  10905. "keywords": [
  10906. "FQSEN",
  10907. "phpDocumentor",
  10908. "phpdoc",
  10909. "reflection",
  10910. "static analysis"
  10911. ],
  10912. "support": {
  10913. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10914. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10915. },
  10916. "time": "2020-06-27T09:03:43+00:00"
  10917. },
  10918. {
  10919. "name": "phpdocumentor/reflection-docblock",
  10920. "version": "5.6.2",
  10921. "source": {
  10922. "type": "git",
  10923. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10924. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  10925. },
  10926. "dist": {
  10927. "type": "zip",
  10928. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  10929. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  10930. "shasum": ""
  10931. },
  10932. "require": {
  10933. "doctrine/deprecations": "^1.1",
  10934. "ext-filter": "*",
  10935. "php": "^7.4 || ^8.0",
  10936. "phpdocumentor/reflection-common": "^2.2",
  10937. "phpdocumentor/type-resolver": "^1.7",
  10938. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10939. "webmozart/assert": "^1.9.1"
  10940. },
  10941. "require-dev": {
  10942. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10943. "phpstan/extension-installer": "^1.1",
  10944. "phpstan/phpstan": "^1.8",
  10945. "phpstan/phpstan-mockery": "^1.1",
  10946. "phpstan/phpstan-webmozart-assert": "^1.2",
  10947. "phpunit/phpunit": "^9.5",
  10948. "psalm/phar": "^5.26"
  10949. },
  10950. "type": "library",
  10951. "extra": {
  10952. "branch-alias": {
  10953. "dev-master": "5.x-dev"
  10954. }
  10955. },
  10956. "autoload": {
  10957. "psr-4": {
  10958. "phpDocumentor\\Reflection\\": "src"
  10959. }
  10960. },
  10961. "notification-url": "https://packagist.org/downloads/",
  10962. "license": [
  10963. "MIT"
  10964. ],
  10965. "authors": [
  10966. {
  10967. "name": "Mike van Riel",
  10968. "email": "me@mikevanriel.com"
  10969. },
  10970. {
  10971. "name": "Jaap van Otterdijk",
  10972. "email": "opensource@ijaap.nl"
  10973. }
  10974. ],
  10975. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10976. "support": {
  10977. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10978. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  10979. },
  10980. "time": "2025-04-13T19:20:35+00:00"
  10981. },
  10982. {
  10983. "name": "phpdocumentor/type-resolver",
  10984. "version": "1.10.0",
  10985. "source": {
  10986. "type": "git",
  10987. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10988. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10989. },
  10990. "dist": {
  10991. "type": "zip",
  10992. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10993. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10994. "shasum": ""
  10995. },
  10996. "require": {
  10997. "doctrine/deprecations": "^1.0",
  10998. "php": "^7.3 || ^8.0",
  10999. "phpdocumentor/reflection-common": "^2.0",
  11000. "phpstan/phpdoc-parser": "^1.18|^2.0"
  11001. },
  11002. "require-dev": {
  11003. "ext-tokenizer": "*",
  11004. "phpbench/phpbench": "^1.2",
  11005. "phpstan/extension-installer": "^1.1",
  11006. "phpstan/phpstan": "^1.8",
  11007. "phpstan/phpstan-phpunit": "^1.1",
  11008. "phpunit/phpunit": "^9.5",
  11009. "rector/rector": "^0.13.9",
  11010. "vimeo/psalm": "^4.25"
  11011. },
  11012. "type": "library",
  11013. "extra": {
  11014. "branch-alias": {
  11015. "dev-1.x": "1.x-dev"
  11016. }
  11017. },
  11018. "autoload": {
  11019. "psr-4": {
  11020. "phpDocumentor\\Reflection\\": "src"
  11021. }
  11022. },
  11023. "notification-url": "https://packagist.org/downloads/",
  11024. "license": [
  11025. "MIT"
  11026. ],
  11027. "authors": [
  11028. {
  11029. "name": "Mike van Riel",
  11030. "email": "me@mikevanriel.com"
  11031. }
  11032. ],
  11033. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  11034. "support": {
  11035. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  11036. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  11037. },
  11038. "time": "2024-11-09T15:12:26+00:00"
  11039. },
  11040. {
  11041. "name": "phpstan/phpdoc-parser",
  11042. "version": "2.1.0",
  11043. "source": {
  11044. "type": "git",
  11045. "url": "https://github.com/phpstan/phpdoc-parser.git",
  11046. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68"
  11047. },
  11048. "dist": {
  11049. "type": "zip",
  11050. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  11051. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  11052. "shasum": ""
  11053. },
  11054. "require": {
  11055. "php": "^7.4 || ^8.0"
  11056. },
  11057. "require-dev": {
  11058. "doctrine/annotations": "^2.0",
  11059. "nikic/php-parser": "^5.3.0",
  11060. "php-parallel-lint/php-parallel-lint": "^1.2",
  11061. "phpstan/extension-installer": "^1.0",
  11062. "phpstan/phpstan": "^2.0",
  11063. "phpstan/phpstan-phpunit": "^2.0",
  11064. "phpstan/phpstan-strict-rules": "^2.0",
  11065. "phpunit/phpunit": "^9.6",
  11066. "symfony/process": "^5.2"
  11067. },
  11068. "type": "library",
  11069. "autoload": {
  11070. "psr-4": {
  11071. "PHPStan\\PhpDocParser\\": [
  11072. "src/"
  11073. ]
  11074. }
  11075. },
  11076. "notification-url": "https://packagist.org/downloads/",
  11077. "license": [
  11078. "MIT"
  11079. ],
  11080. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  11081. "support": {
  11082. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  11083. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0"
  11084. },
  11085. "time": "2025-02-19T13:28:12+00:00"
  11086. },
  11087. {
  11088. "name": "phpunit/php-code-coverage",
  11089. "version": "11.0.9",
  11090. "source": {
  11091. "type": "git",
  11092. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11093. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  11094. },
  11095. "dist": {
  11096. "type": "zip",
  11097. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11098. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11099. "shasum": ""
  11100. },
  11101. "require": {
  11102. "ext-dom": "*",
  11103. "ext-libxml": "*",
  11104. "ext-xmlwriter": "*",
  11105. "nikic/php-parser": "^5.4.0",
  11106. "php": ">=8.2",
  11107. "phpunit/php-file-iterator": "^5.1.0",
  11108. "phpunit/php-text-template": "^4.0.1",
  11109. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11110. "sebastian/complexity": "^4.0.1",
  11111. "sebastian/environment": "^7.2.0",
  11112. "sebastian/lines-of-code": "^3.0.1",
  11113. "sebastian/version": "^5.0.2",
  11114. "theseer/tokenizer": "^1.2.3"
  11115. },
  11116. "require-dev": {
  11117. "phpunit/phpunit": "^11.5.2"
  11118. },
  11119. "suggest": {
  11120. "ext-pcov": "PHP extension that provides line coverage",
  11121. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11122. },
  11123. "type": "library",
  11124. "extra": {
  11125. "branch-alias": {
  11126. "dev-main": "11.0.x-dev"
  11127. }
  11128. },
  11129. "autoload": {
  11130. "classmap": [
  11131. "src/"
  11132. ]
  11133. },
  11134. "notification-url": "https://packagist.org/downloads/",
  11135. "license": [
  11136. "BSD-3-Clause"
  11137. ],
  11138. "authors": [
  11139. {
  11140. "name": "Sebastian Bergmann",
  11141. "email": "sebastian@phpunit.de",
  11142. "role": "lead"
  11143. }
  11144. ],
  11145. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11146. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11147. "keywords": [
  11148. "coverage",
  11149. "testing",
  11150. "xunit"
  11151. ],
  11152. "support": {
  11153. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11154. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11155. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  11156. },
  11157. "funding": [
  11158. {
  11159. "url": "https://github.com/sebastianbergmann",
  11160. "type": "github"
  11161. }
  11162. ],
  11163. "time": "2025-02-25T13:26:39+00:00"
  11164. },
  11165. {
  11166. "name": "phpunit/php-file-iterator",
  11167. "version": "5.1.0",
  11168. "source": {
  11169. "type": "git",
  11170. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11171. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11172. },
  11173. "dist": {
  11174. "type": "zip",
  11175. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11176. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11177. "shasum": ""
  11178. },
  11179. "require": {
  11180. "php": ">=8.2"
  11181. },
  11182. "require-dev": {
  11183. "phpunit/phpunit": "^11.0"
  11184. },
  11185. "type": "library",
  11186. "extra": {
  11187. "branch-alias": {
  11188. "dev-main": "5.0-dev"
  11189. }
  11190. },
  11191. "autoload": {
  11192. "classmap": [
  11193. "src/"
  11194. ]
  11195. },
  11196. "notification-url": "https://packagist.org/downloads/",
  11197. "license": [
  11198. "BSD-3-Clause"
  11199. ],
  11200. "authors": [
  11201. {
  11202. "name": "Sebastian Bergmann",
  11203. "email": "sebastian@phpunit.de",
  11204. "role": "lead"
  11205. }
  11206. ],
  11207. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11208. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11209. "keywords": [
  11210. "filesystem",
  11211. "iterator"
  11212. ],
  11213. "support": {
  11214. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11215. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11216. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11217. },
  11218. "funding": [
  11219. {
  11220. "url": "https://github.com/sebastianbergmann",
  11221. "type": "github"
  11222. }
  11223. ],
  11224. "time": "2024-08-27T05:02:59+00:00"
  11225. },
  11226. {
  11227. "name": "phpunit/php-invoker",
  11228. "version": "5.0.1",
  11229. "source": {
  11230. "type": "git",
  11231. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11232. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11233. },
  11234. "dist": {
  11235. "type": "zip",
  11236. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11237. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11238. "shasum": ""
  11239. },
  11240. "require": {
  11241. "php": ">=8.2"
  11242. },
  11243. "require-dev": {
  11244. "ext-pcntl": "*",
  11245. "phpunit/phpunit": "^11.0"
  11246. },
  11247. "suggest": {
  11248. "ext-pcntl": "*"
  11249. },
  11250. "type": "library",
  11251. "extra": {
  11252. "branch-alias": {
  11253. "dev-main": "5.0-dev"
  11254. }
  11255. },
  11256. "autoload": {
  11257. "classmap": [
  11258. "src/"
  11259. ]
  11260. },
  11261. "notification-url": "https://packagist.org/downloads/",
  11262. "license": [
  11263. "BSD-3-Clause"
  11264. ],
  11265. "authors": [
  11266. {
  11267. "name": "Sebastian Bergmann",
  11268. "email": "sebastian@phpunit.de",
  11269. "role": "lead"
  11270. }
  11271. ],
  11272. "description": "Invoke callables with a timeout",
  11273. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11274. "keywords": [
  11275. "process"
  11276. ],
  11277. "support": {
  11278. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11279. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11280. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11281. },
  11282. "funding": [
  11283. {
  11284. "url": "https://github.com/sebastianbergmann",
  11285. "type": "github"
  11286. }
  11287. ],
  11288. "time": "2024-07-03T05:07:44+00:00"
  11289. },
  11290. {
  11291. "name": "phpunit/php-text-template",
  11292. "version": "4.0.1",
  11293. "source": {
  11294. "type": "git",
  11295. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11296. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11297. },
  11298. "dist": {
  11299. "type": "zip",
  11300. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11301. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11302. "shasum": ""
  11303. },
  11304. "require": {
  11305. "php": ">=8.2"
  11306. },
  11307. "require-dev": {
  11308. "phpunit/phpunit": "^11.0"
  11309. },
  11310. "type": "library",
  11311. "extra": {
  11312. "branch-alias": {
  11313. "dev-main": "4.0-dev"
  11314. }
  11315. },
  11316. "autoload": {
  11317. "classmap": [
  11318. "src/"
  11319. ]
  11320. },
  11321. "notification-url": "https://packagist.org/downloads/",
  11322. "license": [
  11323. "BSD-3-Clause"
  11324. ],
  11325. "authors": [
  11326. {
  11327. "name": "Sebastian Bergmann",
  11328. "email": "sebastian@phpunit.de",
  11329. "role": "lead"
  11330. }
  11331. ],
  11332. "description": "Simple template engine.",
  11333. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11334. "keywords": [
  11335. "template"
  11336. ],
  11337. "support": {
  11338. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11339. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11340. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11341. },
  11342. "funding": [
  11343. {
  11344. "url": "https://github.com/sebastianbergmann",
  11345. "type": "github"
  11346. }
  11347. ],
  11348. "time": "2024-07-03T05:08:43+00:00"
  11349. },
  11350. {
  11351. "name": "phpunit/php-timer",
  11352. "version": "7.0.1",
  11353. "source": {
  11354. "type": "git",
  11355. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11356. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11357. },
  11358. "dist": {
  11359. "type": "zip",
  11360. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11361. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11362. "shasum": ""
  11363. },
  11364. "require": {
  11365. "php": ">=8.2"
  11366. },
  11367. "require-dev": {
  11368. "phpunit/phpunit": "^11.0"
  11369. },
  11370. "type": "library",
  11371. "extra": {
  11372. "branch-alias": {
  11373. "dev-main": "7.0-dev"
  11374. }
  11375. },
  11376. "autoload": {
  11377. "classmap": [
  11378. "src/"
  11379. ]
  11380. },
  11381. "notification-url": "https://packagist.org/downloads/",
  11382. "license": [
  11383. "BSD-3-Clause"
  11384. ],
  11385. "authors": [
  11386. {
  11387. "name": "Sebastian Bergmann",
  11388. "email": "sebastian@phpunit.de",
  11389. "role": "lead"
  11390. }
  11391. ],
  11392. "description": "Utility class for timing",
  11393. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11394. "keywords": [
  11395. "timer"
  11396. ],
  11397. "support": {
  11398. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11399. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11400. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11401. },
  11402. "funding": [
  11403. {
  11404. "url": "https://github.com/sebastianbergmann",
  11405. "type": "github"
  11406. }
  11407. ],
  11408. "time": "2024-07-03T05:09:35+00:00"
  11409. },
  11410. {
  11411. "name": "phpunit/phpunit",
  11412. "version": "11.5.15",
  11413. "source": {
  11414. "type": "git",
  11415. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11416. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c"
  11417. },
  11418. "dist": {
  11419. "type": "zip",
  11420. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11421. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11422. "shasum": ""
  11423. },
  11424. "require": {
  11425. "ext-dom": "*",
  11426. "ext-json": "*",
  11427. "ext-libxml": "*",
  11428. "ext-mbstring": "*",
  11429. "ext-xml": "*",
  11430. "ext-xmlwriter": "*",
  11431. "myclabs/deep-copy": "^1.13.0",
  11432. "phar-io/manifest": "^2.0.4",
  11433. "phar-io/version": "^3.2.1",
  11434. "php": ">=8.2",
  11435. "phpunit/php-code-coverage": "^11.0.9",
  11436. "phpunit/php-file-iterator": "^5.1.0",
  11437. "phpunit/php-invoker": "^5.0.1",
  11438. "phpunit/php-text-template": "^4.0.1",
  11439. "phpunit/php-timer": "^7.0.1",
  11440. "sebastian/cli-parser": "^3.0.2",
  11441. "sebastian/code-unit": "^3.0.3",
  11442. "sebastian/comparator": "^6.3.1",
  11443. "sebastian/diff": "^6.0.2",
  11444. "sebastian/environment": "^7.2.0",
  11445. "sebastian/exporter": "^6.3.0",
  11446. "sebastian/global-state": "^7.0.2",
  11447. "sebastian/object-enumerator": "^6.0.1",
  11448. "sebastian/type": "^5.1.2",
  11449. "sebastian/version": "^5.0.2",
  11450. "staabm/side-effects-detector": "^1.0.5"
  11451. },
  11452. "suggest": {
  11453. "ext-soap": "To be able to generate mocks based on WSDL files"
  11454. },
  11455. "bin": [
  11456. "phpunit"
  11457. ],
  11458. "type": "library",
  11459. "extra": {
  11460. "branch-alias": {
  11461. "dev-main": "11.5-dev"
  11462. }
  11463. },
  11464. "autoload": {
  11465. "files": [
  11466. "src/Framework/Assert/Functions.php"
  11467. ],
  11468. "classmap": [
  11469. "src/"
  11470. ]
  11471. },
  11472. "notification-url": "https://packagist.org/downloads/",
  11473. "license": [
  11474. "BSD-3-Clause"
  11475. ],
  11476. "authors": [
  11477. {
  11478. "name": "Sebastian Bergmann",
  11479. "email": "sebastian@phpunit.de",
  11480. "role": "lead"
  11481. }
  11482. ],
  11483. "description": "The PHP Unit Testing framework.",
  11484. "homepage": "https://phpunit.de/",
  11485. "keywords": [
  11486. "phpunit",
  11487. "testing",
  11488. "xunit"
  11489. ],
  11490. "support": {
  11491. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11492. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11493. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.15"
  11494. },
  11495. "funding": [
  11496. {
  11497. "url": "https://phpunit.de/sponsors.html",
  11498. "type": "custom"
  11499. },
  11500. {
  11501. "url": "https://github.com/sebastianbergmann",
  11502. "type": "github"
  11503. },
  11504. {
  11505. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11506. "type": "tidelift"
  11507. }
  11508. ],
  11509. "time": "2025-03-23T16:02:11+00:00"
  11510. },
  11511. {
  11512. "name": "sebastian/cli-parser",
  11513. "version": "3.0.2",
  11514. "source": {
  11515. "type": "git",
  11516. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11517. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11518. },
  11519. "dist": {
  11520. "type": "zip",
  11521. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11522. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11523. "shasum": ""
  11524. },
  11525. "require": {
  11526. "php": ">=8.2"
  11527. },
  11528. "require-dev": {
  11529. "phpunit/phpunit": "^11.0"
  11530. },
  11531. "type": "library",
  11532. "extra": {
  11533. "branch-alias": {
  11534. "dev-main": "3.0-dev"
  11535. }
  11536. },
  11537. "autoload": {
  11538. "classmap": [
  11539. "src/"
  11540. ]
  11541. },
  11542. "notification-url": "https://packagist.org/downloads/",
  11543. "license": [
  11544. "BSD-3-Clause"
  11545. ],
  11546. "authors": [
  11547. {
  11548. "name": "Sebastian Bergmann",
  11549. "email": "sebastian@phpunit.de",
  11550. "role": "lead"
  11551. }
  11552. ],
  11553. "description": "Library for parsing CLI options",
  11554. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11555. "support": {
  11556. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11557. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11558. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11559. },
  11560. "funding": [
  11561. {
  11562. "url": "https://github.com/sebastianbergmann",
  11563. "type": "github"
  11564. }
  11565. ],
  11566. "time": "2024-07-03T04:41:36+00:00"
  11567. },
  11568. {
  11569. "name": "sebastian/code-unit",
  11570. "version": "3.0.3",
  11571. "source": {
  11572. "type": "git",
  11573. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11574. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  11575. },
  11576. "dist": {
  11577. "type": "zip",
  11578. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11579. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11580. "shasum": ""
  11581. },
  11582. "require": {
  11583. "php": ">=8.2"
  11584. },
  11585. "require-dev": {
  11586. "phpunit/phpunit": "^11.5"
  11587. },
  11588. "type": "library",
  11589. "extra": {
  11590. "branch-alias": {
  11591. "dev-main": "3.0-dev"
  11592. }
  11593. },
  11594. "autoload": {
  11595. "classmap": [
  11596. "src/"
  11597. ]
  11598. },
  11599. "notification-url": "https://packagist.org/downloads/",
  11600. "license": [
  11601. "BSD-3-Clause"
  11602. ],
  11603. "authors": [
  11604. {
  11605. "name": "Sebastian Bergmann",
  11606. "email": "sebastian@phpunit.de",
  11607. "role": "lead"
  11608. }
  11609. ],
  11610. "description": "Collection of value objects that represent the PHP code units",
  11611. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11612. "support": {
  11613. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11614. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11615. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  11616. },
  11617. "funding": [
  11618. {
  11619. "url": "https://github.com/sebastianbergmann",
  11620. "type": "github"
  11621. }
  11622. ],
  11623. "time": "2025-03-19T07:56:08+00:00"
  11624. },
  11625. {
  11626. "name": "sebastian/code-unit-reverse-lookup",
  11627. "version": "4.0.1",
  11628. "source": {
  11629. "type": "git",
  11630. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11631. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11632. },
  11633. "dist": {
  11634. "type": "zip",
  11635. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11636. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11637. "shasum": ""
  11638. },
  11639. "require": {
  11640. "php": ">=8.2"
  11641. },
  11642. "require-dev": {
  11643. "phpunit/phpunit": "^11.0"
  11644. },
  11645. "type": "library",
  11646. "extra": {
  11647. "branch-alias": {
  11648. "dev-main": "4.0-dev"
  11649. }
  11650. },
  11651. "autoload": {
  11652. "classmap": [
  11653. "src/"
  11654. ]
  11655. },
  11656. "notification-url": "https://packagist.org/downloads/",
  11657. "license": [
  11658. "BSD-3-Clause"
  11659. ],
  11660. "authors": [
  11661. {
  11662. "name": "Sebastian Bergmann",
  11663. "email": "sebastian@phpunit.de"
  11664. }
  11665. ],
  11666. "description": "Looks up which function or method a line of code belongs to",
  11667. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11668. "support": {
  11669. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11670. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11671. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11672. },
  11673. "funding": [
  11674. {
  11675. "url": "https://github.com/sebastianbergmann",
  11676. "type": "github"
  11677. }
  11678. ],
  11679. "time": "2024-07-03T04:45:54+00:00"
  11680. },
  11681. {
  11682. "name": "sebastian/comparator",
  11683. "version": "6.3.1",
  11684. "source": {
  11685. "type": "git",
  11686. "url": "https://github.com/sebastianbergmann/comparator.git",
  11687. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  11688. },
  11689. "dist": {
  11690. "type": "zip",
  11691. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11692. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11693. "shasum": ""
  11694. },
  11695. "require": {
  11696. "ext-dom": "*",
  11697. "ext-mbstring": "*",
  11698. "php": ">=8.2",
  11699. "sebastian/diff": "^6.0",
  11700. "sebastian/exporter": "^6.0"
  11701. },
  11702. "require-dev": {
  11703. "phpunit/phpunit": "^11.4"
  11704. },
  11705. "suggest": {
  11706. "ext-bcmath": "For comparing BcMath\\Number objects"
  11707. },
  11708. "type": "library",
  11709. "extra": {
  11710. "branch-alias": {
  11711. "dev-main": "6.3-dev"
  11712. }
  11713. },
  11714. "autoload": {
  11715. "classmap": [
  11716. "src/"
  11717. ]
  11718. },
  11719. "notification-url": "https://packagist.org/downloads/",
  11720. "license": [
  11721. "BSD-3-Clause"
  11722. ],
  11723. "authors": [
  11724. {
  11725. "name": "Sebastian Bergmann",
  11726. "email": "sebastian@phpunit.de"
  11727. },
  11728. {
  11729. "name": "Jeff Welch",
  11730. "email": "whatthejeff@gmail.com"
  11731. },
  11732. {
  11733. "name": "Volker Dusch",
  11734. "email": "github@wallbash.com"
  11735. },
  11736. {
  11737. "name": "Bernhard Schussek",
  11738. "email": "bschussek@2bepublished.at"
  11739. }
  11740. ],
  11741. "description": "Provides the functionality to compare PHP values for equality",
  11742. "homepage": "https://github.com/sebastianbergmann/comparator",
  11743. "keywords": [
  11744. "comparator",
  11745. "compare",
  11746. "equality"
  11747. ],
  11748. "support": {
  11749. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11750. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11751. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  11752. },
  11753. "funding": [
  11754. {
  11755. "url": "https://github.com/sebastianbergmann",
  11756. "type": "github"
  11757. }
  11758. ],
  11759. "time": "2025-03-07T06:57:01+00:00"
  11760. },
  11761. {
  11762. "name": "sebastian/complexity",
  11763. "version": "4.0.1",
  11764. "source": {
  11765. "type": "git",
  11766. "url": "https://github.com/sebastianbergmann/complexity.git",
  11767. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11768. },
  11769. "dist": {
  11770. "type": "zip",
  11771. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11772. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11773. "shasum": ""
  11774. },
  11775. "require": {
  11776. "nikic/php-parser": "^5.0",
  11777. "php": ">=8.2"
  11778. },
  11779. "require-dev": {
  11780. "phpunit/phpunit": "^11.0"
  11781. },
  11782. "type": "library",
  11783. "extra": {
  11784. "branch-alias": {
  11785. "dev-main": "4.0-dev"
  11786. }
  11787. },
  11788. "autoload": {
  11789. "classmap": [
  11790. "src/"
  11791. ]
  11792. },
  11793. "notification-url": "https://packagist.org/downloads/",
  11794. "license": [
  11795. "BSD-3-Clause"
  11796. ],
  11797. "authors": [
  11798. {
  11799. "name": "Sebastian Bergmann",
  11800. "email": "sebastian@phpunit.de",
  11801. "role": "lead"
  11802. }
  11803. ],
  11804. "description": "Library for calculating the complexity of PHP code units",
  11805. "homepage": "https://github.com/sebastianbergmann/complexity",
  11806. "support": {
  11807. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11808. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11809. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11810. },
  11811. "funding": [
  11812. {
  11813. "url": "https://github.com/sebastianbergmann",
  11814. "type": "github"
  11815. }
  11816. ],
  11817. "time": "2024-07-03T04:49:50+00:00"
  11818. },
  11819. {
  11820. "name": "sebastian/diff",
  11821. "version": "6.0.2",
  11822. "source": {
  11823. "type": "git",
  11824. "url": "https://github.com/sebastianbergmann/diff.git",
  11825. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11826. },
  11827. "dist": {
  11828. "type": "zip",
  11829. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11830. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11831. "shasum": ""
  11832. },
  11833. "require": {
  11834. "php": ">=8.2"
  11835. },
  11836. "require-dev": {
  11837. "phpunit/phpunit": "^11.0",
  11838. "symfony/process": "^4.2 || ^5"
  11839. },
  11840. "type": "library",
  11841. "extra": {
  11842. "branch-alias": {
  11843. "dev-main": "6.0-dev"
  11844. }
  11845. },
  11846. "autoload": {
  11847. "classmap": [
  11848. "src/"
  11849. ]
  11850. },
  11851. "notification-url": "https://packagist.org/downloads/",
  11852. "license": [
  11853. "BSD-3-Clause"
  11854. ],
  11855. "authors": [
  11856. {
  11857. "name": "Sebastian Bergmann",
  11858. "email": "sebastian@phpunit.de"
  11859. },
  11860. {
  11861. "name": "Kore Nordmann",
  11862. "email": "mail@kore-nordmann.de"
  11863. }
  11864. ],
  11865. "description": "Diff implementation",
  11866. "homepage": "https://github.com/sebastianbergmann/diff",
  11867. "keywords": [
  11868. "diff",
  11869. "udiff",
  11870. "unidiff",
  11871. "unified diff"
  11872. ],
  11873. "support": {
  11874. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11875. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11876. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11877. },
  11878. "funding": [
  11879. {
  11880. "url": "https://github.com/sebastianbergmann",
  11881. "type": "github"
  11882. }
  11883. ],
  11884. "time": "2024-07-03T04:53:05+00:00"
  11885. },
  11886. {
  11887. "name": "sebastian/environment",
  11888. "version": "7.2.1",
  11889. "source": {
  11890. "type": "git",
  11891. "url": "https://github.com/sebastianbergmann/environment.git",
  11892. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  11893. },
  11894. "dist": {
  11895. "type": "zip",
  11896. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11897. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11898. "shasum": ""
  11899. },
  11900. "require": {
  11901. "php": ">=8.2"
  11902. },
  11903. "require-dev": {
  11904. "phpunit/phpunit": "^11.3"
  11905. },
  11906. "suggest": {
  11907. "ext-posix": "*"
  11908. },
  11909. "type": "library",
  11910. "extra": {
  11911. "branch-alias": {
  11912. "dev-main": "7.2-dev"
  11913. }
  11914. },
  11915. "autoload": {
  11916. "classmap": [
  11917. "src/"
  11918. ]
  11919. },
  11920. "notification-url": "https://packagist.org/downloads/",
  11921. "license": [
  11922. "BSD-3-Clause"
  11923. ],
  11924. "authors": [
  11925. {
  11926. "name": "Sebastian Bergmann",
  11927. "email": "sebastian@phpunit.de"
  11928. }
  11929. ],
  11930. "description": "Provides functionality to handle HHVM/PHP environments",
  11931. "homepage": "https://github.com/sebastianbergmann/environment",
  11932. "keywords": [
  11933. "Xdebug",
  11934. "environment",
  11935. "hhvm"
  11936. ],
  11937. "support": {
  11938. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11939. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11940. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  11941. },
  11942. "funding": [
  11943. {
  11944. "url": "https://github.com/sebastianbergmann",
  11945. "type": "github"
  11946. },
  11947. {
  11948. "url": "https://liberapay.com/sebastianbergmann",
  11949. "type": "liberapay"
  11950. },
  11951. {
  11952. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11953. "type": "thanks_dev"
  11954. },
  11955. {
  11956. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  11957. "type": "tidelift"
  11958. }
  11959. ],
  11960. "time": "2025-05-21T11:55:47+00:00"
  11961. },
  11962. {
  11963. "name": "sebastian/exporter",
  11964. "version": "6.3.0",
  11965. "source": {
  11966. "type": "git",
  11967. "url": "https://github.com/sebastianbergmann/exporter.git",
  11968. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11969. },
  11970. "dist": {
  11971. "type": "zip",
  11972. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11973. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11974. "shasum": ""
  11975. },
  11976. "require": {
  11977. "ext-mbstring": "*",
  11978. "php": ">=8.2",
  11979. "sebastian/recursion-context": "^6.0"
  11980. },
  11981. "require-dev": {
  11982. "phpunit/phpunit": "^11.3"
  11983. },
  11984. "type": "library",
  11985. "extra": {
  11986. "branch-alias": {
  11987. "dev-main": "6.1-dev"
  11988. }
  11989. },
  11990. "autoload": {
  11991. "classmap": [
  11992. "src/"
  11993. ]
  11994. },
  11995. "notification-url": "https://packagist.org/downloads/",
  11996. "license": [
  11997. "BSD-3-Clause"
  11998. ],
  11999. "authors": [
  12000. {
  12001. "name": "Sebastian Bergmann",
  12002. "email": "sebastian@phpunit.de"
  12003. },
  12004. {
  12005. "name": "Jeff Welch",
  12006. "email": "whatthejeff@gmail.com"
  12007. },
  12008. {
  12009. "name": "Volker Dusch",
  12010. "email": "github@wallbash.com"
  12011. },
  12012. {
  12013. "name": "Adam Harvey",
  12014. "email": "aharvey@php.net"
  12015. },
  12016. {
  12017. "name": "Bernhard Schussek",
  12018. "email": "bschussek@gmail.com"
  12019. }
  12020. ],
  12021. "description": "Provides the functionality to export PHP variables for visualization",
  12022. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12023. "keywords": [
  12024. "export",
  12025. "exporter"
  12026. ],
  12027. "support": {
  12028. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12029. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12030. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  12031. },
  12032. "funding": [
  12033. {
  12034. "url": "https://github.com/sebastianbergmann",
  12035. "type": "github"
  12036. }
  12037. ],
  12038. "time": "2024-12-05T09:17:50+00:00"
  12039. },
  12040. {
  12041. "name": "sebastian/global-state",
  12042. "version": "7.0.2",
  12043. "source": {
  12044. "type": "git",
  12045. "url": "https://github.com/sebastianbergmann/global-state.git",
  12046. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  12047. },
  12048. "dist": {
  12049. "type": "zip",
  12050. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  12051. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  12052. "shasum": ""
  12053. },
  12054. "require": {
  12055. "php": ">=8.2",
  12056. "sebastian/object-reflector": "^4.0",
  12057. "sebastian/recursion-context": "^6.0"
  12058. },
  12059. "require-dev": {
  12060. "ext-dom": "*",
  12061. "phpunit/phpunit": "^11.0"
  12062. },
  12063. "type": "library",
  12064. "extra": {
  12065. "branch-alias": {
  12066. "dev-main": "7.0-dev"
  12067. }
  12068. },
  12069. "autoload": {
  12070. "classmap": [
  12071. "src/"
  12072. ]
  12073. },
  12074. "notification-url": "https://packagist.org/downloads/",
  12075. "license": [
  12076. "BSD-3-Clause"
  12077. ],
  12078. "authors": [
  12079. {
  12080. "name": "Sebastian Bergmann",
  12081. "email": "sebastian@phpunit.de"
  12082. }
  12083. ],
  12084. "description": "Snapshotting of global state",
  12085. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12086. "keywords": [
  12087. "global state"
  12088. ],
  12089. "support": {
  12090. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12091. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12092. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  12093. },
  12094. "funding": [
  12095. {
  12096. "url": "https://github.com/sebastianbergmann",
  12097. "type": "github"
  12098. }
  12099. ],
  12100. "time": "2024-07-03T04:57:36+00:00"
  12101. },
  12102. {
  12103. "name": "sebastian/lines-of-code",
  12104. "version": "3.0.1",
  12105. "source": {
  12106. "type": "git",
  12107. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12108. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  12109. },
  12110. "dist": {
  12111. "type": "zip",
  12112. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12113. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12114. "shasum": ""
  12115. },
  12116. "require": {
  12117. "nikic/php-parser": "^5.0",
  12118. "php": ">=8.2"
  12119. },
  12120. "require-dev": {
  12121. "phpunit/phpunit": "^11.0"
  12122. },
  12123. "type": "library",
  12124. "extra": {
  12125. "branch-alias": {
  12126. "dev-main": "3.0-dev"
  12127. }
  12128. },
  12129. "autoload": {
  12130. "classmap": [
  12131. "src/"
  12132. ]
  12133. },
  12134. "notification-url": "https://packagist.org/downloads/",
  12135. "license": [
  12136. "BSD-3-Clause"
  12137. ],
  12138. "authors": [
  12139. {
  12140. "name": "Sebastian Bergmann",
  12141. "email": "sebastian@phpunit.de",
  12142. "role": "lead"
  12143. }
  12144. ],
  12145. "description": "Library for counting the lines of code in PHP source code",
  12146. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12147. "support": {
  12148. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12149. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12150. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  12151. },
  12152. "funding": [
  12153. {
  12154. "url": "https://github.com/sebastianbergmann",
  12155. "type": "github"
  12156. }
  12157. ],
  12158. "time": "2024-07-03T04:58:38+00:00"
  12159. },
  12160. {
  12161. "name": "sebastian/object-enumerator",
  12162. "version": "6.0.1",
  12163. "source": {
  12164. "type": "git",
  12165. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12166. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12167. },
  12168. "dist": {
  12169. "type": "zip",
  12170. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12171. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12172. "shasum": ""
  12173. },
  12174. "require": {
  12175. "php": ">=8.2",
  12176. "sebastian/object-reflector": "^4.0",
  12177. "sebastian/recursion-context": "^6.0"
  12178. },
  12179. "require-dev": {
  12180. "phpunit/phpunit": "^11.0"
  12181. },
  12182. "type": "library",
  12183. "extra": {
  12184. "branch-alias": {
  12185. "dev-main": "6.0-dev"
  12186. }
  12187. },
  12188. "autoload": {
  12189. "classmap": [
  12190. "src/"
  12191. ]
  12192. },
  12193. "notification-url": "https://packagist.org/downloads/",
  12194. "license": [
  12195. "BSD-3-Clause"
  12196. ],
  12197. "authors": [
  12198. {
  12199. "name": "Sebastian Bergmann",
  12200. "email": "sebastian@phpunit.de"
  12201. }
  12202. ],
  12203. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12204. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12205. "support": {
  12206. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12207. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12208. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12209. },
  12210. "funding": [
  12211. {
  12212. "url": "https://github.com/sebastianbergmann",
  12213. "type": "github"
  12214. }
  12215. ],
  12216. "time": "2024-07-03T05:00:13+00:00"
  12217. },
  12218. {
  12219. "name": "sebastian/object-reflector",
  12220. "version": "4.0.1",
  12221. "source": {
  12222. "type": "git",
  12223. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12224. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12225. },
  12226. "dist": {
  12227. "type": "zip",
  12228. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12229. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12230. "shasum": ""
  12231. },
  12232. "require": {
  12233. "php": ">=8.2"
  12234. },
  12235. "require-dev": {
  12236. "phpunit/phpunit": "^11.0"
  12237. },
  12238. "type": "library",
  12239. "extra": {
  12240. "branch-alias": {
  12241. "dev-main": "4.0-dev"
  12242. }
  12243. },
  12244. "autoload": {
  12245. "classmap": [
  12246. "src/"
  12247. ]
  12248. },
  12249. "notification-url": "https://packagist.org/downloads/",
  12250. "license": [
  12251. "BSD-3-Clause"
  12252. ],
  12253. "authors": [
  12254. {
  12255. "name": "Sebastian Bergmann",
  12256. "email": "sebastian@phpunit.de"
  12257. }
  12258. ],
  12259. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12260. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12261. "support": {
  12262. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12263. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12264. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12265. },
  12266. "funding": [
  12267. {
  12268. "url": "https://github.com/sebastianbergmann",
  12269. "type": "github"
  12270. }
  12271. ],
  12272. "time": "2024-07-03T05:01:32+00:00"
  12273. },
  12274. {
  12275. "name": "sebastian/recursion-context",
  12276. "version": "6.0.2",
  12277. "source": {
  12278. "type": "git",
  12279. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12280. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12281. },
  12282. "dist": {
  12283. "type": "zip",
  12284. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12285. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12286. "shasum": ""
  12287. },
  12288. "require": {
  12289. "php": ">=8.2"
  12290. },
  12291. "require-dev": {
  12292. "phpunit/phpunit": "^11.0"
  12293. },
  12294. "type": "library",
  12295. "extra": {
  12296. "branch-alias": {
  12297. "dev-main": "6.0-dev"
  12298. }
  12299. },
  12300. "autoload": {
  12301. "classmap": [
  12302. "src/"
  12303. ]
  12304. },
  12305. "notification-url": "https://packagist.org/downloads/",
  12306. "license": [
  12307. "BSD-3-Clause"
  12308. ],
  12309. "authors": [
  12310. {
  12311. "name": "Sebastian Bergmann",
  12312. "email": "sebastian@phpunit.de"
  12313. },
  12314. {
  12315. "name": "Jeff Welch",
  12316. "email": "whatthejeff@gmail.com"
  12317. },
  12318. {
  12319. "name": "Adam Harvey",
  12320. "email": "aharvey@php.net"
  12321. }
  12322. ],
  12323. "description": "Provides functionality to recursively process PHP variables",
  12324. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12325. "support": {
  12326. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12327. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12328. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12329. },
  12330. "funding": [
  12331. {
  12332. "url": "https://github.com/sebastianbergmann",
  12333. "type": "github"
  12334. }
  12335. ],
  12336. "time": "2024-07-03T05:10:34+00:00"
  12337. },
  12338. {
  12339. "name": "sebastian/type",
  12340. "version": "5.1.2",
  12341. "source": {
  12342. "type": "git",
  12343. "url": "https://github.com/sebastianbergmann/type.git",
  12344. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  12345. },
  12346. "dist": {
  12347. "type": "zip",
  12348. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12349. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12350. "shasum": ""
  12351. },
  12352. "require": {
  12353. "php": ">=8.2"
  12354. },
  12355. "require-dev": {
  12356. "phpunit/phpunit": "^11.3"
  12357. },
  12358. "type": "library",
  12359. "extra": {
  12360. "branch-alias": {
  12361. "dev-main": "5.1-dev"
  12362. }
  12363. },
  12364. "autoload": {
  12365. "classmap": [
  12366. "src/"
  12367. ]
  12368. },
  12369. "notification-url": "https://packagist.org/downloads/",
  12370. "license": [
  12371. "BSD-3-Clause"
  12372. ],
  12373. "authors": [
  12374. {
  12375. "name": "Sebastian Bergmann",
  12376. "email": "sebastian@phpunit.de",
  12377. "role": "lead"
  12378. }
  12379. ],
  12380. "description": "Collection of value objects that represent the types of the PHP type system",
  12381. "homepage": "https://github.com/sebastianbergmann/type",
  12382. "support": {
  12383. "issues": "https://github.com/sebastianbergmann/type/issues",
  12384. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12385. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  12386. },
  12387. "funding": [
  12388. {
  12389. "url": "https://github.com/sebastianbergmann",
  12390. "type": "github"
  12391. }
  12392. ],
  12393. "time": "2025-03-18T13:35:50+00:00"
  12394. },
  12395. {
  12396. "name": "sebastian/version",
  12397. "version": "5.0.2",
  12398. "source": {
  12399. "type": "git",
  12400. "url": "https://github.com/sebastianbergmann/version.git",
  12401. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12402. },
  12403. "dist": {
  12404. "type": "zip",
  12405. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12406. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12407. "shasum": ""
  12408. },
  12409. "require": {
  12410. "php": ">=8.2"
  12411. },
  12412. "type": "library",
  12413. "extra": {
  12414. "branch-alias": {
  12415. "dev-main": "5.0-dev"
  12416. }
  12417. },
  12418. "autoload": {
  12419. "classmap": [
  12420. "src/"
  12421. ]
  12422. },
  12423. "notification-url": "https://packagist.org/downloads/",
  12424. "license": [
  12425. "BSD-3-Clause"
  12426. ],
  12427. "authors": [
  12428. {
  12429. "name": "Sebastian Bergmann",
  12430. "email": "sebastian@phpunit.de",
  12431. "role": "lead"
  12432. }
  12433. ],
  12434. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12435. "homepage": "https://github.com/sebastianbergmann/version",
  12436. "support": {
  12437. "issues": "https://github.com/sebastianbergmann/version/issues",
  12438. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12439. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12440. },
  12441. "funding": [
  12442. {
  12443. "url": "https://github.com/sebastianbergmann",
  12444. "type": "github"
  12445. }
  12446. ],
  12447. "time": "2024-10-09T05:16:32+00:00"
  12448. },
  12449. {
  12450. "name": "spatie/backtrace",
  12451. "version": "1.7.4",
  12452. "source": {
  12453. "type": "git",
  12454. "url": "https://github.com/spatie/backtrace.git",
  12455. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe"
  12456. },
  12457. "dist": {
  12458. "type": "zip",
  12459. "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12460. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12461. "shasum": ""
  12462. },
  12463. "require": {
  12464. "php": "^7.3 || ^8.0"
  12465. },
  12466. "require-dev": {
  12467. "ext-json": "*",
  12468. "laravel/serializable-closure": "^1.3 || ^2.0",
  12469. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12470. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12471. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12472. },
  12473. "type": "library",
  12474. "autoload": {
  12475. "psr-4": {
  12476. "Spatie\\Backtrace\\": "src"
  12477. }
  12478. },
  12479. "notification-url": "https://packagist.org/downloads/",
  12480. "license": [
  12481. "MIT"
  12482. ],
  12483. "authors": [
  12484. {
  12485. "name": "Freek Van de Herten",
  12486. "email": "freek@spatie.be",
  12487. "homepage": "https://spatie.be",
  12488. "role": "Developer"
  12489. }
  12490. ],
  12491. "description": "A better backtrace",
  12492. "homepage": "https://github.com/spatie/backtrace",
  12493. "keywords": [
  12494. "Backtrace",
  12495. "spatie"
  12496. ],
  12497. "support": {
  12498. "source": "https://github.com/spatie/backtrace/tree/1.7.4"
  12499. },
  12500. "funding": [
  12501. {
  12502. "url": "https://github.com/sponsors/spatie",
  12503. "type": "github"
  12504. },
  12505. {
  12506. "url": "https://spatie.be/open-source/support-us",
  12507. "type": "other"
  12508. }
  12509. ],
  12510. "time": "2025-05-08T15:41:09+00:00"
  12511. },
  12512. {
  12513. "name": "spatie/error-solutions",
  12514. "version": "1.1.3",
  12515. "source": {
  12516. "type": "git",
  12517. "url": "https://github.com/spatie/error-solutions.git",
  12518. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936"
  12519. },
  12520. "dist": {
  12521. "type": "zip",
  12522. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12523. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12524. "shasum": ""
  12525. },
  12526. "require": {
  12527. "php": "^8.0"
  12528. },
  12529. "require-dev": {
  12530. "illuminate/broadcasting": "^10.0|^11.0|^12.0",
  12531. "illuminate/cache": "^10.0|^11.0|^12.0",
  12532. "illuminate/support": "^10.0|^11.0|^12.0",
  12533. "livewire/livewire": "^2.11|^3.5.20",
  12534. "openai-php/client": "^0.10.1",
  12535. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12536. "pestphp/pest": "^2.20|^3.0",
  12537. "phpstan/phpstan": "^2.1",
  12538. "psr/simple-cache": "^3.0",
  12539. "psr/simple-cache-implementation": "^3.0",
  12540. "spatie/ray": "^1.28",
  12541. "symfony/cache": "^5.4|^6.0|^7.0",
  12542. "symfony/process": "^5.4|^6.0|^7.0",
  12543. "vlucas/phpdotenv": "^5.5"
  12544. },
  12545. "suggest": {
  12546. "openai-php/client": "Require get solutions from OpenAI",
  12547. "simple-cache-implementation": "To cache solutions from OpenAI"
  12548. },
  12549. "type": "library",
  12550. "autoload": {
  12551. "psr-4": {
  12552. "Spatie\\Ignition\\": "legacy/ignition",
  12553. "Spatie\\ErrorSolutions\\": "src",
  12554. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12555. }
  12556. },
  12557. "notification-url": "https://packagist.org/downloads/",
  12558. "license": [
  12559. "MIT"
  12560. ],
  12561. "authors": [
  12562. {
  12563. "name": "Ruben Van Assche",
  12564. "email": "ruben@spatie.be",
  12565. "role": "Developer"
  12566. }
  12567. ],
  12568. "description": "This is my package error-solutions",
  12569. "homepage": "https://github.com/spatie/error-solutions",
  12570. "keywords": [
  12571. "error-solutions",
  12572. "spatie"
  12573. ],
  12574. "support": {
  12575. "issues": "https://github.com/spatie/error-solutions/issues",
  12576. "source": "https://github.com/spatie/error-solutions/tree/1.1.3"
  12577. },
  12578. "funding": [
  12579. {
  12580. "url": "https://github.com/Spatie",
  12581. "type": "github"
  12582. }
  12583. ],
  12584. "time": "2025-02-14T12:29:50+00:00"
  12585. },
  12586. {
  12587. "name": "spatie/flare-client-php",
  12588. "version": "1.10.1",
  12589. "source": {
  12590. "type": "git",
  12591. "url": "https://github.com/spatie/flare-client-php.git",
  12592. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
  12593. },
  12594. "dist": {
  12595. "type": "zip",
  12596. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
  12597. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
  12598. "shasum": ""
  12599. },
  12600. "require": {
  12601. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
  12602. "php": "^8.0",
  12603. "spatie/backtrace": "^1.6.1",
  12604. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12605. "symfony/mime": "^5.2|^6.0|^7.0",
  12606. "symfony/process": "^5.2|^6.0|^7.0",
  12607. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12608. },
  12609. "require-dev": {
  12610. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12611. "pestphp/pest": "^1.20|^2.0",
  12612. "phpstan/extension-installer": "^1.1",
  12613. "phpstan/phpstan-deprecation-rules": "^1.0",
  12614. "phpstan/phpstan-phpunit": "^1.0",
  12615. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12616. },
  12617. "type": "library",
  12618. "extra": {
  12619. "branch-alias": {
  12620. "dev-main": "1.3.x-dev"
  12621. }
  12622. },
  12623. "autoload": {
  12624. "files": [
  12625. "src/helpers.php"
  12626. ],
  12627. "psr-4": {
  12628. "Spatie\\FlareClient\\": "src"
  12629. }
  12630. },
  12631. "notification-url": "https://packagist.org/downloads/",
  12632. "license": [
  12633. "MIT"
  12634. ],
  12635. "description": "Send PHP errors to Flare",
  12636. "homepage": "https://github.com/spatie/flare-client-php",
  12637. "keywords": [
  12638. "exception",
  12639. "flare",
  12640. "reporting",
  12641. "spatie"
  12642. ],
  12643. "support": {
  12644. "issues": "https://github.com/spatie/flare-client-php/issues",
  12645. "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
  12646. },
  12647. "funding": [
  12648. {
  12649. "url": "https://github.com/spatie",
  12650. "type": "github"
  12651. }
  12652. ],
  12653. "time": "2025-02-14T13:42:06+00:00"
  12654. },
  12655. {
  12656. "name": "spatie/ignition",
  12657. "version": "1.15.1",
  12658. "source": {
  12659. "type": "git",
  12660. "url": "https://github.com/spatie/ignition.git",
  12661. "reference": "31f314153020aee5af3537e507fef892ffbf8c85"
  12662. },
  12663. "dist": {
  12664. "type": "zip",
  12665. "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85",
  12666. "reference": "31f314153020aee5af3537e507fef892ffbf8c85",
  12667. "shasum": ""
  12668. },
  12669. "require": {
  12670. "ext-json": "*",
  12671. "ext-mbstring": "*",
  12672. "php": "^8.0",
  12673. "spatie/error-solutions": "^1.0",
  12674. "spatie/flare-client-php": "^1.7",
  12675. "symfony/console": "^5.4|^6.0|^7.0",
  12676. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12677. },
  12678. "require-dev": {
  12679. "illuminate/cache": "^9.52|^10.0|^11.0|^12.0",
  12680. "mockery/mockery": "^1.4",
  12681. "pestphp/pest": "^1.20|^2.0",
  12682. "phpstan/extension-installer": "^1.1",
  12683. "phpstan/phpstan-deprecation-rules": "^1.0",
  12684. "phpstan/phpstan-phpunit": "^1.0",
  12685. "psr/simple-cache-implementation": "*",
  12686. "symfony/cache": "^5.4|^6.0|^7.0",
  12687. "symfony/process": "^5.4|^6.0|^7.0",
  12688. "vlucas/phpdotenv": "^5.5"
  12689. },
  12690. "suggest": {
  12691. "openai-php/client": "Require get solutions from OpenAI",
  12692. "simple-cache-implementation": "To cache solutions from OpenAI"
  12693. },
  12694. "type": "library",
  12695. "extra": {
  12696. "branch-alias": {
  12697. "dev-main": "1.5.x-dev"
  12698. }
  12699. },
  12700. "autoload": {
  12701. "psr-4": {
  12702. "Spatie\\Ignition\\": "src"
  12703. }
  12704. },
  12705. "notification-url": "https://packagist.org/downloads/",
  12706. "license": [
  12707. "MIT"
  12708. ],
  12709. "authors": [
  12710. {
  12711. "name": "Spatie",
  12712. "email": "info@spatie.be",
  12713. "role": "Developer"
  12714. }
  12715. ],
  12716. "description": "A beautiful error page for PHP applications.",
  12717. "homepage": "https://flareapp.io/ignition",
  12718. "keywords": [
  12719. "error",
  12720. "flare",
  12721. "laravel",
  12722. "page"
  12723. ],
  12724. "support": {
  12725. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12726. "forum": "https://twitter.com/flareappio",
  12727. "issues": "https://github.com/spatie/ignition/issues",
  12728. "source": "https://github.com/spatie/ignition"
  12729. },
  12730. "funding": [
  12731. {
  12732. "url": "https://github.com/spatie",
  12733. "type": "github"
  12734. }
  12735. ],
  12736. "time": "2025-02-21T14:31:39+00:00"
  12737. },
  12738. {
  12739. "name": "spatie/laravel-ignition",
  12740. "version": "2.9.1",
  12741. "source": {
  12742. "type": "git",
  12743. "url": "https://github.com/spatie/laravel-ignition.git",
  12744. "reference": "1baee07216d6748ebd3a65ba97381b051838707a"
  12745. },
  12746. "dist": {
  12747. "type": "zip",
  12748. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a",
  12749. "reference": "1baee07216d6748ebd3a65ba97381b051838707a",
  12750. "shasum": ""
  12751. },
  12752. "require": {
  12753. "ext-curl": "*",
  12754. "ext-json": "*",
  12755. "ext-mbstring": "*",
  12756. "illuminate/support": "^10.0|^11.0|^12.0",
  12757. "php": "^8.1",
  12758. "spatie/ignition": "^1.15",
  12759. "symfony/console": "^6.2.3|^7.0",
  12760. "symfony/var-dumper": "^6.2.3|^7.0"
  12761. },
  12762. "require-dev": {
  12763. "livewire/livewire": "^2.11|^3.3.5",
  12764. "mockery/mockery": "^1.5.1",
  12765. "openai-php/client": "^0.8.1|^0.10",
  12766. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12767. "pestphp/pest": "^2.34|^3.7",
  12768. "phpstan/extension-installer": "^1.3.1",
  12769. "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0",
  12770. "phpstan/phpstan-phpunit": "^1.3.16|^2.0",
  12771. "vlucas/phpdotenv": "^5.5"
  12772. },
  12773. "suggest": {
  12774. "openai-php/client": "Require get solutions from OpenAI",
  12775. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12776. },
  12777. "type": "library",
  12778. "extra": {
  12779. "laravel": {
  12780. "aliases": {
  12781. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12782. },
  12783. "providers": [
  12784. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12785. ]
  12786. }
  12787. },
  12788. "autoload": {
  12789. "files": [
  12790. "src/helpers.php"
  12791. ],
  12792. "psr-4": {
  12793. "Spatie\\LaravelIgnition\\": "src"
  12794. }
  12795. },
  12796. "notification-url": "https://packagist.org/downloads/",
  12797. "license": [
  12798. "MIT"
  12799. ],
  12800. "authors": [
  12801. {
  12802. "name": "Spatie",
  12803. "email": "info@spatie.be",
  12804. "role": "Developer"
  12805. }
  12806. ],
  12807. "description": "A beautiful error page for Laravel applications.",
  12808. "homepage": "https://flareapp.io/ignition",
  12809. "keywords": [
  12810. "error",
  12811. "flare",
  12812. "laravel",
  12813. "page"
  12814. ],
  12815. "support": {
  12816. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12817. "forum": "https://twitter.com/flareappio",
  12818. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12819. "source": "https://github.com/spatie/laravel-ignition"
  12820. },
  12821. "funding": [
  12822. {
  12823. "url": "https://github.com/spatie",
  12824. "type": "github"
  12825. }
  12826. ],
  12827. "time": "2025-02-20T13:13:55+00:00"
  12828. },
  12829. {
  12830. "name": "spatie/laravel-ray",
  12831. "version": "1.40.2",
  12832. "source": {
  12833. "type": "git",
  12834. "url": "https://github.com/spatie/laravel-ray.git",
  12835. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25"
  12836. },
  12837. "dist": {
  12838. "type": "zip",
  12839. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12840. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12841. "shasum": ""
  12842. },
  12843. "require": {
  12844. "composer-runtime-api": "^2.2",
  12845. "ext-json": "*",
  12846. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12847. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12848. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12849. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12850. "php": "^7.4 || ^8.0",
  12851. "spatie/backtrace": "^1.7.1",
  12852. "spatie/ray": "^1.41.3",
  12853. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12854. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12855. },
  12856. "require-dev": {
  12857. "guzzlehttp/guzzle": "^7.3",
  12858. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12859. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  12860. "pestphp/pest": "^1.22 || ^2.0 || ^3.0",
  12861. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12862. "phpunit/phpunit": "^9.3 || ^10.1 || ^11.0.10",
  12863. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12864. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12865. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12866. },
  12867. "type": "library",
  12868. "extra": {
  12869. "laravel": {
  12870. "providers": [
  12871. "Spatie\\LaravelRay\\RayServiceProvider"
  12872. ]
  12873. },
  12874. "branch-alias": {
  12875. "dev-main": "1.x-dev"
  12876. }
  12877. },
  12878. "autoload": {
  12879. "psr-4": {
  12880. "Spatie\\LaravelRay\\": "src"
  12881. }
  12882. },
  12883. "notification-url": "https://packagist.org/downloads/",
  12884. "license": [
  12885. "MIT"
  12886. ],
  12887. "authors": [
  12888. {
  12889. "name": "Freek Van der Herten",
  12890. "email": "freek@spatie.be",
  12891. "homepage": "https://spatie.be",
  12892. "role": "Developer"
  12893. }
  12894. ],
  12895. "description": "Easily debug Laravel apps",
  12896. "homepage": "https://github.com/spatie/laravel-ray",
  12897. "keywords": [
  12898. "laravel-ray",
  12899. "spatie"
  12900. ],
  12901. "support": {
  12902. "issues": "https://github.com/spatie/laravel-ray/issues",
  12903. "source": "https://github.com/spatie/laravel-ray/tree/1.40.2"
  12904. },
  12905. "funding": [
  12906. {
  12907. "url": "https://github.com/sponsors/spatie",
  12908. "type": "github"
  12909. },
  12910. {
  12911. "url": "https://spatie.be/open-source/support-us",
  12912. "type": "other"
  12913. }
  12914. ],
  12915. "time": "2025-03-27T08:26:55+00:00"
  12916. },
  12917. {
  12918. "name": "spatie/macroable",
  12919. "version": "2.0.0",
  12920. "source": {
  12921. "type": "git",
  12922. "url": "https://github.com/spatie/macroable.git",
  12923. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12924. },
  12925. "dist": {
  12926. "type": "zip",
  12927. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12928. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12929. "shasum": ""
  12930. },
  12931. "require": {
  12932. "php": "^8.0"
  12933. },
  12934. "require-dev": {
  12935. "phpunit/phpunit": "^8.0|^9.3"
  12936. },
  12937. "type": "library",
  12938. "autoload": {
  12939. "psr-4": {
  12940. "Spatie\\Macroable\\": "src"
  12941. }
  12942. },
  12943. "notification-url": "https://packagist.org/downloads/",
  12944. "license": [
  12945. "MIT"
  12946. ],
  12947. "authors": [
  12948. {
  12949. "name": "Freek Van der Herten",
  12950. "email": "freek@spatie.be",
  12951. "homepage": "https://spatie.be",
  12952. "role": "Developer"
  12953. }
  12954. ],
  12955. "description": "A trait to dynamically add methods to a class",
  12956. "homepage": "https://github.com/spatie/macroable",
  12957. "keywords": [
  12958. "macroable",
  12959. "spatie"
  12960. ],
  12961. "support": {
  12962. "issues": "https://github.com/spatie/macroable/issues",
  12963. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12964. },
  12965. "time": "2021-03-26T22:39:02+00:00"
  12966. },
  12967. {
  12968. "name": "spatie/ray",
  12969. "version": "1.42.0",
  12970. "source": {
  12971. "type": "git",
  12972. "url": "https://github.com/spatie/ray.git",
  12973. "reference": "152250ce7c490bf830349fa30ba5200084e95860"
  12974. },
  12975. "dist": {
  12976. "type": "zip",
  12977. "url": "https://api.github.com/repos/spatie/ray/zipball/152250ce7c490bf830349fa30ba5200084e95860",
  12978. "reference": "152250ce7c490bf830349fa30ba5200084e95860",
  12979. "shasum": ""
  12980. },
  12981. "require": {
  12982. "ext-curl": "*",
  12983. "ext-json": "*",
  12984. "php": "^7.4 || ^8.0",
  12985. "ramsey/uuid": "^3.0 || ^4.1",
  12986. "spatie/backtrace": "^1.7.1",
  12987. "spatie/macroable": "^1.0 || ^2.0",
  12988. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12989. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12990. },
  12991. "require-dev": {
  12992. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12993. "nesbot/carbon": "^2.63 || ^3.8.4",
  12994. "pestphp/pest": "^1.22",
  12995. "phpstan/phpstan": "^1.10.57 || ^2.0.3",
  12996. "phpunit/phpunit": "^9.5",
  12997. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12998. "spatie/phpunit-snapshot-assertions": "^4.2",
  12999. "spatie/test-time": "^1.2"
  13000. },
  13001. "bin": [
  13002. "bin/remove-ray.sh"
  13003. ],
  13004. "type": "library",
  13005. "extra": {
  13006. "branch-alias": {
  13007. "dev-main": "1.x-dev"
  13008. }
  13009. },
  13010. "autoload": {
  13011. "files": [
  13012. "src/helpers.php"
  13013. ],
  13014. "psr-4": {
  13015. "Spatie\\Ray\\": "src"
  13016. }
  13017. },
  13018. "notification-url": "https://packagist.org/downloads/",
  13019. "license": [
  13020. "MIT"
  13021. ],
  13022. "authors": [
  13023. {
  13024. "name": "Freek Van der Herten",
  13025. "email": "freek@spatie.be",
  13026. "homepage": "https://spatie.be",
  13027. "role": "Developer"
  13028. }
  13029. ],
  13030. "description": "Debug with Ray to fix problems faster",
  13031. "homepage": "https://github.com/spatie/ray",
  13032. "keywords": [
  13033. "ray",
  13034. "spatie"
  13035. ],
  13036. "support": {
  13037. "issues": "https://github.com/spatie/ray/issues",
  13038. "source": "https://github.com/spatie/ray/tree/1.42.0"
  13039. },
  13040. "funding": [
  13041. {
  13042. "url": "https://github.com/sponsors/spatie",
  13043. "type": "github"
  13044. },
  13045. {
  13046. "url": "https://spatie.be/open-source/support-us",
  13047. "type": "other"
  13048. }
  13049. ],
  13050. "time": "2025-04-18T08:17:40+00:00"
  13051. },
  13052. {
  13053. "name": "staabm/side-effects-detector",
  13054. "version": "1.0.5",
  13055. "source": {
  13056. "type": "git",
  13057. "url": "https://github.com/staabm/side-effects-detector.git",
  13058. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13059. },
  13060. "dist": {
  13061. "type": "zip",
  13062. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13063. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13064. "shasum": ""
  13065. },
  13066. "require": {
  13067. "ext-tokenizer": "*",
  13068. "php": "^7.4 || ^8.0"
  13069. },
  13070. "require-dev": {
  13071. "phpstan/extension-installer": "^1.4.3",
  13072. "phpstan/phpstan": "^1.12.6",
  13073. "phpunit/phpunit": "^9.6.21",
  13074. "symfony/var-dumper": "^5.4.43",
  13075. "tomasvotruba/type-coverage": "1.0.0",
  13076. "tomasvotruba/unused-public": "1.0.0"
  13077. },
  13078. "type": "library",
  13079. "autoload": {
  13080. "classmap": [
  13081. "lib/"
  13082. ]
  13083. },
  13084. "notification-url": "https://packagist.org/downloads/",
  13085. "license": [
  13086. "MIT"
  13087. ],
  13088. "description": "A static analysis tool to detect side effects in PHP code",
  13089. "keywords": [
  13090. "static analysis"
  13091. ],
  13092. "support": {
  13093. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13094. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13095. },
  13096. "funding": [
  13097. {
  13098. "url": "https://github.com/staabm",
  13099. "type": "github"
  13100. }
  13101. ],
  13102. "time": "2024-10-20T05:08:20+00:00"
  13103. },
  13104. {
  13105. "name": "symfony/polyfill-iconv",
  13106. "version": "v1.32.0",
  13107. "source": {
  13108. "type": "git",
  13109. "url": "https://github.com/symfony/polyfill-iconv.git",
  13110. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  13111. },
  13112. "dist": {
  13113. "type": "zip",
  13114. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13115. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13116. "shasum": ""
  13117. },
  13118. "require": {
  13119. "php": ">=7.2"
  13120. },
  13121. "provide": {
  13122. "ext-iconv": "*"
  13123. },
  13124. "suggest": {
  13125. "ext-iconv": "For best performance"
  13126. },
  13127. "type": "library",
  13128. "extra": {
  13129. "thanks": {
  13130. "url": "https://github.com/symfony/polyfill",
  13131. "name": "symfony/polyfill"
  13132. }
  13133. },
  13134. "autoload": {
  13135. "files": [
  13136. "bootstrap.php"
  13137. ],
  13138. "psr-4": {
  13139. "Symfony\\Polyfill\\Iconv\\": ""
  13140. }
  13141. },
  13142. "notification-url": "https://packagist.org/downloads/",
  13143. "license": [
  13144. "MIT"
  13145. ],
  13146. "authors": [
  13147. {
  13148. "name": "Nicolas Grekas",
  13149. "email": "p@tchwork.com"
  13150. },
  13151. {
  13152. "name": "Symfony Community",
  13153. "homepage": "https://symfony.com/contributors"
  13154. }
  13155. ],
  13156. "description": "Symfony polyfill for the Iconv extension",
  13157. "homepage": "https://symfony.com",
  13158. "keywords": [
  13159. "compatibility",
  13160. "iconv",
  13161. "polyfill",
  13162. "portable",
  13163. "shim"
  13164. ],
  13165. "support": {
  13166. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  13167. },
  13168. "funding": [
  13169. {
  13170. "url": "https://symfony.com/sponsor",
  13171. "type": "custom"
  13172. },
  13173. {
  13174. "url": "https://github.com/fabpot",
  13175. "type": "github"
  13176. },
  13177. {
  13178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13179. "type": "tidelift"
  13180. }
  13181. ],
  13182. "time": "2024-09-17T14:58:18+00:00"
  13183. },
  13184. {
  13185. "name": "symfony/stopwatch",
  13186. "version": "v7.3.0",
  13187. "source": {
  13188. "type": "git",
  13189. "url": "https://github.com/symfony/stopwatch.git",
  13190. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  13191. },
  13192. "dist": {
  13193. "type": "zip",
  13194. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13195. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13196. "shasum": ""
  13197. },
  13198. "require": {
  13199. "php": ">=8.2",
  13200. "symfony/service-contracts": "^2.5|^3"
  13201. },
  13202. "type": "library",
  13203. "autoload": {
  13204. "psr-4": {
  13205. "Symfony\\Component\\Stopwatch\\": ""
  13206. },
  13207. "exclude-from-classmap": [
  13208. "/Tests/"
  13209. ]
  13210. },
  13211. "notification-url": "https://packagist.org/downloads/",
  13212. "license": [
  13213. "MIT"
  13214. ],
  13215. "authors": [
  13216. {
  13217. "name": "Fabien Potencier",
  13218. "email": "fabien@symfony.com"
  13219. },
  13220. {
  13221. "name": "Symfony Community",
  13222. "homepage": "https://symfony.com/contributors"
  13223. }
  13224. ],
  13225. "description": "Provides a way to profile code",
  13226. "homepage": "https://symfony.com",
  13227. "support": {
  13228. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  13229. },
  13230. "funding": [
  13231. {
  13232. "url": "https://symfony.com/sponsor",
  13233. "type": "custom"
  13234. },
  13235. {
  13236. "url": "https://github.com/fabpot",
  13237. "type": "github"
  13238. },
  13239. {
  13240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13241. "type": "tidelift"
  13242. }
  13243. ],
  13244. "time": "2025-02-24T10:49:57+00:00"
  13245. },
  13246. {
  13247. "name": "symfony/yaml",
  13248. "version": "v7.3.0",
  13249. "source": {
  13250. "type": "git",
  13251. "url": "https://github.com/symfony/yaml.git",
  13252. "reference": "cea40a48279d58dc3efee8112634cb90141156c2"
  13253. },
  13254. "dist": {
  13255. "type": "zip",
  13256. "url": "https://api.github.com/repos/symfony/yaml/zipball/cea40a48279d58dc3efee8112634cb90141156c2",
  13257. "reference": "cea40a48279d58dc3efee8112634cb90141156c2",
  13258. "shasum": ""
  13259. },
  13260. "require": {
  13261. "php": ">=8.2",
  13262. "symfony/deprecation-contracts": "^2.5|^3.0",
  13263. "symfony/polyfill-ctype": "^1.8"
  13264. },
  13265. "conflict": {
  13266. "symfony/console": "<6.4"
  13267. },
  13268. "require-dev": {
  13269. "symfony/console": "^6.4|^7.0"
  13270. },
  13271. "bin": [
  13272. "Resources/bin/yaml-lint"
  13273. ],
  13274. "type": "library",
  13275. "autoload": {
  13276. "psr-4": {
  13277. "Symfony\\Component\\Yaml\\": ""
  13278. },
  13279. "exclude-from-classmap": [
  13280. "/Tests/"
  13281. ]
  13282. },
  13283. "notification-url": "https://packagist.org/downloads/",
  13284. "license": [
  13285. "MIT"
  13286. ],
  13287. "authors": [
  13288. {
  13289. "name": "Fabien Potencier",
  13290. "email": "fabien@symfony.com"
  13291. },
  13292. {
  13293. "name": "Symfony Community",
  13294. "homepage": "https://symfony.com/contributors"
  13295. }
  13296. ],
  13297. "description": "Loads and dumps YAML files",
  13298. "homepage": "https://symfony.com",
  13299. "support": {
  13300. "source": "https://github.com/symfony/yaml/tree/v7.3.0"
  13301. },
  13302. "funding": [
  13303. {
  13304. "url": "https://symfony.com/sponsor",
  13305. "type": "custom"
  13306. },
  13307. {
  13308. "url": "https://github.com/fabpot",
  13309. "type": "github"
  13310. },
  13311. {
  13312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13313. "type": "tidelift"
  13314. }
  13315. ],
  13316. "time": "2025-04-04T10:10:33+00:00"
  13317. },
  13318. {
  13319. "name": "ta-tikoma/phpunit-architecture-test",
  13320. "version": "0.8.5",
  13321. "source": {
  13322. "type": "git",
  13323. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13324. "reference": "cf6fb197b676ba716837c886baca842e4db29005"
  13325. },
  13326. "dist": {
  13327. "type": "zip",
  13328. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/cf6fb197b676ba716837c886baca842e4db29005",
  13329. "reference": "cf6fb197b676ba716837c886baca842e4db29005",
  13330. "shasum": ""
  13331. },
  13332. "require": {
  13333. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13334. "php": "^8.1.0",
  13335. "phpdocumentor/reflection-docblock": "^5.3.0",
  13336. "phpunit/phpunit": "^10.5.5 || ^11.0.0 || ^12.0.0",
  13337. "symfony/finder": "^6.4.0 || ^7.0.0"
  13338. },
  13339. "require-dev": {
  13340. "laravel/pint": "^1.13.7",
  13341. "phpstan/phpstan": "^1.10.52"
  13342. },
  13343. "type": "library",
  13344. "autoload": {
  13345. "psr-4": {
  13346. "PHPUnit\\Architecture\\": "src/"
  13347. }
  13348. },
  13349. "notification-url": "https://packagist.org/downloads/",
  13350. "license": [
  13351. "MIT"
  13352. ],
  13353. "authors": [
  13354. {
  13355. "name": "Ni Shi",
  13356. "email": "futik0ma011@gmail.com"
  13357. },
  13358. {
  13359. "name": "Nuno Maduro",
  13360. "email": "enunomaduro@gmail.com"
  13361. }
  13362. ],
  13363. "description": "Methods for testing application architecture",
  13364. "keywords": [
  13365. "architecture",
  13366. "phpunit",
  13367. "stucture",
  13368. "test",
  13369. "testing"
  13370. ],
  13371. "support": {
  13372. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13373. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.5"
  13374. },
  13375. "time": "2025-04-20T20:23:40+00:00"
  13376. },
  13377. {
  13378. "name": "theseer/tokenizer",
  13379. "version": "1.2.3",
  13380. "source": {
  13381. "type": "git",
  13382. "url": "https://github.com/theseer/tokenizer.git",
  13383. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13384. },
  13385. "dist": {
  13386. "type": "zip",
  13387. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13388. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13389. "shasum": ""
  13390. },
  13391. "require": {
  13392. "ext-dom": "*",
  13393. "ext-tokenizer": "*",
  13394. "ext-xmlwriter": "*",
  13395. "php": "^7.2 || ^8.0"
  13396. },
  13397. "type": "library",
  13398. "autoload": {
  13399. "classmap": [
  13400. "src/"
  13401. ]
  13402. },
  13403. "notification-url": "https://packagist.org/downloads/",
  13404. "license": [
  13405. "BSD-3-Clause"
  13406. ],
  13407. "authors": [
  13408. {
  13409. "name": "Arne Blankerts",
  13410. "email": "arne@blankerts.de",
  13411. "role": "Developer"
  13412. }
  13413. ],
  13414. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13415. "support": {
  13416. "issues": "https://github.com/theseer/tokenizer/issues",
  13417. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13418. },
  13419. "funding": [
  13420. {
  13421. "url": "https://github.com/theseer",
  13422. "type": "github"
  13423. }
  13424. ],
  13425. "time": "2024-03-03T12:36:25+00:00"
  13426. },
  13427. {
  13428. "name": "zbateson/mail-mime-parser",
  13429. "version": "3.0.3",
  13430. "source": {
  13431. "type": "git",
  13432. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13433. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  13434. },
  13435. "dist": {
  13436. "type": "zip",
  13437. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  13438. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  13439. "shasum": ""
  13440. },
  13441. "require": {
  13442. "guzzlehttp/psr7": "^2.5",
  13443. "php": ">=8.0",
  13444. "php-di/php-di": "^6.0|^7.0",
  13445. "psr/log": "^1|^2|^3",
  13446. "zbateson/mb-wrapper": "^2.0",
  13447. "zbateson/stream-decorators": "^2.1"
  13448. },
  13449. "require-dev": {
  13450. "friendsofphp/php-cs-fixer": "*",
  13451. "monolog/monolog": "^2|^3",
  13452. "phpstan/phpstan": "*",
  13453. "phpunit/phpunit": "^9.6"
  13454. },
  13455. "suggest": {
  13456. "ext-iconv": "For best support/performance",
  13457. "ext-mbstring": "For best support/performance"
  13458. },
  13459. "type": "library",
  13460. "autoload": {
  13461. "psr-4": {
  13462. "ZBateson\\MailMimeParser\\": "src/"
  13463. }
  13464. },
  13465. "notification-url": "https://packagist.org/downloads/",
  13466. "license": [
  13467. "BSD-2-Clause"
  13468. ],
  13469. "authors": [
  13470. {
  13471. "name": "Zaahid Bateson"
  13472. },
  13473. {
  13474. "name": "Contributors",
  13475. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13476. }
  13477. ],
  13478. "description": "MIME email message parser",
  13479. "homepage": "https://mail-mime-parser.org",
  13480. "keywords": [
  13481. "MimeMailParser",
  13482. "email",
  13483. "mail",
  13484. "mailparse",
  13485. "mime",
  13486. "mimeparse",
  13487. "parser",
  13488. "php-imap"
  13489. ],
  13490. "support": {
  13491. "docs": "https://mail-mime-parser.org/#usage-guide",
  13492. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13493. "source": "https://github.com/zbateson/mail-mime-parser"
  13494. },
  13495. "funding": [
  13496. {
  13497. "url": "https://github.com/zbateson",
  13498. "type": "github"
  13499. }
  13500. ],
  13501. "time": "2024-08-10T18:44:09+00:00"
  13502. },
  13503. {
  13504. "name": "zbateson/mb-wrapper",
  13505. "version": "2.0.1",
  13506. "source": {
  13507. "type": "git",
  13508. "url": "https://github.com/zbateson/mb-wrapper.git",
  13509. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff"
  13510. },
  13511. "dist": {
  13512. "type": "zip",
  13513. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13514. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13515. "shasum": ""
  13516. },
  13517. "require": {
  13518. "php": ">=8.0",
  13519. "symfony/polyfill-iconv": "^1.9",
  13520. "symfony/polyfill-mbstring": "^1.9"
  13521. },
  13522. "require-dev": {
  13523. "friendsofphp/php-cs-fixer": "*",
  13524. "phpstan/phpstan": "*",
  13525. "phpunit/phpunit": "^9.6|^10.0"
  13526. },
  13527. "suggest": {
  13528. "ext-iconv": "For best support/performance",
  13529. "ext-mbstring": "For best support/performance"
  13530. },
  13531. "type": "library",
  13532. "autoload": {
  13533. "psr-4": {
  13534. "ZBateson\\MbWrapper\\": "src/"
  13535. }
  13536. },
  13537. "notification-url": "https://packagist.org/downloads/",
  13538. "license": [
  13539. "BSD-2-Clause"
  13540. ],
  13541. "authors": [
  13542. {
  13543. "name": "Zaahid Bateson"
  13544. }
  13545. ],
  13546. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13547. "keywords": [
  13548. "charset",
  13549. "encoding",
  13550. "http",
  13551. "iconv",
  13552. "mail",
  13553. "mb",
  13554. "mb_convert_encoding",
  13555. "mbstring",
  13556. "mime",
  13557. "multibyte",
  13558. "string"
  13559. ],
  13560. "support": {
  13561. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13562. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.1"
  13563. },
  13564. "funding": [
  13565. {
  13566. "url": "https://github.com/zbateson",
  13567. "type": "github"
  13568. }
  13569. ],
  13570. "time": "2024-12-20T22:05:33+00:00"
  13571. },
  13572. {
  13573. "name": "zbateson/stream-decorators",
  13574. "version": "2.1.1",
  13575. "source": {
  13576. "type": "git",
  13577. "url": "https://github.com/zbateson/stream-decorators.git",
  13578. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  13579. },
  13580. "dist": {
  13581. "type": "zip",
  13582. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13583. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13584. "shasum": ""
  13585. },
  13586. "require": {
  13587. "guzzlehttp/psr7": "^2.5",
  13588. "php": ">=8.0",
  13589. "zbateson/mb-wrapper": "^2.0"
  13590. },
  13591. "require-dev": {
  13592. "friendsofphp/php-cs-fixer": "*",
  13593. "phpstan/phpstan": "*",
  13594. "phpunit/phpunit": "^9.6|^10.0"
  13595. },
  13596. "type": "library",
  13597. "autoload": {
  13598. "psr-4": {
  13599. "ZBateson\\StreamDecorators\\": "src/"
  13600. }
  13601. },
  13602. "notification-url": "https://packagist.org/downloads/",
  13603. "license": [
  13604. "BSD-2-Clause"
  13605. ],
  13606. "authors": [
  13607. {
  13608. "name": "Zaahid Bateson"
  13609. }
  13610. ],
  13611. "description": "PHP psr7 stream decorators for mime message part streams",
  13612. "keywords": [
  13613. "base64",
  13614. "charset",
  13615. "decorators",
  13616. "mail",
  13617. "mime",
  13618. "psr7",
  13619. "quoted-printable",
  13620. "stream",
  13621. "uuencode"
  13622. ],
  13623. "support": {
  13624. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13625. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  13626. },
  13627. "funding": [
  13628. {
  13629. "url": "https://github.com/zbateson",
  13630. "type": "github"
  13631. }
  13632. ],
  13633. "time": "2024-04-29T21:42:39+00:00"
  13634. }
  13635. ],
  13636. "aliases": [],
  13637. "minimum-stability": "stable",
  13638. "stability-flags": {},
  13639. "prefer-stable": true,
  13640. "prefer-lowest": false,
  13641. "platform": {
  13642. "php": "^8.2",
  13643. "ext-bcmath": "*",
  13644. "ext-intl": "*"
  13645. },
  13646. "platform-dev": {},
  13647. "plugin-api-version": "2.6.0"
  13648. }