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

composer.lock 487KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489
  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": "095bb4040f9910ddd128bd53c0670a55",
  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.1.1",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "a467d249285a066cbb915e2bb944eb00830ef060"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/a467d249285a066cbb915e2bb944eb00830ef060",
  89. "reference": "a467d249285a066cbb915e2bb944eb00830ef060",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0",
  96. "illuminate/contracts": "^11.0",
  97. "illuminate/support": "^11.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",
  108. "phpunit/phpunit": "^10.5"
  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.1.1"
  154. },
  155. "time": "2025-02-16T19:05:34+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.1.1",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "30f5384e7e3b693beaf528b01650570a916daf47"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/30f5384e7e3b693beaf528b01650570a916daf47",
  232. "reference": "30f5384e7e3b693beaf528b01650570a916daf47",
  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",
  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",
  248. "pestphp/pest": "^2.20",
  249. "pestphp/pest-plugin-arch": "^2.0",
  250. "pestphp/pest-plugin-laravel": "^2.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.1.1"
  300. },
  301. "time": "2025-01-26T05:48:43+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.2.28",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "482be4ef83ad9f7b9d0fd0863bd675357658c94a"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/482be4ef83ad9f7b9d0fd0863bd675357658c94a",
  314. "reference": "482be4ef83ad9f7b9d0fd0863bd675357658c94a",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.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",
  325. "phpstan/phpstan": "^2.0",
  326. "phpunit/phpunit": "^9.5|^10.5",
  327. "psalm/plugin-laravel": "^2.8",
  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.2.28"
  366. },
  367. "time": "2025-01-27T15:13:13+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.1.0",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "beaa9cdb25b4211b00c675bbcbf2584cd777536c"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/beaa9cdb25b4211b00c675bbcbf2584cd777536c",
  380. "reference": "beaa9cdb25b4211b00c675bbcbf2584cd777536c",
  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.0"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2024-11-13T18:07:04+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.339.14",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "532eb5e502c5b1181456023e41d61445b2c7101d"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/532eb5e502c5b1181456023e41d61445b2c7101d",
  509. "reference": "532eb5e502c5b1181456023e41d61445b2c7101d",
  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.339.14"
  592. },
  593. "time": "2025-02-14T19:11:38+00:00"
  594. },
  595. {
  596. "name": "aws/aws-sdk-php-laravel",
  597. "version": "3.9.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  601. "reference": "11cb363873bd77a91b262936936abfa6a2122d53"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/11cb363873bd77a91b262936936abfa6a2122d53",
  606. "reference": "11cb363873bd77a91b262936936abfa6a2122d53",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "aws/aws-sdk-php": "^3.279.0",
  611. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
  612. "php": ">=7.2.5"
  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 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 6",
  660. "laravel 7",
  661. "laravel 8",
  662. "laravel 9",
  663. "s3",
  664. "sdk"
  665. ],
  666. "support": {
  667. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  668. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.9.0"
  669. },
  670. "time": "2024-03-18T17:43:45+00:00"
  671. },
  672. {
  673. "name": "barryvdh/laravel-snappy",
  674. "version": "v1.0.3",
  675. "source": {
  676. "type": "git",
  677. "url": "https://github.com/barryvdh/laravel-snappy.git",
  678. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0"
  679. },
  680. "dist": {
  681. "type": "zip",
  682. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  683. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  684. "shasum": ""
  685. },
  686. "require": {
  687. "illuminate/filesystem": "^9|^10|^11.0",
  688. "illuminate/support": "^9|^10|^11.0",
  689. "knplabs/knp-snappy": "^1.4.4",
  690. "php": ">=7.2"
  691. },
  692. "require-dev": {
  693. "orchestra/testbench": "^7|^8|^9.0"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "laravel": {
  698. "aliases": {
  699. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  700. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  701. },
  702. "providers": [
  703. "Barryvdh\\Snappy\\ServiceProvider"
  704. ]
  705. },
  706. "branch-alias": {
  707. "dev-master": "1.0-dev"
  708. }
  709. },
  710. "autoload": {
  711. "psr-4": {
  712. "Barryvdh\\Snappy\\": "src/"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Barry vd. Heuvel",
  722. "email": "barryvdh@gmail.com"
  723. }
  724. ],
  725. "description": "Snappy PDF/Image for Laravel",
  726. "keywords": [
  727. "image",
  728. "laravel",
  729. "pdf",
  730. "snappy",
  731. "wkhtmltoimage",
  732. "wkhtmltopdf"
  733. ],
  734. "support": {
  735. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  736. "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.3"
  737. },
  738. "funding": [
  739. {
  740. "url": "https://fruitcake.nl",
  741. "type": "custom"
  742. },
  743. {
  744. "url": "https://github.com/barryvdh",
  745. "type": "github"
  746. }
  747. ],
  748. "time": "2024-03-09T19:20:39+00:00"
  749. },
  750. {
  751. "name": "blade-ui-kit/blade-heroicons",
  752. "version": "2.6.0",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  756. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  761. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  762. "shasum": ""
  763. },
  764. "require": {
  765. "blade-ui-kit/blade-icons": "^1.6",
  766. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  767. "php": "^8.0"
  768. },
  769. "require-dev": {
  770. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  771. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  772. },
  773. "type": "library",
  774. "extra": {
  775. "laravel": {
  776. "providers": [
  777. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  778. ]
  779. }
  780. },
  781. "autoload": {
  782. "psr-4": {
  783. "BladeUI\\Heroicons\\": "src"
  784. }
  785. },
  786. "notification-url": "https://packagist.org/downloads/",
  787. "license": [
  788. "MIT"
  789. ],
  790. "authors": [
  791. {
  792. "name": "Dries Vints",
  793. "homepage": "https://driesvints.com"
  794. }
  795. ],
  796. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  797. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  798. "keywords": [
  799. "Heroicons",
  800. "blade",
  801. "laravel"
  802. ],
  803. "support": {
  804. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  805. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.6.0"
  806. },
  807. "funding": [
  808. {
  809. "url": "https://github.com/sponsors/driesvints",
  810. "type": "github"
  811. },
  812. {
  813. "url": "https://www.paypal.com/paypalme/driesvints",
  814. "type": "paypal"
  815. }
  816. ],
  817. "time": "2025-02-13T20:53:33+00:00"
  818. },
  819. {
  820. "name": "blade-ui-kit/blade-icons",
  821. "version": "1.8.0",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  825. "reference": "7b743f27476acb2ed04cb518213d78abe096e814"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/7b743f27476acb2ed04cb518213d78abe096e814",
  830. "reference": "7b743f27476acb2ed04cb518213d78abe096e814",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
  835. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
  836. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  837. "illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
  838. "php": "^7.4|^8.0",
  839. "symfony/console": "^5.3|^6.0|^7.0",
  840. "symfony/finder": "^5.3|^6.0|^7.0"
  841. },
  842. "require-dev": {
  843. "mockery/mockery": "^1.5.1",
  844. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  845. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  846. },
  847. "bin": [
  848. "bin/blade-icons-generate"
  849. ],
  850. "type": "library",
  851. "extra": {
  852. "laravel": {
  853. "providers": [
  854. "BladeUI\\Icons\\BladeIconsServiceProvider"
  855. ]
  856. }
  857. },
  858. "autoload": {
  859. "files": [
  860. "src/helpers.php"
  861. ],
  862. "psr-4": {
  863. "BladeUI\\Icons\\": "src"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Dries Vints",
  873. "homepage": "https://driesvints.com"
  874. }
  875. ],
  876. "description": "A package to easily make use of icons in your Laravel Blade views.",
  877. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  878. "keywords": [
  879. "blade",
  880. "icons",
  881. "laravel",
  882. "svg"
  883. ],
  884. "support": {
  885. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  886. "source": "https://github.com/blade-ui-kit/blade-icons"
  887. },
  888. "funding": [
  889. {
  890. "url": "https://github.com/sponsors/driesvints",
  891. "type": "github"
  892. },
  893. {
  894. "url": "https://www.paypal.com/paypalme/driesvints",
  895. "type": "paypal"
  896. }
  897. ],
  898. "time": "2025-02-13T20:35:06+00:00"
  899. },
  900. {
  901. "name": "brick/math",
  902. "version": "0.12.1",
  903. "source": {
  904. "type": "git",
  905. "url": "https://github.com/brick/math.git",
  906. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  907. },
  908. "dist": {
  909. "type": "zip",
  910. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  911. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  912. "shasum": ""
  913. },
  914. "require": {
  915. "php": "^8.1"
  916. },
  917. "require-dev": {
  918. "php-coveralls/php-coveralls": "^2.2",
  919. "phpunit/phpunit": "^10.1",
  920. "vimeo/psalm": "5.16.0"
  921. },
  922. "type": "library",
  923. "autoload": {
  924. "psr-4": {
  925. "Brick\\Math\\": "src/"
  926. }
  927. },
  928. "notification-url": "https://packagist.org/downloads/",
  929. "license": [
  930. "MIT"
  931. ],
  932. "description": "Arbitrary-precision arithmetic library",
  933. "keywords": [
  934. "Arbitrary-precision",
  935. "BigInteger",
  936. "BigRational",
  937. "arithmetic",
  938. "bigdecimal",
  939. "bignum",
  940. "bignumber",
  941. "brick",
  942. "decimal",
  943. "integer",
  944. "math",
  945. "mathematics",
  946. "rational"
  947. ],
  948. "support": {
  949. "issues": "https://github.com/brick/math/issues",
  950. "source": "https://github.com/brick/math/tree/0.12.1"
  951. },
  952. "funding": [
  953. {
  954. "url": "https://github.com/BenMorel",
  955. "type": "github"
  956. }
  957. ],
  958. "time": "2023-11-29T23:19:16+00:00"
  959. },
  960. {
  961. "name": "carbonphp/carbon-doctrine-types",
  962. "version": "3.2.0",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  966. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  971. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "php": "^8.1"
  976. },
  977. "conflict": {
  978. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  979. },
  980. "require-dev": {
  981. "doctrine/dbal": "^4.0.0",
  982. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  983. "phpunit/phpunit": "^10.3"
  984. },
  985. "type": "library",
  986. "autoload": {
  987. "psr-4": {
  988. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  989. }
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "MIT"
  994. ],
  995. "authors": [
  996. {
  997. "name": "KyleKatarn",
  998. "email": "kylekatarnls@gmail.com"
  999. }
  1000. ],
  1001. "description": "Types to use Carbon in Doctrine",
  1002. "keywords": [
  1003. "carbon",
  1004. "date",
  1005. "datetime",
  1006. "doctrine",
  1007. "time"
  1008. ],
  1009. "support": {
  1010. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1011. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1012. },
  1013. "funding": [
  1014. {
  1015. "url": "https://github.com/kylekatarnls",
  1016. "type": "github"
  1017. },
  1018. {
  1019. "url": "https://opencollective.com/Carbon",
  1020. "type": "open_collective"
  1021. },
  1022. {
  1023. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1024. "type": "tidelift"
  1025. }
  1026. ],
  1027. "time": "2024-02-09T16:56:22+00:00"
  1028. },
  1029. {
  1030. "name": "codewithdennis/filament-simple-alert",
  1031. "version": "v3.0.17",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/CodeWithDennis/filament-simple-alert.git",
  1035. "reference": "50bb18626b8b6c3b9780a778e9781f726574e1e7"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/CodeWithDennis/filament-simple-alert/zipball/50bb18626b8b6c3b9780a778e9781f726574e1e7",
  1040. "reference": "50bb18626b8b6c3b9780a778e9781f726574e1e7",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "filament/filament": "^3.0",
  1045. "php": "^8.1",
  1046. "spatie/laravel-package-tools": "^1.15.0"
  1047. },
  1048. "require-dev": {
  1049. "laravel/pint": "^1.16",
  1050. "nunomaduro/collision": "^7.9",
  1051. "orchestra/testbench": "^8.0",
  1052. "pestphp/pest": "^2.1",
  1053. "pestphp/pest-plugin-arch": "^2.0",
  1054. "pestphp/pest-plugin-laravel": "^2.0"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "laravel": {
  1059. "aliases": {
  1060. "SimpleAlert": "CodeWithDennis\\SimpleAlert\\Facades\\SimpleAlert"
  1061. },
  1062. "providers": [
  1063. "CodeWithDennis\\SimpleAlert\\SimpleAlertServiceProvider"
  1064. ]
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "CodeWithDennis\\SimpleAlert\\": "src/",
  1070. "CodeWithDennis\\SimpleAlert\\Database\\Factories\\": "database/factories/"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "CodeWithDennis",
  1080. "role": "Developer"
  1081. }
  1082. ],
  1083. "description": "A plugin for adding straightforward alerts to your filament pages",
  1084. "homepage": "https://github.com/codewithdennis/filament-simple-alert",
  1085. "keywords": [
  1086. "CodeWithDennis",
  1087. "filament-simple-alert",
  1088. "laravel"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/codewithdennis/filament-simple-alert/issues",
  1092. "source": "https://github.com/codewithdennis/filament-simple-alert"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://github.com/CodeWithDennis",
  1097. "type": "github"
  1098. }
  1099. ],
  1100. "time": "2025-02-10T09:29:26+00:00"
  1101. },
  1102. {
  1103. "name": "danharrin/date-format-converter",
  1104. "version": "v0.3.1",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/danharrin/date-format-converter.git",
  1108. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1113. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1114. "shasum": ""
  1115. },
  1116. "require": {
  1117. "php": "^7.2|^8.0"
  1118. },
  1119. "type": "library",
  1120. "autoload": {
  1121. "files": [
  1122. "src/helpers.php",
  1123. "src/standards.php"
  1124. ],
  1125. "psr-4": {
  1126. "DanHarrin\\DateFormatConverter\\": "src/"
  1127. }
  1128. },
  1129. "notification-url": "https://packagist.org/downloads/",
  1130. "license": [
  1131. "MIT"
  1132. ],
  1133. "authors": [
  1134. {
  1135. "name": "Dan Harrin",
  1136. "email": "dan@danharrin.com"
  1137. }
  1138. ],
  1139. "description": "Convert token-based date formats between standards.",
  1140. "homepage": "https://github.com/danharrin/date-format-converter",
  1141. "support": {
  1142. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1143. "source": "https://github.com/danharrin/date-format-converter"
  1144. },
  1145. "funding": [
  1146. {
  1147. "url": "https://github.com/danharrin",
  1148. "type": "github"
  1149. }
  1150. ],
  1151. "time": "2024-06-13T09:38:44+00:00"
  1152. },
  1153. {
  1154. "name": "danharrin/livewire-rate-limiting",
  1155. "version": "v2.0.2",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1159. "reference": "003817754b11f7189b9bd1252c27f2fbb4505a2d"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/003817754b11f7189b9bd1252c27f2fbb4505a2d",
  1164. "reference": "003817754b11f7189b9bd1252c27f2fbb4505a2d",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "illuminate/support": "^9.0|^10.0|^11.0",
  1169. "php": "^8.0"
  1170. },
  1171. "require-dev": {
  1172. "livewire/livewire": "^3.0",
  1173. "livewire/volt": "^1.3",
  1174. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1175. "phpunit/phpunit": "^9.0|^10.0"
  1176. },
  1177. "type": "library",
  1178. "autoload": {
  1179. "psr-4": {
  1180. "DanHarrin\\LivewireRateLimiting\\": "src"
  1181. }
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "MIT"
  1186. ],
  1187. "authors": [
  1188. {
  1189. "name": "Dan Harrin",
  1190. "email": "dan@danharrin.com"
  1191. }
  1192. ],
  1193. "description": "Apply rate limiters to Laravel Livewire actions.",
  1194. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1195. "support": {
  1196. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1197. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1198. },
  1199. "funding": [
  1200. {
  1201. "url": "https://github.com/danharrin",
  1202. "type": "github"
  1203. }
  1204. ],
  1205. "time": "2025-02-14T10:47:35+00:00"
  1206. },
  1207. {
  1208. "name": "dflydev/dot-access-data",
  1209. "version": "v3.0.3",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1213. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1218. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1219. "shasum": ""
  1220. },
  1221. "require": {
  1222. "php": "^7.1 || ^8.0"
  1223. },
  1224. "require-dev": {
  1225. "phpstan/phpstan": "^0.12.42",
  1226. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1227. "scrutinizer/ocular": "1.6.0",
  1228. "squizlabs/php_codesniffer": "^3.5",
  1229. "vimeo/psalm": "^4.0.0"
  1230. },
  1231. "type": "library",
  1232. "extra": {
  1233. "branch-alias": {
  1234. "dev-main": "3.x-dev"
  1235. }
  1236. },
  1237. "autoload": {
  1238. "psr-4": {
  1239. "Dflydev\\DotAccessData\\": "src/"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "Dragonfly Development Inc.",
  1249. "email": "info@dflydev.com",
  1250. "homepage": "http://dflydev.com"
  1251. },
  1252. {
  1253. "name": "Beau Simensen",
  1254. "email": "beau@dflydev.com",
  1255. "homepage": "http://beausimensen.com"
  1256. },
  1257. {
  1258. "name": "Carlos Frutos",
  1259. "email": "carlos@kiwing.it",
  1260. "homepage": "https://github.com/cfrutos"
  1261. },
  1262. {
  1263. "name": "Colin O'Dell",
  1264. "email": "colinodell@gmail.com",
  1265. "homepage": "https://www.colinodell.com"
  1266. }
  1267. ],
  1268. "description": "Given a deep data structure, access data by dot notation.",
  1269. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1270. "keywords": [
  1271. "access",
  1272. "data",
  1273. "dot",
  1274. "notation"
  1275. ],
  1276. "support": {
  1277. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1278. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1279. },
  1280. "time": "2024-07-08T12:26:09+00:00"
  1281. },
  1282. {
  1283. "name": "doctrine/dbal",
  1284. "version": "4.2.2",
  1285. "source": {
  1286. "type": "git",
  1287. "url": "https://github.com/doctrine/dbal.git",
  1288. "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec"
  1289. },
  1290. "dist": {
  1291. "type": "zip",
  1292. "url": "https://api.github.com/repos/doctrine/dbal/zipball/19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
  1293. "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
  1294. "shasum": ""
  1295. },
  1296. "require": {
  1297. "doctrine/deprecations": "^0.5.3|^1",
  1298. "php": "^8.1",
  1299. "psr/cache": "^1|^2|^3",
  1300. "psr/log": "^1|^2|^3"
  1301. },
  1302. "require-dev": {
  1303. "doctrine/coding-standard": "12.0.0",
  1304. "fig/log-test": "^1",
  1305. "jetbrains/phpstorm-stubs": "2023.2",
  1306. "phpstan/phpstan": "2.1.1",
  1307. "phpstan/phpstan-phpunit": "2.0.3",
  1308. "phpstan/phpstan-strict-rules": "^2",
  1309. "phpunit/phpunit": "10.5.39",
  1310. "slevomat/coding-standard": "8.13.1",
  1311. "squizlabs/php_codesniffer": "3.10.2",
  1312. "symfony/cache": "^6.3.8|^7.0",
  1313. "symfony/console": "^5.4|^6.3|^7.0"
  1314. },
  1315. "suggest": {
  1316. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1317. },
  1318. "type": "library",
  1319. "autoload": {
  1320. "psr-4": {
  1321. "Doctrine\\DBAL\\": "src"
  1322. }
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "MIT"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Guilherme Blanco",
  1331. "email": "guilhermeblanco@gmail.com"
  1332. },
  1333. {
  1334. "name": "Roman Borschel",
  1335. "email": "roman@code-factory.org"
  1336. },
  1337. {
  1338. "name": "Benjamin Eberlei",
  1339. "email": "kontakt@beberlei.de"
  1340. },
  1341. {
  1342. "name": "Jonathan Wage",
  1343. "email": "jonwage@gmail.com"
  1344. }
  1345. ],
  1346. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1347. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1348. "keywords": [
  1349. "abstraction",
  1350. "database",
  1351. "db2",
  1352. "dbal",
  1353. "mariadb",
  1354. "mssql",
  1355. "mysql",
  1356. "oci8",
  1357. "oracle",
  1358. "pdo",
  1359. "pgsql",
  1360. "postgresql",
  1361. "queryobject",
  1362. "sasql",
  1363. "sql",
  1364. "sqlite",
  1365. "sqlserver",
  1366. "sqlsrv"
  1367. ],
  1368. "support": {
  1369. "issues": "https://github.com/doctrine/dbal/issues",
  1370. "source": "https://github.com/doctrine/dbal/tree/4.2.2"
  1371. },
  1372. "funding": [
  1373. {
  1374. "url": "https://www.doctrine-project.org/sponsorship.html",
  1375. "type": "custom"
  1376. },
  1377. {
  1378. "url": "https://www.patreon.com/phpdoctrine",
  1379. "type": "patreon"
  1380. },
  1381. {
  1382. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1383. "type": "tidelift"
  1384. }
  1385. ],
  1386. "time": "2025-01-16T08:40:56+00:00"
  1387. },
  1388. {
  1389. "name": "doctrine/deprecations",
  1390. "version": "1.1.4",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/doctrine/deprecations.git",
  1394. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  1399. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "php": "^7.1 || ^8.0"
  1404. },
  1405. "require-dev": {
  1406. "doctrine/coding-standard": "^9 || ^12",
  1407. "phpstan/phpstan": "1.4.10 || 2.0.3",
  1408. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1409. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1410. "psr/log": "^1 || ^2 || ^3"
  1411. },
  1412. "suggest": {
  1413. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1414. },
  1415. "type": "library",
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Doctrine\\Deprecations\\": "src"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "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.",
  1426. "homepage": "https://www.doctrine-project.org/",
  1427. "support": {
  1428. "issues": "https://github.com/doctrine/deprecations/issues",
  1429. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  1430. },
  1431. "time": "2024-12-07T21:18:45+00:00"
  1432. },
  1433. {
  1434. "name": "doctrine/inflector",
  1435. "version": "2.0.10",
  1436. "source": {
  1437. "type": "git",
  1438. "url": "https://github.com/doctrine/inflector.git",
  1439. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1440. },
  1441. "dist": {
  1442. "type": "zip",
  1443. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1444. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1445. "shasum": ""
  1446. },
  1447. "require": {
  1448. "php": "^7.2 || ^8.0"
  1449. },
  1450. "require-dev": {
  1451. "doctrine/coding-standard": "^11.0",
  1452. "phpstan/phpstan": "^1.8",
  1453. "phpstan/phpstan-phpunit": "^1.1",
  1454. "phpstan/phpstan-strict-rules": "^1.3",
  1455. "phpunit/phpunit": "^8.5 || ^9.5",
  1456. "vimeo/psalm": "^4.25 || ^5.4"
  1457. },
  1458. "type": "library",
  1459. "autoload": {
  1460. "psr-4": {
  1461. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1462. }
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "MIT"
  1467. ],
  1468. "authors": [
  1469. {
  1470. "name": "Guilherme Blanco",
  1471. "email": "guilhermeblanco@gmail.com"
  1472. },
  1473. {
  1474. "name": "Roman Borschel",
  1475. "email": "roman@code-factory.org"
  1476. },
  1477. {
  1478. "name": "Benjamin Eberlei",
  1479. "email": "kontakt@beberlei.de"
  1480. },
  1481. {
  1482. "name": "Jonathan Wage",
  1483. "email": "jonwage@gmail.com"
  1484. },
  1485. {
  1486. "name": "Johannes Schmitt",
  1487. "email": "schmittjoh@gmail.com"
  1488. }
  1489. ],
  1490. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1491. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1492. "keywords": [
  1493. "inflection",
  1494. "inflector",
  1495. "lowercase",
  1496. "manipulation",
  1497. "php",
  1498. "plural",
  1499. "singular",
  1500. "strings",
  1501. "uppercase",
  1502. "words"
  1503. ],
  1504. "support": {
  1505. "issues": "https://github.com/doctrine/inflector/issues",
  1506. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1507. },
  1508. "funding": [
  1509. {
  1510. "url": "https://www.doctrine-project.org/sponsorship.html",
  1511. "type": "custom"
  1512. },
  1513. {
  1514. "url": "https://www.patreon.com/phpdoctrine",
  1515. "type": "patreon"
  1516. },
  1517. {
  1518. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1519. "type": "tidelift"
  1520. }
  1521. ],
  1522. "time": "2024-02-18T20:23:39+00:00"
  1523. },
  1524. {
  1525. "name": "doctrine/lexer",
  1526. "version": "3.0.1",
  1527. "source": {
  1528. "type": "git",
  1529. "url": "https://github.com/doctrine/lexer.git",
  1530. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1531. },
  1532. "dist": {
  1533. "type": "zip",
  1534. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1535. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1536. "shasum": ""
  1537. },
  1538. "require": {
  1539. "php": "^8.1"
  1540. },
  1541. "require-dev": {
  1542. "doctrine/coding-standard": "^12",
  1543. "phpstan/phpstan": "^1.10",
  1544. "phpunit/phpunit": "^10.5",
  1545. "psalm/plugin-phpunit": "^0.18.3",
  1546. "vimeo/psalm": "^5.21"
  1547. },
  1548. "type": "library",
  1549. "autoload": {
  1550. "psr-4": {
  1551. "Doctrine\\Common\\Lexer\\": "src"
  1552. }
  1553. },
  1554. "notification-url": "https://packagist.org/downloads/",
  1555. "license": [
  1556. "MIT"
  1557. ],
  1558. "authors": [
  1559. {
  1560. "name": "Guilherme Blanco",
  1561. "email": "guilhermeblanco@gmail.com"
  1562. },
  1563. {
  1564. "name": "Roman Borschel",
  1565. "email": "roman@code-factory.org"
  1566. },
  1567. {
  1568. "name": "Johannes Schmitt",
  1569. "email": "schmittjoh@gmail.com"
  1570. }
  1571. ],
  1572. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1573. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1574. "keywords": [
  1575. "annotations",
  1576. "docblock",
  1577. "lexer",
  1578. "parser",
  1579. "php"
  1580. ],
  1581. "support": {
  1582. "issues": "https://github.com/doctrine/lexer/issues",
  1583. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1584. },
  1585. "funding": [
  1586. {
  1587. "url": "https://www.doctrine-project.org/sponsorship.html",
  1588. "type": "custom"
  1589. },
  1590. {
  1591. "url": "https://www.patreon.com/phpdoctrine",
  1592. "type": "patreon"
  1593. },
  1594. {
  1595. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1596. "type": "tidelift"
  1597. }
  1598. ],
  1599. "time": "2024-02-05T11:56:58+00:00"
  1600. },
  1601. {
  1602. "name": "dragonmantank/cron-expression",
  1603. "version": "v3.4.0",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/dragonmantank/cron-expression.git",
  1607. "reference": "8c784d071debd117328803d86b2097615b457500"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1612. "reference": "8c784d071debd117328803d86b2097615b457500",
  1613. "shasum": ""
  1614. },
  1615. "require": {
  1616. "php": "^7.2|^8.0",
  1617. "webmozart/assert": "^1.0"
  1618. },
  1619. "replace": {
  1620. "mtdowling/cron-expression": "^1.0"
  1621. },
  1622. "require-dev": {
  1623. "phpstan/extension-installer": "^1.0",
  1624. "phpstan/phpstan": "^1.0",
  1625. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1626. },
  1627. "type": "library",
  1628. "extra": {
  1629. "branch-alias": {
  1630. "dev-master": "3.x-dev"
  1631. }
  1632. },
  1633. "autoload": {
  1634. "psr-4": {
  1635. "Cron\\": "src/Cron/"
  1636. }
  1637. },
  1638. "notification-url": "https://packagist.org/downloads/",
  1639. "license": [
  1640. "MIT"
  1641. ],
  1642. "authors": [
  1643. {
  1644. "name": "Chris Tankersley",
  1645. "email": "chris@ctankersley.com",
  1646. "homepage": "https://github.com/dragonmantank"
  1647. }
  1648. ],
  1649. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1650. "keywords": [
  1651. "cron",
  1652. "schedule"
  1653. ],
  1654. "support": {
  1655. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1656. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1657. },
  1658. "funding": [
  1659. {
  1660. "url": "https://github.com/dragonmantank",
  1661. "type": "github"
  1662. }
  1663. ],
  1664. "time": "2024-10-09T13:47:03+00:00"
  1665. },
  1666. {
  1667. "name": "egulias/email-validator",
  1668. "version": "4.0.3",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/egulias/EmailValidator.git",
  1672. "reference": "b115554301161fa21467629f1e1391c1936de517"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
  1677. "reference": "b115554301161fa21467629f1e1391c1936de517",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "doctrine/lexer": "^2.0 || ^3.0",
  1682. "php": ">=8.1",
  1683. "symfony/polyfill-intl-idn": "^1.26"
  1684. },
  1685. "require-dev": {
  1686. "phpunit/phpunit": "^10.2",
  1687. "vimeo/psalm": "^5.12"
  1688. },
  1689. "suggest": {
  1690. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1691. },
  1692. "type": "library",
  1693. "extra": {
  1694. "branch-alias": {
  1695. "dev-master": "4.0.x-dev"
  1696. }
  1697. },
  1698. "autoload": {
  1699. "psr-4": {
  1700. "Egulias\\EmailValidator\\": "src"
  1701. }
  1702. },
  1703. "notification-url": "https://packagist.org/downloads/",
  1704. "license": [
  1705. "MIT"
  1706. ],
  1707. "authors": [
  1708. {
  1709. "name": "Eduardo Gulias Davis"
  1710. }
  1711. ],
  1712. "description": "A library for validating emails against several RFCs",
  1713. "homepage": "https://github.com/egulias/EmailValidator",
  1714. "keywords": [
  1715. "email",
  1716. "emailvalidation",
  1717. "emailvalidator",
  1718. "validation",
  1719. "validator"
  1720. ],
  1721. "support": {
  1722. "issues": "https://github.com/egulias/EmailValidator/issues",
  1723. "source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
  1724. },
  1725. "funding": [
  1726. {
  1727. "url": "https://github.com/egulias",
  1728. "type": "github"
  1729. }
  1730. ],
  1731. "time": "2024-12-27T00:36:43+00:00"
  1732. },
  1733. {
  1734. "name": "filament/actions",
  1735. "version": "v3.2.140",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/filamentphp/actions.git",
  1739. "reference": "cc8a0705a497508f499df29257cb3e0619a5ea04"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/filamentphp/actions/zipball/cc8a0705a497508f499df29257cb3e0619a5ea04",
  1744. "reference": "cc8a0705a497508f499df29257cb3e0619a5ea04",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "anourvalar/eloquent-serialize": "^1.2",
  1749. "filament/forms": "self.version",
  1750. "filament/infolists": "self.version",
  1751. "filament/notifications": "self.version",
  1752. "filament/support": "self.version",
  1753. "illuminate/contracts": "^10.45|^11.0",
  1754. "illuminate/database": "^10.45|^11.0",
  1755. "illuminate/support": "^10.45|^11.0",
  1756. "league/csv": "^9.16",
  1757. "openspout/openspout": "^4.23",
  1758. "php": "^8.1",
  1759. "spatie/laravel-package-tools": "^1.9"
  1760. },
  1761. "type": "library",
  1762. "extra": {
  1763. "laravel": {
  1764. "providers": [
  1765. "Filament\\Actions\\ActionsServiceProvider"
  1766. ]
  1767. }
  1768. },
  1769. "autoload": {
  1770. "psr-4": {
  1771. "Filament\\Actions\\": "src"
  1772. }
  1773. },
  1774. "notification-url": "https://packagist.org/downloads/",
  1775. "license": [
  1776. "MIT"
  1777. ],
  1778. "description": "Easily add beautiful action modals to any Livewire component.",
  1779. "homepage": "https://github.com/filamentphp/filament",
  1780. "support": {
  1781. "issues": "https://github.com/filamentphp/filament/issues",
  1782. "source": "https://github.com/filamentphp/filament"
  1783. },
  1784. "time": "2025-02-10T08:14:18+00:00"
  1785. },
  1786. {
  1787. "name": "filament/filament",
  1788. "version": "v3.2.140",
  1789. "source": {
  1790. "type": "git",
  1791. "url": "https://github.com/filamentphp/panels.git",
  1792. "reference": "2d94d24eed26c063e6d04bea4d2cd2b8f62926f9"
  1793. },
  1794. "dist": {
  1795. "type": "zip",
  1796. "url": "https://api.github.com/repos/filamentphp/panels/zipball/2d94d24eed26c063e6d04bea4d2cd2b8f62926f9",
  1797. "reference": "2d94d24eed26c063e6d04bea4d2cd2b8f62926f9",
  1798. "shasum": ""
  1799. },
  1800. "require": {
  1801. "danharrin/livewire-rate-limiting": "^0.3|^1.0|^2.0",
  1802. "filament/actions": "self.version",
  1803. "filament/forms": "self.version",
  1804. "filament/infolists": "self.version",
  1805. "filament/notifications": "self.version",
  1806. "filament/support": "self.version",
  1807. "filament/tables": "self.version",
  1808. "filament/widgets": "self.version",
  1809. "illuminate/auth": "^10.45|^11.0",
  1810. "illuminate/console": "^10.45|^11.0",
  1811. "illuminate/contracts": "^10.45|^11.0",
  1812. "illuminate/cookie": "^10.45|^11.0",
  1813. "illuminate/database": "^10.45|^11.0",
  1814. "illuminate/http": "^10.45|^11.0",
  1815. "illuminate/routing": "^10.45|^11.0",
  1816. "illuminate/session": "^10.45|^11.0",
  1817. "illuminate/support": "^10.45|^11.0",
  1818. "illuminate/view": "^10.45|^11.0",
  1819. "php": "^8.1",
  1820. "spatie/laravel-package-tools": "^1.9"
  1821. },
  1822. "type": "library",
  1823. "extra": {
  1824. "laravel": {
  1825. "providers": [
  1826. "Filament\\FilamentServiceProvider"
  1827. ]
  1828. }
  1829. },
  1830. "autoload": {
  1831. "files": [
  1832. "src/global_helpers.php",
  1833. "src/helpers.php"
  1834. ],
  1835. "psr-4": {
  1836. "Filament\\": "src"
  1837. }
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT"
  1842. ],
  1843. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1844. "homepage": "https://github.com/filamentphp/filament",
  1845. "support": {
  1846. "issues": "https://github.com/filamentphp/filament/issues",
  1847. "source": "https://github.com/filamentphp/filament"
  1848. },
  1849. "time": "2025-02-11T07:46:34+00:00"
  1850. },
  1851. {
  1852. "name": "filament/forms",
  1853. "version": "v3.2.140",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/filamentphp/forms.git",
  1857. "reference": "de69a442a458160aa29d382b952d8f1c0b641a32"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/filamentphp/forms/zipball/de69a442a458160aa29d382b952d8f1c0b641a32",
  1862. "reference": "de69a442a458160aa29d382b952d8f1c0b641a32",
  1863. "shasum": ""
  1864. },
  1865. "require": {
  1866. "danharrin/date-format-converter": "^0.3",
  1867. "filament/actions": "self.version",
  1868. "filament/support": "self.version",
  1869. "illuminate/console": "^10.45|^11.0",
  1870. "illuminate/contracts": "^10.45|^11.0",
  1871. "illuminate/database": "^10.45|^11.0",
  1872. "illuminate/filesystem": "^10.45|^11.0",
  1873. "illuminate/support": "^10.45|^11.0",
  1874. "illuminate/validation": "^10.45|^11.0",
  1875. "illuminate/view": "^10.45|^11.0",
  1876. "php": "^8.1",
  1877. "spatie/laravel-package-tools": "^1.9"
  1878. },
  1879. "type": "library",
  1880. "extra": {
  1881. "laravel": {
  1882. "providers": [
  1883. "Filament\\Forms\\FormsServiceProvider"
  1884. ]
  1885. }
  1886. },
  1887. "autoload": {
  1888. "files": [
  1889. "src/helpers.php"
  1890. ],
  1891. "psr-4": {
  1892. "Filament\\Forms\\": "src"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "description": "Easily add beautiful forms to any Livewire component.",
  1900. "homepage": "https://github.com/filamentphp/filament",
  1901. "support": {
  1902. "issues": "https://github.com/filamentphp/filament/issues",
  1903. "source": "https://github.com/filamentphp/filament"
  1904. },
  1905. "time": "2025-02-10T10:37:19+00:00"
  1906. },
  1907. {
  1908. "name": "filament/infolists",
  1909. "version": "v3.2.140",
  1910. "source": {
  1911. "type": "git",
  1912. "url": "https://github.com/filamentphp/infolists.git",
  1913. "reference": "f6807434251196bed526540646da53efb6241ddc"
  1914. },
  1915. "dist": {
  1916. "type": "zip",
  1917. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/f6807434251196bed526540646da53efb6241ddc",
  1918. "reference": "f6807434251196bed526540646da53efb6241ddc",
  1919. "shasum": ""
  1920. },
  1921. "require": {
  1922. "filament/actions": "self.version",
  1923. "filament/support": "self.version",
  1924. "illuminate/console": "^10.45|^11.0",
  1925. "illuminate/contracts": "^10.45|^11.0",
  1926. "illuminate/database": "^10.45|^11.0",
  1927. "illuminate/filesystem": "^10.45|^11.0",
  1928. "illuminate/support": "^10.45|^11.0",
  1929. "illuminate/view": "^10.45|^11.0",
  1930. "php": "^8.1",
  1931. "spatie/laravel-package-tools": "^1.9"
  1932. },
  1933. "type": "library",
  1934. "extra": {
  1935. "laravel": {
  1936. "providers": [
  1937. "Filament\\Infolists\\InfolistsServiceProvider"
  1938. ]
  1939. }
  1940. },
  1941. "autoload": {
  1942. "psr-4": {
  1943. "Filament\\Infolists\\": "src"
  1944. }
  1945. },
  1946. "notification-url": "https://packagist.org/downloads/",
  1947. "license": [
  1948. "MIT"
  1949. ],
  1950. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1951. "homepage": "https://github.com/filamentphp/filament",
  1952. "support": {
  1953. "issues": "https://github.com/filamentphp/filament/issues",
  1954. "source": "https://github.com/filamentphp/filament"
  1955. },
  1956. "time": "2025-02-10T08:14:18+00:00"
  1957. },
  1958. {
  1959. "name": "filament/notifications",
  1960. "version": "v3.2.140",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://github.com/filamentphp/notifications.git",
  1964. "reference": "1b5c8cf1e8cf2022e437637d7cceb4ad378982a4"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/1b5c8cf1e8cf2022e437637d7cceb4ad378982a4",
  1969. "reference": "1b5c8cf1e8cf2022e437637d7cceb4ad378982a4",
  1970. "shasum": ""
  1971. },
  1972. "require": {
  1973. "filament/actions": "self.version",
  1974. "filament/support": "self.version",
  1975. "illuminate/contracts": "^10.45|^11.0",
  1976. "illuminate/filesystem": "^10.45|^11.0",
  1977. "illuminate/notifications": "^10.45|^11.0",
  1978. "illuminate/support": "^10.45|^11.0",
  1979. "php": "^8.1",
  1980. "spatie/laravel-package-tools": "^1.9"
  1981. },
  1982. "type": "library",
  1983. "extra": {
  1984. "laravel": {
  1985. "providers": [
  1986. "Filament\\Notifications\\NotificationsServiceProvider"
  1987. ]
  1988. }
  1989. },
  1990. "autoload": {
  1991. "files": [
  1992. "src/Testing/Autoload.php"
  1993. ],
  1994. "psr-4": {
  1995. "Filament\\Notifications\\": "src"
  1996. }
  1997. },
  1998. "notification-url": "https://packagist.org/downloads/",
  1999. "license": [
  2000. "MIT"
  2001. ],
  2002. "description": "Easily add beautiful notifications to any Livewire app.",
  2003. "homepage": "https://github.com/filamentphp/filament",
  2004. "support": {
  2005. "issues": "https://github.com/filamentphp/filament/issues",
  2006. "source": "https://github.com/filamentphp/filament"
  2007. },
  2008. "time": "2025-02-10T08:14:22+00:00"
  2009. },
  2010. {
  2011. "name": "filament/support",
  2012. "version": "v3.2.140",
  2013. "source": {
  2014. "type": "git",
  2015. "url": "https://github.com/filamentphp/support.git",
  2016. "reference": "95223f4bbfaa8c817efeacb4e2e7ca6928297610"
  2017. },
  2018. "dist": {
  2019. "type": "zip",
  2020. "url": "https://api.github.com/repos/filamentphp/support/zipball/95223f4bbfaa8c817efeacb4e2e7ca6928297610",
  2021. "reference": "95223f4bbfaa8c817efeacb4e2e7ca6928297610",
  2022. "shasum": ""
  2023. },
  2024. "require": {
  2025. "blade-ui-kit/blade-heroicons": "^2.5",
  2026. "doctrine/dbal": "^3.2|^4.0",
  2027. "ext-intl": "*",
  2028. "illuminate/contracts": "^10.45|^11.0",
  2029. "illuminate/support": "^10.45|^11.0",
  2030. "illuminate/view": "^10.45|^11.0",
  2031. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  2032. "livewire/livewire": "^3.5",
  2033. "php": "^8.1",
  2034. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2035. "spatie/color": "^1.5",
  2036. "spatie/invade": "^1.0|^2.0",
  2037. "spatie/laravel-package-tools": "^1.9",
  2038. "symfony/console": "^6.0|^7.0",
  2039. "symfony/html-sanitizer": "^6.1|^7.0"
  2040. },
  2041. "type": "library",
  2042. "extra": {
  2043. "laravel": {
  2044. "providers": [
  2045. "Filament\\Support\\SupportServiceProvider"
  2046. ]
  2047. }
  2048. },
  2049. "autoload": {
  2050. "files": [
  2051. "src/helpers.php"
  2052. ],
  2053. "psr-4": {
  2054. "Filament\\Support\\": "src"
  2055. }
  2056. },
  2057. "notification-url": "https://packagist.org/downloads/",
  2058. "license": [
  2059. "MIT"
  2060. ],
  2061. "description": "Core helper methods and foundation code for all Filament packages.",
  2062. "homepage": "https://github.com/filamentphp/filament",
  2063. "support": {
  2064. "issues": "https://github.com/filamentphp/filament/issues",
  2065. "source": "https://github.com/filamentphp/filament"
  2066. },
  2067. "time": "2025-02-10T08:14:57+00:00"
  2068. },
  2069. {
  2070. "name": "filament/tables",
  2071. "version": "v3.2.140",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://github.com/filamentphp/tables.git",
  2075. "reference": "c1bf374b1c3286c2b70c3898c269b89cc966d560"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://api.github.com/repos/filamentphp/tables/zipball/c1bf374b1c3286c2b70c3898c269b89cc966d560",
  2080. "reference": "c1bf374b1c3286c2b70c3898c269b89cc966d560",
  2081. "shasum": ""
  2082. },
  2083. "require": {
  2084. "filament/actions": "self.version",
  2085. "filament/forms": "self.version",
  2086. "filament/support": "self.version",
  2087. "illuminate/console": "^10.45|^11.0",
  2088. "illuminate/contracts": "^10.45|^11.0",
  2089. "illuminate/database": "^10.45|^11.0",
  2090. "illuminate/filesystem": "^10.45|^11.0",
  2091. "illuminate/support": "^10.45|^11.0",
  2092. "illuminate/view": "^10.45|^11.0",
  2093. "php": "^8.1",
  2094. "spatie/laravel-package-tools": "^1.9"
  2095. },
  2096. "type": "library",
  2097. "extra": {
  2098. "laravel": {
  2099. "providers": [
  2100. "Filament\\Tables\\TablesServiceProvider"
  2101. ]
  2102. }
  2103. },
  2104. "autoload": {
  2105. "psr-4": {
  2106. "Filament\\Tables\\": "src"
  2107. }
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "description": "Easily add beautiful tables to any Livewire component.",
  2114. "homepage": "https://github.com/filamentphp/filament",
  2115. "support": {
  2116. "issues": "https://github.com/filamentphp/filament/issues",
  2117. "source": "https://github.com/filamentphp/filament"
  2118. },
  2119. "time": "2025-02-10T08:14:59+00:00"
  2120. },
  2121. {
  2122. "name": "filament/widgets",
  2123. "version": "v3.2.140",
  2124. "source": {
  2125. "type": "git",
  2126. "url": "https://github.com/filamentphp/widgets.git",
  2127. "reference": "c0d29d9822c56ca37af6b04edb2fc51b02002fee"
  2128. },
  2129. "dist": {
  2130. "type": "zip",
  2131. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/c0d29d9822c56ca37af6b04edb2fc51b02002fee",
  2132. "reference": "c0d29d9822c56ca37af6b04edb2fc51b02002fee",
  2133. "shasum": ""
  2134. },
  2135. "require": {
  2136. "filament/support": "self.version",
  2137. "php": "^8.1",
  2138. "spatie/laravel-package-tools": "^1.9"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "laravel": {
  2143. "providers": [
  2144. "Filament\\Widgets\\WidgetsServiceProvider"
  2145. ]
  2146. }
  2147. },
  2148. "autoload": {
  2149. "psr-4": {
  2150. "Filament\\Widgets\\": "src"
  2151. }
  2152. },
  2153. "notification-url": "https://packagist.org/downloads/",
  2154. "license": [
  2155. "MIT"
  2156. ],
  2157. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2158. "homepage": "https://github.com/filamentphp/filament",
  2159. "support": {
  2160. "issues": "https://github.com/filamentphp/filament/issues",
  2161. "source": "https://github.com/filamentphp/filament"
  2162. },
  2163. "time": "2025-02-10T10:37:39+00:00"
  2164. },
  2165. {
  2166. "name": "firebase/php-jwt",
  2167. "version": "v6.11.0",
  2168. "source": {
  2169. "type": "git",
  2170. "url": "https://github.com/firebase/php-jwt.git",
  2171. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  2172. },
  2173. "dist": {
  2174. "type": "zip",
  2175. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2176. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2177. "shasum": ""
  2178. },
  2179. "require": {
  2180. "php": "^8.0"
  2181. },
  2182. "require-dev": {
  2183. "guzzlehttp/guzzle": "^7.4",
  2184. "phpspec/prophecy-phpunit": "^2.0",
  2185. "phpunit/phpunit": "^9.5",
  2186. "psr/cache": "^2.0||^3.0",
  2187. "psr/http-client": "^1.0",
  2188. "psr/http-factory": "^1.0"
  2189. },
  2190. "suggest": {
  2191. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2192. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2193. },
  2194. "type": "library",
  2195. "autoload": {
  2196. "psr-4": {
  2197. "Firebase\\JWT\\": "src"
  2198. }
  2199. },
  2200. "notification-url": "https://packagist.org/downloads/",
  2201. "license": [
  2202. "BSD-3-Clause"
  2203. ],
  2204. "authors": [
  2205. {
  2206. "name": "Neuman Vong",
  2207. "email": "neuman+pear@twilio.com",
  2208. "role": "Developer"
  2209. },
  2210. {
  2211. "name": "Anant Narayanan",
  2212. "email": "anant@php.net",
  2213. "role": "Developer"
  2214. }
  2215. ],
  2216. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2217. "homepage": "https://github.com/firebase/php-jwt",
  2218. "keywords": [
  2219. "jwt",
  2220. "php"
  2221. ],
  2222. "support": {
  2223. "issues": "https://github.com/firebase/php-jwt/issues",
  2224. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  2225. },
  2226. "time": "2025-01-23T05:11:06+00:00"
  2227. },
  2228. {
  2229. "name": "fruitcake/php-cors",
  2230. "version": "v1.3.0",
  2231. "source": {
  2232. "type": "git",
  2233. "url": "https://github.com/fruitcake/php-cors.git",
  2234. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2235. },
  2236. "dist": {
  2237. "type": "zip",
  2238. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2239. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2240. "shasum": ""
  2241. },
  2242. "require": {
  2243. "php": "^7.4|^8.0",
  2244. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2245. },
  2246. "require-dev": {
  2247. "phpstan/phpstan": "^1.4",
  2248. "phpunit/phpunit": "^9",
  2249. "squizlabs/php_codesniffer": "^3.5"
  2250. },
  2251. "type": "library",
  2252. "extra": {
  2253. "branch-alias": {
  2254. "dev-master": "1.2-dev"
  2255. }
  2256. },
  2257. "autoload": {
  2258. "psr-4": {
  2259. "Fruitcake\\Cors\\": "src/"
  2260. }
  2261. },
  2262. "notification-url": "https://packagist.org/downloads/",
  2263. "license": [
  2264. "MIT"
  2265. ],
  2266. "authors": [
  2267. {
  2268. "name": "Fruitcake",
  2269. "homepage": "https://fruitcake.nl"
  2270. },
  2271. {
  2272. "name": "Barryvdh",
  2273. "email": "barryvdh@gmail.com"
  2274. }
  2275. ],
  2276. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2277. "homepage": "https://github.com/fruitcake/php-cors",
  2278. "keywords": [
  2279. "cors",
  2280. "laravel",
  2281. "symfony"
  2282. ],
  2283. "support": {
  2284. "issues": "https://github.com/fruitcake/php-cors/issues",
  2285. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2286. },
  2287. "funding": [
  2288. {
  2289. "url": "https://fruitcake.nl",
  2290. "type": "custom"
  2291. },
  2292. {
  2293. "url": "https://github.com/barryvdh",
  2294. "type": "github"
  2295. }
  2296. ],
  2297. "time": "2023-10-12T05:21:21+00:00"
  2298. },
  2299. {
  2300. "name": "graham-campbell/result-type",
  2301. "version": "v1.1.3",
  2302. "source": {
  2303. "type": "git",
  2304. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2305. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2306. },
  2307. "dist": {
  2308. "type": "zip",
  2309. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2310. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2311. "shasum": ""
  2312. },
  2313. "require": {
  2314. "php": "^7.2.5 || ^8.0",
  2315. "phpoption/phpoption": "^1.9.3"
  2316. },
  2317. "require-dev": {
  2318. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2319. },
  2320. "type": "library",
  2321. "autoload": {
  2322. "psr-4": {
  2323. "GrahamCampbell\\ResultType\\": "src/"
  2324. }
  2325. },
  2326. "notification-url": "https://packagist.org/downloads/",
  2327. "license": [
  2328. "MIT"
  2329. ],
  2330. "authors": [
  2331. {
  2332. "name": "Graham Campbell",
  2333. "email": "hello@gjcampbell.co.uk",
  2334. "homepage": "https://github.com/GrahamCampbell"
  2335. }
  2336. ],
  2337. "description": "An Implementation Of The Result Type",
  2338. "keywords": [
  2339. "Graham Campbell",
  2340. "GrahamCampbell",
  2341. "Result Type",
  2342. "Result-Type",
  2343. "result"
  2344. ],
  2345. "support": {
  2346. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2347. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2348. },
  2349. "funding": [
  2350. {
  2351. "url": "https://github.com/GrahamCampbell",
  2352. "type": "github"
  2353. },
  2354. {
  2355. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2356. "type": "tidelift"
  2357. }
  2358. ],
  2359. "time": "2024-07-20T21:45:45+00:00"
  2360. },
  2361. {
  2362. "name": "guava/filament-clusters",
  2363. "version": "1.4.0",
  2364. "source": {
  2365. "type": "git",
  2366. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2367. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2368. },
  2369. "dist": {
  2370. "type": "zip",
  2371. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2372. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2373. "shasum": ""
  2374. },
  2375. "require": {
  2376. "filament/filament": "^3.0",
  2377. "illuminate/contracts": "^10.0 | ^11.0",
  2378. "php": "^8.1",
  2379. "spatie/laravel-package-tools": "^1.14.0"
  2380. },
  2381. "require-dev": {
  2382. "laravel/pint": "^1.0",
  2383. "nunomaduro/collision": "^7.8",
  2384. "nunomaduro/larastan": "^2.0.1",
  2385. "orchestra/testbench": "^8.8",
  2386. "pestphp/pest": "^2.0",
  2387. "pestphp/pest-plugin-arch": "^2.0",
  2388. "pestphp/pest-plugin-laravel": "^2.0",
  2389. "phpstan/extension-installer": "^1.1",
  2390. "phpstan/phpstan-deprecation-rules": "^1.0",
  2391. "phpstan/phpstan-phpunit": "^1.0"
  2392. },
  2393. "type": "library",
  2394. "extra": {
  2395. "laravel": {
  2396. "providers": [
  2397. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2398. ]
  2399. }
  2400. },
  2401. "autoload": {
  2402. "psr-4": {
  2403. "Guava\\FilamentClusters\\": "src/"
  2404. }
  2405. },
  2406. "notification-url": "https://packagist.org/downloads/",
  2407. "license": [
  2408. "MIT"
  2409. ],
  2410. "authors": [
  2411. {
  2412. "name": "Lukas Frey",
  2413. "email": "lukas.frey@guava.cz",
  2414. "role": "Developer"
  2415. }
  2416. ],
  2417. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2418. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2419. "keywords": [
  2420. "Guava",
  2421. "filament-clusters",
  2422. "laravel"
  2423. ],
  2424. "support": {
  2425. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2426. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2427. },
  2428. "funding": [
  2429. {
  2430. "url": "https://github.com/GuavaCZ",
  2431. "type": "github"
  2432. }
  2433. ],
  2434. "time": "2024-05-31T09:31:08+00:00"
  2435. },
  2436. {
  2437. "name": "guzzlehttp/guzzle",
  2438. "version": "7.9.2",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/guzzle/guzzle.git",
  2442. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2447. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2448. "shasum": ""
  2449. },
  2450. "require": {
  2451. "ext-json": "*",
  2452. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2453. "guzzlehttp/psr7": "^2.7.0",
  2454. "php": "^7.2.5 || ^8.0",
  2455. "psr/http-client": "^1.0",
  2456. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2457. },
  2458. "provide": {
  2459. "psr/http-client-implementation": "1.0"
  2460. },
  2461. "require-dev": {
  2462. "bamarni/composer-bin-plugin": "^1.8.2",
  2463. "ext-curl": "*",
  2464. "guzzle/client-integration-tests": "3.0.2",
  2465. "php-http/message-factory": "^1.1",
  2466. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2467. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2468. },
  2469. "suggest": {
  2470. "ext-curl": "Required for CURL handler support",
  2471. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2472. "psr/log": "Required for using the Log middleware"
  2473. },
  2474. "type": "library",
  2475. "extra": {
  2476. "bamarni-bin": {
  2477. "bin-links": true,
  2478. "forward-command": false
  2479. }
  2480. },
  2481. "autoload": {
  2482. "files": [
  2483. "src/functions_include.php"
  2484. ],
  2485. "psr-4": {
  2486. "GuzzleHttp\\": "src/"
  2487. }
  2488. },
  2489. "notification-url": "https://packagist.org/downloads/",
  2490. "license": [
  2491. "MIT"
  2492. ],
  2493. "authors": [
  2494. {
  2495. "name": "Graham Campbell",
  2496. "email": "hello@gjcampbell.co.uk",
  2497. "homepage": "https://github.com/GrahamCampbell"
  2498. },
  2499. {
  2500. "name": "Michael Dowling",
  2501. "email": "mtdowling@gmail.com",
  2502. "homepage": "https://github.com/mtdowling"
  2503. },
  2504. {
  2505. "name": "Jeremy Lindblom",
  2506. "email": "jeremeamia@gmail.com",
  2507. "homepage": "https://github.com/jeremeamia"
  2508. },
  2509. {
  2510. "name": "George Mponos",
  2511. "email": "gmponos@gmail.com",
  2512. "homepage": "https://github.com/gmponos"
  2513. },
  2514. {
  2515. "name": "Tobias Nyholm",
  2516. "email": "tobias.nyholm@gmail.com",
  2517. "homepage": "https://github.com/Nyholm"
  2518. },
  2519. {
  2520. "name": "Márk Sági-Kazár",
  2521. "email": "mark.sagikazar@gmail.com",
  2522. "homepage": "https://github.com/sagikazarmark"
  2523. },
  2524. {
  2525. "name": "Tobias Schultze",
  2526. "email": "webmaster@tubo-world.de",
  2527. "homepage": "https://github.com/Tobion"
  2528. }
  2529. ],
  2530. "description": "Guzzle is a PHP HTTP client library",
  2531. "keywords": [
  2532. "client",
  2533. "curl",
  2534. "framework",
  2535. "http",
  2536. "http client",
  2537. "psr-18",
  2538. "psr-7",
  2539. "rest",
  2540. "web service"
  2541. ],
  2542. "support": {
  2543. "issues": "https://github.com/guzzle/guzzle/issues",
  2544. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2545. },
  2546. "funding": [
  2547. {
  2548. "url": "https://github.com/GrahamCampbell",
  2549. "type": "github"
  2550. },
  2551. {
  2552. "url": "https://github.com/Nyholm",
  2553. "type": "github"
  2554. },
  2555. {
  2556. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2557. "type": "tidelift"
  2558. }
  2559. ],
  2560. "time": "2024-07-24T11:22:20+00:00"
  2561. },
  2562. {
  2563. "name": "guzzlehttp/promises",
  2564. "version": "2.0.4",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://github.com/guzzle/promises.git",
  2568. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2573. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2574. "shasum": ""
  2575. },
  2576. "require": {
  2577. "php": "^7.2.5 || ^8.0"
  2578. },
  2579. "require-dev": {
  2580. "bamarni/composer-bin-plugin": "^1.8.2",
  2581. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2582. },
  2583. "type": "library",
  2584. "extra": {
  2585. "bamarni-bin": {
  2586. "bin-links": true,
  2587. "forward-command": false
  2588. }
  2589. },
  2590. "autoload": {
  2591. "psr-4": {
  2592. "GuzzleHttp\\Promise\\": "src/"
  2593. }
  2594. },
  2595. "notification-url": "https://packagist.org/downloads/",
  2596. "license": [
  2597. "MIT"
  2598. ],
  2599. "authors": [
  2600. {
  2601. "name": "Graham Campbell",
  2602. "email": "hello@gjcampbell.co.uk",
  2603. "homepage": "https://github.com/GrahamCampbell"
  2604. },
  2605. {
  2606. "name": "Michael Dowling",
  2607. "email": "mtdowling@gmail.com",
  2608. "homepage": "https://github.com/mtdowling"
  2609. },
  2610. {
  2611. "name": "Tobias Nyholm",
  2612. "email": "tobias.nyholm@gmail.com",
  2613. "homepage": "https://github.com/Nyholm"
  2614. },
  2615. {
  2616. "name": "Tobias Schultze",
  2617. "email": "webmaster@tubo-world.de",
  2618. "homepage": "https://github.com/Tobion"
  2619. }
  2620. ],
  2621. "description": "Guzzle promises library",
  2622. "keywords": [
  2623. "promise"
  2624. ],
  2625. "support": {
  2626. "issues": "https://github.com/guzzle/promises/issues",
  2627. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2628. },
  2629. "funding": [
  2630. {
  2631. "url": "https://github.com/GrahamCampbell",
  2632. "type": "github"
  2633. },
  2634. {
  2635. "url": "https://github.com/Nyholm",
  2636. "type": "github"
  2637. },
  2638. {
  2639. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2640. "type": "tidelift"
  2641. }
  2642. ],
  2643. "time": "2024-10-17T10:06:22+00:00"
  2644. },
  2645. {
  2646. "name": "guzzlehttp/psr7",
  2647. "version": "2.7.0",
  2648. "source": {
  2649. "type": "git",
  2650. "url": "https://github.com/guzzle/psr7.git",
  2651. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2652. },
  2653. "dist": {
  2654. "type": "zip",
  2655. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2656. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2657. "shasum": ""
  2658. },
  2659. "require": {
  2660. "php": "^7.2.5 || ^8.0",
  2661. "psr/http-factory": "^1.0",
  2662. "psr/http-message": "^1.1 || ^2.0",
  2663. "ralouphie/getallheaders": "^3.0"
  2664. },
  2665. "provide": {
  2666. "psr/http-factory-implementation": "1.0",
  2667. "psr/http-message-implementation": "1.0"
  2668. },
  2669. "require-dev": {
  2670. "bamarni/composer-bin-plugin": "^1.8.2",
  2671. "http-interop/http-factory-tests": "0.9.0",
  2672. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2673. },
  2674. "suggest": {
  2675. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "bamarni-bin": {
  2680. "bin-links": true,
  2681. "forward-command": false
  2682. }
  2683. },
  2684. "autoload": {
  2685. "psr-4": {
  2686. "GuzzleHttp\\Psr7\\": "src/"
  2687. }
  2688. },
  2689. "notification-url": "https://packagist.org/downloads/",
  2690. "license": [
  2691. "MIT"
  2692. ],
  2693. "authors": [
  2694. {
  2695. "name": "Graham Campbell",
  2696. "email": "hello@gjcampbell.co.uk",
  2697. "homepage": "https://github.com/GrahamCampbell"
  2698. },
  2699. {
  2700. "name": "Michael Dowling",
  2701. "email": "mtdowling@gmail.com",
  2702. "homepage": "https://github.com/mtdowling"
  2703. },
  2704. {
  2705. "name": "George Mponos",
  2706. "email": "gmponos@gmail.com",
  2707. "homepage": "https://github.com/gmponos"
  2708. },
  2709. {
  2710. "name": "Tobias Nyholm",
  2711. "email": "tobias.nyholm@gmail.com",
  2712. "homepage": "https://github.com/Nyholm"
  2713. },
  2714. {
  2715. "name": "Márk Sági-Kazár",
  2716. "email": "mark.sagikazar@gmail.com",
  2717. "homepage": "https://github.com/sagikazarmark"
  2718. },
  2719. {
  2720. "name": "Tobias Schultze",
  2721. "email": "webmaster@tubo-world.de",
  2722. "homepage": "https://github.com/Tobion"
  2723. },
  2724. {
  2725. "name": "Márk Sági-Kazár",
  2726. "email": "mark.sagikazar@gmail.com",
  2727. "homepage": "https://sagikazarmark.hu"
  2728. }
  2729. ],
  2730. "description": "PSR-7 message implementation that also provides common utility methods",
  2731. "keywords": [
  2732. "http",
  2733. "message",
  2734. "psr-7",
  2735. "request",
  2736. "response",
  2737. "stream",
  2738. "uri",
  2739. "url"
  2740. ],
  2741. "support": {
  2742. "issues": "https://github.com/guzzle/psr7/issues",
  2743. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2744. },
  2745. "funding": [
  2746. {
  2747. "url": "https://github.com/GrahamCampbell",
  2748. "type": "github"
  2749. },
  2750. {
  2751. "url": "https://github.com/Nyholm",
  2752. "type": "github"
  2753. },
  2754. {
  2755. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2756. "type": "tidelift"
  2757. }
  2758. ],
  2759. "time": "2024-07-18T11:15:46+00:00"
  2760. },
  2761. {
  2762. "name": "guzzlehttp/uri-template",
  2763. "version": "v1.0.4",
  2764. "source": {
  2765. "type": "git",
  2766. "url": "https://github.com/guzzle/uri-template.git",
  2767. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  2768. },
  2769. "dist": {
  2770. "type": "zip",
  2771. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  2772. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  2773. "shasum": ""
  2774. },
  2775. "require": {
  2776. "php": "^7.2.5 || ^8.0",
  2777. "symfony/polyfill-php80": "^1.24"
  2778. },
  2779. "require-dev": {
  2780. "bamarni/composer-bin-plugin": "^1.8.2",
  2781. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2782. "uri-template/tests": "1.0.0"
  2783. },
  2784. "type": "library",
  2785. "extra": {
  2786. "bamarni-bin": {
  2787. "bin-links": true,
  2788. "forward-command": false
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-4": {
  2793. "GuzzleHttp\\UriTemplate\\": "src"
  2794. }
  2795. },
  2796. "notification-url": "https://packagist.org/downloads/",
  2797. "license": [
  2798. "MIT"
  2799. ],
  2800. "authors": [
  2801. {
  2802. "name": "Graham Campbell",
  2803. "email": "hello@gjcampbell.co.uk",
  2804. "homepage": "https://github.com/GrahamCampbell"
  2805. },
  2806. {
  2807. "name": "Michael Dowling",
  2808. "email": "mtdowling@gmail.com",
  2809. "homepage": "https://github.com/mtdowling"
  2810. },
  2811. {
  2812. "name": "George Mponos",
  2813. "email": "gmponos@gmail.com",
  2814. "homepage": "https://github.com/gmponos"
  2815. },
  2816. {
  2817. "name": "Tobias Nyholm",
  2818. "email": "tobias.nyholm@gmail.com",
  2819. "homepage": "https://github.com/Nyholm"
  2820. }
  2821. ],
  2822. "description": "A polyfill class for uri_template of PHP",
  2823. "keywords": [
  2824. "guzzlehttp",
  2825. "uri-template"
  2826. ],
  2827. "support": {
  2828. "issues": "https://github.com/guzzle/uri-template/issues",
  2829. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  2830. },
  2831. "funding": [
  2832. {
  2833. "url": "https://github.com/GrahamCampbell",
  2834. "type": "github"
  2835. },
  2836. {
  2837. "url": "https://github.com/Nyholm",
  2838. "type": "github"
  2839. },
  2840. {
  2841. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2842. "type": "tidelift"
  2843. }
  2844. ],
  2845. "time": "2025-02-03T10:55:03+00:00"
  2846. },
  2847. {
  2848. "name": "jaocero/radio-deck",
  2849. "version": "v1.2.9",
  2850. "source": {
  2851. "type": "git",
  2852. "url": "https://github.com/199ocero/radio-deck.git",
  2853. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e"
  2854. },
  2855. "dist": {
  2856. "type": "zip",
  2857. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2858. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2859. "shasum": ""
  2860. },
  2861. "require": {
  2862. "filament/forms": "^3.0",
  2863. "illuminate/contracts": "^10.0|^11.0",
  2864. "php": "^8.1",
  2865. "spatie/laravel-package-tools": "^1.15.0"
  2866. },
  2867. "require-dev": {
  2868. "nunomaduro/collision": "^7.9",
  2869. "orchestra/testbench": "^8.0|^9.0",
  2870. "pestphp/pest": "^2.0",
  2871. "pestphp/pest-plugin-arch": "^2.0",
  2872. "pestphp/pest-plugin-laravel": "^2.0"
  2873. },
  2874. "type": "library",
  2875. "extra": {
  2876. "laravel": {
  2877. "providers": [
  2878. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2879. ]
  2880. }
  2881. },
  2882. "autoload": {
  2883. "psr-4": {
  2884. "JaOcero\\RadioDeck\\": "src/",
  2885. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2886. }
  2887. },
  2888. "notification-url": "https://packagist.org/downloads/",
  2889. "license": [
  2890. "MIT"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "Jay-Are Ocero",
  2895. "email": "199ocero@gmail.com",
  2896. "role": "Developer"
  2897. }
  2898. ],
  2899. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2900. "homepage": "https://github.com/jaocero/radio-deck",
  2901. "keywords": [
  2902. "filament-form",
  2903. "filament-plugin",
  2904. "filamentphp",
  2905. "jaocero",
  2906. "laravel",
  2907. "radio-deck"
  2908. ],
  2909. "support": {
  2910. "issues": "https://github.com/jaocero/radio-deck/issues",
  2911. "source": "https://github.com/jaocero/radio-deck"
  2912. },
  2913. "funding": [
  2914. {
  2915. "url": "https://github.com/jaocero",
  2916. "type": "github"
  2917. }
  2918. ],
  2919. "time": "2024-12-07T13:41:25+00:00"
  2920. },
  2921. {
  2922. "name": "kirschbaum-development/eloquent-power-joins",
  2923. "version": "4.2.0",
  2924. "source": {
  2925. "type": "git",
  2926. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2927. "reference": "aafbe349e0ad4862273880652d0141bb753c4fc7"
  2928. },
  2929. "dist": {
  2930. "type": "zip",
  2931. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/aafbe349e0ad4862273880652d0141bb753c4fc7",
  2932. "reference": "aafbe349e0ad4862273880652d0141bb753c4fc7",
  2933. "shasum": ""
  2934. },
  2935. "require": {
  2936. "illuminate/database": "^11.42|^12.0",
  2937. "illuminate/support": "^11.42|^12.0",
  2938. "php": "^8.2"
  2939. },
  2940. "require-dev": {
  2941. "friendsofphp/php-cs-fixer": "dev-master",
  2942. "laravel/legacy-factories": "^1.0@dev",
  2943. "orchestra/testbench": "^9.0|^10.0",
  2944. "phpunit/phpunit": "^10.0|^11.0"
  2945. },
  2946. "type": "library",
  2947. "extra": {
  2948. "laravel": {
  2949. "providers": [
  2950. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2951. ]
  2952. }
  2953. },
  2954. "autoload": {
  2955. "psr-4": {
  2956. "Kirschbaum\\PowerJoins\\": "src"
  2957. }
  2958. },
  2959. "notification-url": "https://packagist.org/downloads/",
  2960. "license": [
  2961. "MIT"
  2962. ],
  2963. "authors": [
  2964. {
  2965. "name": "Luis Dalmolin",
  2966. "email": "luis.nh@gmail.com",
  2967. "role": "Developer"
  2968. }
  2969. ],
  2970. "description": "The Laravel magic applied to joins.",
  2971. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2972. "keywords": [
  2973. "eloquent",
  2974. "join",
  2975. "laravel",
  2976. "mysql"
  2977. ],
  2978. "support": {
  2979. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2980. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.0"
  2981. },
  2982. "time": "2025-02-13T23:30:29+00:00"
  2983. },
  2984. {
  2985. "name": "knplabs/knp-snappy",
  2986. "version": "v1.5.1",
  2987. "source": {
  2988. "type": "git",
  2989. "url": "https://github.com/KnpLabs/snappy.git",
  2990. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7"
  2991. },
  2992. "dist": {
  2993. "type": "zip",
  2994. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  2995. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  2996. "shasum": ""
  2997. },
  2998. "require": {
  2999. "php": ">=8.1",
  3000. "psr/log": "^2.0||^3.0",
  3001. "symfony/process": "^5.0||^6.0||^7.0"
  3002. },
  3003. "require-dev": {
  3004. "friendsofphp/php-cs-fixer": "^3.0",
  3005. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3006. "phpstan/phpstan": "^1.0.0",
  3007. "phpstan/phpstan-phpunit": "^1.0.0",
  3008. "phpunit/phpunit": "^8.5"
  3009. },
  3010. "type": "library",
  3011. "extra": {
  3012. "branch-alias": {
  3013. "dev-master": "1.x-dev"
  3014. }
  3015. },
  3016. "autoload": {
  3017. "psr-4": {
  3018. "Knp\\Snappy\\": "src/Knp/Snappy"
  3019. }
  3020. },
  3021. "notification-url": "https://packagist.org/downloads/",
  3022. "license": [
  3023. "MIT"
  3024. ],
  3025. "authors": [
  3026. {
  3027. "name": "KNP Labs Team",
  3028. "homepage": "http://knplabs.com"
  3029. },
  3030. {
  3031. "name": "Symfony Community",
  3032. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3033. }
  3034. ],
  3035. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3036. "homepage": "http://github.com/KnpLabs/snappy",
  3037. "keywords": [
  3038. "knp",
  3039. "knplabs",
  3040. "pdf",
  3041. "snapshot",
  3042. "thumbnail",
  3043. "wkhtmltopdf"
  3044. ],
  3045. "support": {
  3046. "issues": "https://github.com/KnpLabs/snappy/issues",
  3047. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.1"
  3048. },
  3049. "time": "2025-01-06T16:53:26+00:00"
  3050. },
  3051. {
  3052. "name": "laravel/framework",
  3053. "version": "v11.42.1",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/laravel/framework.git",
  3057. "reference": "ff392f42f6c55cc774ce75553a11c6b031da67f8"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/laravel/framework/zipball/ff392f42f6c55cc774ce75553a11c6b031da67f8",
  3062. "reference": "ff392f42f6c55cc774ce75553a11c6b031da67f8",
  3063. "shasum": ""
  3064. },
  3065. "require": {
  3066. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3067. "composer-runtime-api": "^2.2",
  3068. "doctrine/inflector": "^2.0.5",
  3069. "dragonmantank/cron-expression": "^3.4",
  3070. "egulias/email-validator": "^3.2.1|^4.0",
  3071. "ext-ctype": "*",
  3072. "ext-filter": "*",
  3073. "ext-hash": "*",
  3074. "ext-mbstring": "*",
  3075. "ext-openssl": "*",
  3076. "ext-session": "*",
  3077. "ext-tokenizer": "*",
  3078. "fruitcake/php-cors": "^1.3",
  3079. "guzzlehttp/guzzle": "^7.8.2",
  3080. "guzzlehttp/uri-template": "^1.0",
  3081. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3082. "laravel/serializable-closure": "^1.3|^2.0",
  3083. "league/commonmark": "^2.6",
  3084. "league/flysystem": "^3.25.1",
  3085. "league/flysystem-local": "^3.25.1",
  3086. "league/uri": "^7.5.1",
  3087. "monolog/monolog": "^3.0",
  3088. "nesbot/carbon": "^2.72.6|^3.8.4",
  3089. "nunomaduro/termwind": "^2.0",
  3090. "php": "^8.2",
  3091. "psr/container": "^1.1.1|^2.0.1",
  3092. "psr/log": "^1.0|^2.0|^3.0",
  3093. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3094. "ramsey/uuid": "^4.7",
  3095. "symfony/console": "^7.0.3",
  3096. "symfony/error-handler": "^7.0.3",
  3097. "symfony/finder": "^7.0.3",
  3098. "symfony/http-foundation": "^7.2.0",
  3099. "symfony/http-kernel": "^7.0.3",
  3100. "symfony/mailer": "^7.0.3",
  3101. "symfony/mime": "^7.0.3",
  3102. "symfony/polyfill-php83": "^1.31",
  3103. "symfony/process": "^7.0.3",
  3104. "symfony/routing": "^7.0.3",
  3105. "symfony/uid": "^7.0.3",
  3106. "symfony/var-dumper": "^7.0.3",
  3107. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3108. "vlucas/phpdotenv": "^5.6.1",
  3109. "voku/portable-ascii": "^2.0.2"
  3110. },
  3111. "conflict": {
  3112. "tightenco/collect": "<5.5.33"
  3113. },
  3114. "provide": {
  3115. "psr/container-implementation": "1.1|2.0",
  3116. "psr/log-implementation": "1.0|2.0|3.0",
  3117. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3118. },
  3119. "replace": {
  3120. "illuminate/auth": "self.version",
  3121. "illuminate/broadcasting": "self.version",
  3122. "illuminate/bus": "self.version",
  3123. "illuminate/cache": "self.version",
  3124. "illuminate/collections": "self.version",
  3125. "illuminate/concurrency": "self.version",
  3126. "illuminate/conditionable": "self.version",
  3127. "illuminate/config": "self.version",
  3128. "illuminate/console": "self.version",
  3129. "illuminate/container": "self.version",
  3130. "illuminate/contracts": "self.version",
  3131. "illuminate/cookie": "self.version",
  3132. "illuminate/database": "self.version",
  3133. "illuminate/encryption": "self.version",
  3134. "illuminate/events": "self.version",
  3135. "illuminate/filesystem": "self.version",
  3136. "illuminate/hashing": "self.version",
  3137. "illuminate/http": "self.version",
  3138. "illuminate/log": "self.version",
  3139. "illuminate/macroable": "self.version",
  3140. "illuminate/mail": "self.version",
  3141. "illuminate/notifications": "self.version",
  3142. "illuminate/pagination": "self.version",
  3143. "illuminate/pipeline": "self.version",
  3144. "illuminate/process": "self.version",
  3145. "illuminate/queue": "self.version",
  3146. "illuminate/redis": "self.version",
  3147. "illuminate/routing": "self.version",
  3148. "illuminate/session": "self.version",
  3149. "illuminate/support": "self.version",
  3150. "illuminate/testing": "self.version",
  3151. "illuminate/translation": "self.version",
  3152. "illuminate/validation": "self.version",
  3153. "illuminate/view": "self.version",
  3154. "spatie/once": "*"
  3155. },
  3156. "require-dev": {
  3157. "ably/ably-php": "^1.0",
  3158. "aws/aws-sdk-php": "^3.322.9",
  3159. "ext-gmp": "*",
  3160. "fakerphp/faker": "^1.24",
  3161. "guzzlehttp/promises": "^2.0.3",
  3162. "guzzlehttp/psr7": "^2.4",
  3163. "laravel/pint": "^1.18",
  3164. "league/flysystem-aws-s3-v3": "^3.25.1",
  3165. "league/flysystem-ftp": "^3.25.1",
  3166. "league/flysystem-path-prefixing": "^3.25.1",
  3167. "league/flysystem-read-only": "^3.25.1",
  3168. "league/flysystem-sftp-v3": "^3.25.1",
  3169. "mockery/mockery": "^1.6.10",
  3170. "orchestra/testbench-core": "^9.9.4",
  3171. "pda/pheanstalk": "^5.0.6",
  3172. "php-http/discovery": "^1.15",
  3173. "phpstan/phpstan": "^2.0",
  3174. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  3175. "predis/predis": "^2.3",
  3176. "resend/resend-php": "^0.10.0",
  3177. "symfony/cache": "^7.0.3",
  3178. "symfony/http-client": "^7.0.3",
  3179. "symfony/psr-http-message-bridge": "^7.0.3",
  3180. "symfony/translation": "^7.0.3"
  3181. },
  3182. "suggest": {
  3183. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3184. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3185. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3186. "ext-apcu": "Required to use the APC cache driver.",
  3187. "ext-fileinfo": "Required to use the Filesystem class.",
  3188. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3189. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3190. "ext-memcached": "Required to use the memcache cache driver.",
  3191. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3192. "ext-pdo": "Required to use all database features.",
  3193. "ext-posix": "Required to use all features of the queue worker.",
  3194. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3195. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3196. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3197. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3198. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3199. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3200. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3201. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3202. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3203. "mockery/mockery": "Required to use mocking (^1.6).",
  3204. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3205. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3206. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  3207. "predis/predis": "Required to use the predis connector (^2.3).",
  3208. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3209. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3210. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3211. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3212. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3213. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3214. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3215. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3216. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3217. },
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "11.x-dev"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "files": [
  3226. "src/Illuminate/Collections/functions.php",
  3227. "src/Illuminate/Collections/helpers.php",
  3228. "src/Illuminate/Events/functions.php",
  3229. "src/Illuminate/Filesystem/functions.php",
  3230. "src/Illuminate/Foundation/helpers.php",
  3231. "src/Illuminate/Log/functions.php",
  3232. "src/Illuminate/Support/functions.php",
  3233. "src/Illuminate/Support/helpers.php"
  3234. ],
  3235. "psr-4": {
  3236. "Illuminate\\": "src/Illuminate/",
  3237. "Illuminate\\Support\\": [
  3238. "src/Illuminate/Macroable/",
  3239. "src/Illuminate/Collections/",
  3240. "src/Illuminate/Conditionable/"
  3241. ]
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "Taylor Otwell",
  3251. "email": "taylor@laravel.com"
  3252. }
  3253. ],
  3254. "description": "The Laravel Framework.",
  3255. "homepage": "https://laravel.com",
  3256. "keywords": [
  3257. "framework",
  3258. "laravel"
  3259. ],
  3260. "support": {
  3261. "issues": "https://github.com/laravel/framework/issues",
  3262. "source": "https://github.com/laravel/framework"
  3263. },
  3264. "time": "2025-02-12T20:58:18+00:00"
  3265. },
  3266. {
  3267. "name": "laravel/prompts",
  3268. "version": "v0.3.5",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/laravel/prompts.git",
  3272. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  3277. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  3278. "shasum": ""
  3279. },
  3280. "require": {
  3281. "composer-runtime-api": "^2.2",
  3282. "ext-mbstring": "*",
  3283. "php": "^8.1",
  3284. "symfony/console": "^6.2|^7.0"
  3285. },
  3286. "conflict": {
  3287. "illuminate/console": ">=10.17.0 <10.25.0",
  3288. "laravel/framework": ">=10.17.0 <10.25.0"
  3289. },
  3290. "require-dev": {
  3291. "illuminate/collections": "^10.0|^11.0|^12.0",
  3292. "mockery/mockery": "^1.5",
  3293. "pestphp/pest": "^2.3|^3.4",
  3294. "phpstan/phpstan": "^1.11",
  3295. "phpstan/phpstan-mockery": "^1.1"
  3296. },
  3297. "suggest": {
  3298. "ext-pcntl": "Required for the spinner to be animated."
  3299. },
  3300. "type": "library",
  3301. "extra": {
  3302. "branch-alias": {
  3303. "dev-main": "0.3.x-dev"
  3304. }
  3305. },
  3306. "autoload": {
  3307. "files": [
  3308. "src/helpers.php"
  3309. ],
  3310. "psr-4": {
  3311. "Laravel\\Prompts\\": "src/"
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3319. "support": {
  3320. "issues": "https://github.com/laravel/prompts/issues",
  3321. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  3322. },
  3323. "time": "2025-02-11T13:34:40+00:00"
  3324. },
  3325. {
  3326. "name": "laravel/sanctum",
  3327. "version": "v4.0.8",
  3328. "source": {
  3329. "type": "git",
  3330. "url": "https://github.com/laravel/sanctum.git",
  3331. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
  3332. },
  3333. "dist": {
  3334. "type": "zip",
  3335. "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  3336. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  3337. "shasum": ""
  3338. },
  3339. "require": {
  3340. "ext-json": "*",
  3341. "illuminate/console": "^11.0|^12.0",
  3342. "illuminate/contracts": "^11.0|^12.0",
  3343. "illuminate/database": "^11.0|^12.0",
  3344. "illuminate/support": "^11.0|^12.0",
  3345. "php": "^8.2",
  3346. "symfony/console": "^7.0"
  3347. },
  3348. "require-dev": {
  3349. "mockery/mockery": "^1.6",
  3350. "orchestra/testbench": "^9.0|^10.0",
  3351. "phpstan/phpstan": "^1.10",
  3352. "phpunit/phpunit": "^11.3"
  3353. },
  3354. "type": "library",
  3355. "extra": {
  3356. "laravel": {
  3357. "providers": [
  3358. "Laravel\\Sanctum\\SanctumServiceProvider"
  3359. ]
  3360. }
  3361. },
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Laravel\\Sanctum\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Taylor Otwell",
  3374. "email": "taylor@laravel.com"
  3375. }
  3376. ],
  3377. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3378. "keywords": [
  3379. "auth",
  3380. "laravel",
  3381. "sanctum"
  3382. ],
  3383. "support": {
  3384. "issues": "https://github.com/laravel/sanctum/issues",
  3385. "source": "https://github.com/laravel/sanctum"
  3386. },
  3387. "time": "2025-01-26T19:34:36+00:00"
  3388. },
  3389. {
  3390. "name": "laravel/serializable-closure",
  3391. "version": "v2.0.3",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/laravel/serializable-closure.git",
  3395. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f379c13663245f7aa4512a7869f62eb14095f23f",
  3400. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f",
  3401. "shasum": ""
  3402. },
  3403. "require": {
  3404. "php": "^8.1"
  3405. },
  3406. "require-dev": {
  3407. "illuminate/support": "^10.0|^11.0|^12.0",
  3408. "nesbot/carbon": "^2.67|^3.0",
  3409. "pestphp/pest": "^2.36|^3.0",
  3410. "phpstan/phpstan": "^2.0",
  3411. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3412. },
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "2.x-dev"
  3417. }
  3418. },
  3419. "autoload": {
  3420. "psr-4": {
  3421. "Laravel\\SerializableClosure\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Taylor Otwell",
  3431. "email": "taylor@laravel.com"
  3432. },
  3433. {
  3434. "name": "Nuno Maduro",
  3435. "email": "nuno@laravel.com"
  3436. }
  3437. ],
  3438. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3439. "keywords": [
  3440. "closure",
  3441. "laravel",
  3442. "serializable"
  3443. ],
  3444. "support": {
  3445. "issues": "https://github.com/laravel/serializable-closure/issues",
  3446. "source": "https://github.com/laravel/serializable-closure"
  3447. },
  3448. "time": "2025-02-11T15:03:05+00:00"
  3449. },
  3450. {
  3451. "name": "laravel/socialite",
  3452. "version": "v5.18.0",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/laravel/socialite.git",
  3456. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/laravel/socialite/zipball/7809dc71250e074cd42970f0f803f2cddc04c5de",
  3461. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de",
  3462. "shasum": ""
  3463. },
  3464. "require": {
  3465. "ext-json": "*",
  3466. "firebase/php-jwt": "^6.4",
  3467. "guzzlehttp/guzzle": "^6.0|^7.0",
  3468. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3469. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3470. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3471. "league/oauth1-client": "^1.11",
  3472. "php": "^7.2|^8.0",
  3473. "phpseclib/phpseclib": "^3.0"
  3474. },
  3475. "require-dev": {
  3476. "mockery/mockery": "^1.0",
  3477. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  3478. "phpstan/phpstan": "^1.10",
  3479. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  3480. },
  3481. "type": "library",
  3482. "extra": {
  3483. "laravel": {
  3484. "aliases": {
  3485. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3486. },
  3487. "providers": [
  3488. "Laravel\\Socialite\\SocialiteServiceProvider"
  3489. ]
  3490. },
  3491. "branch-alias": {
  3492. "dev-master": "5.x-dev"
  3493. }
  3494. },
  3495. "autoload": {
  3496. "psr-4": {
  3497. "Laravel\\Socialite\\": "src/"
  3498. }
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "Taylor Otwell",
  3507. "email": "taylor@laravel.com"
  3508. }
  3509. ],
  3510. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3511. "homepage": "https://laravel.com",
  3512. "keywords": [
  3513. "laravel",
  3514. "oauth"
  3515. ],
  3516. "support": {
  3517. "issues": "https://github.com/laravel/socialite/issues",
  3518. "source": "https://github.com/laravel/socialite"
  3519. },
  3520. "time": "2025-02-11T13:38:19+00:00"
  3521. },
  3522. {
  3523. "name": "laravel/tinker",
  3524. "version": "v2.10.1",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/laravel/tinker.git",
  3528. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3533. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3534. "shasum": ""
  3535. },
  3536. "require": {
  3537. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3538. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3539. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3540. "php": "^7.2.5|^8.0",
  3541. "psy/psysh": "^0.11.1|^0.12.0",
  3542. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3543. },
  3544. "require-dev": {
  3545. "mockery/mockery": "~1.3.3|^1.4.2",
  3546. "phpstan/phpstan": "^1.10",
  3547. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3548. },
  3549. "suggest": {
  3550. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3551. },
  3552. "type": "library",
  3553. "extra": {
  3554. "laravel": {
  3555. "providers": [
  3556. "Laravel\\Tinker\\TinkerServiceProvider"
  3557. ]
  3558. }
  3559. },
  3560. "autoload": {
  3561. "psr-4": {
  3562. "Laravel\\Tinker\\": "src/"
  3563. }
  3564. },
  3565. "notification-url": "https://packagist.org/downloads/",
  3566. "license": [
  3567. "MIT"
  3568. ],
  3569. "authors": [
  3570. {
  3571. "name": "Taylor Otwell",
  3572. "email": "taylor@laravel.com"
  3573. }
  3574. ],
  3575. "description": "Powerful REPL for the Laravel framework.",
  3576. "keywords": [
  3577. "REPL",
  3578. "Tinker",
  3579. "laravel",
  3580. "psysh"
  3581. ],
  3582. "support": {
  3583. "issues": "https://github.com/laravel/tinker/issues",
  3584. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3585. },
  3586. "time": "2025-01-27T14:24:01+00:00"
  3587. },
  3588. {
  3589. "name": "league/commonmark",
  3590. "version": "2.6.1",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://github.com/thephpleague/commonmark.git",
  3594. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad",
  3599. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad",
  3600. "shasum": ""
  3601. },
  3602. "require": {
  3603. "ext-mbstring": "*",
  3604. "league/config": "^1.1.1",
  3605. "php": "^7.4 || ^8.0",
  3606. "psr/event-dispatcher": "^1.0",
  3607. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3608. "symfony/polyfill-php80": "^1.16"
  3609. },
  3610. "require-dev": {
  3611. "cebe/markdown": "^1.0",
  3612. "commonmark/cmark": "0.31.1",
  3613. "commonmark/commonmark.js": "0.31.1",
  3614. "composer/package-versions-deprecated": "^1.8",
  3615. "embed/embed": "^4.4",
  3616. "erusev/parsedown": "^1.0",
  3617. "ext-json": "*",
  3618. "github/gfm": "0.29.0",
  3619. "michelf/php-markdown": "^1.4 || ^2.0",
  3620. "nyholm/psr7": "^1.5",
  3621. "phpstan/phpstan": "^1.8.2",
  3622. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3623. "scrutinizer/ocular": "^1.8.1",
  3624. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3625. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3626. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3627. "unleashedtech/php-coding-standard": "^3.1.1",
  3628. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3629. },
  3630. "suggest": {
  3631. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3632. },
  3633. "type": "library",
  3634. "extra": {
  3635. "branch-alias": {
  3636. "dev-main": "2.7-dev"
  3637. }
  3638. },
  3639. "autoload": {
  3640. "psr-4": {
  3641. "League\\CommonMark\\": "src"
  3642. }
  3643. },
  3644. "notification-url": "https://packagist.org/downloads/",
  3645. "license": [
  3646. "BSD-3-Clause"
  3647. ],
  3648. "authors": [
  3649. {
  3650. "name": "Colin O'Dell",
  3651. "email": "colinodell@gmail.com",
  3652. "homepage": "https://www.colinodell.com",
  3653. "role": "Lead Developer"
  3654. }
  3655. ],
  3656. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3657. "homepage": "https://commonmark.thephpleague.com",
  3658. "keywords": [
  3659. "commonmark",
  3660. "flavored",
  3661. "gfm",
  3662. "github",
  3663. "github-flavored",
  3664. "markdown",
  3665. "md",
  3666. "parser"
  3667. ],
  3668. "support": {
  3669. "docs": "https://commonmark.thephpleague.com/",
  3670. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3671. "issues": "https://github.com/thephpleague/commonmark/issues",
  3672. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3673. "source": "https://github.com/thephpleague/commonmark"
  3674. },
  3675. "funding": [
  3676. {
  3677. "url": "https://www.colinodell.com/sponsor",
  3678. "type": "custom"
  3679. },
  3680. {
  3681. "url": "https://www.paypal.me/colinpodell/10.00",
  3682. "type": "custom"
  3683. },
  3684. {
  3685. "url": "https://github.com/colinodell",
  3686. "type": "github"
  3687. },
  3688. {
  3689. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3690. "type": "tidelift"
  3691. }
  3692. ],
  3693. "time": "2024-12-29T14:10:59+00:00"
  3694. },
  3695. {
  3696. "name": "league/config",
  3697. "version": "v1.2.0",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/thephpleague/config.git",
  3701. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3706. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3707. "shasum": ""
  3708. },
  3709. "require": {
  3710. "dflydev/dot-access-data": "^3.0.1",
  3711. "nette/schema": "^1.2",
  3712. "php": "^7.4 || ^8.0"
  3713. },
  3714. "require-dev": {
  3715. "phpstan/phpstan": "^1.8.2",
  3716. "phpunit/phpunit": "^9.5.5",
  3717. "scrutinizer/ocular": "^1.8.1",
  3718. "unleashedtech/php-coding-standard": "^3.1",
  3719. "vimeo/psalm": "^4.7.3"
  3720. },
  3721. "type": "library",
  3722. "extra": {
  3723. "branch-alias": {
  3724. "dev-main": "1.2-dev"
  3725. }
  3726. },
  3727. "autoload": {
  3728. "psr-4": {
  3729. "League\\Config\\": "src"
  3730. }
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "BSD-3-Clause"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "Colin O'Dell",
  3739. "email": "colinodell@gmail.com",
  3740. "homepage": "https://www.colinodell.com",
  3741. "role": "Lead Developer"
  3742. }
  3743. ],
  3744. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3745. "homepage": "https://config.thephpleague.com",
  3746. "keywords": [
  3747. "array",
  3748. "config",
  3749. "configuration",
  3750. "dot",
  3751. "dot-access",
  3752. "nested",
  3753. "schema"
  3754. ],
  3755. "support": {
  3756. "docs": "https://config.thephpleague.com/",
  3757. "issues": "https://github.com/thephpleague/config/issues",
  3758. "rss": "https://github.com/thephpleague/config/releases.atom",
  3759. "source": "https://github.com/thephpleague/config"
  3760. },
  3761. "funding": [
  3762. {
  3763. "url": "https://www.colinodell.com/sponsor",
  3764. "type": "custom"
  3765. },
  3766. {
  3767. "url": "https://www.paypal.me/colinpodell/10.00",
  3768. "type": "custom"
  3769. },
  3770. {
  3771. "url": "https://github.com/colinodell",
  3772. "type": "github"
  3773. }
  3774. ],
  3775. "time": "2022-12-11T20:36:23+00:00"
  3776. },
  3777. {
  3778. "name": "league/csv",
  3779. "version": "9.21.0",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/thephpleague/csv.git",
  3783. "reference": "72196d11ebba22d868954cb39c0c7346207430cc"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/thephpleague/csv/zipball/72196d11ebba22d868954cb39c0c7346207430cc",
  3788. "reference": "72196d11ebba22d868954cb39c0c7346207430cc",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "ext-filter": "*",
  3793. "php": "^8.1.2"
  3794. },
  3795. "require-dev": {
  3796. "ext-dom": "*",
  3797. "ext-xdebug": "*",
  3798. "friendsofphp/php-cs-fixer": "^3.64.0",
  3799. "phpbench/phpbench": "^1.3.1",
  3800. "phpstan/phpstan": "^1.12.11",
  3801. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3802. "phpstan/phpstan-phpunit": "^1.4.1",
  3803. "phpstan/phpstan-strict-rules": "^1.6.1",
  3804. "phpunit/phpunit": "^10.5.16 || ^11.4.3",
  3805. "symfony/var-dumper": "^6.4.8 || ^7.1.8"
  3806. },
  3807. "suggest": {
  3808. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3809. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3810. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3811. },
  3812. "type": "library",
  3813. "extra": {
  3814. "branch-alias": {
  3815. "dev-master": "9.x-dev"
  3816. }
  3817. },
  3818. "autoload": {
  3819. "files": [
  3820. "src/functions_include.php"
  3821. ],
  3822. "psr-4": {
  3823. "League\\Csv\\": "src/"
  3824. }
  3825. },
  3826. "notification-url": "https://packagist.org/downloads/",
  3827. "license": [
  3828. "MIT"
  3829. ],
  3830. "authors": [
  3831. {
  3832. "name": "Ignace Nyamagana Butera",
  3833. "email": "nyamsprod@gmail.com",
  3834. "homepage": "https://github.com/nyamsprod/",
  3835. "role": "Developer"
  3836. }
  3837. ],
  3838. "description": "CSV data manipulation made easy in PHP",
  3839. "homepage": "https://csv.thephpleague.com",
  3840. "keywords": [
  3841. "convert",
  3842. "csv",
  3843. "export",
  3844. "filter",
  3845. "import",
  3846. "read",
  3847. "transform",
  3848. "write"
  3849. ],
  3850. "support": {
  3851. "docs": "https://csv.thephpleague.com",
  3852. "issues": "https://github.com/thephpleague/csv/issues",
  3853. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3854. "source": "https://github.com/thephpleague/csv"
  3855. },
  3856. "funding": [
  3857. {
  3858. "url": "https://github.com/sponsors/nyamsprod",
  3859. "type": "github"
  3860. }
  3861. ],
  3862. "time": "2025-01-08T19:27:58+00:00"
  3863. },
  3864. {
  3865. "name": "league/flysystem",
  3866. "version": "3.29.1",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/thephpleague/flysystem.git",
  3870. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3875. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3876. "shasum": ""
  3877. },
  3878. "require": {
  3879. "league/flysystem-local": "^3.0.0",
  3880. "league/mime-type-detection": "^1.0.0",
  3881. "php": "^8.0.2"
  3882. },
  3883. "conflict": {
  3884. "async-aws/core": "<1.19.0",
  3885. "async-aws/s3": "<1.14.0",
  3886. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3887. "guzzlehttp/guzzle": "<7.0",
  3888. "guzzlehttp/ringphp": "<1.1.1",
  3889. "phpseclib/phpseclib": "3.0.15",
  3890. "symfony/http-client": "<5.2"
  3891. },
  3892. "require-dev": {
  3893. "async-aws/s3": "^1.5 || ^2.0",
  3894. "async-aws/simple-s3": "^1.1 || ^2.0",
  3895. "aws/aws-sdk-php": "^3.295.10",
  3896. "composer/semver": "^3.0",
  3897. "ext-fileinfo": "*",
  3898. "ext-ftp": "*",
  3899. "ext-mongodb": "^1.3",
  3900. "ext-zip": "*",
  3901. "friendsofphp/php-cs-fixer": "^3.5",
  3902. "google/cloud-storage": "^1.23",
  3903. "guzzlehttp/psr7": "^2.6",
  3904. "microsoft/azure-storage-blob": "^1.1",
  3905. "mongodb/mongodb": "^1.2",
  3906. "phpseclib/phpseclib": "^3.0.36",
  3907. "phpstan/phpstan": "^1.10",
  3908. "phpunit/phpunit": "^9.5.11|^10.0",
  3909. "sabre/dav": "^4.6.0"
  3910. },
  3911. "type": "library",
  3912. "autoload": {
  3913. "psr-4": {
  3914. "League\\Flysystem\\": "src"
  3915. }
  3916. },
  3917. "notification-url": "https://packagist.org/downloads/",
  3918. "license": [
  3919. "MIT"
  3920. ],
  3921. "authors": [
  3922. {
  3923. "name": "Frank de Jonge",
  3924. "email": "info@frankdejonge.nl"
  3925. }
  3926. ],
  3927. "description": "File storage abstraction for PHP",
  3928. "keywords": [
  3929. "WebDAV",
  3930. "aws",
  3931. "cloud",
  3932. "file",
  3933. "files",
  3934. "filesystem",
  3935. "filesystems",
  3936. "ftp",
  3937. "s3",
  3938. "sftp",
  3939. "storage"
  3940. ],
  3941. "support": {
  3942. "issues": "https://github.com/thephpleague/flysystem/issues",
  3943. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  3944. },
  3945. "time": "2024-10-08T08:58:34+00:00"
  3946. },
  3947. {
  3948. "name": "league/flysystem-local",
  3949. "version": "3.29.0",
  3950. "source": {
  3951. "type": "git",
  3952. "url": "https://github.com/thephpleague/flysystem-local.git",
  3953. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  3954. },
  3955. "dist": {
  3956. "type": "zip",
  3957. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3958. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3959. "shasum": ""
  3960. },
  3961. "require": {
  3962. "ext-fileinfo": "*",
  3963. "league/flysystem": "^3.0.0",
  3964. "league/mime-type-detection": "^1.0.0",
  3965. "php": "^8.0.2"
  3966. },
  3967. "type": "library",
  3968. "autoload": {
  3969. "psr-4": {
  3970. "League\\Flysystem\\Local\\": ""
  3971. }
  3972. },
  3973. "notification-url": "https://packagist.org/downloads/",
  3974. "license": [
  3975. "MIT"
  3976. ],
  3977. "authors": [
  3978. {
  3979. "name": "Frank de Jonge",
  3980. "email": "info@frankdejonge.nl"
  3981. }
  3982. ],
  3983. "description": "Local filesystem adapter for Flysystem.",
  3984. "keywords": [
  3985. "Flysystem",
  3986. "file",
  3987. "files",
  3988. "filesystem",
  3989. "local"
  3990. ],
  3991. "support": {
  3992. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  3993. },
  3994. "time": "2024-08-09T21:24:39+00:00"
  3995. },
  3996. {
  3997. "name": "league/mime-type-detection",
  3998. "version": "1.16.0",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4002. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4007. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4008. "shasum": ""
  4009. },
  4010. "require": {
  4011. "ext-fileinfo": "*",
  4012. "php": "^7.4 || ^8.0"
  4013. },
  4014. "require-dev": {
  4015. "friendsofphp/php-cs-fixer": "^3.2",
  4016. "phpstan/phpstan": "^0.12.68",
  4017. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4018. },
  4019. "type": "library",
  4020. "autoload": {
  4021. "psr-4": {
  4022. "League\\MimeTypeDetection\\": "src"
  4023. }
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Frank de Jonge",
  4032. "email": "info@frankdejonge.nl"
  4033. }
  4034. ],
  4035. "description": "Mime-type detection for Flysystem",
  4036. "support": {
  4037. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4038. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://github.com/frankdejonge",
  4043. "type": "github"
  4044. },
  4045. {
  4046. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4047. "type": "tidelift"
  4048. }
  4049. ],
  4050. "time": "2024-09-21T08:32:55+00:00"
  4051. },
  4052. {
  4053. "name": "league/oauth1-client",
  4054. "version": "v1.11.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/thephpleague/oauth1-client.git",
  4058. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4063. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "ext-json": "*",
  4068. "ext-openssl": "*",
  4069. "guzzlehttp/guzzle": "^6.0|^7.0",
  4070. "guzzlehttp/psr7": "^1.7|^2.0",
  4071. "php": ">=7.1||>=8.0"
  4072. },
  4073. "require-dev": {
  4074. "ext-simplexml": "*",
  4075. "friendsofphp/php-cs-fixer": "^2.17",
  4076. "mockery/mockery": "^1.3.3",
  4077. "phpstan/phpstan": "^0.12.42",
  4078. "phpunit/phpunit": "^7.5||9.5"
  4079. },
  4080. "suggest": {
  4081. "ext-simplexml": "For decoding XML-based responses."
  4082. },
  4083. "type": "library",
  4084. "extra": {
  4085. "branch-alias": {
  4086. "dev-master": "1.0-dev",
  4087. "dev-develop": "2.0-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "League\\OAuth1\\Client\\": "src/"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Ben Corlett",
  4102. "email": "bencorlett@me.com",
  4103. "homepage": "http://www.webcomm.com.au",
  4104. "role": "Developer"
  4105. }
  4106. ],
  4107. "description": "OAuth 1.0 Client Library",
  4108. "keywords": [
  4109. "Authentication",
  4110. "SSO",
  4111. "authorization",
  4112. "bitbucket",
  4113. "identity",
  4114. "idp",
  4115. "oauth",
  4116. "oauth1",
  4117. "single sign on",
  4118. "trello",
  4119. "tumblr",
  4120. "twitter"
  4121. ],
  4122. "support": {
  4123. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4124. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4125. },
  4126. "time": "2024-12-10T19:59:05+00:00"
  4127. },
  4128. {
  4129. "name": "league/uri",
  4130. "version": "7.5.1",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://github.com/thephpleague/uri.git",
  4134. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4139. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4140. "shasum": ""
  4141. },
  4142. "require": {
  4143. "league/uri-interfaces": "^7.5",
  4144. "php": "^8.1"
  4145. },
  4146. "conflict": {
  4147. "league/uri-schemes": "^1.0"
  4148. },
  4149. "suggest": {
  4150. "ext-bcmath": "to improve IPV4 host parsing",
  4151. "ext-fileinfo": "to create Data URI from file contennts",
  4152. "ext-gmp": "to improve IPV4 host parsing",
  4153. "ext-intl": "to handle IDN host with the best performance",
  4154. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4155. "league/uri-components": "Needed to easily manipulate URI objects components",
  4156. "php-64bit": "to improve IPV4 host parsing",
  4157. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4158. },
  4159. "type": "library",
  4160. "extra": {
  4161. "branch-alias": {
  4162. "dev-master": "7.x-dev"
  4163. }
  4164. },
  4165. "autoload": {
  4166. "psr-4": {
  4167. "League\\Uri\\": ""
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "MIT"
  4173. ],
  4174. "authors": [
  4175. {
  4176. "name": "Ignace Nyamagana Butera",
  4177. "email": "nyamsprod@gmail.com",
  4178. "homepage": "https://nyamsprod.com"
  4179. }
  4180. ],
  4181. "description": "URI manipulation library",
  4182. "homepage": "https://uri.thephpleague.com",
  4183. "keywords": [
  4184. "data-uri",
  4185. "file-uri",
  4186. "ftp",
  4187. "hostname",
  4188. "http",
  4189. "https",
  4190. "middleware",
  4191. "parse_str",
  4192. "parse_url",
  4193. "psr-7",
  4194. "query-string",
  4195. "querystring",
  4196. "rfc3986",
  4197. "rfc3987",
  4198. "rfc6570",
  4199. "uri",
  4200. "uri-template",
  4201. "url",
  4202. "ws"
  4203. ],
  4204. "support": {
  4205. "docs": "https://uri.thephpleague.com",
  4206. "forum": "https://thephpleague.slack.com",
  4207. "issues": "https://github.com/thephpleague/uri-src/issues",
  4208. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4209. },
  4210. "funding": [
  4211. {
  4212. "url": "https://github.com/sponsors/nyamsprod",
  4213. "type": "github"
  4214. }
  4215. ],
  4216. "time": "2024-12-08T08:40:02+00:00"
  4217. },
  4218. {
  4219. "name": "league/uri-interfaces",
  4220. "version": "7.5.0",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4224. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4229. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4230. "shasum": ""
  4231. },
  4232. "require": {
  4233. "ext-filter": "*",
  4234. "php": "^8.1",
  4235. "psr/http-factory": "^1",
  4236. "psr/http-message": "^1.1 || ^2.0"
  4237. },
  4238. "suggest": {
  4239. "ext-bcmath": "to improve IPV4 host parsing",
  4240. "ext-gmp": "to improve IPV4 host parsing",
  4241. "ext-intl": "to handle IDN host with the best performance",
  4242. "php-64bit": "to improve IPV4 host parsing",
  4243. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4244. },
  4245. "type": "library",
  4246. "extra": {
  4247. "branch-alias": {
  4248. "dev-master": "7.x-dev"
  4249. }
  4250. },
  4251. "autoload": {
  4252. "psr-4": {
  4253. "League\\Uri\\": ""
  4254. }
  4255. },
  4256. "notification-url": "https://packagist.org/downloads/",
  4257. "license": [
  4258. "MIT"
  4259. ],
  4260. "authors": [
  4261. {
  4262. "name": "Ignace Nyamagana Butera",
  4263. "email": "nyamsprod@gmail.com",
  4264. "homepage": "https://nyamsprod.com"
  4265. }
  4266. ],
  4267. "description": "Common interfaces and classes for URI representation and interaction",
  4268. "homepage": "https://uri.thephpleague.com",
  4269. "keywords": [
  4270. "data-uri",
  4271. "file-uri",
  4272. "ftp",
  4273. "hostname",
  4274. "http",
  4275. "https",
  4276. "parse_str",
  4277. "parse_url",
  4278. "psr-7",
  4279. "query-string",
  4280. "querystring",
  4281. "rfc3986",
  4282. "rfc3987",
  4283. "rfc6570",
  4284. "uri",
  4285. "url",
  4286. "ws"
  4287. ],
  4288. "support": {
  4289. "docs": "https://uri.thephpleague.com",
  4290. "forum": "https://thephpleague.slack.com",
  4291. "issues": "https://github.com/thephpleague/uri-src/issues",
  4292. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4293. },
  4294. "funding": [
  4295. {
  4296. "url": "https://github.com/sponsors/nyamsprod",
  4297. "type": "github"
  4298. }
  4299. ],
  4300. "time": "2024-12-08T08:18:47+00:00"
  4301. },
  4302. {
  4303. "name": "livewire/livewire",
  4304. "version": "v3.5.20",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://github.com/livewire/livewire.git",
  4308. "reference": "509f2258c51741f6d06deb65d4437654520694e6"
  4309. },
  4310. "dist": {
  4311. "type": "zip",
  4312. "url": "https://api.github.com/repos/livewire/livewire/zipball/509f2258c51741f6d06deb65d4437654520694e6",
  4313. "reference": "509f2258c51741f6d06deb65d4437654520694e6",
  4314. "shasum": ""
  4315. },
  4316. "require": {
  4317. "illuminate/database": "^10.0|^11.0|^12.0",
  4318. "illuminate/routing": "^10.0|^11.0|^12.0",
  4319. "illuminate/support": "^10.0|^11.0|^12.0",
  4320. "illuminate/validation": "^10.0|^11.0|^12.0",
  4321. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4322. "league/mime-type-detection": "^1.9",
  4323. "php": "^8.1",
  4324. "symfony/console": "^6.0|^7.0",
  4325. "symfony/http-kernel": "^6.2|^7.0"
  4326. },
  4327. "require-dev": {
  4328. "calebporzio/sushi": "^2.1",
  4329. "laravel/framework": "^10.15.0|^11.0|^12.0",
  4330. "mockery/mockery": "^1.3.1",
  4331. "orchestra/testbench": "^8.21.0|^9.0|^10.0",
  4332. "orchestra/testbench-dusk": "^8.24|^9.1|^10.0",
  4333. "phpunit/phpunit": "^10.4|^11.5",
  4334. "psy/psysh": "^0.11.22|^0.12"
  4335. },
  4336. "type": "library",
  4337. "extra": {
  4338. "laravel": {
  4339. "aliases": {
  4340. "Livewire": "Livewire\\Livewire"
  4341. },
  4342. "providers": [
  4343. "Livewire\\LivewireServiceProvider"
  4344. ]
  4345. }
  4346. },
  4347. "autoload": {
  4348. "files": [
  4349. "src/helpers.php"
  4350. ],
  4351. "psr-4": {
  4352. "Livewire\\": "src/"
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "Caleb Porzio",
  4362. "email": "calebporzio@gmail.com"
  4363. }
  4364. ],
  4365. "description": "A front-end framework for Laravel.",
  4366. "support": {
  4367. "issues": "https://github.com/livewire/livewire/issues",
  4368. "source": "https://github.com/livewire/livewire/tree/v3.5.20"
  4369. },
  4370. "funding": [
  4371. {
  4372. "url": "https://github.com/livewire",
  4373. "type": "github"
  4374. }
  4375. ],
  4376. "time": "2025-02-13T21:05:24+00:00"
  4377. },
  4378. {
  4379. "name": "masterminds/html5",
  4380. "version": "2.9.0",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://github.com/Masterminds/html5-php.git",
  4384. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4389. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4390. "shasum": ""
  4391. },
  4392. "require": {
  4393. "ext-dom": "*",
  4394. "php": ">=5.3.0"
  4395. },
  4396. "require-dev": {
  4397. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4398. },
  4399. "type": "library",
  4400. "extra": {
  4401. "branch-alias": {
  4402. "dev-master": "2.7-dev"
  4403. }
  4404. },
  4405. "autoload": {
  4406. "psr-4": {
  4407. "Masterminds\\": "src"
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "Matt Butcher",
  4417. "email": "technosophos@gmail.com"
  4418. },
  4419. {
  4420. "name": "Matt Farina",
  4421. "email": "matt@mattfarina.com"
  4422. },
  4423. {
  4424. "name": "Asmir Mustafic",
  4425. "email": "goetas@gmail.com"
  4426. }
  4427. ],
  4428. "description": "An HTML5 parser and serializer.",
  4429. "homepage": "http://masterminds.github.io/html5-php",
  4430. "keywords": [
  4431. "HTML5",
  4432. "dom",
  4433. "html",
  4434. "parser",
  4435. "querypath",
  4436. "serializer",
  4437. "xml"
  4438. ],
  4439. "support": {
  4440. "issues": "https://github.com/Masterminds/html5-php/issues",
  4441. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4442. },
  4443. "time": "2024-03-31T07:05:07+00:00"
  4444. },
  4445. {
  4446. "name": "matomo/device-detector",
  4447. "version": "6.4.3",
  4448. "source": {
  4449. "type": "git",
  4450. "url": "https://github.com/matomo-org/device-detector.git",
  4451. "reference": "aa4586d495a7f59029d46d976f160b13eb769bb0"
  4452. },
  4453. "dist": {
  4454. "type": "zip",
  4455. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/aa4586d495a7f59029d46d976f160b13eb769bb0",
  4456. "reference": "aa4586d495a7f59029d46d976f160b13eb769bb0",
  4457. "shasum": ""
  4458. },
  4459. "require": {
  4460. "mustangostang/spyc": "*",
  4461. "php": "^7.2|^8.0"
  4462. },
  4463. "replace": {
  4464. "piwik/device-detector": "self.version"
  4465. },
  4466. "require-dev": {
  4467. "matthiasmullie/scrapbook": "^1.4.7",
  4468. "mayflower/mo4-coding-standard": "^v9.0.0",
  4469. "phpstan/phpstan": "^1.10.44",
  4470. "phpunit/phpunit": "^8.5.8",
  4471. "psr/cache": "^1.0.1",
  4472. "psr/simple-cache": "^1.0.1",
  4473. "symfony/yaml": "^5.1.7"
  4474. },
  4475. "suggest": {
  4476. "doctrine/cache": "Can directly be used for caching purpose",
  4477. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4478. },
  4479. "type": "library",
  4480. "autoload": {
  4481. "psr-4": {
  4482. "DeviceDetector\\": ""
  4483. },
  4484. "exclude-from-classmap": [
  4485. "Tests/"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "LGPL-3.0-or-later"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "The Matomo Team",
  4495. "email": "hello@matomo.org",
  4496. "homepage": "https://matomo.org/team/"
  4497. }
  4498. ],
  4499. "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.",
  4500. "homepage": "https://matomo.org",
  4501. "keywords": [
  4502. "devicedetection",
  4503. "parser",
  4504. "useragent"
  4505. ],
  4506. "support": {
  4507. "forum": "https://forum.matomo.org/",
  4508. "issues": "https://github.com/matomo-org/device-detector/issues",
  4509. "source": "https://github.com/matomo-org/matomo",
  4510. "wiki": "https://dev.matomo.org/"
  4511. },
  4512. "time": "2025-01-17T09:59:39+00:00"
  4513. },
  4514. {
  4515. "name": "monolog/monolog",
  4516. "version": "3.8.1",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://github.com/Seldaek/monolog.git",
  4520. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4525. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4526. "shasum": ""
  4527. },
  4528. "require": {
  4529. "php": ">=8.1",
  4530. "psr/log": "^2.0 || ^3.0"
  4531. },
  4532. "provide": {
  4533. "psr/log-implementation": "3.0.0"
  4534. },
  4535. "require-dev": {
  4536. "aws/aws-sdk-php": "^3.0",
  4537. "doctrine/couchdb": "~1.0@dev",
  4538. "elasticsearch/elasticsearch": "^7 || ^8",
  4539. "ext-json": "*",
  4540. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4541. "guzzlehttp/guzzle": "^7.4.5",
  4542. "guzzlehttp/psr7": "^2.2",
  4543. "mongodb/mongodb": "^1.8",
  4544. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4545. "php-console/php-console": "^3.1.8",
  4546. "phpstan/phpstan": "^2",
  4547. "phpstan/phpstan-deprecation-rules": "^2",
  4548. "phpstan/phpstan-strict-rules": "^2",
  4549. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4550. "predis/predis": "^1.1 || ^2",
  4551. "rollbar/rollbar": "^4.0",
  4552. "ruflin/elastica": "^7 || ^8",
  4553. "symfony/mailer": "^5.4 || ^6",
  4554. "symfony/mime": "^5.4 || ^6"
  4555. },
  4556. "suggest": {
  4557. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4558. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4559. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4560. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4561. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4562. "ext-mbstring": "Allow to work properly with unicode symbols",
  4563. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4564. "ext-openssl": "Required to send log messages using SSL",
  4565. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4566. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4567. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4568. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4569. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4570. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4571. },
  4572. "type": "library",
  4573. "extra": {
  4574. "branch-alias": {
  4575. "dev-main": "3.x-dev"
  4576. }
  4577. },
  4578. "autoload": {
  4579. "psr-4": {
  4580. "Monolog\\": "src/Monolog"
  4581. }
  4582. },
  4583. "notification-url": "https://packagist.org/downloads/",
  4584. "license": [
  4585. "MIT"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "Jordi Boggiano",
  4590. "email": "j.boggiano@seld.be",
  4591. "homepage": "https://seld.be"
  4592. }
  4593. ],
  4594. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4595. "homepage": "https://github.com/Seldaek/monolog",
  4596. "keywords": [
  4597. "log",
  4598. "logging",
  4599. "psr-3"
  4600. ],
  4601. "support": {
  4602. "issues": "https://github.com/Seldaek/monolog/issues",
  4603. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4604. },
  4605. "funding": [
  4606. {
  4607. "url": "https://github.com/Seldaek",
  4608. "type": "github"
  4609. },
  4610. {
  4611. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4612. "type": "tidelift"
  4613. }
  4614. ],
  4615. "time": "2024-12-05T17:15:07+00:00"
  4616. },
  4617. {
  4618. "name": "mtdowling/jmespath.php",
  4619. "version": "2.8.0",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://github.com/jmespath/jmespath.php.git",
  4623. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4624. },
  4625. "dist": {
  4626. "type": "zip",
  4627. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4628. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4629. "shasum": ""
  4630. },
  4631. "require": {
  4632. "php": "^7.2.5 || ^8.0",
  4633. "symfony/polyfill-mbstring": "^1.17"
  4634. },
  4635. "require-dev": {
  4636. "composer/xdebug-handler": "^3.0.3",
  4637. "phpunit/phpunit": "^8.5.33"
  4638. },
  4639. "bin": [
  4640. "bin/jp.php"
  4641. ],
  4642. "type": "library",
  4643. "extra": {
  4644. "branch-alias": {
  4645. "dev-master": "2.8-dev"
  4646. }
  4647. },
  4648. "autoload": {
  4649. "files": [
  4650. "src/JmesPath.php"
  4651. ],
  4652. "psr-4": {
  4653. "JmesPath\\": "src/"
  4654. }
  4655. },
  4656. "notification-url": "https://packagist.org/downloads/",
  4657. "license": [
  4658. "MIT"
  4659. ],
  4660. "authors": [
  4661. {
  4662. "name": "Graham Campbell",
  4663. "email": "hello@gjcampbell.co.uk",
  4664. "homepage": "https://github.com/GrahamCampbell"
  4665. },
  4666. {
  4667. "name": "Michael Dowling",
  4668. "email": "mtdowling@gmail.com",
  4669. "homepage": "https://github.com/mtdowling"
  4670. }
  4671. ],
  4672. "description": "Declaratively specify how to extract elements from a JSON document",
  4673. "keywords": [
  4674. "json",
  4675. "jsonpath"
  4676. ],
  4677. "support": {
  4678. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4679. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4680. },
  4681. "time": "2024-09-04T18:46:31+00:00"
  4682. },
  4683. {
  4684. "name": "mustangostang/spyc",
  4685. "version": "0.6.3",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/mustangostang/spyc.git",
  4689. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4694. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4695. "shasum": ""
  4696. },
  4697. "require": {
  4698. "php": ">=5.3.1"
  4699. },
  4700. "require-dev": {
  4701. "phpunit/phpunit": "4.3.*@dev"
  4702. },
  4703. "type": "library",
  4704. "extra": {
  4705. "branch-alias": {
  4706. "dev-master": "0.5.x-dev"
  4707. }
  4708. },
  4709. "autoload": {
  4710. "files": [
  4711. "Spyc.php"
  4712. ]
  4713. },
  4714. "notification-url": "https://packagist.org/downloads/",
  4715. "license": [
  4716. "MIT"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "mustangostang",
  4721. "email": "vlad.andersen@gmail.com"
  4722. }
  4723. ],
  4724. "description": "A simple YAML loader/dumper class for PHP",
  4725. "homepage": "https://github.com/mustangostang/spyc/",
  4726. "keywords": [
  4727. "spyc",
  4728. "yaml",
  4729. "yml"
  4730. ],
  4731. "support": {
  4732. "issues": "https://github.com/mustangostang/spyc/issues",
  4733. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4734. },
  4735. "time": "2019-09-10T13:16:29+00:00"
  4736. },
  4737. {
  4738. "name": "nesbot/carbon",
  4739. "version": "3.8.5",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://github.com/CarbonPHP/carbon.git",
  4743. "reference": "b1a53a27898639579a67de42e8ced5d5386aa9a4"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/b1a53a27898639579a67de42e8ced5d5386aa9a4",
  4748. "reference": "b1a53a27898639579a67de42e8ced5d5386aa9a4",
  4749. "shasum": ""
  4750. },
  4751. "require": {
  4752. "carbonphp/carbon-doctrine-types": "<100.0",
  4753. "ext-json": "*",
  4754. "php": "^8.1",
  4755. "psr/clock": "^1.0",
  4756. "symfony/clock": "^6.3 || ^7.0",
  4757. "symfony/polyfill-mbstring": "^1.0",
  4758. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4759. },
  4760. "provide": {
  4761. "psr/clock-implementation": "1.0"
  4762. },
  4763. "require-dev": {
  4764. "doctrine/dbal": "^3.6.3 || ^4.0",
  4765. "doctrine/orm": "^2.15.2 || ^3.0",
  4766. "friendsofphp/php-cs-fixer": "^3.57.2",
  4767. "kylekatarnls/multi-tester": "^2.5.3",
  4768. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4769. "phpmd/phpmd": "^2.15.0",
  4770. "phpstan/extension-installer": "^1.3.1",
  4771. "phpstan/phpstan": "^1.11.2",
  4772. "phpunit/phpunit": "^10.5.20",
  4773. "squizlabs/php_codesniffer": "^3.9.0"
  4774. },
  4775. "bin": [
  4776. "bin/carbon"
  4777. ],
  4778. "type": "library",
  4779. "extra": {
  4780. "laravel": {
  4781. "providers": [
  4782. "Carbon\\Laravel\\ServiceProvider"
  4783. ]
  4784. },
  4785. "phpstan": {
  4786. "includes": [
  4787. "extension.neon"
  4788. ]
  4789. },
  4790. "branch-alias": {
  4791. "dev-2.x": "2.x-dev",
  4792. "dev-master": "3.x-dev"
  4793. }
  4794. },
  4795. "autoload": {
  4796. "psr-4": {
  4797. "Carbon\\": "src/Carbon/"
  4798. }
  4799. },
  4800. "notification-url": "https://packagist.org/downloads/",
  4801. "license": [
  4802. "MIT"
  4803. ],
  4804. "authors": [
  4805. {
  4806. "name": "Brian Nesbitt",
  4807. "email": "brian@nesbot.com",
  4808. "homepage": "https://markido.com"
  4809. },
  4810. {
  4811. "name": "kylekatarnls",
  4812. "homepage": "https://github.com/kylekatarnls"
  4813. }
  4814. ],
  4815. "description": "An API extension for DateTime that supports 281 different languages.",
  4816. "homepage": "https://carbon.nesbot.com",
  4817. "keywords": [
  4818. "date",
  4819. "datetime",
  4820. "time"
  4821. ],
  4822. "support": {
  4823. "docs": "https://carbon.nesbot.com/docs",
  4824. "issues": "https://github.com/CarbonPHP/carbon/issues",
  4825. "source": "https://github.com/CarbonPHP/carbon"
  4826. },
  4827. "funding": [
  4828. {
  4829. "url": "https://github.com/sponsors/kylekatarnls",
  4830. "type": "github"
  4831. },
  4832. {
  4833. "url": "https://opencollective.com/Carbon#sponsor",
  4834. "type": "opencollective"
  4835. },
  4836. {
  4837. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4838. "type": "tidelift"
  4839. }
  4840. ],
  4841. "time": "2025-02-11T16:28:45+00:00"
  4842. },
  4843. {
  4844. "name": "nette/schema",
  4845. "version": "v1.3.2",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://github.com/nette/schema.git",
  4849. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4854. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4855. "shasum": ""
  4856. },
  4857. "require": {
  4858. "nette/utils": "^4.0",
  4859. "php": "8.1 - 8.4"
  4860. },
  4861. "require-dev": {
  4862. "nette/tester": "^2.5.2",
  4863. "phpstan/phpstan-nette": "^1.0",
  4864. "tracy/tracy": "^2.8"
  4865. },
  4866. "type": "library",
  4867. "extra": {
  4868. "branch-alias": {
  4869. "dev-master": "1.3-dev"
  4870. }
  4871. },
  4872. "autoload": {
  4873. "classmap": [
  4874. "src/"
  4875. ]
  4876. },
  4877. "notification-url": "https://packagist.org/downloads/",
  4878. "license": [
  4879. "BSD-3-Clause",
  4880. "GPL-2.0-only",
  4881. "GPL-3.0-only"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "David Grudl",
  4886. "homepage": "https://davidgrudl.com"
  4887. },
  4888. {
  4889. "name": "Nette Community",
  4890. "homepage": "https://nette.org/contributors"
  4891. }
  4892. ],
  4893. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4894. "homepage": "https://nette.org",
  4895. "keywords": [
  4896. "config",
  4897. "nette"
  4898. ],
  4899. "support": {
  4900. "issues": "https://github.com/nette/schema/issues",
  4901. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4902. },
  4903. "time": "2024-10-06T23:10:23+00:00"
  4904. },
  4905. {
  4906. "name": "nette/utils",
  4907. "version": "v4.0.5",
  4908. "source": {
  4909. "type": "git",
  4910. "url": "https://github.com/nette/utils.git",
  4911. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  4912. },
  4913. "dist": {
  4914. "type": "zip",
  4915. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4916. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4917. "shasum": ""
  4918. },
  4919. "require": {
  4920. "php": "8.0 - 8.4"
  4921. },
  4922. "conflict": {
  4923. "nette/finder": "<3",
  4924. "nette/schema": "<1.2.2"
  4925. },
  4926. "require-dev": {
  4927. "jetbrains/phpstorm-attributes": "dev-master",
  4928. "nette/tester": "^2.5",
  4929. "phpstan/phpstan": "^1.0",
  4930. "tracy/tracy": "^2.9"
  4931. },
  4932. "suggest": {
  4933. "ext-gd": "to use Image",
  4934. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4935. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4936. "ext-json": "to use Nette\\Utils\\Json",
  4937. "ext-mbstring": "to use Strings::lower() etc...",
  4938. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4939. },
  4940. "type": "library",
  4941. "extra": {
  4942. "branch-alias": {
  4943. "dev-master": "4.0-dev"
  4944. }
  4945. },
  4946. "autoload": {
  4947. "classmap": [
  4948. "src/"
  4949. ]
  4950. },
  4951. "notification-url": "https://packagist.org/downloads/",
  4952. "license": [
  4953. "BSD-3-Clause",
  4954. "GPL-2.0-only",
  4955. "GPL-3.0-only"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "David Grudl",
  4960. "homepage": "https://davidgrudl.com"
  4961. },
  4962. {
  4963. "name": "Nette Community",
  4964. "homepage": "https://nette.org/contributors"
  4965. }
  4966. ],
  4967. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4968. "homepage": "https://nette.org",
  4969. "keywords": [
  4970. "array",
  4971. "core",
  4972. "datetime",
  4973. "images",
  4974. "json",
  4975. "nette",
  4976. "paginator",
  4977. "password",
  4978. "slugify",
  4979. "string",
  4980. "unicode",
  4981. "utf-8",
  4982. "utility",
  4983. "validation"
  4984. ],
  4985. "support": {
  4986. "issues": "https://github.com/nette/utils/issues",
  4987. "source": "https://github.com/nette/utils/tree/v4.0.5"
  4988. },
  4989. "time": "2024-08-07T15:39:19+00:00"
  4990. },
  4991. {
  4992. "name": "nikic/php-parser",
  4993. "version": "v5.4.0",
  4994. "source": {
  4995. "type": "git",
  4996. "url": "https://github.com/nikic/PHP-Parser.git",
  4997. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  4998. },
  4999. "dist": {
  5000. "type": "zip",
  5001. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  5002. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  5003. "shasum": ""
  5004. },
  5005. "require": {
  5006. "ext-ctype": "*",
  5007. "ext-json": "*",
  5008. "ext-tokenizer": "*",
  5009. "php": ">=7.4"
  5010. },
  5011. "require-dev": {
  5012. "ircmaxell/php-yacc": "^0.0.7",
  5013. "phpunit/phpunit": "^9.0"
  5014. },
  5015. "bin": [
  5016. "bin/php-parse"
  5017. ],
  5018. "type": "library",
  5019. "extra": {
  5020. "branch-alias": {
  5021. "dev-master": "5.0-dev"
  5022. }
  5023. },
  5024. "autoload": {
  5025. "psr-4": {
  5026. "PhpParser\\": "lib/PhpParser"
  5027. }
  5028. },
  5029. "notification-url": "https://packagist.org/downloads/",
  5030. "license": [
  5031. "BSD-3-Clause"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "Nikita Popov"
  5036. }
  5037. ],
  5038. "description": "A PHP parser written in PHP",
  5039. "keywords": [
  5040. "parser",
  5041. "php"
  5042. ],
  5043. "support": {
  5044. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5045. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  5046. },
  5047. "time": "2024-12-30T11:07:19+00:00"
  5048. },
  5049. {
  5050. "name": "nunomaduro/termwind",
  5051. "version": "v2.3.0",
  5052. "source": {
  5053. "type": "git",
  5054. "url": "https://github.com/nunomaduro/termwind.git",
  5055. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  5056. },
  5057. "dist": {
  5058. "type": "zip",
  5059. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5060. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5061. "shasum": ""
  5062. },
  5063. "require": {
  5064. "ext-mbstring": "*",
  5065. "php": "^8.2",
  5066. "symfony/console": "^7.1.8"
  5067. },
  5068. "require-dev": {
  5069. "illuminate/console": "^11.33.2",
  5070. "laravel/pint": "^1.18.2",
  5071. "mockery/mockery": "^1.6.12",
  5072. "pestphp/pest": "^2.36.0",
  5073. "phpstan/phpstan": "^1.12.11",
  5074. "phpstan/phpstan-strict-rules": "^1.6.1",
  5075. "symfony/var-dumper": "^7.1.8",
  5076. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5077. },
  5078. "type": "library",
  5079. "extra": {
  5080. "laravel": {
  5081. "providers": [
  5082. "Termwind\\Laravel\\TermwindServiceProvider"
  5083. ]
  5084. },
  5085. "branch-alias": {
  5086. "dev-2.x": "2.x-dev"
  5087. }
  5088. },
  5089. "autoload": {
  5090. "files": [
  5091. "src/Functions.php"
  5092. ],
  5093. "psr-4": {
  5094. "Termwind\\": "src/"
  5095. }
  5096. },
  5097. "notification-url": "https://packagist.org/downloads/",
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "Nuno Maduro",
  5104. "email": "enunomaduro@gmail.com"
  5105. }
  5106. ],
  5107. "description": "Its like Tailwind CSS, but for the console.",
  5108. "keywords": [
  5109. "cli",
  5110. "console",
  5111. "css",
  5112. "package",
  5113. "php",
  5114. "style"
  5115. ],
  5116. "support": {
  5117. "issues": "https://github.com/nunomaduro/termwind/issues",
  5118. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  5119. },
  5120. "funding": [
  5121. {
  5122. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5123. "type": "custom"
  5124. },
  5125. {
  5126. "url": "https://github.com/nunomaduro",
  5127. "type": "github"
  5128. },
  5129. {
  5130. "url": "https://github.com/xiCO2k",
  5131. "type": "github"
  5132. }
  5133. ],
  5134. "time": "2024-11-21T10:39:51+00:00"
  5135. },
  5136. {
  5137. "name": "openspout/openspout",
  5138. "version": "v4.28.5",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/openspout/openspout.git",
  5142. "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/openspout/openspout/zipball/ab05a09fe6fce57c90338f83280648a9786ce36b",
  5147. "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b",
  5148. "shasum": ""
  5149. },
  5150. "require": {
  5151. "ext-dom": "*",
  5152. "ext-fileinfo": "*",
  5153. "ext-filter": "*",
  5154. "ext-libxml": "*",
  5155. "ext-xmlreader": "*",
  5156. "ext-zip": "*",
  5157. "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
  5158. },
  5159. "require-dev": {
  5160. "ext-zlib": "*",
  5161. "friendsofphp/php-cs-fixer": "^3.68.3",
  5162. "infection/infection": "^0.29.10",
  5163. "phpbench/phpbench": "^1.4.0",
  5164. "phpstan/phpstan": "^2.1.2",
  5165. "phpstan/phpstan-phpunit": "^2.0.4",
  5166. "phpstan/phpstan-strict-rules": "^2",
  5167. "phpunit/phpunit": "^11.5.4"
  5168. },
  5169. "suggest": {
  5170. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5171. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5172. },
  5173. "type": "library",
  5174. "extra": {
  5175. "branch-alias": {
  5176. "dev-master": "3.3.x-dev"
  5177. }
  5178. },
  5179. "autoload": {
  5180. "psr-4": {
  5181. "OpenSpout\\": "src/"
  5182. }
  5183. },
  5184. "notification-url": "https://packagist.org/downloads/",
  5185. "license": [
  5186. "MIT"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "Adrien Loison",
  5191. "email": "adrien@box.com"
  5192. }
  5193. ],
  5194. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5195. "homepage": "https://github.com/openspout/openspout",
  5196. "keywords": [
  5197. "OOXML",
  5198. "csv",
  5199. "excel",
  5200. "memory",
  5201. "odf",
  5202. "ods",
  5203. "office",
  5204. "open",
  5205. "php",
  5206. "read",
  5207. "scale",
  5208. "spreadsheet",
  5209. "stream",
  5210. "write",
  5211. "xlsx"
  5212. ],
  5213. "support": {
  5214. "issues": "https://github.com/openspout/openspout/issues",
  5215. "source": "https://github.com/openspout/openspout/tree/v4.28.5"
  5216. },
  5217. "funding": [
  5218. {
  5219. "url": "https://paypal.me/filippotessarotto",
  5220. "type": "custom"
  5221. },
  5222. {
  5223. "url": "https://github.com/Slamdunk",
  5224. "type": "github"
  5225. }
  5226. ],
  5227. "time": "2025-01-30T13:51:11+00:00"
  5228. },
  5229. {
  5230. "name": "paragonie/constant_time_encoding",
  5231. "version": "v3.0.0",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5235. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5236. },
  5237. "dist": {
  5238. "type": "zip",
  5239. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5240. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5241. "shasum": ""
  5242. },
  5243. "require": {
  5244. "php": "^8"
  5245. },
  5246. "require-dev": {
  5247. "phpunit/phpunit": "^9",
  5248. "vimeo/psalm": "^4|^5"
  5249. },
  5250. "type": "library",
  5251. "autoload": {
  5252. "psr-4": {
  5253. "ParagonIE\\ConstantTime\\": "src/"
  5254. }
  5255. },
  5256. "notification-url": "https://packagist.org/downloads/",
  5257. "license": [
  5258. "MIT"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Paragon Initiative Enterprises",
  5263. "email": "security@paragonie.com",
  5264. "homepage": "https://paragonie.com",
  5265. "role": "Maintainer"
  5266. },
  5267. {
  5268. "name": "Steve 'Sc00bz' Thomas",
  5269. "email": "steve@tobtu.com",
  5270. "homepage": "https://www.tobtu.com",
  5271. "role": "Original Developer"
  5272. }
  5273. ],
  5274. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5275. "keywords": [
  5276. "base16",
  5277. "base32",
  5278. "base32_decode",
  5279. "base32_encode",
  5280. "base64",
  5281. "base64_decode",
  5282. "base64_encode",
  5283. "bin2hex",
  5284. "encoding",
  5285. "hex",
  5286. "hex2bin",
  5287. "rfc4648"
  5288. ],
  5289. "support": {
  5290. "email": "info@paragonie.com",
  5291. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5292. "source": "https://github.com/paragonie/constant_time_encoding"
  5293. },
  5294. "time": "2024-05-08T12:36:18+00:00"
  5295. },
  5296. {
  5297. "name": "paragonie/random_compat",
  5298. "version": "v9.99.100",
  5299. "source": {
  5300. "type": "git",
  5301. "url": "https://github.com/paragonie/random_compat.git",
  5302. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5303. },
  5304. "dist": {
  5305. "type": "zip",
  5306. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5307. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5308. "shasum": ""
  5309. },
  5310. "require": {
  5311. "php": ">= 7"
  5312. },
  5313. "require-dev": {
  5314. "phpunit/phpunit": "4.*|5.*",
  5315. "vimeo/psalm": "^1"
  5316. },
  5317. "suggest": {
  5318. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5319. },
  5320. "type": "library",
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "Paragon Initiative Enterprises",
  5328. "email": "security@paragonie.com",
  5329. "homepage": "https://paragonie.com"
  5330. }
  5331. ],
  5332. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5333. "keywords": [
  5334. "csprng",
  5335. "polyfill",
  5336. "pseudorandom",
  5337. "random"
  5338. ],
  5339. "support": {
  5340. "email": "info@paragonie.com",
  5341. "issues": "https://github.com/paragonie/random_compat/issues",
  5342. "source": "https://github.com/paragonie/random_compat"
  5343. },
  5344. "time": "2020-10-15T08:29:30+00:00"
  5345. },
  5346. {
  5347. "name": "phpoption/phpoption",
  5348. "version": "1.9.3",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/schmittjoh/php-option.git",
  5352. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5357. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5358. "shasum": ""
  5359. },
  5360. "require": {
  5361. "php": "^7.2.5 || ^8.0"
  5362. },
  5363. "require-dev": {
  5364. "bamarni/composer-bin-plugin": "^1.8.2",
  5365. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5366. },
  5367. "type": "library",
  5368. "extra": {
  5369. "bamarni-bin": {
  5370. "bin-links": true,
  5371. "forward-command": false
  5372. },
  5373. "branch-alias": {
  5374. "dev-master": "1.9-dev"
  5375. }
  5376. },
  5377. "autoload": {
  5378. "psr-4": {
  5379. "PhpOption\\": "src/PhpOption/"
  5380. }
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "Apache-2.0"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Johannes M. Schmitt",
  5389. "email": "schmittjoh@gmail.com",
  5390. "homepage": "https://github.com/schmittjoh"
  5391. },
  5392. {
  5393. "name": "Graham Campbell",
  5394. "email": "hello@gjcampbell.co.uk",
  5395. "homepage": "https://github.com/GrahamCampbell"
  5396. }
  5397. ],
  5398. "description": "Option Type for PHP",
  5399. "keywords": [
  5400. "language",
  5401. "option",
  5402. "php",
  5403. "type"
  5404. ],
  5405. "support": {
  5406. "issues": "https://github.com/schmittjoh/php-option/issues",
  5407. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5408. },
  5409. "funding": [
  5410. {
  5411. "url": "https://github.com/GrahamCampbell",
  5412. "type": "github"
  5413. },
  5414. {
  5415. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5416. "type": "tidelift"
  5417. }
  5418. ],
  5419. "time": "2024-07-20T21:41:07+00:00"
  5420. },
  5421. {
  5422. "name": "phpseclib/phpseclib",
  5423. "version": "3.0.43",
  5424. "source": {
  5425. "type": "git",
  5426. "url": "https://github.com/phpseclib/phpseclib.git",
  5427. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5428. },
  5429. "dist": {
  5430. "type": "zip",
  5431. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5432. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5433. "shasum": ""
  5434. },
  5435. "require": {
  5436. "paragonie/constant_time_encoding": "^1|^2|^3",
  5437. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5438. "php": ">=5.6.1"
  5439. },
  5440. "require-dev": {
  5441. "phpunit/phpunit": "*"
  5442. },
  5443. "suggest": {
  5444. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5445. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5446. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5447. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5448. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5449. },
  5450. "type": "library",
  5451. "autoload": {
  5452. "files": [
  5453. "phpseclib/bootstrap.php"
  5454. ],
  5455. "psr-4": {
  5456. "phpseclib3\\": "phpseclib/"
  5457. }
  5458. },
  5459. "notification-url": "https://packagist.org/downloads/",
  5460. "license": [
  5461. "MIT"
  5462. ],
  5463. "authors": [
  5464. {
  5465. "name": "Jim Wigginton",
  5466. "email": "terrafrost@php.net",
  5467. "role": "Lead Developer"
  5468. },
  5469. {
  5470. "name": "Patrick Monnerat",
  5471. "email": "pm@datasphere.ch",
  5472. "role": "Developer"
  5473. },
  5474. {
  5475. "name": "Andreas Fischer",
  5476. "email": "bantu@phpbb.com",
  5477. "role": "Developer"
  5478. },
  5479. {
  5480. "name": "Hans-Jürgen Petrich",
  5481. "email": "petrich@tronic-media.com",
  5482. "role": "Developer"
  5483. },
  5484. {
  5485. "name": "Graham Campbell",
  5486. "email": "graham@alt-three.com",
  5487. "role": "Developer"
  5488. }
  5489. ],
  5490. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5491. "homepage": "http://phpseclib.sourceforge.net",
  5492. "keywords": [
  5493. "BigInteger",
  5494. "aes",
  5495. "asn.1",
  5496. "asn1",
  5497. "blowfish",
  5498. "crypto",
  5499. "cryptography",
  5500. "encryption",
  5501. "rsa",
  5502. "security",
  5503. "sftp",
  5504. "signature",
  5505. "signing",
  5506. "ssh",
  5507. "twofish",
  5508. "x.509",
  5509. "x509"
  5510. ],
  5511. "support": {
  5512. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5513. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5514. },
  5515. "funding": [
  5516. {
  5517. "url": "https://github.com/terrafrost",
  5518. "type": "github"
  5519. },
  5520. {
  5521. "url": "https://www.patreon.com/phpseclib",
  5522. "type": "patreon"
  5523. },
  5524. {
  5525. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5526. "type": "tidelift"
  5527. }
  5528. ],
  5529. "time": "2024-12-14T21:12:59+00:00"
  5530. },
  5531. {
  5532. "name": "psr/cache",
  5533. "version": "3.0.0",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/php-fig/cache.git",
  5537. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5542. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": ">=8.0.0"
  5547. },
  5548. "type": "library",
  5549. "extra": {
  5550. "branch-alias": {
  5551. "dev-master": "1.0.x-dev"
  5552. }
  5553. },
  5554. "autoload": {
  5555. "psr-4": {
  5556. "Psr\\Cache\\": "src/"
  5557. }
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "PHP-FIG",
  5566. "homepage": "https://www.php-fig.org/"
  5567. }
  5568. ],
  5569. "description": "Common interface for caching libraries",
  5570. "keywords": [
  5571. "cache",
  5572. "psr",
  5573. "psr-6"
  5574. ],
  5575. "support": {
  5576. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5577. },
  5578. "time": "2021-02-03T23:26:27+00:00"
  5579. },
  5580. {
  5581. "name": "psr/clock",
  5582. "version": "1.0.0",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/php-fig/clock.git",
  5586. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5591. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5592. "shasum": ""
  5593. },
  5594. "require": {
  5595. "php": "^7.0 || ^8.0"
  5596. },
  5597. "type": "library",
  5598. "autoload": {
  5599. "psr-4": {
  5600. "Psr\\Clock\\": "src/"
  5601. }
  5602. },
  5603. "notification-url": "https://packagist.org/downloads/",
  5604. "license": [
  5605. "MIT"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "PHP-FIG",
  5610. "homepage": "https://www.php-fig.org/"
  5611. }
  5612. ],
  5613. "description": "Common interface for reading the clock.",
  5614. "homepage": "https://github.com/php-fig/clock",
  5615. "keywords": [
  5616. "clock",
  5617. "now",
  5618. "psr",
  5619. "psr-20",
  5620. "time"
  5621. ],
  5622. "support": {
  5623. "issues": "https://github.com/php-fig/clock/issues",
  5624. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5625. },
  5626. "time": "2022-11-25T14:36:26+00:00"
  5627. },
  5628. {
  5629. "name": "psr/container",
  5630. "version": "2.0.2",
  5631. "source": {
  5632. "type": "git",
  5633. "url": "https://github.com/php-fig/container.git",
  5634. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5635. },
  5636. "dist": {
  5637. "type": "zip",
  5638. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5639. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5640. "shasum": ""
  5641. },
  5642. "require": {
  5643. "php": ">=7.4.0"
  5644. },
  5645. "type": "library",
  5646. "extra": {
  5647. "branch-alias": {
  5648. "dev-master": "2.0.x-dev"
  5649. }
  5650. },
  5651. "autoload": {
  5652. "psr-4": {
  5653. "Psr\\Container\\": "src/"
  5654. }
  5655. },
  5656. "notification-url": "https://packagist.org/downloads/",
  5657. "license": [
  5658. "MIT"
  5659. ],
  5660. "authors": [
  5661. {
  5662. "name": "PHP-FIG",
  5663. "homepage": "https://www.php-fig.org/"
  5664. }
  5665. ],
  5666. "description": "Common Container Interface (PHP FIG PSR-11)",
  5667. "homepage": "https://github.com/php-fig/container",
  5668. "keywords": [
  5669. "PSR-11",
  5670. "container",
  5671. "container-interface",
  5672. "container-interop",
  5673. "psr"
  5674. ],
  5675. "support": {
  5676. "issues": "https://github.com/php-fig/container/issues",
  5677. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5678. },
  5679. "time": "2021-11-05T16:47:00+00:00"
  5680. },
  5681. {
  5682. "name": "psr/event-dispatcher",
  5683. "version": "1.0.0",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://github.com/php-fig/event-dispatcher.git",
  5687. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5692. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5693. "shasum": ""
  5694. },
  5695. "require": {
  5696. "php": ">=7.2.0"
  5697. },
  5698. "type": "library",
  5699. "extra": {
  5700. "branch-alias": {
  5701. "dev-master": "1.0.x-dev"
  5702. }
  5703. },
  5704. "autoload": {
  5705. "psr-4": {
  5706. "Psr\\EventDispatcher\\": "src/"
  5707. }
  5708. },
  5709. "notification-url": "https://packagist.org/downloads/",
  5710. "license": [
  5711. "MIT"
  5712. ],
  5713. "authors": [
  5714. {
  5715. "name": "PHP-FIG",
  5716. "homepage": "http://www.php-fig.org/"
  5717. }
  5718. ],
  5719. "description": "Standard interfaces for event handling.",
  5720. "keywords": [
  5721. "events",
  5722. "psr",
  5723. "psr-14"
  5724. ],
  5725. "support": {
  5726. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5727. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5728. },
  5729. "time": "2019-01-08T18:20:26+00:00"
  5730. },
  5731. {
  5732. "name": "psr/http-client",
  5733. "version": "1.0.3",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/php-fig/http-client.git",
  5737. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5742. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5743. "shasum": ""
  5744. },
  5745. "require": {
  5746. "php": "^7.0 || ^8.0",
  5747. "psr/http-message": "^1.0 || ^2.0"
  5748. },
  5749. "type": "library",
  5750. "extra": {
  5751. "branch-alias": {
  5752. "dev-master": "1.0.x-dev"
  5753. }
  5754. },
  5755. "autoload": {
  5756. "psr-4": {
  5757. "Psr\\Http\\Client\\": "src/"
  5758. }
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "PHP-FIG",
  5767. "homepage": "https://www.php-fig.org/"
  5768. }
  5769. ],
  5770. "description": "Common interface for HTTP clients",
  5771. "homepage": "https://github.com/php-fig/http-client",
  5772. "keywords": [
  5773. "http",
  5774. "http-client",
  5775. "psr",
  5776. "psr-18"
  5777. ],
  5778. "support": {
  5779. "source": "https://github.com/php-fig/http-client"
  5780. },
  5781. "time": "2023-09-23T14:17:50+00:00"
  5782. },
  5783. {
  5784. "name": "psr/http-factory",
  5785. "version": "1.1.0",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/php-fig/http-factory.git",
  5789. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5794. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5795. "shasum": ""
  5796. },
  5797. "require": {
  5798. "php": ">=7.1",
  5799. "psr/http-message": "^1.0 || ^2.0"
  5800. },
  5801. "type": "library",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-master": "1.0.x-dev"
  5805. }
  5806. },
  5807. "autoload": {
  5808. "psr-4": {
  5809. "Psr\\Http\\Message\\": "src/"
  5810. }
  5811. },
  5812. "notification-url": "https://packagist.org/downloads/",
  5813. "license": [
  5814. "MIT"
  5815. ],
  5816. "authors": [
  5817. {
  5818. "name": "PHP-FIG",
  5819. "homepage": "https://www.php-fig.org/"
  5820. }
  5821. ],
  5822. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5823. "keywords": [
  5824. "factory",
  5825. "http",
  5826. "message",
  5827. "psr",
  5828. "psr-17",
  5829. "psr-7",
  5830. "request",
  5831. "response"
  5832. ],
  5833. "support": {
  5834. "source": "https://github.com/php-fig/http-factory"
  5835. },
  5836. "time": "2024-04-15T12:06:14+00:00"
  5837. },
  5838. {
  5839. "name": "psr/http-message",
  5840. "version": "2.0",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://github.com/php-fig/http-message.git",
  5844. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5849. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5850. "shasum": ""
  5851. },
  5852. "require": {
  5853. "php": "^7.2 || ^8.0"
  5854. },
  5855. "type": "library",
  5856. "extra": {
  5857. "branch-alias": {
  5858. "dev-master": "2.0.x-dev"
  5859. }
  5860. },
  5861. "autoload": {
  5862. "psr-4": {
  5863. "Psr\\Http\\Message\\": "src/"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "PHP-FIG",
  5873. "homepage": "https://www.php-fig.org/"
  5874. }
  5875. ],
  5876. "description": "Common interface for HTTP messages",
  5877. "homepage": "https://github.com/php-fig/http-message",
  5878. "keywords": [
  5879. "http",
  5880. "http-message",
  5881. "psr",
  5882. "psr-7",
  5883. "request",
  5884. "response"
  5885. ],
  5886. "support": {
  5887. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5888. },
  5889. "time": "2023-04-04T09:54:51+00:00"
  5890. },
  5891. {
  5892. "name": "psr/log",
  5893. "version": "3.0.2",
  5894. "source": {
  5895. "type": "git",
  5896. "url": "https://github.com/php-fig/log.git",
  5897. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5898. },
  5899. "dist": {
  5900. "type": "zip",
  5901. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5902. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5903. "shasum": ""
  5904. },
  5905. "require": {
  5906. "php": ">=8.0.0"
  5907. },
  5908. "type": "library",
  5909. "extra": {
  5910. "branch-alias": {
  5911. "dev-master": "3.x-dev"
  5912. }
  5913. },
  5914. "autoload": {
  5915. "psr-4": {
  5916. "Psr\\Log\\": "src"
  5917. }
  5918. },
  5919. "notification-url": "https://packagist.org/downloads/",
  5920. "license": [
  5921. "MIT"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "PHP-FIG",
  5926. "homepage": "https://www.php-fig.org/"
  5927. }
  5928. ],
  5929. "description": "Common interface for logging libraries",
  5930. "homepage": "https://github.com/php-fig/log",
  5931. "keywords": [
  5932. "log",
  5933. "psr",
  5934. "psr-3"
  5935. ],
  5936. "support": {
  5937. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5938. },
  5939. "time": "2024-09-11T13:17:53+00:00"
  5940. },
  5941. {
  5942. "name": "psr/simple-cache",
  5943. "version": "3.0.0",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/php-fig/simple-cache.git",
  5947. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5952. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5953. "shasum": ""
  5954. },
  5955. "require": {
  5956. "php": ">=8.0.0"
  5957. },
  5958. "type": "library",
  5959. "extra": {
  5960. "branch-alias": {
  5961. "dev-master": "3.0.x-dev"
  5962. }
  5963. },
  5964. "autoload": {
  5965. "psr-4": {
  5966. "Psr\\SimpleCache\\": "src/"
  5967. }
  5968. },
  5969. "notification-url": "https://packagist.org/downloads/",
  5970. "license": [
  5971. "MIT"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "PHP-FIG",
  5976. "homepage": "https://www.php-fig.org/"
  5977. }
  5978. ],
  5979. "description": "Common interfaces for simple caching",
  5980. "keywords": [
  5981. "cache",
  5982. "caching",
  5983. "psr",
  5984. "psr-16",
  5985. "simple-cache"
  5986. ],
  5987. "support": {
  5988. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5989. },
  5990. "time": "2021-10-29T13:26:27+00:00"
  5991. },
  5992. {
  5993. "name": "psy/psysh",
  5994. "version": "v0.12.7",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/bobthecow/psysh.git",
  5998. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6003. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6004. "shasum": ""
  6005. },
  6006. "require": {
  6007. "ext-json": "*",
  6008. "ext-tokenizer": "*",
  6009. "nikic/php-parser": "^5.0 || ^4.0",
  6010. "php": "^8.0 || ^7.4",
  6011. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6012. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6013. },
  6014. "conflict": {
  6015. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6016. },
  6017. "require-dev": {
  6018. "bamarni/composer-bin-plugin": "^1.2"
  6019. },
  6020. "suggest": {
  6021. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6022. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6023. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6024. },
  6025. "bin": [
  6026. "bin/psysh"
  6027. ],
  6028. "type": "library",
  6029. "extra": {
  6030. "bamarni-bin": {
  6031. "bin-links": false,
  6032. "forward-command": false
  6033. },
  6034. "branch-alias": {
  6035. "dev-main": "0.12.x-dev"
  6036. }
  6037. },
  6038. "autoload": {
  6039. "files": [
  6040. "src/functions.php"
  6041. ],
  6042. "psr-4": {
  6043. "Psy\\": "src/"
  6044. }
  6045. },
  6046. "notification-url": "https://packagist.org/downloads/",
  6047. "license": [
  6048. "MIT"
  6049. ],
  6050. "authors": [
  6051. {
  6052. "name": "Justin Hileman",
  6053. "email": "justin@justinhileman.info",
  6054. "homepage": "http://justinhileman.com"
  6055. }
  6056. ],
  6057. "description": "An interactive shell for modern PHP.",
  6058. "homepage": "http://psysh.org",
  6059. "keywords": [
  6060. "REPL",
  6061. "console",
  6062. "interactive",
  6063. "shell"
  6064. ],
  6065. "support": {
  6066. "issues": "https://github.com/bobthecow/psysh/issues",
  6067. "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
  6068. },
  6069. "time": "2024-12-10T01:58:33+00:00"
  6070. },
  6071. {
  6072. "name": "ralouphie/getallheaders",
  6073. "version": "3.0.3",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/ralouphie/getallheaders.git",
  6077. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6082. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=5.6"
  6087. },
  6088. "require-dev": {
  6089. "php-coveralls/php-coveralls": "^2.1",
  6090. "phpunit/phpunit": "^5 || ^6.5"
  6091. },
  6092. "type": "library",
  6093. "autoload": {
  6094. "files": [
  6095. "src/getallheaders.php"
  6096. ]
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Ralph Khattar",
  6105. "email": "ralph.khattar@gmail.com"
  6106. }
  6107. ],
  6108. "description": "A polyfill for getallheaders.",
  6109. "support": {
  6110. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6111. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6112. },
  6113. "time": "2019-03-08T08:55:37+00:00"
  6114. },
  6115. {
  6116. "name": "ramsey/collection",
  6117. "version": "2.0.0",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/ramsey/collection.git",
  6121. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6126. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "php": "^8.1"
  6131. },
  6132. "require-dev": {
  6133. "captainhook/plugin-composer": "^5.3",
  6134. "ergebnis/composer-normalize": "^2.28.3",
  6135. "fakerphp/faker": "^1.21",
  6136. "hamcrest/hamcrest-php": "^2.0",
  6137. "jangregor/phpstan-prophecy": "^1.0",
  6138. "mockery/mockery": "^1.5",
  6139. "php-parallel-lint/php-console-highlighter": "^1.0",
  6140. "php-parallel-lint/php-parallel-lint": "^1.3",
  6141. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6142. "phpspec/prophecy-phpunit": "^2.0",
  6143. "phpstan/extension-installer": "^1.2",
  6144. "phpstan/phpstan": "^1.9",
  6145. "phpstan/phpstan-mockery": "^1.1",
  6146. "phpstan/phpstan-phpunit": "^1.3",
  6147. "phpunit/phpunit": "^9.5",
  6148. "psalm/plugin-mockery": "^1.1",
  6149. "psalm/plugin-phpunit": "^0.18.4",
  6150. "ramsey/coding-standard": "^2.0.3",
  6151. "ramsey/conventional-commits": "^1.3",
  6152. "vimeo/psalm": "^5.4"
  6153. },
  6154. "type": "library",
  6155. "extra": {
  6156. "captainhook": {
  6157. "force-install": true
  6158. },
  6159. "ramsey/conventional-commits": {
  6160. "configFile": "conventional-commits.json"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Ramsey\\Collection\\": "src/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "MIT"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "Ben Ramsey",
  6175. "email": "ben@benramsey.com",
  6176. "homepage": "https://benramsey.com"
  6177. }
  6178. ],
  6179. "description": "A PHP library for representing and manipulating collections.",
  6180. "keywords": [
  6181. "array",
  6182. "collection",
  6183. "hash",
  6184. "map",
  6185. "queue",
  6186. "set"
  6187. ],
  6188. "support": {
  6189. "issues": "https://github.com/ramsey/collection/issues",
  6190. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6191. },
  6192. "funding": [
  6193. {
  6194. "url": "https://github.com/ramsey",
  6195. "type": "github"
  6196. },
  6197. {
  6198. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6199. "type": "tidelift"
  6200. }
  6201. ],
  6202. "time": "2022-12-31T21:50:55+00:00"
  6203. },
  6204. {
  6205. "name": "ramsey/uuid",
  6206. "version": "4.7.6",
  6207. "source": {
  6208. "type": "git",
  6209. "url": "https://github.com/ramsey/uuid.git",
  6210. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6211. },
  6212. "dist": {
  6213. "type": "zip",
  6214. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6215. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6216. "shasum": ""
  6217. },
  6218. "require": {
  6219. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6220. "ext-json": "*",
  6221. "php": "^8.0",
  6222. "ramsey/collection": "^1.2 || ^2.0"
  6223. },
  6224. "replace": {
  6225. "rhumsaa/uuid": "self.version"
  6226. },
  6227. "require-dev": {
  6228. "captainhook/captainhook": "^5.10",
  6229. "captainhook/plugin-composer": "^5.3",
  6230. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6231. "doctrine/annotations": "^1.8",
  6232. "ergebnis/composer-normalize": "^2.15",
  6233. "mockery/mockery": "^1.3",
  6234. "paragonie/random-lib": "^2",
  6235. "php-mock/php-mock": "^2.2",
  6236. "php-mock/php-mock-mockery": "^1.3",
  6237. "php-parallel-lint/php-parallel-lint": "^1.1",
  6238. "phpbench/phpbench": "^1.0",
  6239. "phpstan/extension-installer": "^1.1",
  6240. "phpstan/phpstan": "^1.8",
  6241. "phpstan/phpstan-mockery": "^1.1",
  6242. "phpstan/phpstan-phpunit": "^1.1",
  6243. "phpunit/phpunit": "^8.5 || ^9",
  6244. "ramsey/composer-repl": "^1.4",
  6245. "slevomat/coding-standard": "^8.4",
  6246. "squizlabs/php_codesniffer": "^3.5",
  6247. "vimeo/psalm": "^4.9"
  6248. },
  6249. "suggest": {
  6250. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6251. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6252. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6253. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6254. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6255. },
  6256. "type": "library",
  6257. "extra": {
  6258. "captainhook": {
  6259. "force-install": true
  6260. }
  6261. },
  6262. "autoload": {
  6263. "files": [
  6264. "src/functions.php"
  6265. ],
  6266. "psr-4": {
  6267. "Ramsey\\Uuid\\": "src/"
  6268. }
  6269. },
  6270. "notification-url": "https://packagist.org/downloads/",
  6271. "license": [
  6272. "MIT"
  6273. ],
  6274. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6275. "keywords": [
  6276. "guid",
  6277. "identifier",
  6278. "uuid"
  6279. ],
  6280. "support": {
  6281. "issues": "https://github.com/ramsey/uuid/issues",
  6282. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6283. },
  6284. "funding": [
  6285. {
  6286. "url": "https://github.com/ramsey",
  6287. "type": "github"
  6288. },
  6289. {
  6290. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6291. "type": "tidelift"
  6292. }
  6293. ],
  6294. "time": "2024-04-27T21:32:50+00:00"
  6295. },
  6296. {
  6297. "name": "ryangjchandler/blade-capture-directive",
  6298. "version": "v1.0.0",
  6299. "source": {
  6300. "type": "git",
  6301. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6302. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6303. },
  6304. "dist": {
  6305. "type": "zip",
  6306. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6307. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6308. "shasum": ""
  6309. },
  6310. "require": {
  6311. "illuminate/contracts": "^10.0|^11.0",
  6312. "php": "^8.1",
  6313. "spatie/laravel-package-tools": "^1.9.2"
  6314. },
  6315. "require-dev": {
  6316. "nunomaduro/collision": "^7.0|^8.0",
  6317. "nunomaduro/larastan": "^2.0",
  6318. "orchestra/testbench": "^8.0|^9.0",
  6319. "pestphp/pest": "^2.0",
  6320. "pestphp/pest-plugin-laravel": "^2.0",
  6321. "phpstan/extension-installer": "^1.1",
  6322. "phpstan/phpstan-deprecation-rules": "^1.0",
  6323. "phpstan/phpstan-phpunit": "^1.0",
  6324. "phpunit/phpunit": "^10.0",
  6325. "spatie/laravel-ray": "^1.26"
  6326. },
  6327. "type": "library",
  6328. "extra": {
  6329. "laravel": {
  6330. "aliases": {
  6331. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6332. },
  6333. "providers": [
  6334. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6335. ]
  6336. }
  6337. },
  6338. "autoload": {
  6339. "psr-4": {
  6340. "RyanChandler\\BladeCaptureDirective\\": "src",
  6341. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6342. }
  6343. },
  6344. "notification-url": "https://packagist.org/downloads/",
  6345. "license": [
  6346. "MIT"
  6347. ],
  6348. "authors": [
  6349. {
  6350. "name": "Ryan Chandler",
  6351. "email": "support@ryangjchandler.co.uk",
  6352. "role": "Developer"
  6353. }
  6354. ],
  6355. "description": "Create inline partials in your Blade templates with ease.",
  6356. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6357. "keywords": [
  6358. "blade-capture-directive",
  6359. "laravel",
  6360. "ryangjchandler"
  6361. ],
  6362. "support": {
  6363. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6364. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6365. },
  6366. "funding": [
  6367. {
  6368. "url": "https://github.com/ryangjchandler",
  6369. "type": "github"
  6370. }
  6371. ],
  6372. "time": "2024-02-26T18:08:49+00:00"
  6373. },
  6374. {
  6375. "name": "spatie/color",
  6376. "version": "1.8.0",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://github.com/spatie/color.git",
  6380. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://api.github.com/repos/spatie/color/zipball/142af7fec069a420babea80a5412eb2f646dcd8c",
  6385. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c",
  6386. "shasum": ""
  6387. },
  6388. "require": {
  6389. "php": "^7.3|^8.0"
  6390. },
  6391. "require-dev": {
  6392. "pestphp/pest": "^1.22",
  6393. "phpunit/phpunit": "^6.5||^9.0"
  6394. },
  6395. "type": "library",
  6396. "autoload": {
  6397. "psr-4": {
  6398. "Spatie\\Color\\": "src"
  6399. }
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Sebastian De Deyne",
  6408. "email": "sebastian@spatie.be",
  6409. "homepage": "https://spatie.be",
  6410. "role": "Developer"
  6411. }
  6412. ],
  6413. "description": "A little library to handle color conversions",
  6414. "homepage": "https://github.com/spatie/color",
  6415. "keywords": [
  6416. "color",
  6417. "conversion",
  6418. "rgb",
  6419. "spatie"
  6420. ],
  6421. "support": {
  6422. "issues": "https://github.com/spatie/color/issues",
  6423. "source": "https://github.com/spatie/color/tree/1.8.0"
  6424. },
  6425. "funding": [
  6426. {
  6427. "url": "https://github.com/spatie",
  6428. "type": "github"
  6429. }
  6430. ],
  6431. "time": "2025-02-10T09:22:41+00:00"
  6432. },
  6433. {
  6434. "name": "spatie/invade",
  6435. "version": "2.1.0",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/spatie/invade.git",
  6439. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6444. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "php": "^8.0"
  6449. },
  6450. "require-dev": {
  6451. "pestphp/pest": "^1.20",
  6452. "phpstan/phpstan": "^1.4",
  6453. "spatie/ray": "^1.28"
  6454. },
  6455. "type": "library",
  6456. "autoload": {
  6457. "files": [
  6458. "src/functions.php"
  6459. ],
  6460. "psr-4": {
  6461. "Spatie\\Invade\\": "src"
  6462. }
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Freek Van der Herten",
  6471. "email": "freek@spatie.be",
  6472. "role": "Developer"
  6473. }
  6474. ],
  6475. "description": "A PHP function to work with private properties and methods",
  6476. "homepage": "https://github.com/spatie/invade",
  6477. "keywords": [
  6478. "invade",
  6479. "spatie"
  6480. ],
  6481. "support": {
  6482. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6483. },
  6484. "funding": [
  6485. {
  6486. "url": "https://github.com/spatie",
  6487. "type": "github"
  6488. }
  6489. ],
  6490. "time": "2024-05-17T09:06:10+00:00"
  6491. },
  6492. {
  6493. "name": "spatie/laravel-package-tools",
  6494. "version": "1.19.0",
  6495. "source": {
  6496. "type": "git",
  6497. "url": "https://github.com/spatie/laravel-package-tools.git",
  6498. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa"
  6499. },
  6500. "dist": {
  6501. "type": "zip",
  6502. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  6503. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  6504. "shasum": ""
  6505. },
  6506. "require": {
  6507. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  6508. "php": "^8.0"
  6509. },
  6510. "require-dev": {
  6511. "mockery/mockery": "^1.5",
  6512. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  6513. "pestphp/pest": "^1.23|^2.1|^3.1",
  6514. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  6515. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6516. },
  6517. "type": "library",
  6518. "autoload": {
  6519. "psr-4": {
  6520. "Spatie\\LaravelPackageTools\\": "src"
  6521. }
  6522. },
  6523. "notification-url": "https://packagist.org/downloads/",
  6524. "license": [
  6525. "MIT"
  6526. ],
  6527. "authors": [
  6528. {
  6529. "name": "Freek Van der Herten",
  6530. "email": "freek@spatie.be",
  6531. "role": "Developer"
  6532. }
  6533. ],
  6534. "description": "Tools for creating Laravel packages",
  6535. "homepage": "https://github.com/spatie/laravel-package-tools",
  6536. "keywords": [
  6537. "laravel-package-tools",
  6538. "spatie"
  6539. ],
  6540. "support": {
  6541. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6542. "source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0"
  6543. },
  6544. "funding": [
  6545. {
  6546. "url": "https://github.com/spatie",
  6547. "type": "github"
  6548. }
  6549. ],
  6550. "time": "2025-02-06T14:58:20+00:00"
  6551. },
  6552. {
  6553. "name": "squirephp/model",
  6554. "version": "v3.8.0",
  6555. "source": {
  6556. "type": "git",
  6557. "url": "https://github.com/squirephp/model.git",
  6558. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6559. },
  6560. "dist": {
  6561. "type": "zip",
  6562. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6563. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6564. "shasum": ""
  6565. },
  6566. "require": {
  6567. "ext-pdo_sqlite": "*",
  6568. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6569. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6570. "php": "^8.0"
  6571. },
  6572. "type": "library",
  6573. "extra": {
  6574. "laravel": {
  6575. "providers": [
  6576. "Squire\\ModelServiceProvider"
  6577. ]
  6578. }
  6579. },
  6580. "autoload": {
  6581. "psr-4": {
  6582. "Squire\\": "src"
  6583. }
  6584. },
  6585. "notification-url": "https://packagist.org/downloads/",
  6586. "license": [
  6587. "MIT"
  6588. ],
  6589. "authors": [
  6590. {
  6591. "name": "Dan Harrin",
  6592. "email": "dan@danharrin.com"
  6593. }
  6594. ],
  6595. "description": "A library containing the base Squire model class.",
  6596. "homepage": "https://github.com/squirephp",
  6597. "keywords": [
  6598. "squire"
  6599. ],
  6600. "support": {
  6601. "issues": "https://github.com/squirephp/squire/issues",
  6602. "source": "https://github.com/squirephp/squire"
  6603. },
  6604. "time": "2024-03-11T11:06:10+00:00"
  6605. },
  6606. {
  6607. "name": "squirephp/repository",
  6608. "version": "v3.8.0",
  6609. "source": {
  6610. "type": "git",
  6611. "url": "https://github.com/squirephp/repository.git",
  6612. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6613. },
  6614. "dist": {
  6615. "type": "zip",
  6616. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6617. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6618. "shasum": ""
  6619. },
  6620. "require": {
  6621. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6622. "php": "^8.0"
  6623. },
  6624. "type": "library",
  6625. "extra": {
  6626. "laravel": {
  6627. "aliases": {
  6628. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6629. },
  6630. "providers": [
  6631. "Squire\\RepositoryServiceProvider"
  6632. ]
  6633. }
  6634. },
  6635. "autoload": {
  6636. "psr-4": {
  6637. "Squire\\": "src"
  6638. }
  6639. },
  6640. "notification-url": "https://packagist.org/downloads/",
  6641. "license": [
  6642. "MIT"
  6643. ],
  6644. "authors": [
  6645. {
  6646. "name": "Dan Harrin",
  6647. "email": "dan@danharrin.com"
  6648. }
  6649. ],
  6650. "description": "A library containing the Squire repository.",
  6651. "homepage": "https://github.com/squirephp",
  6652. "keywords": [
  6653. "squire"
  6654. ],
  6655. "support": {
  6656. "issues": "https://github.com/squirephp/squire/issues",
  6657. "source": "https://github.com/squirephp/squire"
  6658. },
  6659. "time": "2024-03-11T11:06:10+00:00"
  6660. },
  6661. {
  6662. "name": "symfony/clock",
  6663. "version": "v7.2.0",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/symfony/clock.git",
  6667. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6672. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6673. "shasum": ""
  6674. },
  6675. "require": {
  6676. "php": ">=8.2",
  6677. "psr/clock": "^1.0",
  6678. "symfony/polyfill-php83": "^1.28"
  6679. },
  6680. "provide": {
  6681. "psr/clock-implementation": "1.0"
  6682. },
  6683. "type": "library",
  6684. "autoload": {
  6685. "files": [
  6686. "Resources/now.php"
  6687. ],
  6688. "psr-4": {
  6689. "Symfony\\Component\\Clock\\": ""
  6690. },
  6691. "exclude-from-classmap": [
  6692. "/Tests/"
  6693. ]
  6694. },
  6695. "notification-url": "https://packagist.org/downloads/",
  6696. "license": [
  6697. "MIT"
  6698. ],
  6699. "authors": [
  6700. {
  6701. "name": "Nicolas Grekas",
  6702. "email": "p@tchwork.com"
  6703. },
  6704. {
  6705. "name": "Symfony Community",
  6706. "homepage": "https://symfony.com/contributors"
  6707. }
  6708. ],
  6709. "description": "Decouples applications from the system clock",
  6710. "homepage": "https://symfony.com",
  6711. "keywords": [
  6712. "clock",
  6713. "psr20",
  6714. "time"
  6715. ],
  6716. "support": {
  6717. "source": "https://github.com/symfony/clock/tree/v7.2.0"
  6718. },
  6719. "funding": [
  6720. {
  6721. "url": "https://symfony.com/sponsor",
  6722. "type": "custom"
  6723. },
  6724. {
  6725. "url": "https://github.com/fabpot",
  6726. "type": "github"
  6727. },
  6728. {
  6729. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6730. "type": "tidelift"
  6731. }
  6732. ],
  6733. "time": "2024-09-25T14:21:43+00:00"
  6734. },
  6735. {
  6736. "name": "symfony/console",
  6737. "version": "v7.2.1",
  6738. "source": {
  6739. "type": "git",
  6740. "url": "https://github.com/symfony/console.git",
  6741. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3"
  6742. },
  6743. "dist": {
  6744. "type": "zip",
  6745. "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6746. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6747. "shasum": ""
  6748. },
  6749. "require": {
  6750. "php": ">=8.2",
  6751. "symfony/polyfill-mbstring": "~1.0",
  6752. "symfony/service-contracts": "^2.5|^3",
  6753. "symfony/string": "^6.4|^7.0"
  6754. },
  6755. "conflict": {
  6756. "symfony/dependency-injection": "<6.4",
  6757. "symfony/dotenv": "<6.4",
  6758. "symfony/event-dispatcher": "<6.4",
  6759. "symfony/lock": "<6.4",
  6760. "symfony/process": "<6.4"
  6761. },
  6762. "provide": {
  6763. "psr/log-implementation": "1.0|2.0|3.0"
  6764. },
  6765. "require-dev": {
  6766. "psr/log": "^1|^2|^3",
  6767. "symfony/config": "^6.4|^7.0",
  6768. "symfony/dependency-injection": "^6.4|^7.0",
  6769. "symfony/event-dispatcher": "^6.4|^7.0",
  6770. "symfony/http-foundation": "^6.4|^7.0",
  6771. "symfony/http-kernel": "^6.4|^7.0",
  6772. "symfony/lock": "^6.4|^7.0",
  6773. "symfony/messenger": "^6.4|^7.0",
  6774. "symfony/process": "^6.4|^7.0",
  6775. "symfony/stopwatch": "^6.4|^7.0",
  6776. "symfony/var-dumper": "^6.4|^7.0"
  6777. },
  6778. "type": "library",
  6779. "autoload": {
  6780. "psr-4": {
  6781. "Symfony\\Component\\Console\\": ""
  6782. },
  6783. "exclude-from-classmap": [
  6784. "/Tests/"
  6785. ]
  6786. },
  6787. "notification-url": "https://packagist.org/downloads/",
  6788. "license": [
  6789. "MIT"
  6790. ],
  6791. "authors": [
  6792. {
  6793. "name": "Fabien Potencier",
  6794. "email": "fabien@symfony.com"
  6795. },
  6796. {
  6797. "name": "Symfony Community",
  6798. "homepage": "https://symfony.com/contributors"
  6799. }
  6800. ],
  6801. "description": "Eases the creation of beautiful and testable command line interfaces",
  6802. "homepage": "https://symfony.com",
  6803. "keywords": [
  6804. "cli",
  6805. "command-line",
  6806. "console",
  6807. "terminal"
  6808. ],
  6809. "support": {
  6810. "source": "https://github.com/symfony/console/tree/v7.2.1"
  6811. },
  6812. "funding": [
  6813. {
  6814. "url": "https://symfony.com/sponsor",
  6815. "type": "custom"
  6816. },
  6817. {
  6818. "url": "https://github.com/fabpot",
  6819. "type": "github"
  6820. },
  6821. {
  6822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6823. "type": "tidelift"
  6824. }
  6825. ],
  6826. "time": "2024-12-11T03:49:26+00:00"
  6827. },
  6828. {
  6829. "name": "symfony/css-selector",
  6830. "version": "v7.2.0",
  6831. "source": {
  6832. "type": "git",
  6833. "url": "https://github.com/symfony/css-selector.git",
  6834. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6835. },
  6836. "dist": {
  6837. "type": "zip",
  6838. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6839. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6840. "shasum": ""
  6841. },
  6842. "require": {
  6843. "php": ">=8.2"
  6844. },
  6845. "type": "library",
  6846. "autoload": {
  6847. "psr-4": {
  6848. "Symfony\\Component\\CssSelector\\": ""
  6849. },
  6850. "exclude-from-classmap": [
  6851. "/Tests/"
  6852. ]
  6853. },
  6854. "notification-url": "https://packagist.org/downloads/",
  6855. "license": [
  6856. "MIT"
  6857. ],
  6858. "authors": [
  6859. {
  6860. "name": "Fabien Potencier",
  6861. "email": "fabien@symfony.com"
  6862. },
  6863. {
  6864. "name": "Jean-François Simon",
  6865. "email": "jeanfrancois.simon@sensiolabs.com"
  6866. },
  6867. {
  6868. "name": "Symfony Community",
  6869. "homepage": "https://symfony.com/contributors"
  6870. }
  6871. ],
  6872. "description": "Converts CSS selectors to XPath expressions",
  6873. "homepage": "https://symfony.com",
  6874. "support": {
  6875. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  6876. },
  6877. "funding": [
  6878. {
  6879. "url": "https://symfony.com/sponsor",
  6880. "type": "custom"
  6881. },
  6882. {
  6883. "url": "https://github.com/fabpot",
  6884. "type": "github"
  6885. },
  6886. {
  6887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6888. "type": "tidelift"
  6889. }
  6890. ],
  6891. "time": "2024-09-25T14:21:43+00:00"
  6892. },
  6893. {
  6894. "name": "symfony/deprecation-contracts",
  6895. "version": "v3.5.1",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://github.com/symfony/deprecation-contracts.git",
  6899. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6904. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6905. "shasum": ""
  6906. },
  6907. "require": {
  6908. "php": ">=8.1"
  6909. },
  6910. "type": "library",
  6911. "extra": {
  6912. "thanks": {
  6913. "url": "https://github.com/symfony/contracts",
  6914. "name": "symfony/contracts"
  6915. },
  6916. "branch-alias": {
  6917. "dev-main": "3.5-dev"
  6918. }
  6919. },
  6920. "autoload": {
  6921. "files": [
  6922. "function.php"
  6923. ]
  6924. },
  6925. "notification-url": "https://packagist.org/downloads/",
  6926. "license": [
  6927. "MIT"
  6928. ],
  6929. "authors": [
  6930. {
  6931. "name": "Nicolas Grekas",
  6932. "email": "p@tchwork.com"
  6933. },
  6934. {
  6935. "name": "Symfony Community",
  6936. "homepage": "https://symfony.com/contributors"
  6937. }
  6938. ],
  6939. "description": "A generic function and convention to trigger deprecation notices",
  6940. "homepage": "https://symfony.com",
  6941. "support": {
  6942. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6943. },
  6944. "funding": [
  6945. {
  6946. "url": "https://symfony.com/sponsor",
  6947. "type": "custom"
  6948. },
  6949. {
  6950. "url": "https://github.com/fabpot",
  6951. "type": "github"
  6952. },
  6953. {
  6954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6955. "type": "tidelift"
  6956. }
  6957. ],
  6958. "time": "2024-09-25T14:20:29+00:00"
  6959. },
  6960. {
  6961. "name": "symfony/error-handler",
  6962. "version": "v7.2.3",
  6963. "source": {
  6964. "type": "git",
  6965. "url": "https://github.com/symfony/error-handler.git",
  6966. "reference": "959a74d044a6db21f4caa6d695648dcb5584cb49"
  6967. },
  6968. "dist": {
  6969. "type": "zip",
  6970. "url": "https://api.github.com/repos/symfony/error-handler/zipball/959a74d044a6db21f4caa6d695648dcb5584cb49",
  6971. "reference": "959a74d044a6db21f4caa6d695648dcb5584cb49",
  6972. "shasum": ""
  6973. },
  6974. "require": {
  6975. "php": ">=8.2",
  6976. "psr/log": "^1|^2|^3",
  6977. "symfony/var-dumper": "^6.4|^7.0"
  6978. },
  6979. "conflict": {
  6980. "symfony/deprecation-contracts": "<2.5",
  6981. "symfony/http-kernel": "<6.4"
  6982. },
  6983. "require-dev": {
  6984. "symfony/deprecation-contracts": "^2.5|^3",
  6985. "symfony/http-kernel": "^6.4|^7.0",
  6986. "symfony/serializer": "^6.4|^7.0"
  6987. },
  6988. "bin": [
  6989. "Resources/bin/patch-type-declarations"
  6990. ],
  6991. "type": "library",
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Symfony\\Component\\ErrorHandler\\": ""
  6995. },
  6996. "exclude-from-classmap": [
  6997. "/Tests/"
  6998. ]
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "MIT"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Fabien Potencier",
  7007. "email": "fabien@symfony.com"
  7008. },
  7009. {
  7010. "name": "Symfony Community",
  7011. "homepage": "https://symfony.com/contributors"
  7012. }
  7013. ],
  7014. "description": "Provides tools to manage errors and ease debugging PHP code",
  7015. "homepage": "https://symfony.com",
  7016. "support": {
  7017. "source": "https://github.com/symfony/error-handler/tree/v7.2.3"
  7018. },
  7019. "funding": [
  7020. {
  7021. "url": "https://symfony.com/sponsor",
  7022. "type": "custom"
  7023. },
  7024. {
  7025. "url": "https://github.com/fabpot",
  7026. "type": "github"
  7027. },
  7028. {
  7029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7030. "type": "tidelift"
  7031. }
  7032. ],
  7033. "time": "2025-01-07T09:39:55+00:00"
  7034. },
  7035. {
  7036. "name": "symfony/event-dispatcher",
  7037. "version": "v7.2.0",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/symfony/event-dispatcher.git",
  7041. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7046. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": ">=8.2",
  7051. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7052. },
  7053. "conflict": {
  7054. "symfony/dependency-injection": "<6.4",
  7055. "symfony/service-contracts": "<2.5"
  7056. },
  7057. "provide": {
  7058. "psr/event-dispatcher-implementation": "1.0",
  7059. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7060. },
  7061. "require-dev": {
  7062. "psr/log": "^1|^2|^3",
  7063. "symfony/config": "^6.4|^7.0",
  7064. "symfony/dependency-injection": "^6.4|^7.0",
  7065. "symfony/error-handler": "^6.4|^7.0",
  7066. "symfony/expression-language": "^6.4|^7.0",
  7067. "symfony/http-foundation": "^6.4|^7.0",
  7068. "symfony/service-contracts": "^2.5|^3",
  7069. "symfony/stopwatch": "^6.4|^7.0"
  7070. },
  7071. "type": "library",
  7072. "autoload": {
  7073. "psr-4": {
  7074. "Symfony\\Component\\EventDispatcher\\": ""
  7075. },
  7076. "exclude-from-classmap": [
  7077. "/Tests/"
  7078. ]
  7079. },
  7080. "notification-url": "https://packagist.org/downloads/",
  7081. "license": [
  7082. "MIT"
  7083. ],
  7084. "authors": [
  7085. {
  7086. "name": "Fabien Potencier",
  7087. "email": "fabien@symfony.com"
  7088. },
  7089. {
  7090. "name": "Symfony Community",
  7091. "homepage": "https://symfony.com/contributors"
  7092. }
  7093. ],
  7094. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7095. "homepage": "https://symfony.com",
  7096. "support": {
  7097. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  7098. },
  7099. "funding": [
  7100. {
  7101. "url": "https://symfony.com/sponsor",
  7102. "type": "custom"
  7103. },
  7104. {
  7105. "url": "https://github.com/fabpot",
  7106. "type": "github"
  7107. },
  7108. {
  7109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7110. "type": "tidelift"
  7111. }
  7112. ],
  7113. "time": "2024-09-25T14:21:43+00:00"
  7114. },
  7115. {
  7116. "name": "symfony/event-dispatcher-contracts",
  7117. "version": "v3.5.1",
  7118. "source": {
  7119. "type": "git",
  7120. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7121. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  7122. },
  7123. "dist": {
  7124. "type": "zip",
  7125. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7126. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7127. "shasum": ""
  7128. },
  7129. "require": {
  7130. "php": ">=8.1",
  7131. "psr/event-dispatcher": "^1"
  7132. },
  7133. "type": "library",
  7134. "extra": {
  7135. "thanks": {
  7136. "url": "https://github.com/symfony/contracts",
  7137. "name": "symfony/contracts"
  7138. },
  7139. "branch-alias": {
  7140. "dev-main": "3.5-dev"
  7141. }
  7142. },
  7143. "autoload": {
  7144. "psr-4": {
  7145. "Symfony\\Contracts\\EventDispatcher\\": ""
  7146. }
  7147. },
  7148. "notification-url": "https://packagist.org/downloads/",
  7149. "license": [
  7150. "MIT"
  7151. ],
  7152. "authors": [
  7153. {
  7154. "name": "Nicolas Grekas",
  7155. "email": "p@tchwork.com"
  7156. },
  7157. {
  7158. "name": "Symfony Community",
  7159. "homepage": "https://symfony.com/contributors"
  7160. }
  7161. ],
  7162. "description": "Generic abstractions related to dispatching event",
  7163. "homepage": "https://symfony.com",
  7164. "keywords": [
  7165. "abstractions",
  7166. "contracts",
  7167. "decoupling",
  7168. "interfaces",
  7169. "interoperability",
  7170. "standards"
  7171. ],
  7172. "support": {
  7173. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  7174. },
  7175. "funding": [
  7176. {
  7177. "url": "https://symfony.com/sponsor",
  7178. "type": "custom"
  7179. },
  7180. {
  7181. "url": "https://github.com/fabpot",
  7182. "type": "github"
  7183. },
  7184. {
  7185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7186. "type": "tidelift"
  7187. }
  7188. ],
  7189. "time": "2024-09-25T14:20:29+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/finder",
  7193. "version": "v7.2.2",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/finder.git",
  7197. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  7202. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "php": ">=8.2"
  7207. },
  7208. "require-dev": {
  7209. "symfony/filesystem": "^6.4|^7.0"
  7210. },
  7211. "type": "library",
  7212. "autoload": {
  7213. "psr-4": {
  7214. "Symfony\\Component\\Finder\\": ""
  7215. },
  7216. "exclude-from-classmap": [
  7217. "/Tests/"
  7218. ]
  7219. },
  7220. "notification-url": "https://packagist.org/downloads/",
  7221. "license": [
  7222. "MIT"
  7223. ],
  7224. "authors": [
  7225. {
  7226. "name": "Fabien Potencier",
  7227. "email": "fabien@symfony.com"
  7228. },
  7229. {
  7230. "name": "Symfony Community",
  7231. "homepage": "https://symfony.com/contributors"
  7232. }
  7233. ],
  7234. "description": "Finds files and directories via an intuitive fluent interface",
  7235. "homepage": "https://symfony.com",
  7236. "support": {
  7237. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  7238. },
  7239. "funding": [
  7240. {
  7241. "url": "https://symfony.com/sponsor",
  7242. "type": "custom"
  7243. },
  7244. {
  7245. "url": "https://github.com/fabpot",
  7246. "type": "github"
  7247. },
  7248. {
  7249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7250. "type": "tidelift"
  7251. }
  7252. ],
  7253. "time": "2024-12-30T19:00:17+00:00"
  7254. },
  7255. {
  7256. "name": "symfony/html-sanitizer",
  7257. "version": "v7.2.3",
  7258. "source": {
  7259. "type": "git",
  7260. "url": "https://github.com/symfony/html-sanitizer.git",
  7261. "reference": "91443febe34cfa5e8e00425f892e6316db95bc23"
  7262. },
  7263. "dist": {
  7264. "type": "zip",
  7265. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/91443febe34cfa5e8e00425f892e6316db95bc23",
  7266. "reference": "91443febe34cfa5e8e00425f892e6316db95bc23",
  7267. "shasum": ""
  7268. },
  7269. "require": {
  7270. "ext-dom": "*",
  7271. "league/uri": "^6.5|^7.0",
  7272. "masterminds/html5": "^2.7.2",
  7273. "php": ">=8.2"
  7274. },
  7275. "type": "library",
  7276. "autoload": {
  7277. "psr-4": {
  7278. "Symfony\\Component\\HtmlSanitizer\\": ""
  7279. },
  7280. "exclude-from-classmap": [
  7281. "/Tests/"
  7282. ]
  7283. },
  7284. "notification-url": "https://packagist.org/downloads/",
  7285. "license": [
  7286. "MIT"
  7287. ],
  7288. "authors": [
  7289. {
  7290. "name": "Titouan Galopin",
  7291. "email": "galopintitouan@gmail.com"
  7292. },
  7293. {
  7294. "name": "Symfony Community",
  7295. "homepage": "https://symfony.com/contributors"
  7296. }
  7297. ],
  7298. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7299. "homepage": "https://symfony.com",
  7300. "keywords": [
  7301. "Purifier",
  7302. "html",
  7303. "sanitizer"
  7304. ],
  7305. "support": {
  7306. "source": "https://github.com/symfony/html-sanitizer/tree/v7.2.3"
  7307. },
  7308. "funding": [
  7309. {
  7310. "url": "https://symfony.com/sponsor",
  7311. "type": "custom"
  7312. },
  7313. {
  7314. "url": "https://github.com/fabpot",
  7315. "type": "github"
  7316. },
  7317. {
  7318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7319. "type": "tidelift"
  7320. }
  7321. ],
  7322. "time": "2025-01-27T11:08:17+00:00"
  7323. },
  7324. {
  7325. "name": "symfony/http-foundation",
  7326. "version": "v7.2.3",
  7327. "source": {
  7328. "type": "git",
  7329. "url": "https://github.com/symfony/http-foundation.git",
  7330. "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0"
  7331. },
  7332. "dist": {
  7333. "type": "zip",
  7334. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ee1b504b8926198be89d05e5b6fc4c3810c090f0",
  7335. "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0",
  7336. "shasum": ""
  7337. },
  7338. "require": {
  7339. "php": ">=8.2",
  7340. "symfony/deprecation-contracts": "^2.5|^3.0",
  7341. "symfony/polyfill-mbstring": "~1.1",
  7342. "symfony/polyfill-php83": "^1.27"
  7343. },
  7344. "conflict": {
  7345. "doctrine/dbal": "<3.6",
  7346. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7347. },
  7348. "require-dev": {
  7349. "doctrine/dbal": "^3.6|^4",
  7350. "predis/predis": "^1.1|^2.0",
  7351. "symfony/cache": "^6.4.12|^7.1.5",
  7352. "symfony/dependency-injection": "^6.4|^7.0",
  7353. "symfony/expression-language": "^6.4|^7.0",
  7354. "symfony/http-kernel": "^6.4|^7.0",
  7355. "symfony/mime": "^6.4|^7.0",
  7356. "symfony/rate-limiter": "^6.4|^7.0"
  7357. },
  7358. "type": "library",
  7359. "autoload": {
  7360. "psr-4": {
  7361. "Symfony\\Component\\HttpFoundation\\": ""
  7362. },
  7363. "exclude-from-classmap": [
  7364. "/Tests/"
  7365. ]
  7366. },
  7367. "notification-url": "https://packagist.org/downloads/",
  7368. "license": [
  7369. "MIT"
  7370. ],
  7371. "authors": [
  7372. {
  7373. "name": "Fabien Potencier",
  7374. "email": "fabien@symfony.com"
  7375. },
  7376. {
  7377. "name": "Symfony Community",
  7378. "homepage": "https://symfony.com/contributors"
  7379. }
  7380. ],
  7381. "description": "Defines an object-oriented layer for the HTTP specification",
  7382. "homepage": "https://symfony.com",
  7383. "support": {
  7384. "source": "https://github.com/symfony/http-foundation/tree/v7.2.3"
  7385. },
  7386. "funding": [
  7387. {
  7388. "url": "https://symfony.com/sponsor",
  7389. "type": "custom"
  7390. },
  7391. {
  7392. "url": "https://github.com/fabpot",
  7393. "type": "github"
  7394. },
  7395. {
  7396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7397. "type": "tidelift"
  7398. }
  7399. ],
  7400. "time": "2025-01-17T10:56:55+00:00"
  7401. },
  7402. {
  7403. "name": "symfony/http-kernel",
  7404. "version": "v7.2.3",
  7405. "source": {
  7406. "type": "git",
  7407. "url": "https://github.com/symfony/http-kernel.git",
  7408. "reference": "caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b"
  7409. },
  7410. "dist": {
  7411. "type": "zip",
  7412. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b",
  7413. "reference": "caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b",
  7414. "shasum": ""
  7415. },
  7416. "require": {
  7417. "php": ">=8.2",
  7418. "psr/log": "^1|^2|^3",
  7419. "symfony/deprecation-contracts": "^2.5|^3",
  7420. "symfony/error-handler": "^6.4|^7.0",
  7421. "symfony/event-dispatcher": "^6.4|^7.0",
  7422. "symfony/http-foundation": "^6.4|^7.0",
  7423. "symfony/polyfill-ctype": "^1.8"
  7424. },
  7425. "conflict": {
  7426. "symfony/browser-kit": "<6.4",
  7427. "symfony/cache": "<6.4",
  7428. "symfony/config": "<6.4",
  7429. "symfony/console": "<6.4",
  7430. "symfony/dependency-injection": "<6.4",
  7431. "symfony/doctrine-bridge": "<6.4",
  7432. "symfony/form": "<6.4",
  7433. "symfony/http-client": "<6.4",
  7434. "symfony/http-client-contracts": "<2.5",
  7435. "symfony/mailer": "<6.4",
  7436. "symfony/messenger": "<6.4",
  7437. "symfony/translation": "<6.4",
  7438. "symfony/translation-contracts": "<2.5",
  7439. "symfony/twig-bridge": "<6.4",
  7440. "symfony/validator": "<6.4",
  7441. "symfony/var-dumper": "<6.4",
  7442. "twig/twig": "<3.12"
  7443. },
  7444. "provide": {
  7445. "psr/log-implementation": "1.0|2.0|3.0"
  7446. },
  7447. "require-dev": {
  7448. "psr/cache": "^1.0|^2.0|^3.0",
  7449. "symfony/browser-kit": "^6.4|^7.0",
  7450. "symfony/clock": "^6.4|^7.0",
  7451. "symfony/config": "^6.4|^7.0",
  7452. "symfony/console": "^6.4|^7.0",
  7453. "symfony/css-selector": "^6.4|^7.0",
  7454. "symfony/dependency-injection": "^6.4|^7.0",
  7455. "symfony/dom-crawler": "^6.4|^7.0",
  7456. "symfony/expression-language": "^6.4|^7.0",
  7457. "symfony/finder": "^6.4|^7.0",
  7458. "symfony/http-client-contracts": "^2.5|^3",
  7459. "symfony/process": "^6.4|^7.0",
  7460. "symfony/property-access": "^7.1",
  7461. "symfony/routing": "^6.4|^7.0",
  7462. "symfony/serializer": "^7.1",
  7463. "symfony/stopwatch": "^6.4|^7.0",
  7464. "symfony/translation": "^6.4|^7.0",
  7465. "symfony/translation-contracts": "^2.5|^3",
  7466. "symfony/uid": "^6.4|^7.0",
  7467. "symfony/validator": "^6.4|^7.0",
  7468. "symfony/var-dumper": "^6.4|^7.0",
  7469. "symfony/var-exporter": "^6.4|^7.0",
  7470. "twig/twig": "^3.12"
  7471. },
  7472. "type": "library",
  7473. "autoload": {
  7474. "psr-4": {
  7475. "Symfony\\Component\\HttpKernel\\": ""
  7476. },
  7477. "exclude-from-classmap": [
  7478. "/Tests/"
  7479. ]
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "authors": [
  7486. {
  7487. "name": "Fabien Potencier",
  7488. "email": "fabien@symfony.com"
  7489. },
  7490. {
  7491. "name": "Symfony Community",
  7492. "homepage": "https://symfony.com/contributors"
  7493. }
  7494. ],
  7495. "description": "Provides a structured process for converting a Request into a Response",
  7496. "homepage": "https://symfony.com",
  7497. "support": {
  7498. "source": "https://github.com/symfony/http-kernel/tree/v7.2.3"
  7499. },
  7500. "funding": [
  7501. {
  7502. "url": "https://symfony.com/sponsor",
  7503. "type": "custom"
  7504. },
  7505. {
  7506. "url": "https://github.com/fabpot",
  7507. "type": "github"
  7508. },
  7509. {
  7510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7511. "type": "tidelift"
  7512. }
  7513. ],
  7514. "time": "2025-01-29T07:40:13+00:00"
  7515. },
  7516. {
  7517. "name": "symfony/intl",
  7518. "version": "v6.4.15",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/symfony/intl.git",
  7522. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7527. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "php": ">=8.1"
  7532. },
  7533. "require-dev": {
  7534. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7535. "symfony/finder": "^5.4|^6.0|^7.0",
  7536. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7537. },
  7538. "type": "library",
  7539. "autoload": {
  7540. "psr-4": {
  7541. "Symfony\\Component\\Intl\\": ""
  7542. },
  7543. "exclude-from-classmap": [
  7544. "/Tests/",
  7545. "/Resources/data/"
  7546. ]
  7547. },
  7548. "notification-url": "https://packagist.org/downloads/",
  7549. "license": [
  7550. "MIT"
  7551. ],
  7552. "authors": [
  7553. {
  7554. "name": "Bernhard Schussek",
  7555. "email": "bschussek@gmail.com"
  7556. },
  7557. {
  7558. "name": "Eriksen Costa",
  7559. "email": "eriksen.costa@infranology.com.br"
  7560. },
  7561. {
  7562. "name": "Igor Wiedler",
  7563. "email": "igor@wiedler.ch"
  7564. },
  7565. {
  7566. "name": "Symfony Community",
  7567. "homepage": "https://symfony.com/contributors"
  7568. }
  7569. ],
  7570. "description": "Provides access to the localization data of the ICU library",
  7571. "homepage": "https://symfony.com",
  7572. "keywords": [
  7573. "i18n",
  7574. "icu",
  7575. "internationalization",
  7576. "intl",
  7577. "l10n",
  7578. "localization"
  7579. ],
  7580. "support": {
  7581. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  7582. },
  7583. "funding": [
  7584. {
  7585. "url": "https://symfony.com/sponsor",
  7586. "type": "custom"
  7587. },
  7588. {
  7589. "url": "https://github.com/fabpot",
  7590. "type": "github"
  7591. },
  7592. {
  7593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7594. "type": "tidelift"
  7595. }
  7596. ],
  7597. "time": "2024-11-08T15:28:48+00:00"
  7598. },
  7599. {
  7600. "name": "symfony/mailer",
  7601. "version": "v7.2.3",
  7602. "source": {
  7603. "type": "git",
  7604. "url": "https://github.com/symfony/mailer.git",
  7605. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  7606. },
  7607. "dist": {
  7608. "type": "zip",
  7609. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  7610. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  7611. "shasum": ""
  7612. },
  7613. "require": {
  7614. "egulias/email-validator": "^2.1.10|^3|^4",
  7615. "php": ">=8.2",
  7616. "psr/event-dispatcher": "^1",
  7617. "psr/log": "^1|^2|^3",
  7618. "symfony/event-dispatcher": "^6.4|^7.0",
  7619. "symfony/mime": "^7.2",
  7620. "symfony/service-contracts": "^2.5|^3"
  7621. },
  7622. "conflict": {
  7623. "symfony/http-client-contracts": "<2.5",
  7624. "symfony/http-kernel": "<6.4",
  7625. "symfony/messenger": "<6.4",
  7626. "symfony/mime": "<6.4",
  7627. "symfony/twig-bridge": "<6.4"
  7628. },
  7629. "require-dev": {
  7630. "symfony/console": "^6.4|^7.0",
  7631. "symfony/http-client": "^6.4|^7.0",
  7632. "symfony/messenger": "^6.4|^7.0",
  7633. "symfony/twig-bridge": "^6.4|^7.0"
  7634. },
  7635. "type": "library",
  7636. "autoload": {
  7637. "psr-4": {
  7638. "Symfony\\Component\\Mailer\\": ""
  7639. },
  7640. "exclude-from-classmap": [
  7641. "/Tests/"
  7642. ]
  7643. },
  7644. "notification-url": "https://packagist.org/downloads/",
  7645. "license": [
  7646. "MIT"
  7647. ],
  7648. "authors": [
  7649. {
  7650. "name": "Fabien Potencier",
  7651. "email": "fabien@symfony.com"
  7652. },
  7653. {
  7654. "name": "Symfony Community",
  7655. "homepage": "https://symfony.com/contributors"
  7656. }
  7657. ],
  7658. "description": "Helps sending emails",
  7659. "homepage": "https://symfony.com",
  7660. "support": {
  7661. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  7662. },
  7663. "funding": [
  7664. {
  7665. "url": "https://symfony.com/sponsor",
  7666. "type": "custom"
  7667. },
  7668. {
  7669. "url": "https://github.com/fabpot",
  7670. "type": "github"
  7671. },
  7672. {
  7673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7674. "type": "tidelift"
  7675. }
  7676. ],
  7677. "time": "2025-01-27T11:08:17+00:00"
  7678. },
  7679. {
  7680. "name": "symfony/mime",
  7681. "version": "v7.2.3",
  7682. "source": {
  7683. "type": "git",
  7684. "url": "https://github.com/symfony/mime.git",
  7685. "reference": "2fc3b4bd67e4747e45195bc4c98bea4628476204"
  7686. },
  7687. "dist": {
  7688. "type": "zip",
  7689. "url": "https://api.github.com/repos/symfony/mime/zipball/2fc3b4bd67e4747e45195bc4c98bea4628476204",
  7690. "reference": "2fc3b4bd67e4747e45195bc4c98bea4628476204",
  7691. "shasum": ""
  7692. },
  7693. "require": {
  7694. "php": ">=8.2",
  7695. "symfony/polyfill-intl-idn": "^1.10",
  7696. "symfony/polyfill-mbstring": "^1.0"
  7697. },
  7698. "conflict": {
  7699. "egulias/email-validator": "~3.0.0",
  7700. "phpdocumentor/reflection-docblock": "<3.2.2",
  7701. "phpdocumentor/type-resolver": "<1.4.0",
  7702. "symfony/mailer": "<6.4",
  7703. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7704. },
  7705. "require-dev": {
  7706. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7707. "league/html-to-markdown": "^5.0",
  7708. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7709. "symfony/dependency-injection": "^6.4|^7.0",
  7710. "symfony/process": "^6.4|^7.0",
  7711. "symfony/property-access": "^6.4|^7.0",
  7712. "symfony/property-info": "^6.4|^7.0",
  7713. "symfony/serializer": "^6.4.3|^7.0.3"
  7714. },
  7715. "type": "library",
  7716. "autoload": {
  7717. "psr-4": {
  7718. "Symfony\\Component\\Mime\\": ""
  7719. },
  7720. "exclude-from-classmap": [
  7721. "/Tests/"
  7722. ]
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Fabien Potencier",
  7731. "email": "fabien@symfony.com"
  7732. },
  7733. {
  7734. "name": "Symfony Community",
  7735. "homepage": "https://symfony.com/contributors"
  7736. }
  7737. ],
  7738. "description": "Allows manipulating MIME messages",
  7739. "homepage": "https://symfony.com",
  7740. "keywords": [
  7741. "mime",
  7742. "mime-type"
  7743. ],
  7744. "support": {
  7745. "source": "https://github.com/symfony/mime/tree/v7.2.3"
  7746. },
  7747. "funding": [
  7748. {
  7749. "url": "https://symfony.com/sponsor",
  7750. "type": "custom"
  7751. },
  7752. {
  7753. "url": "https://github.com/fabpot",
  7754. "type": "github"
  7755. },
  7756. {
  7757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7758. "type": "tidelift"
  7759. }
  7760. ],
  7761. "time": "2025-01-27T11:08:17+00:00"
  7762. },
  7763. {
  7764. "name": "symfony/polyfill-ctype",
  7765. "version": "v1.31.0",
  7766. "source": {
  7767. "type": "git",
  7768. "url": "https://github.com/symfony/polyfill-ctype.git",
  7769. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7770. },
  7771. "dist": {
  7772. "type": "zip",
  7773. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7774. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7775. "shasum": ""
  7776. },
  7777. "require": {
  7778. "php": ">=7.2"
  7779. },
  7780. "provide": {
  7781. "ext-ctype": "*"
  7782. },
  7783. "suggest": {
  7784. "ext-ctype": "For best performance"
  7785. },
  7786. "type": "library",
  7787. "extra": {
  7788. "thanks": {
  7789. "url": "https://github.com/symfony/polyfill",
  7790. "name": "symfony/polyfill"
  7791. }
  7792. },
  7793. "autoload": {
  7794. "files": [
  7795. "bootstrap.php"
  7796. ],
  7797. "psr-4": {
  7798. "Symfony\\Polyfill\\Ctype\\": ""
  7799. }
  7800. },
  7801. "notification-url": "https://packagist.org/downloads/",
  7802. "license": [
  7803. "MIT"
  7804. ],
  7805. "authors": [
  7806. {
  7807. "name": "Gert de Pagter",
  7808. "email": "BackEndTea@gmail.com"
  7809. },
  7810. {
  7811. "name": "Symfony Community",
  7812. "homepage": "https://symfony.com/contributors"
  7813. }
  7814. ],
  7815. "description": "Symfony polyfill for ctype functions",
  7816. "homepage": "https://symfony.com",
  7817. "keywords": [
  7818. "compatibility",
  7819. "ctype",
  7820. "polyfill",
  7821. "portable"
  7822. ],
  7823. "support": {
  7824. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7825. },
  7826. "funding": [
  7827. {
  7828. "url": "https://symfony.com/sponsor",
  7829. "type": "custom"
  7830. },
  7831. {
  7832. "url": "https://github.com/fabpot",
  7833. "type": "github"
  7834. },
  7835. {
  7836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7837. "type": "tidelift"
  7838. }
  7839. ],
  7840. "time": "2024-09-09T11:45:10+00:00"
  7841. },
  7842. {
  7843. "name": "symfony/polyfill-intl-grapheme",
  7844. "version": "v1.31.0",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7848. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7853. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7854. "shasum": ""
  7855. },
  7856. "require": {
  7857. "php": ">=7.2"
  7858. },
  7859. "suggest": {
  7860. "ext-intl": "For best performance"
  7861. },
  7862. "type": "library",
  7863. "extra": {
  7864. "thanks": {
  7865. "url": "https://github.com/symfony/polyfill",
  7866. "name": "symfony/polyfill"
  7867. }
  7868. },
  7869. "autoload": {
  7870. "files": [
  7871. "bootstrap.php"
  7872. ],
  7873. "psr-4": {
  7874. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7875. }
  7876. },
  7877. "notification-url": "https://packagist.org/downloads/",
  7878. "license": [
  7879. "MIT"
  7880. ],
  7881. "authors": [
  7882. {
  7883. "name": "Nicolas Grekas",
  7884. "email": "p@tchwork.com"
  7885. },
  7886. {
  7887. "name": "Symfony Community",
  7888. "homepage": "https://symfony.com/contributors"
  7889. }
  7890. ],
  7891. "description": "Symfony polyfill for intl's grapheme_* functions",
  7892. "homepage": "https://symfony.com",
  7893. "keywords": [
  7894. "compatibility",
  7895. "grapheme",
  7896. "intl",
  7897. "polyfill",
  7898. "portable",
  7899. "shim"
  7900. ],
  7901. "support": {
  7902. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7903. },
  7904. "funding": [
  7905. {
  7906. "url": "https://symfony.com/sponsor",
  7907. "type": "custom"
  7908. },
  7909. {
  7910. "url": "https://github.com/fabpot",
  7911. "type": "github"
  7912. },
  7913. {
  7914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7915. "type": "tidelift"
  7916. }
  7917. ],
  7918. "time": "2024-09-09T11:45:10+00:00"
  7919. },
  7920. {
  7921. "name": "symfony/polyfill-intl-idn",
  7922. "version": "v1.31.0",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7926. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7931. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7932. "shasum": ""
  7933. },
  7934. "require": {
  7935. "php": ">=7.2",
  7936. "symfony/polyfill-intl-normalizer": "^1.10"
  7937. },
  7938. "suggest": {
  7939. "ext-intl": "For best performance"
  7940. },
  7941. "type": "library",
  7942. "extra": {
  7943. "thanks": {
  7944. "url": "https://github.com/symfony/polyfill",
  7945. "name": "symfony/polyfill"
  7946. }
  7947. },
  7948. "autoload": {
  7949. "files": [
  7950. "bootstrap.php"
  7951. ],
  7952. "psr-4": {
  7953. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7954. }
  7955. },
  7956. "notification-url": "https://packagist.org/downloads/",
  7957. "license": [
  7958. "MIT"
  7959. ],
  7960. "authors": [
  7961. {
  7962. "name": "Laurent Bassin",
  7963. "email": "laurent@bassin.info"
  7964. },
  7965. {
  7966. "name": "Trevor Rowbotham",
  7967. "email": "trevor.rowbotham@pm.me"
  7968. },
  7969. {
  7970. "name": "Symfony Community",
  7971. "homepage": "https://symfony.com/contributors"
  7972. }
  7973. ],
  7974. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7975. "homepage": "https://symfony.com",
  7976. "keywords": [
  7977. "compatibility",
  7978. "idn",
  7979. "intl",
  7980. "polyfill",
  7981. "portable",
  7982. "shim"
  7983. ],
  7984. "support": {
  7985. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7986. },
  7987. "funding": [
  7988. {
  7989. "url": "https://symfony.com/sponsor",
  7990. "type": "custom"
  7991. },
  7992. {
  7993. "url": "https://github.com/fabpot",
  7994. "type": "github"
  7995. },
  7996. {
  7997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7998. "type": "tidelift"
  7999. }
  8000. ],
  8001. "time": "2024-09-09T11:45:10+00:00"
  8002. },
  8003. {
  8004. "name": "symfony/polyfill-intl-normalizer",
  8005. "version": "v1.31.0",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8009. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8014. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "php": ">=7.2"
  8019. },
  8020. "suggest": {
  8021. "ext-intl": "For best performance"
  8022. },
  8023. "type": "library",
  8024. "extra": {
  8025. "thanks": {
  8026. "url": "https://github.com/symfony/polyfill",
  8027. "name": "symfony/polyfill"
  8028. }
  8029. },
  8030. "autoload": {
  8031. "files": [
  8032. "bootstrap.php"
  8033. ],
  8034. "psr-4": {
  8035. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8036. },
  8037. "classmap": [
  8038. "Resources/stubs"
  8039. ]
  8040. },
  8041. "notification-url": "https://packagist.org/downloads/",
  8042. "license": [
  8043. "MIT"
  8044. ],
  8045. "authors": [
  8046. {
  8047. "name": "Nicolas Grekas",
  8048. "email": "p@tchwork.com"
  8049. },
  8050. {
  8051. "name": "Symfony Community",
  8052. "homepage": "https://symfony.com/contributors"
  8053. }
  8054. ],
  8055. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8056. "homepage": "https://symfony.com",
  8057. "keywords": [
  8058. "compatibility",
  8059. "intl",
  8060. "normalizer",
  8061. "polyfill",
  8062. "portable",
  8063. "shim"
  8064. ],
  8065. "support": {
  8066. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  8067. },
  8068. "funding": [
  8069. {
  8070. "url": "https://symfony.com/sponsor",
  8071. "type": "custom"
  8072. },
  8073. {
  8074. "url": "https://github.com/fabpot",
  8075. "type": "github"
  8076. },
  8077. {
  8078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8079. "type": "tidelift"
  8080. }
  8081. ],
  8082. "time": "2024-09-09T11:45:10+00:00"
  8083. },
  8084. {
  8085. "name": "symfony/polyfill-mbstring",
  8086. "version": "v1.31.0",
  8087. "source": {
  8088. "type": "git",
  8089. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8090. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8091. },
  8092. "dist": {
  8093. "type": "zip",
  8094. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8095. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8096. "shasum": ""
  8097. },
  8098. "require": {
  8099. "php": ">=7.2"
  8100. },
  8101. "provide": {
  8102. "ext-mbstring": "*"
  8103. },
  8104. "suggest": {
  8105. "ext-mbstring": "For best performance"
  8106. },
  8107. "type": "library",
  8108. "extra": {
  8109. "thanks": {
  8110. "url": "https://github.com/symfony/polyfill",
  8111. "name": "symfony/polyfill"
  8112. }
  8113. },
  8114. "autoload": {
  8115. "files": [
  8116. "bootstrap.php"
  8117. ],
  8118. "psr-4": {
  8119. "Symfony\\Polyfill\\Mbstring\\": ""
  8120. }
  8121. },
  8122. "notification-url": "https://packagist.org/downloads/",
  8123. "license": [
  8124. "MIT"
  8125. ],
  8126. "authors": [
  8127. {
  8128. "name": "Nicolas Grekas",
  8129. "email": "p@tchwork.com"
  8130. },
  8131. {
  8132. "name": "Symfony Community",
  8133. "homepage": "https://symfony.com/contributors"
  8134. }
  8135. ],
  8136. "description": "Symfony polyfill for the Mbstring extension",
  8137. "homepage": "https://symfony.com",
  8138. "keywords": [
  8139. "compatibility",
  8140. "mbstring",
  8141. "polyfill",
  8142. "portable",
  8143. "shim"
  8144. ],
  8145. "support": {
  8146. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8147. },
  8148. "funding": [
  8149. {
  8150. "url": "https://symfony.com/sponsor",
  8151. "type": "custom"
  8152. },
  8153. {
  8154. "url": "https://github.com/fabpot",
  8155. "type": "github"
  8156. },
  8157. {
  8158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8159. "type": "tidelift"
  8160. }
  8161. ],
  8162. "time": "2024-09-09T11:45:10+00:00"
  8163. },
  8164. {
  8165. "name": "symfony/polyfill-php80",
  8166. "version": "v1.31.0",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/symfony/polyfill-php80.git",
  8170. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8175. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "php": ">=7.2"
  8180. },
  8181. "type": "library",
  8182. "extra": {
  8183. "thanks": {
  8184. "url": "https://github.com/symfony/polyfill",
  8185. "name": "symfony/polyfill"
  8186. }
  8187. },
  8188. "autoload": {
  8189. "files": [
  8190. "bootstrap.php"
  8191. ],
  8192. "psr-4": {
  8193. "Symfony\\Polyfill\\Php80\\": ""
  8194. },
  8195. "classmap": [
  8196. "Resources/stubs"
  8197. ]
  8198. },
  8199. "notification-url": "https://packagist.org/downloads/",
  8200. "license": [
  8201. "MIT"
  8202. ],
  8203. "authors": [
  8204. {
  8205. "name": "Ion Bazan",
  8206. "email": "ion.bazan@gmail.com"
  8207. },
  8208. {
  8209. "name": "Nicolas Grekas",
  8210. "email": "p@tchwork.com"
  8211. },
  8212. {
  8213. "name": "Symfony Community",
  8214. "homepage": "https://symfony.com/contributors"
  8215. }
  8216. ],
  8217. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8218. "homepage": "https://symfony.com",
  8219. "keywords": [
  8220. "compatibility",
  8221. "polyfill",
  8222. "portable",
  8223. "shim"
  8224. ],
  8225. "support": {
  8226. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8227. },
  8228. "funding": [
  8229. {
  8230. "url": "https://symfony.com/sponsor",
  8231. "type": "custom"
  8232. },
  8233. {
  8234. "url": "https://github.com/fabpot",
  8235. "type": "github"
  8236. },
  8237. {
  8238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8239. "type": "tidelift"
  8240. }
  8241. ],
  8242. "time": "2024-09-09T11:45:10+00:00"
  8243. },
  8244. {
  8245. "name": "symfony/polyfill-php83",
  8246. "version": "v1.31.0",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://github.com/symfony/polyfill-php83.git",
  8250. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8255. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8256. "shasum": ""
  8257. },
  8258. "require": {
  8259. "php": ">=7.2"
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "thanks": {
  8264. "url": "https://github.com/symfony/polyfill",
  8265. "name": "symfony/polyfill"
  8266. }
  8267. },
  8268. "autoload": {
  8269. "files": [
  8270. "bootstrap.php"
  8271. ],
  8272. "psr-4": {
  8273. "Symfony\\Polyfill\\Php83\\": ""
  8274. },
  8275. "classmap": [
  8276. "Resources/stubs"
  8277. ]
  8278. },
  8279. "notification-url": "https://packagist.org/downloads/",
  8280. "license": [
  8281. "MIT"
  8282. ],
  8283. "authors": [
  8284. {
  8285. "name": "Nicolas Grekas",
  8286. "email": "p@tchwork.com"
  8287. },
  8288. {
  8289. "name": "Symfony Community",
  8290. "homepage": "https://symfony.com/contributors"
  8291. }
  8292. ],
  8293. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8294. "homepage": "https://symfony.com",
  8295. "keywords": [
  8296. "compatibility",
  8297. "polyfill",
  8298. "portable",
  8299. "shim"
  8300. ],
  8301. "support": {
  8302. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  8303. },
  8304. "funding": [
  8305. {
  8306. "url": "https://symfony.com/sponsor",
  8307. "type": "custom"
  8308. },
  8309. {
  8310. "url": "https://github.com/fabpot",
  8311. "type": "github"
  8312. },
  8313. {
  8314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8315. "type": "tidelift"
  8316. }
  8317. ],
  8318. "time": "2024-09-09T11:45:10+00:00"
  8319. },
  8320. {
  8321. "name": "symfony/polyfill-uuid",
  8322. "version": "v1.31.0",
  8323. "source": {
  8324. "type": "git",
  8325. "url": "https://github.com/symfony/polyfill-uuid.git",
  8326. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8327. },
  8328. "dist": {
  8329. "type": "zip",
  8330. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8331. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8332. "shasum": ""
  8333. },
  8334. "require": {
  8335. "php": ">=7.2"
  8336. },
  8337. "provide": {
  8338. "ext-uuid": "*"
  8339. },
  8340. "suggest": {
  8341. "ext-uuid": "For best performance"
  8342. },
  8343. "type": "library",
  8344. "extra": {
  8345. "thanks": {
  8346. "url": "https://github.com/symfony/polyfill",
  8347. "name": "symfony/polyfill"
  8348. }
  8349. },
  8350. "autoload": {
  8351. "files": [
  8352. "bootstrap.php"
  8353. ],
  8354. "psr-4": {
  8355. "Symfony\\Polyfill\\Uuid\\": ""
  8356. }
  8357. },
  8358. "notification-url": "https://packagist.org/downloads/",
  8359. "license": [
  8360. "MIT"
  8361. ],
  8362. "authors": [
  8363. {
  8364. "name": "Grégoire Pineau",
  8365. "email": "lyrixx@lyrixx.info"
  8366. },
  8367. {
  8368. "name": "Symfony Community",
  8369. "homepage": "https://symfony.com/contributors"
  8370. }
  8371. ],
  8372. "description": "Symfony polyfill for uuid functions",
  8373. "homepage": "https://symfony.com",
  8374. "keywords": [
  8375. "compatibility",
  8376. "polyfill",
  8377. "portable",
  8378. "uuid"
  8379. ],
  8380. "support": {
  8381. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  8382. },
  8383. "funding": [
  8384. {
  8385. "url": "https://symfony.com/sponsor",
  8386. "type": "custom"
  8387. },
  8388. {
  8389. "url": "https://github.com/fabpot",
  8390. "type": "github"
  8391. },
  8392. {
  8393. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8394. "type": "tidelift"
  8395. }
  8396. ],
  8397. "time": "2024-09-09T11:45:10+00:00"
  8398. },
  8399. {
  8400. "name": "symfony/process",
  8401. "version": "v7.2.0",
  8402. "source": {
  8403. "type": "git",
  8404. "url": "https://github.com/symfony/process.git",
  8405. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e"
  8406. },
  8407. "dist": {
  8408. "type": "zip",
  8409. "url": "https://api.github.com/repos/symfony/process/zipball/d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8410. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8411. "shasum": ""
  8412. },
  8413. "require": {
  8414. "php": ">=8.2"
  8415. },
  8416. "type": "library",
  8417. "autoload": {
  8418. "psr-4": {
  8419. "Symfony\\Component\\Process\\": ""
  8420. },
  8421. "exclude-from-classmap": [
  8422. "/Tests/"
  8423. ]
  8424. },
  8425. "notification-url": "https://packagist.org/downloads/",
  8426. "license": [
  8427. "MIT"
  8428. ],
  8429. "authors": [
  8430. {
  8431. "name": "Fabien Potencier",
  8432. "email": "fabien@symfony.com"
  8433. },
  8434. {
  8435. "name": "Symfony Community",
  8436. "homepage": "https://symfony.com/contributors"
  8437. }
  8438. ],
  8439. "description": "Executes commands in sub-processes",
  8440. "homepage": "https://symfony.com",
  8441. "support": {
  8442. "source": "https://github.com/symfony/process/tree/v7.2.0"
  8443. },
  8444. "funding": [
  8445. {
  8446. "url": "https://symfony.com/sponsor",
  8447. "type": "custom"
  8448. },
  8449. {
  8450. "url": "https://github.com/fabpot",
  8451. "type": "github"
  8452. },
  8453. {
  8454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8455. "type": "tidelift"
  8456. }
  8457. ],
  8458. "time": "2024-11-06T14:24:19+00:00"
  8459. },
  8460. {
  8461. "name": "symfony/routing",
  8462. "version": "v7.2.3",
  8463. "source": {
  8464. "type": "git",
  8465. "url": "https://github.com/symfony/routing.git",
  8466. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  8467. },
  8468. "dist": {
  8469. "type": "zip",
  8470. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  8471. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  8472. "shasum": ""
  8473. },
  8474. "require": {
  8475. "php": ">=8.2",
  8476. "symfony/deprecation-contracts": "^2.5|^3"
  8477. },
  8478. "conflict": {
  8479. "symfony/config": "<6.4",
  8480. "symfony/dependency-injection": "<6.4",
  8481. "symfony/yaml": "<6.4"
  8482. },
  8483. "require-dev": {
  8484. "psr/log": "^1|^2|^3",
  8485. "symfony/config": "^6.4|^7.0",
  8486. "symfony/dependency-injection": "^6.4|^7.0",
  8487. "symfony/expression-language": "^6.4|^7.0",
  8488. "symfony/http-foundation": "^6.4|^7.0",
  8489. "symfony/yaml": "^6.4|^7.0"
  8490. },
  8491. "type": "library",
  8492. "autoload": {
  8493. "psr-4": {
  8494. "Symfony\\Component\\Routing\\": ""
  8495. },
  8496. "exclude-from-classmap": [
  8497. "/Tests/"
  8498. ]
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "MIT"
  8503. ],
  8504. "authors": [
  8505. {
  8506. "name": "Fabien Potencier",
  8507. "email": "fabien@symfony.com"
  8508. },
  8509. {
  8510. "name": "Symfony Community",
  8511. "homepage": "https://symfony.com/contributors"
  8512. }
  8513. ],
  8514. "description": "Maps an HTTP request to a set of configuration variables",
  8515. "homepage": "https://symfony.com",
  8516. "keywords": [
  8517. "router",
  8518. "routing",
  8519. "uri",
  8520. "url"
  8521. ],
  8522. "support": {
  8523. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  8524. },
  8525. "funding": [
  8526. {
  8527. "url": "https://symfony.com/sponsor",
  8528. "type": "custom"
  8529. },
  8530. {
  8531. "url": "https://github.com/fabpot",
  8532. "type": "github"
  8533. },
  8534. {
  8535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8536. "type": "tidelift"
  8537. }
  8538. ],
  8539. "time": "2025-01-17T10:56:55+00:00"
  8540. },
  8541. {
  8542. "name": "symfony/service-contracts",
  8543. "version": "v3.5.1",
  8544. "source": {
  8545. "type": "git",
  8546. "url": "https://github.com/symfony/service-contracts.git",
  8547. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8548. },
  8549. "dist": {
  8550. "type": "zip",
  8551. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8552. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8553. "shasum": ""
  8554. },
  8555. "require": {
  8556. "php": ">=8.1",
  8557. "psr/container": "^1.1|^2.0",
  8558. "symfony/deprecation-contracts": "^2.5|^3"
  8559. },
  8560. "conflict": {
  8561. "ext-psr": "<1.1|>=2"
  8562. },
  8563. "type": "library",
  8564. "extra": {
  8565. "thanks": {
  8566. "url": "https://github.com/symfony/contracts",
  8567. "name": "symfony/contracts"
  8568. },
  8569. "branch-alias": {
  8570. "dev-main": "3.5-dev"
  8571. }
  8572. },
  8573. "autoload": {
  8574. "psr-4": {
  8575. "Symfony\\Contracts\\Service\\": ""
  8576. },
  8577. "exclude-from-classmap": [
  8578. "/Test/"
  8579. ]
  8580. },
  8581. "notification-url": "https://packagist.org/downloads/",
  8582. "license": [
  8583. "MIT"
  8584. ],
  8585. "authors": [
  8586. {
  8587. "name": "Nicolas Grekas",
  8588. "email": "p@tchwork.com"
  8589. },
  8590. {
  8591. "name": "Symfony Community",
  8592. "homepage": "https://symfony.com/contributors"
  8593. }
  8594. ],
  8595. "description": "Generic abstractions related to writing services",
  8596. "homepage": "https://symfony.com",
  8597. "keywords": [
  8598. "abstractions",
  8599. "contracts",
  8600. "decoupling",
  8601. "interfaces",
  8602. "interoperability",
  8603. "standards"
  8604. ],
  8605. "support": {
  8606. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8607. },
  8608. "funding": [
  8609. {
  8610. "url": "https://symfony.com/sponsor",
  8611. "type": "custom"
  8612. },
  8613. {
  8614. "url": "https://github.com/fabpot",
  8615. "type": "github"
  8616. },
  8617. {
  8618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8619. "type": "tidelift"
  8620. }
  8621. ],
  8622. "time": "2024-09-25T14:20:29+00:00"
  8623. },
  8624. {
  8625. "name": "symfony/string",
  8626. "version": "v7.2.0",
  8627. "source": {
  8628. "type": "git",
  8629. "url": "https://github.com/symfony/string.git",
  8630. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  8631. },
  8632. "dist": {
  8633. "type": "zip",
  8634. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  8635. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  8636. "shasum": ""
  8637. },
  8638. "require": {
  8639. "php": ">=8.2",
  8640. "symfony/polyfill-ctype": "~1.8",
  8641. "symfony/polyfill-intl-grapheme": "~1.0",
  8642. "symfony/polyfill-intl-normalizer": "~1.0",
  8643. "symfony/polyfill-mbstring": "~1.0"
  8644. },
  8645. "conflict": {
  8646. "symfony/translation-contracts": "<2.5"
  8647. },
  8648. "require-dev": {
  8649. "symfony/emoji": "^7.1",
  8650. "symfony/error-handler": "^6.4|^7.0",
  8651. "symfony/http-client": "^6.4|^7.0",
  8652. "symfony/intl": "^6.4|^7.0",
  8653. "symfony/translation-contracts": "^2.5|^3.0",
  8654. "symfony/var-exporter": "^6.4|^7.0"
  8655. },
  8656. "type": "library",
  8657. "autoload": {
  8658. "files": [
  8659. "Resources/functions.php"
  8660. ],
  8661. "psr-4": {
  8662. "Symfony\\Component\\String\\": ""
  8663. },
  8664. "exclude-from-classmap": [
  8665. "/Tests/"
  8666. ]
  8667. },
  8668. "notification-url": "https://packagist.org/downloads/",
  8669. "license": [
  8670. "MIT"
  8671. ],
  8672. "authors": [
  8673. {
  8674. "name": "Nicolas Grekas",
  8675. "email": "p@tchwork.com"
  8676. },
  8677. {
  8678. "name": "Symfony Community",
  8679. "homepage": "https://symfony.com/contributors"
  8680. }
  8681. ],
  8682. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8683. "homepage": "https://symfony.com",
  8684. "keywords": [
  8685. "grapheme",
  8686. "i18n",
  8687. "string",
  8688. "unicode",
  8689. "utf-8",
  8690. "utf8"
  8691. ],
  8692. "support": {
  8693. "source": "https://github.com/symfony/string/tree/v7.2.0"
  8694. },
  8695. "funding": [
  8696. {
  8697. "url": "https://symfony.com/sponsor",
  8698. "type": "custom"
  8699. },
  8700. {
  8701. "url": "https://github.com/fabpot",
  8702. "type": "github"
  8703. },
  8704. {
  8705. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8706. "type": "tidelift"
  8707. }
  8708. ],
  8709. "time": "2024-11-13T13:31:26+00:00"
  8710. },
  8711. {
  8712. "name": "symfony/translation",
  8713. "version": "v7.2.2",
  8714. "source": {
  8715. "type": "git",
  8716. "url": "https://github.com/symfony/translation.git",
  8717. "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923"
  8718. },
  8719. "dist": {
  8720. "type": "zip",
  8721. "url": "https://api.github.com/repos/symfony/translation/zipball/e2674a30132b7cc4d74540d6c2573aa363f05923",
  8722. "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923",
  8723. "shasum": ""
  8724. },
  8725. "require": {
  8726. "php": ">=8.2",
  8727. "symfony/deprecation-contracts": "^2.5|^3",
  8728. "symfony/polyfill-mbstring": "~1.0",
  8729. "symfony/translation-contracts": "^2.5|^3.0"
  8730. },
  8731. "conflict": {
  8732. "symfony/config": "<6.4",
  8733. "symfony/console": "<6.4",
  8734. "symfony/dependency-injection": "<6.4",
  8735. "symfony/http-client-contracts": "<2.5",
  8736. "symfony/http-kernel": "<6.4",
  8737. "symfony/service-contracts": "<2.5",
  8738. "symfony/twig-bundle": "<6.4",
  8739. "symfony/yaml": "<6.4"
  8740. },
  8741. "provide": {
  8742. "symfony/translation-implementation": "2.3|3.0"
  8743. },
  8744. "require-dev": {
  8745. "nikic/php-parser": "^4.18|^5.0",
  8746. "psr/log": "^1|^2|^3",
  8747. "symfony/config": "^6.4|^7.0",
  8748. "symfony/console": "^6.4|^7.0",
  8749. "symfony/dependency-injection": "^6.4|^7.0",
  8750. "symfony/finder": "^6.4|^7.0",
  8751. "symfony/http-client-contracts": "^2.5|^3.0",
  8752. "symfony/http-kernel": "^6.4|^7.0",
  8753. "symfony/intl": "^6.4|^7.0",
  8754. "symfony/polyfill-intl-icu": "^1.21",
  8755. "symfony/routing": "^6.4|^7.0",
  8756. "symfony/service-contracts": "^2.5|^3",
  8757. "symfony/yaml": "^6.4|^7.0"
  8758. },
  8759. "type": "library",
  8760. "autoload": {
  8761. "files": [
  8762. "Resources/functions.php"
  8763. ],
  8764. "psr-4": {
  8765. "Symfony\\Component\\Translation\\": ""
  8766. },
  8767. "exclude-from-classmap": [
  8768. "/Tests/"
  8769. ]
  8770. },
  8771. "notification-url": "https://packagist.org/downloads/",
  8772. "license": [
  8773. "MIT"
  8774. ],
  8775. "authors": [
  8776. {
  8777. "name": "Fabien Potencier",
  8778. "email": "fabien@symfony.com"
  8779. },
  8780. {
  8781. "name": "Symfony Community",
  8782. "homepage": "https://symfony.com/contributors"
  8783. }
  8784. ],
  8785. "description": "Provides tools to internationalize your application",
  8786. "homepage": "https://symfony.com",
  8787. "support": {
  8788. "source": "https://github.com/symfony/translation/tree/v7.2.2"
  8789. },
  8790. "funding": [
  8791. {
  8792. "url": "https://symfony.com/sponsor",
  8793. "type": "custom"
  8794. },
  8795. {
  8796. "url": "https://github.com/fabpot",
  8797. "type": "github"
  8798. },
  8799. {
  8800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8801. "type": "tidelift"
  8802. }
  8803. ],
  8804. "time": "2024-12-07T08:18:10+00:00"
  8805. },
  8806. {
  8807. "name": "symfony/translation-contracts",
  8808. "version": "v3.5.1",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/symfony/translation-contracts.git",
  8812. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8817. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "php": ">=8.1"
  8822. },
  8823. "type": "library",
  8824. "extra": {
  8825. "thanks": {
  8826. "url": "https://github.com/symfony/contracts",
  8827. "name": "symfony/contracts"
  8828. },
  8829. "branch-alias": {
  8830. "dev-main": "3.5-dev"
  8831. }
  8832. },
  8833. "autoload": {
  8834. "psr-4": {
  8835. "Symfony\\Contracts\\Translation\\": ""
  8836. },
  8837. "exclude-from-classmap": [
  8838. "/Test/"
  8839. ]
  8840. },
  8841. "notification-url": "https://packagist.org/downloads/",
  8842. "license": [
  8843. "MIT"
  8844. ],
  8845. "authors": [
  8846. {
  8847. "name": "Nicolas Grekas",
  8848. "email": "p@tchwork.com"
  8849. },
  8850. {
  8851. "name": "Symfony Community",
  8852. "homepage": "https://symfony.com/contributors"
  8853. }
  8854. ],
  8855. "description": "Generic abstractions related to translation",
  8856. "homepage": "https://symfony.com",
  8857. "keywords": [
  8858. "abstractions",
  8859. "contracts",
  8860. "decoupling",
  8861. "interfaces",
  8862. "interoperability",
  8863. "standards"
  8864. ],
  8865. "support": {
  8866. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8867. },
  8868. "funding": [
  8869. {
  8870. "url": "https://symfony.com/sponsor",
  8871. "type": "custom"
  8872. },
  8873. {
  8874. "url": "https://github.com/fabpot",
  8875. "type": "github"
  8876. },
  8877. {
  8878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8879. "type": "tidelift"
  8880. }
  8881. ],
  8882. "time": "2024-09-25T14:20:29+00:00"
  8883. },
  8884. {
  8885. "name": "symfony/uid",
  8886. "version": "v7.2.0",
  8887. "source": {
  8888. "type": "git",
  8889. "url": "https://github.com/symfony/uid.git",
  8890. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  8891. },
  8892. "dist": {
  8893. "type": "zip",
  8894. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  8895. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  8896. "shasum": ""
  8897. },
  8898. "require": {
  8899. "php": ">=8.2",
  8900. "symfony/polyfill-uuid": "^1.15"
  8901. },
  8902. "require-dev": {
  8903. "symfony/console": "^6.4|^7.0"
  8904. },
  8905. "type": "library",
  8906. "autoload": {
  8907. "psr-4": {
  8908. "Symfony\\Component\\Uid\\": ""
  8909. },
  8910. "exclude-from-classmap": [
  8911. "/Tests/"
  8912. ]
  8913. },
  8914. "notification-url": "https://packagist.org/downloads/",
  8915. "license": [
  8916. "MIT"
  8917. ],
  8918. "authors": [
  8919. {
  8920. "name": "Grégoire Pineau",
  8921. "email": "lyrixx@lyrixx.info"
  8922. },
  8923. {
  8924. "name": "Nicolas Grekas",
  8925. "email": "p@tchwork.com"
  8926. },
  8927. {
  8928. "name": "Symfony Community",
  8929. "homepage": "https://symfony.com/contributors"
  8930. }
  8931. ],
  8932. "description": "Provides an object-oriented API to generate and represent UIDs",
  8933. "homepage": "https://symfony.com",
  8934. "keywords": [
  8935. "UID",
  8936. "ulid",
  8937. "uuid"
  8938. ],
  8939. "support": {
  8940. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  8941. },
  8942. "funding": [
  8943. {
  8944. "url": "https://symfony.com/sponsor",
  8945. "type": "custom"
  8946. },
  8947. {
  8948. "url": "https://github.com/fabpot",
  8949. "type": "github"
  8950. },
  8951. {
  8952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8953. "type": "tidelift"
  8954. }
  8955. ],
  8956. "time": "2024-09-25T14:21:43+00:00"
  8957. },
  8958. {
  8959. "name": "symfony/var-dumper",
  8960. "version": "v7.2.3",
  8961. "source": {
  8962. "type": "git",
  8963. "url": "https://github.com/symfony/var-dumper.git",
  8964. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  8965. },
  8966. "dist": {
  8967. "type": "zip",
  8968. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  8969. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  8970. "shasum": ""
  8971. },
  8972. "require": {
  8973. "php": ">=8.2",
  8974. "symfony/polyfill-mbstring": "~1.0"
  8975. },
  8976. "conflict": {
  8977. "symfony/console": "<6.4"
  8978. },
  8979. "require-dev": {
  8980. "ext-iconv": "*",
  8981. "symfony/console": "^6.4|^7.0",
  8982. "symfony/http-kernel": "^6.4|^7.0",
  8983. "symfony/process": "^6.4|^7.0",
  8984. "symfony/uid": "^6.4|^7.0",
  8985. "twig/twig": "^3.12"
  8986. },
  8987. "bin": [
  8988. "Resources/bin/var-dump-server"
  8989. ],
  8990. "type": "library",
  8991. "autoload": {
  8992. "files": [
  8993. "Resources/functions/dump.php"
  8994. ],
  8995. "psr-4": {
  8996. "Symfony\\Component\\VarDumper\\": ""
  8997. },
  8998. "exclude-from-classmap": [
  8999. "/Tests/"
  9000. ]
  9001. },
  9002. "notification-url": "https://packagist.org/downloads/",
  9003. "license": [
  9004. "MIT"
  9005. ],
  9006. "authors": [
  9007. {
  9008. "name": "Nicolas Grekas",
  9009. "email": "p@tchwork.com"
  9010. },
  9011. {
  9012. "name": "Symfony Community",
  9013. "homepage": "https://symfony.com/contributors"
  9014. }
  9015. ],
  9016. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9017. "homepage": "https://symfony.com",
  9018. "keywords": [
  9019. "debug",
  9020. "dump"
  9021. ],
  9022. "support": {
  9023. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  9024. },
  9025. "funding": [
  9026. {
  9027. "url": "https://symfony.com/sponsor",
  9028. "type": "custom"
  9029. },
  9030. {
  9031. "url": "https://github.com/fabpot",
  9032. "type": "github"
  9033. },
  9034. {
  9035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9036. "type": "tidelift"
  9037. }
  9038. ],
  9039. "time": "2025-01-17T11:39:41+00:00"
  9040. },
  9041. {
  9042. "name": "tijsverkoyen/css-to-inline-styles",
  9043. "version": "v2.3.0",
  9044. "source": {
  9045. "type": "git",
  9046. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9047. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9048. },
  9049. "dist": {
  9050. "type": "zip",
  9051. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9052. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9053. "shasum": ""
  9054. },
  9055. "require": {
  9056. "ext-dom": "*",
  9057. "ext-libxml": "*",
  9058. "php": "^7.4 || ^8.0",
  9059. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9060. },
  9061. "require-dev": {
  9062. "phpstan/phpstan": "^2.0",
  9063. "phpstan/phpstan-phpunit": "^2.0",
  9064. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9065. },
  9066. "type": "library",
  9067. "extra": {
  9068. "branch-alias": {
  9069. "dev-master": "2.x-dev"
  9070. }
  9071. },
  9072. "autoload": {
  9073. "psr-4": {
  9074. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9075. }
  9076. },
  9077. "notification-url": "https://packagist.org/downloads/",
  9078. "license": [
  9079. "BSD-3-Clause"
  9080. ],
  9081. "authors": [
  9082. {
  9083. "name": "Tijs Verkoyen",
  9084. "email": "css_to_inline_styles@verkoyen.eu",
  9085. "role": "Developer"
  9086. }
  9087. ],
  9088. "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.",
  9089. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9090. "support": {
  9091. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9092. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9093. },
  9094. "time": "2024-12-21T16:25:41+00:00"
  9095. },
  9096. {
  9097. "name": "vlucas/phpdotenv",
  9098. "version": "v5.6.1",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/vlucas/phpdotenv.git",
  9102. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9107. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9108. "shasum": ""
  9109. },
  9110. "require": {
  9111. "ext-pcre": "*",
  9112. "graham-campbell/result-type": "^1.1.3",
  9113. "php": "^7.2.5 || ^8.0",
  9114. "phpoption/phpoption": "^1.9.3",
  9115. "symfony/polyfill-ctype": "^1.24",
  9116. "symfony/polyfill-mbstring": "^1.24",
  9117. "symfony/polyfill-php80": "^1.24"
  9118. },
  9119. "require-dev": {
  9120. "bamarni/composer-bin-plugin": "^1.8.2",
  9121. "ext-filter": "*",
  9122. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9123. },
  9124. "suggest": {
  9125. "ext-filter": "Required to use the boolean validator."
  9126. },
  9127. "type": "library",
  9128. "extra": {
  9129. "bamarni-bin": {
  9130. "bin-links": true,
  9131. "forward-command": false
  9132. },
  9133. "branch-alias": {
  9134. "dev-master": "5.6-dev"
  9135. }
  9136. },
  9137. "autoload": {
  9138. "psr-4": {
  9139. "Dotenv\\": "src/"
  9140. }
  9141. },
  9142. "notification-url": "https://packagist.org/downloads/",
  9143. "license": [
  9144. "BSD-3-Clause"
  9145. ],
  9146. "authors": [
  9147. {
  9148. "name": "Graham Campbell",
  9149. "email": "hello@gjcampbell.co.uk",
  9150. "homepage": "https://github.com/GrahamCampbell"
  9151. },
  9152. {
  9153. "name": "Vance Lucas",
  9154. "email": "vance@vancelucas.com",
  9155. "homepage": "https://github.com/vlucas"
  9156. }
  9157. ],
  9158. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9159. "keywords": [
  9160. "dotenv",
  9161. "env",
  9162. "environment"
  9163. ],
  9164. "support": {
  9165. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9166. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9167. },
  9168. "funding": [
  9169. {
  9170. "url": "https://github.com/GrahamCampbell",
  9171. "type": "github"
  9172. },
  9173. {
  9174. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9175. "type": "tidelift"
  9176. }
  9177. ],
  9178. "time": "2024-07-20T21:52:34+00:00"
  9179. },
  9180. {
  9181. "name": "voku/portable-ascii",
  9182. "version": "2.0.3",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/voku/portable-ascii.git",
  9186. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9191. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9192. "shasum": ""
  9193. },
  9194. "require": {
  9195. "php": ">=7.0.0"
  9196. },
  9197. "require-dev": {
  9198. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9199. },
  9200. "suggest": {
  9201. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9202. },
  9203. "type": "library",
  9204. "autoload": {
  9205. "psr-4": {
  9206. "voku\\": "src/voku/"
  9207. }
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "MIT"
  9212. ],
  9213. "authors": [
  9214. {
  9215. "name": "Lars Moelleken",
  9216. "homepage": "https://www.moelleken.org/"
  9217. }
  9218. ],
  9219. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9220. "homepage": "https://github.com/voku/portable-ascii",
  9221. "keywords": [
  9222. "ascii",
  9223. "clean",
  9224. "php"
  9225. ],
  9226. "support": {
  9227. "issues": "https://github.com/voku/portable-ascii/issues",
  9228. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9229. },
  9230. "funding": [
  9231. {
  9232. "url": "https://www.paypal.me/moelleken",
  9233. "type": "custom"
  9234. },
  9235. {
  9236. "url": "https://github.com/voku",
  9237. "type": "github"
  9238. },
  9239. {
  9240. "url": "https://opencollective.com/portable-ascii",
  9241. "type": "open_collective"
  9242. },
  9243. {
  9244. "url": "https://www.patreon.com/voku",
  9245. "type": "patreon"
  9246. },
  9247. {
  9248. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9249. "type": "tidelift"
  9250. }
  9251. ],
  9252. "time": "2024-11-21T01:49:47+00:00"
  9253. },
  9254. {
  9255. "name": "webmozart/assert",
  9256. "version": "1.11.0",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://github.com/webmozarts/assert.git",
  9260. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9261. },
  9262. "dist": {
  9263. "type": "zip",
  9264. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9265. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9266. "shasum": ""
  9267. },
  9268. "require": {
  9269. "ext-ctype": "*",
  9270. "php": "^7.2 || ^8.0"
  9271. },
  9272. "conflict": {
  9273. "phpstan/phpstan": "<0.12.20",
  9274. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9275. },
  9276. "require-dev": {
  9277. "phpunit/phpunit": "^8.5.13"
  9278. },
  9279. "type": "library",
  9280. "extra": {
  9281. "branch-alias": {
  9282. "dev-master": "1.10-dev"
  9283. }
  9284. },
  9285. "autoload": {
  9286. "psr-4": {
  9287. "Webmozart\\Assert\\": "src/"
  9288. }
  9289. },
  9290. "notification-url": "https://packagist.org/downloads/",
  9291. "license": [
  9292. "MIT"
  9293. ],
  9294. "authors": [
  9295. {
  9296. "name": "Bernhard Schussek",
  9297. "email": "bschussek@gmail.com"
  9298. }
  9299. ],
  9300. "description": "Assertions to validate method input/output with nice error messages.",
  9301. "keywords": [
  9302. "assert",
  9303. "check",
  9304. "validate"
  9305. ],
  9306. "support": {
  9307. "issues": "https://github.com/webmozarts/assert/issues",
  9308. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9309. },
  9310. "time": "2022-06-03T18:03:27+00:00"
  9311. }
  9312. ],
  9313. "packages-dev": [
  9314. {
  9315. "name": "brianium/paratest",
  9316. "version": "v7.7.0",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/paratestphp/paratest.git",
  9320. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9325. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9326. "shasum": ""
  9327. },
  9328. "require": {
  9329. "ext-dom": "*",
  9330. "ext-pcre": "*",
  9331. "ext-reflection": "*",
  9332. "ext-simplexml": "*",
  9333. "fidry/cpu-core-counter": "^1.2.0",
  9334. "jean85/pretty-package-versions": "^2.1.0",
  9335. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9336. "phpunit/php-code-coverage": "^11.0.8",
  9337. "phpunit/php-file-iterator": "^5.1.0",
  9338. "phpunit/php-timer": "^7.0.1",
  9339. "phpunit/phpunit": "^11.5.1",
  9340. "sebastian/environment": "^7.2.0",
  9341. "symfony/console": "^6.4.14 || ^7.2.1",
  9342. "symfony/process": "^6.4.14 || ^7.2.0"
  9343. },
  9344. "require-dev": {
  9345. "doctrine/coding-standard": "^12.0.0",
  9346. "ext-pcov": "*",
  9347. "ext-posix": "*",
  9348. "phpstan/phpstan": "^2.0.3",
  9349. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9350. "phpstan/phpstan-phpunit": "^2.0.1",
  9351. "phpstan/phpstan-strict-rules": "^2",
  9352. "squizlabs/php_codesniffer": "^3.11.1",
  9353. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9354. },
  9355. "bin": [
  9356. "bin/paratest",
  9357. "bin/paratest_for_phpstorm"
  9358. ],
  9359. "type": "library",
  9360. "autoload": {
  9361. "psr-4": {
  9362. "ParaTest\\": [
  9363. "src/"
  9364. ]
  9365. }
  9366. },
  9367. "notification-url": "https://packagist.org/downloads/",
  9368. "license": [
  9369. "MIT"
  9370. ],
  9371. "authors": [
  9372. {
  9373. "name": "Brian Scaturro",
  9374. "email": "scaturrob@gmail.com",
  9375. "role": "Developer"
  9376. },
  9377. {
  9378. "name": "Filippo Tessarotto",
  9379. "email": "zoeslam@gmail.com",
  9380. "role": "Developer"
  9381. }
  9382. ],
  9383. "description": "Parallel testing for PHP",
  9384. "homepage": "https://github.com/paratestphp/paratest",
  9385. "keywords": [
  9386. "concurrent",
  9387. "parallel",
  9388. "phpunit",
  9389. "testing"
  9390. ],
  9391. "support": {
  9392. "issues": "https://github.com/paratestphp/paratest/issues",
  9393. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  9394. },
  9395. "funding": [
  9396. {
  9397. "url": "https://github.com/sponsors/Slamdunk",
  9398. "type": "github"
  9399. },
  9400. {
  9401. "url": "https://paypal.me/filippotessarotto",
  9402. "type": "paypal"
  9403. }
  9404. ],
  9405. "time": "2024-12-11T14:50:44+00:00"
  9406. },
  9407. {
  9408. "name": "fakerphp/faker",
  9409. "version": "v1.24.1",
  9410. "source": {
  9411. "type": "git",
  9412. "url": "https://github.com/FakerPHP/Faker.git",
  9413. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9414. },
  9415. "dist": {
  9416. "type": "zip",
  9417. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9418. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9419. "shasum": ""
  9420. },
  9421. "require": {
  9422. "php": "^7.4 || ^8.0",
  9423. "psr/container": "^1.0 || ^2.0",
  9424. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9425. },
  9426. "conflict": {
  9427. "fzaninotto/faker": "*"
  9428. },
  9429. "require-dev": {
  9430. "bamarni/composer-bin-plugin": "^1.4.1",
  9431. "doctrine/persistence": "^1.3 || ^2.0",
  9432. "ext-intl": "*",
  9433. "phpunit/phpunit": "^9.5.26",
  9434. "symfony/phpunit-bridge": "^5.4.16"
  9435. },
  9436. "suggest": {
  9437. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9438. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9439. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9440. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9441. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9442. },
  9443. "type": "library",
  9444. "autoload": {
  9445. "psr-4": {
  9446. "Faker\\": "src/Faker/"
  9447. }
  9448. },
  9449. "notification-url": "https://packagist.org/downloads/",
  9450. "license": [
  9451. "MIT"
  9452. ],
  9453. "authors": [
  9454. {
  9455. "name": "François Zaninotto"
  9456. }
  9457. ],
  9458. "description": "Faker is a PHP library that generates fake data for you.",
  9459. "keywords": [
  9460. "data",
  9461. "faker",
  9462. "fixtures"
  9463. ],
  9464. "support": {
  9465. "issues": "https://github.com/FakerPHP/Faker/issues",
  9466. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9467. },
  9468. "time": "2024-11-21T13:46:39+00:00"
  9469. },
  9470. {
  9471. "name": "fidry/cpu-core-counter",
  9472. "version": "1.2.0",
  9473. "source": {
  9474. "type": "git",
  9475. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9476. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9477. },
  9478. "dist": {
  9479. "type": "zip",
  9480. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9481. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9482. "shasum": ""
  9483. },
  9484. "require": {
  9485. "php": "^7.2 || ^8.0"
  9486. },
  9487. "require-dev": {
  9488. "fidry/makefile": "^0.2.0",
  9489. "fidry/php-cs-fixer-config": "^1.1.2",
  9490. "phpstan/extension-installer": "^1.2.0",
  9491. "phpstan/phpstan": "^1.9.2",
  9492. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9493. "phpstan/phpstan-phpunit": "^1.2.2",
  9494. "phpstan/phpstan-strict-rules": "^1.4.4",
  9495. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9496. "webmozarts/strict-phpunit": "^7.5"
  9497. },
  9498. "type": "library",
  9499. "autoload": {
  9500. "psr-4": {
  9501. "Fidry\\CpuCoreCounter\\": "src/"
  9502. }
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "MIT"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "Théo FIDRY",
  9511. "email": "theo.fidry@gmail.com"
  9512. }
  9513. ],
  9514. "description": "Tiny utility to get the number of CPU cores.",
  9515. "keywords": [
  9516. "CPU",
  9517. "core"
  9518. ],
  9519. "support": {
  9520. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9521. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9522. },
  9523. "funding": [
  9524. {
  9525. "url": "https://github.com/theofidry",
  9526. "type": "github"
  9527. }
  9528. ],
  9529. "time": "2024-08-06T10:04:20+00:00"
  9530. },
  9531. {
  9532. "name": "filp/whoops",
  9533. "version": "2.17.0",
  9534. "source": {
  9535. "type": "git",
  9536. "url": "https://github.com/filp/whoops.git",
  9537. "reference": "075bc0c26631110584175de6523ab3f1652eb28e"
  9538. },
  9539. "dist": {
  9540. "type": "zip",
  9541. "url": "https://api.github.com/repos/filp/whoops/zipball/075bc0c26631110584175de6523ab3f1652eb28e",
  9542. "reference": "075bc0c26631110584175de6523ab3f1652eb28e",
  9543. "shasum": ""
  9544. },
  9545. "require": {
  9546. "php": "^7.1 || ^8.0",
  9547. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9548. },
  9549. "require-dev": {
  9550. "mockery/mockery": "^1.0",
  9551. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9552. "symfony/var-dumper": "^4.0 || ^5.0"
  9553. },
  9554. "suggest": {
  9555. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9556. "whoops/soap": "Formats errors as SOAP responses"
  9557. },
  9558. "type": "library",
  9559. "extra": {
  9560. "branch-alias": {
  9561. "dev-master": "2.7-dev"
  9562. }
  9563. },
  9564. "autoload": {
  9565. "psr-4": {
  9566. "Whoops\\": "src/Whoops/"
  9567. }
  9568. },
  9569. "notification-url": "https://packagist.org/downloads/",
  9570. "license": [
  9571. "MIT"
  9572. ],
  9573. "authors": [
  9574. {
  9575. "name": "Filipe Dobreira",
  9576. "homepage": "https://github.com/filp",
  9577. "role": "Developer"
  9578. }
  9579. ],
  9580. "description": "php error handling for cool kids",
  9581. "homepage": "https://filp.github.io/whoops/",
  9582. "keywords": [
  9583. "error",
  9584. "exception",
  9585. "handling",
  9586. "library",
  9587. "throwable",
  9588. "whoops"
  9589. ],
  9590. "support": {
  9591. "issues": "https://github.com/filp/whoops/issues",
  9592. "source": "https://github.com/filp/whoops/tree/2.17.0"
  9593. },
  9594. "funding": [
  9595. {
  9596. "url": "https://github.com/denis-sokolov",
  9597. "type": "github"
  9598. }
  9599. ],
  9600. "time": "2025-01-25T12:00:00+00:00"
  9601. },
  9602. {
  9603. "name": "hamcrest/hamcrest-php",
  9604. "version": "v2.0.1",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9608. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9613. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9614. "shasum": ""
  9615. },
  9616. "require": {
  9617. "php": "^5.3|^7.0|^8.0"
  9618. },
  9619. "replace": {
  9620. "cordoval/hamcrest-php": "*",
  9621. "davedevelopment/hamcrest-php": "*",
  9622. "kodova/hamcrest-php": "*"
  9623. },
  9624. "require-dev": {
  9625. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9626. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9627. },
  9628. "type": "library",
  9629. "extra": {
  9630. "branch-alias": {
  9631. "dev-master": "2.1-dev"
  9632. }
  9633. },
  9634. "autoload": {
  9635. "classmap": [
  9636. "hamcrest"
  9637. ]
  9638. },
  9639. "notification-url": "https://packagist.org/downloads/",
  9640. "license": [
  9641. "BSD-3-Clause"
  9642. ],
  9643. "description": "This is the PHP port of Hamcrest Matchers",
  9644. "keywords": [
  9645. "test"
  9646. ],
  9647. "support": {
  9648. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9649. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9650. },
  9651. "time": "2020-07-09T08:09:16+00:00"
  9652. },
  9653. {
  9654. "name": "jean85/pretty-package-versions",
  9655. "version": "2.1.0",
  9656. "source": {
  9657. "type": "git",
  9658. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9659. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10"
  9660. },
  9661. "dist": {
  9662. "type": "zip",
  9663. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9664. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9665. "shasum": ""
  9666. },
  9667. "require": {
  9668. "composer-runtime-api": "^2.1.0",
  9669. "php": "^7.4|^8.0"
  9670. },
  9671. "require-dev": {
  9672. "friendsofphp/php-cs-fixer": "^3.2",
  9673. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9674. "phpstan/phpstan": "^1.4",
  9675. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9676. "vimeo/psalm": "^4.3 || ^5.0"
  9677. },
  9678. "type": "library",
  9679. "extra": {
  9680. "branch-alias": {
  9681. "dev-master": "1.x-dev"
  9682. }
  9683. },
  9684. "autoload": {
  9685. "psr-4": {
  9686. "Jean85\\": "src/"
  9687. }
  9688. },
  9689. "notification-url": "https://packagist.org/downloads/",
  9690. "license": [
  9691. "MIT"
  9692. ],
  9693. "authors": [
  9694. {
  9695. "name": "Alessandro Lai",
  9696. "email": "alessandro.lai85@gmail.com"
  9697. }
  9698. ],
  9699. "description": "A library to get pretty versions strings of installed dependencies",
  9700. "keywords": [
  9701. "composer",
  9702. "package",
  9703. "release",
  9704. "versions"
  9705. ],
  9706. "support": {
  9707. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9708. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0"
  9709. },
  9710. "time": "2024-11-18T16:19:46+00:00"
  9711. },
  9712. {
  9713. "name": "laravel/pint",
  9714. "version": "v1.20.0",
  9715. "source": {
  9716. "type": "git",
  9717. "url": "https://github.com/laravel/pint.git",
  9718. "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b"
  9719. },
  9720. "dist": {
  9721. "type": "zip",
  9722. "url": "https://api.github.com/repos/laravel/pint/zipball/53072e8ea22213a7ed168a8a15b96fbb8b82d44b",
  9723. "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b",
  9724. "shasum": ""
  9725. },
  9726. "require": {
  9727. "ext-json": "*",
  9728. "ext-mbstring": "*",
  9729. "ext-tokenizer": "*",
  9730. "ext-xml": "*",
  9731. "php": "^8.1.0"
  9732. },
  9733. "require-dev": {
  9734. "friendsofphp/php-cs-fixer": "^3.66.0",
  9735. "illuminate/view": "^10.48.25",
  9736. "larastan/larastan": "^2.9.12",
  9737. "laravel-zero/framework": "^10.48.25",
  9738. "mockery/mockery": "^1.6.12",
  9739. "nunomaduro/termwind": "^1.17.0",
  9740. "pestphp/pest": "^2.36.0"
  9741. },
  9742. "bin": [
  9743. "builds/pint"
  9744. ],
  9745. "type": "project",
  9746. "autoload": {
  9747. "psr-4": {
  9748. "App\\": "app/",
  9749. "Database\\Seeders\\": "database/seeders/",
  9750. "Database\\Factories\\": "database/factories/"
  9751. }
  9752. },
  9753. "notification-url": "https://packagist.org/downloads/",
  9754. "license": [
  9755. "MIT"
  9756. ],
  9757. "authors": [
  9758. {
  9759. "name": "Nuno Maduro",
  9760. "email": "enunomaduro@gmail.com"
  9761. }
  9762. ],
  9763. "description": "An opinionated code formatter for PHP.",
  9764. "homepage": "https://laravel.com",
  9765. "keywords": [
  9766. "format",
  9767. "formatter",
  9768. "lint",
  9769. "linter",
  9770. "php"
  9771. ],
  9772. "support": {
  9773. "issues": "https://github.com/laravel/pint/issues",
  9774. "source": "https://github.com/laravel/pint"
  9775. },
  9776. "time": "2025-01-14T16:20:53+00:00"
  9777. },
  9778. {
  9779. "name": "laravel/sail",
  9780. "version": "v1.41.0",
  9781. "source": {
  9782. "type": "git",
  9783. "url": "https://github.com/laravel/sail.git",
  9784. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec"
  9785. },
  9786. "dist": {
  9787. "type": "zip",
  9788. "url": "https://api.github.com/repos/laravel/sail/zipball/fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  9789. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  9790. "shasum": ""
  9791. },
  9792. "require": {
  9793. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  9794. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  9795. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  9796. "php": "^8.0",
  9797. "symfony/console": "^6.0|^7.0",
  9798. "symfony/yaml": "^6.0|^7.0"
  9799. },
  9800. "require-dev": {
  9801. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  9802. "phpstan/phpstan": "^1.10"
  9803. },
  9804. "bin": [
  9805. "bin/sail"
  9806. ],
  9807. "type": "library",
  9808. "extra": {
  9809. "laravel": {
  9810. "providers": [
  9811. "Laravel\\Sail\\SailServiceProvider"
  9812. ]
  9813. }
  9814. },
  9815. "autoload": {
  9816. "psr-4": {
  9817. "Laravel\\Sail\\": "src/"
  9818. }
  9819. },
  9820. "notification-url": "https://packagist.org/downloads/",
  9821. "license": [
  9822. "MIT"
  9823. ],
  9824. "authors": [
  9825. {
  9826. "name": "Taylor Otwell",
  9827. "email": "taylor@laravel.com"
  9828. }
  9829. ],
  9830. "description": "Docker files for running a basic Laravel application.",
  9831. "keywords": [
  9832. "docker",
  9833. "laravel"
  9834. ],
  9835. "support": {
  9836. "issues": "https://github.com/laravel/sail/issues",
  9837. "source": "https://github.com/laravel/sail"
  9838. },
  9839. "time": "2025-01-24T15:45:36+00:00"
  9840. },
  9841. {
  9842. "name": "mockery/mockery",
  9843. "version": "1.6.12",
  9844. "source": {
  9845. "type": "git",
  9846. "url": "https://github.com/mockery/mockery.git",
  9847. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9848. },
  9849. "dist": {
  9850. "type": "zip",
  9851. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9852. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9853. "shasum": ""
  9854. },
  9855. "require": {
  9856. "hamcrest/hamcrest-php": "^2.0.1",
  9857. "lib-pcre": ">=7.0",
  9858. "php": ">=7.3"
  9859. },
  9860. "conflict": {
  9861. "phpunit/phpunit": "<8.0"
  9862. },
  9863. "require-dev": {
  9864. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9865. "symplify/easy-coding-standard": "^12.1.14"
  9866. },
  9867. "type": "library",
  9868. "autoload": {
  9869. "files": [
  9870. "library/helpers.php",
  9871. "library/Mockery.php"
  9872. ],
  9873. "psr-4": {
  9874. "Mockery\\": "library/Mockery"
  9875. }
  9876. },
  9877. "notification-url": "https://packagist.org/downloads/",
  9878. "license": [
  9879. "BSD-3-Clause"
  9880. ],
  9881. "authors": [
  9882. {
  9883. "name": "Pádraic Brady",
  9884. "email": "padraic.brady@gmail.com",
  9885. "homepage": "https://github.com/padraic",
  9886. "role": "Author"
  9887. },
  9888. {
  9889. "name": "Dave Marshall",
  9890. "email": "dave.marshall@atstsolutions.co.uk",
  9891. "homepage": "https://davedevelopment.co.uk",
  9892. "role": "Developer"
  9893. },
  9894. {
  9895. "name": "Nathanael Esayeas",
  9896. "email": "nathanael.esayeas@protonmail.com",
  9897. "homepage": "https://github.com/ghostwriter",
  9898. "role": "Lead Developer"
  9899. }
  9900. ],
  9901. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9902. "homepage": "https://github.com/mockery/mockery",
  9903. "keywords": [
  9904. "BDD",
  9905. "TDD",
  9906. "library",
  9907. "mock",
  9908. "mock objects",
  9909. "mockery",
  9910. "stub",
  9911. "test",
  9912. "test double",
  9913. "testing"
  9914. ],
  9915. "support": {
  9916. "docs": "https://docs.mockery.io/",
  9917. "issues": "https://github.com/mockery/mockery/issues",
  9918. "rss": "https://github.com/mockery/mockery/releases.atom",
  9919. "security": "https://github.com/mockery/mockery/security/advisories",
  9920. "source": "https://github.com/mockery/mockery"
  9921. },
  9922. "time": "2024-05-16T03:13:13+00:00"
  9923. },
  9924. {
  9925. "name": "myclabs/deep-copy",
  9926. "version": "1.13.0",
  9927. "source": {
  9928. "type": "git",
  9929. "url": "https://github.com/myclabs/DeepCopy.git",
  9930. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  9931. },
  9932. "dist": {
  9933. "type": "zip",
  9934. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  9935. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  9936. "shasum": ""
  9937. },
  9938. "require": {
  9939. "php": "^7.1 || ^8.0"
  9940. },
  9941. "conflict": {
  9942. "doctrine/collections": "<1.6.8",
  9943. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9944. },
  9945. "require-dev": {
  9946. "doctrine/collections": "^1.6.8",
  9947. "doctrine/common": "^2.13.3 || ^3.2.2",
  9948. "phpspec/prophecy": "^1.10",
  9949. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9950. },
  9951. "type": "library",
  9952. "autoload": {
  9953. "files": [
  9954. "src/DeepCopy/deep_copy.php"
  9955. ],
  9956. "psr-4": {
  9957. "DeepCopy\\": "src/DeepCopy/"
  9958. }
  9959. },
  9960. "notification-url": "https://packagist.org/downloads/",
  9961. "license": [
  9962. "MIT"
  9963. ],
  9964. "description": "Create deep copies (clones) of your objects",
  9965. "keywords": [
  9966. "clone",
  9967. "copy",
  9968. "duplicate",
  9969. "object",
  9970. "object graph"
  9971. ],
  9972. "support": {
  9973. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9974. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  9975. },
  9976. "funding": [
  9977. {
  9978. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9979. "type": "tidelift"
  9980. }
  9981. ],
  9982. "time": "2025-02-12T12:17:51+00:00"
  9983. },
  9984. {
  9985. "name": "nunomaduro/collision",
  9986. "version": "v8.6.1",
  9987. "source": {
  9988. "type": "git",
  9989. "url": "https://github.com/nunomaduro/collision.git",
  9990. "reference": "86f003c132143d5a2ab214e19933946409e0cae7"
  9991. },
  9992. "dist": {
  9993. "type": "zip",
  9994. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/86f003c132143d5a2ab214e19933946409e0cae7",
  9995. "reference": "86f003c132143d5a2ab214e19933946409e0cae7",
  9996. "shasum": ""
  9997. },
  9998. "require": {
  9999. "filp/whoops": "^2.16.0",
  10000. "nunomaduro/termwind": "^2.3.0",
  10001. "php": "^8.2.0",
  10002. "symfony/console": "^7.2.1"
  10003. },
  10004. "conflict": {
  10005. "laravel/framework": "<11.39.1 || >=13.0.0",
  10006. "phpunit/phpunit": "<11.5.3 || >=12.0.0"
  10007. },
  10008. "require-dev": {
  10009. "larastan/larastan": "^2.9.12",
  10010. "laravel/framework": "^11.39.1",
  10011. "laravel/pint": "^1.20.0",
  10012. "laravel/sail": "^1.40.0",
  10013. "laravel/sanctum": "^4.0.7",
  10014. "laravel/tinker": "^2.10.0",
  10015. "orchestra/testbench-core": "^9.9.2",
  10016. "pestphp/pest": "^3.7.3",
  10017. "sebastian/environment": "^6.1.0 || ^7.2.0"
  10018. },
  10019. "type": "library",
  10020. "extra": {
  10021. "laravel": {
  10022. "providers": [
  10023. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10024. ]
  10025. },
  10026. "branch-alias": {
  10027. "dev-8.x": "8.x-dev"
  10028. }
  10029. },
  10030. "autoload": {
  10031. "files": [
  10032. "./src/Adapters/Phpunit/Autoload.php"
  10033. ],
  10034. "psr-4": {
  10035. "NunoMaduro\\Collision\\": "src/"
  10036. }
  10037. },
  10038. "notification-url": "https://packagist.org/downloads/",
  10039. "license": [
  10040. "MIT"
  10041. ],
  10042. "authors": [
  10043. {
  10044. "name": "Nuno Maduro",
  10045. "email": "enunomaduro@gmail.com"
  10046. }
  10047. ],
  10048. "description": "Cli error handling for console/command-line PHP applications.",
  10049. "keywords": [
  10050. "artisan",
  10051. "cli",
  10052. "command-line",
  10053. "console",
  10054. "dev",
  10055. "error",
  10056. "handling",
  10057. "laravel",
  10058. "laravel-zero",
  10059. "php",
  10060. "symfony"
  10061. ],
  10062. "support": {
  10063. "issues": "https://github.com/nunomaduro/collision/issues",
  10064. "source": "https://github.com/nunomaduro/collision"
  10065. },
  10066. "funding": [
  10067. {
  10068. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10069. "type": "custom"
  10070. },
  10071. {
  10072. "url": "https://github.com/nunomaduro",
  10073. "type": "github"
  10074. },
  10075. {
  10076. "url": "https://www.patreon.com/nunomaduro",
  10077. "type": "patreon"
  10078. }
  10079. ],
  10080. "time": "2025-01-23T13:41:43+00:00"
  10081. },
  10082. {
  10083. "name": "pestphp/pest",
  10084. "version": "v3.7.4",
  10085. "source": {
  10086. "type": "git",
  10087. "url": "https://github.com/pestphp/pest.git",
  10088. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b"
  10089. },
  10090. "dist": {
  10091. "type": "zip",
  10092. "url": "https://api.github.com/repos/pestphp/pest/zipball/4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  10093. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  10094. "shasum": ""
  10095. },
  10096. "require": {
  10097. "brianium/paratest": "^7.7.0",
  10098. "nunomaduro/collision": "^8.6.1",
  10099. "nunomaduro/termwind": "^2.3.0",
  10100. "pestphp/pest-plugin": "^3.0.0",
  10101. "pestphp/pest-plugin-arch": "^3.0.0",
  10102. "pestphp/pest-plugin-mutate": "^3.0.5",
  10103. "php": "^8.2.0",
  10104. "phpunit/phpunit": "^11.5.3"
  10105. },
  10106. "conflict": {
  10107. "filp/whoops": "<2.16.0",
  10108. "phpunit/phpunit": ">11.5.3",
  10109. "sebastian/exporter": "<6.0.0",
  10110. "webmozart/assert": "<1.11.0"
  10111. },
  10112. "require-dev": {
  10113. "pestphp/pest-dev-tools": "^3.3.0",
  10114. "pestphp/pest-plugin-type-coverage": "^3.2.3",
  10115. "symfony/process": "^7.2.0"
  10116. },
  10117. "bin": [
  10118. "bin/pest"
  10119. ],
  10120. "type": "library",
  10121. "extra": {
  10122. "pest": {
  10123. "plugins": [
  10124. "Pest\\Mutate\\Plugins\\Mutate",
  10125. "Pest\\Plugins\\Configuration",
  10126. "Pest\\Plugins\\Bail",
  10127. "Pest\\Plugins\\Cache",
  10128. "Pest\\Plugins\\Coverage",
  10129. "Pest\\Plugins\\Init",
  10130. "Pest\\Plugins\\Environment",
  10131. "Pest\\Plugins\\Help",
  10132. "Pest\\Plugins\\Memory",
  10133. "Pest\\Plugins\\Only",
  10134. "Pest\\Plugins\\Printer",
  10135. "Pest\\Plugins\\ProcessIsolation",
  10136. "Pest\\Plugins\\Profile",
  10137. "Pest\\Plugins\\Retry",
  10138. "Pest\\Plugins\\Snapshot",
  10139. "Pest\\Plugins\\Verbose",
  10140. "Pest\\Plugins\\Version",
  10141. "Pest\\Plugins\\Parallel"
  10142. ]
  10143. },
  10144. "phpstan": {
  10145. "includes": [
  10146. "extension.neon"
  10147. ]
  10148. }
  10149. },
  10150. "autoload": {
  10151. "files": [
  10152. "src/Functions.php",
  10153. "src/Pest.php"
  10154. ],
  10155. "psr-4": {
  10156. "Pest\\": "src/"
  10157. }
  10158. },
  10159. "notification-url": "https://packagist.org/downloads/",
  10160. "license": [
  10161. "MIT"
  10162. ],
  10163. "authors": [
  10164. {
  10165. "name": "Nuno Maduro",
  10166. "email": "enunomaduro@gmail.com"
  10167. }
  10168. ],
  10169. "description": "The elegant PHP Testing Framework.",
  10170. "keywords": [
  10171. "framework",
  10172. "pest",
  10173. "php",
  10174. "test",
  10175. "testing",
  10176. "unit"
  10177. ],
  10178. "support": {
  10179. "issues": "https://github.com/pestphp/pest/issues",
  10180. "source": "https://github.com/pestphp/pest/tree/v3.7.4"
  10181. },
  10182. "funding": [
  10183. {
  10184. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10185. "type": "custom"
  10186. },
  10187. {
  10188. "url": "https://github.com/nunomaduro",
  10189. "type": "github"
  10190. }
  10191. ],
  10192. "time": "2025-01-23T14:03:29+00:00"
  10193. },
  10194. {
  10195. "name": "pestphp/pest-plugin",
  10196. "version": "v3.0.0",
  10197. "source": {
  10198. "type": "git",
  10199. "url": "https://github.com/pestphp/pest-plugin.git",
  10200. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10201. },
  10202. "dist": {
  10203. "type": "zip",
  10204. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10205. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10206. "shasum": ""
  10207. },
  10208. "require": {
  10209. "composer-plugin-api": "^2.0.0",
  10210. "composer-runtime-api": "^2.2.2",
  10211. "php": "^8.2"
  10212. },
  10213. "conflict": {
  10214. "pestphp/pest": "<3.0.0"
  10215. },
  10216. "require-dev": {
  10217. "composer/composer": "^2.7.9",
  10218. "pestphp/pest": "^3.0.0",
  10219. "pestphp/pest-dev-tools": "^3.0.0"
  10220. },
  10221. "type": "composer-plugin",
  10222. "extra": {
  10223. "class": "Pest\\Plugin\\Manager"
  10224. },
  10225. "autoload": {
  10226. "psr-4": {
  10227. "Pest\\Plugin\\": "src/"
  10228. }
  10229. },
  10230. "notification-url": "https://packagist.org/downloads/",
  10231. "license": [
  10232. "MIT"
  10233. ],
  10234. "description": "The Pest plugin manager",
  10235. "keywords": [
  10236. "framework",
  10237. "manager",
  10238. "pest",
  10239. "php",
  10240. "plugin",
  10241. "test",
  10242. "testing",
  10243. "unit"
  10244. ],
  10245. "support": {
  10246. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10247. },
  10248. "funding": [
  10249. {
  10250. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10251. "type": "custom"
  10252. },
  10253. {
  10254. "url": "https://github.com/nunomaduro",
  10255. "type": "github"
  10256. },
  10257. {
  10258. "url": "https://www.patreon.com/nunomaduro",
  10259. "type": "patreon"
  10260. }
  10261. ],
  10262. "time": "2024-09-08T23:21:41+00:00"
  10263. },
  10264. {
  10265. "name": "pestphp/pest-plugin-arch",
  10266. "version": "v3.0.0",
  10267. "source": {
  10268. "type": "git",
  10269. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10270. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  10271. },
  10272. "dist": {
  10273. "type": "zip",
  10274. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10275. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10276. "shasum": ""
  10277. },
  10278. "require": {
  10279. "pestphp/pest-plugin": "^3.0.0",
  10280. "php": "^8.2",
  10281. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10282. },
  10283. "require-dev": {
  10284. "pestphp/pest": "^3.0.0",
  10285. "pestphp/pest-dev-tools": "^3.0.0"
  10286. },
  10287. "type": "library",
  10288. "extra": {
  10289. "pest": {
  10290. "plugins": [
  10291. "Pest\\Arch\\Plugin"
  10292. ]
  10293. }
  10294. },
  10295. "autoload": {
  10296. "files": [
  10297. "src/Autoload.php"
  10298. ],
  10299. "psr-4": {
  10300. "Pest\\Arch\\": "src/"
  10301. }
  10302. },
  10303. "notification-url": "https://packagist.org/downloads/",
  10304. "license": [
  10305. "MIT"
  10306. ],
  10307. "description": "The Arch plugin for Pest PHP.",
  10308. "keywords": [
  10309. "arch",
  10310. "architecture",
  10311. "framework",
  10312. "pest",
  10313. "php",
  10314. "plugin",
  10315. "test",
  10316. "testing",
  10317. "unit"
  10318. ],
  10319. "support": {
  10320. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10325. "type": "custom"
  10326. },
  10327. {
  10328. "url": "https://github.com/nunomaduro",
  10329. "type": "github"
  10330. }
  10331. ],
  10332. "time": "2024-09-08T23:23:55+00:00"
  10333. },
  10334. {
  10335. "name": "pestphp/pest-plugin-livewire",
  10336. "version": "v3.0.0",
  10337. "source": {
  10338. "type": "git",
  10339. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10340. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10341. },
  10342. "dist": {
  10343. "type": "zip",
  10344. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10345. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10346. "shasum": ""
  10347. },
  10348. "require": {
  10349. "livewire/livewire": "^3.5.6",
  10350. "pestphp/pest": "^3.0.0",
  10351. "php": "^8.1"
  10352. },
  10353. "require-dev": {
  10354. "orchestra/testbench": "^9.4.0",
  10355. "pestphp/pest-dev-tools": "^3.0.0"
  10356. },
  10357. "type": "library",
  10358. "autoload": {
  10359. "files": [
  10360. "src/Autoload.php"
  10361. ],
  10362. "psr-4": {
  10363. "Pest\\Livewire\\": "src/"
  10364. }
  10365. },
  10366. "notification-url": "https://packagist.org/downloads/",
  10367. "license": [
  10368. "MIT"
  10369. ],
  10370. "description": "The Pest Livewire Plugin",
  10371. "keywords": [
  10372. "framework",
  10373. "livewire",
  10374. "pest",
  10375. "php",
  10376. "plugin",
  10377. "test",
  10378. "testing",
  10379. "unit"
  10380. ],
  10381. "support": {
  10382. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10383. },
  10384. "funding": [
  10385. {
  10386. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10387. "type": "custom"
  10388. },
  10389. {
  10390. "url": "https://github.com/nunomaduro",
  10391. "type": "github"
  10392. },
  10393. {
  10394. "url": "https://www.patreon.com/nunomaduro",
  10395. "type": "patreon"
  10396. }
  10397. ],
  10398. "time": "2024-09-09T00:05:59+00:00"
  10399. },
  10400. {
  10401. "name": "pestphp/pest-plugin-mutate",
  10402. "version": "v3.0.5",
  10403. "source": {
  10404. "type": "git",
  10405. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10406. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10407. },
  10408. "dist": {
  10409. "type": "zip",
  10410. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10411. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10412. "shasum": ""
  10413. },
  10414. "require": {
  10415. "nikic/php-parser": "^5.2.0",
  10416. "pestphp/pest-plugin": "^3.0.0",
  10417. "php": "^8.2",
  10418. "psr/simple-cache": "^3.0.0"
  10419. },
  10420. "require-dev": {
  10421. "pestphp/pest": "^3.0.8",
  10422. "pestphp/pest-dev-tools": "^3.0.0",
  10423. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10424. },
  10425. "type": "library",
  10426. "autoload": {
  10427. "psr-4": {
  10428. "Pest\\Mutate\\": "src/"
  10429. }
  10430. },
  10431. "notification-url": "https://packagist.org/downloads/",
  10432. "license": [
  10433. "MIT"
  10434. ],
  10435. "authors": [
  10436. {
  10437. "name": "Sandro Gehri",
  10438. "email": "sandrogehri@gmail.com"
  10439. }
  10440. ],
  10441. "description": "Mutates your code to find untested cases",
  10442. "keywords": [
  10443. "framework",
  10444. "mutate",
  10445. "mutation",
  10446. "pest",
  10447. "php",
  10448. "plugin",
  10449. "test",
  10450. "testing",
  10451. "unit"
  10452. ],
  10453. "support": {
  10454. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10455. },
  10456. "funding": [
  10457. {
  10458. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10459. "type": "custom"
  10460. },
  10461. {
  10462. "url": "https://github.com/gehrisandro",
  10463. "type": "github"
  10464. },
  10465. {
  10466. "url": "https://github.com/nunomaduro",
  10467. "type": "github"
  10468. }
  10469. ],
  10470. "time": "2024-09-22T07:54:40+00:00"
  10471. },
  10472. {
  10473. "name": "phar-io/manifest",
  10474. "version": "2.0.4",
  10475. "source": {
  10476. "type": "git",
  10477. "url": "https://github.com/phar-io/manifest.git",
  10478. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10479. },
  10480. "dist": {
  10481. "type": "zip",
  10482. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10483. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10484. "shasum": ""
  10485. },
  10486. "require": {
  10487. "ext-dom": "*",
  10488. "ext-libxml": "*",
  10489. "ext-phar": "*",
  10490. "ext-xmlwriter": "*",
  10491. "phar-io/version": "^3.0.1",
  10492. "php": "^7.2 || ^8.0"
  10493. },
  10494. "type": "library",
  10495. "extra": {
  10496. "branch-alias": {
  10497. "dev-master": "2.0.x-dev"
  10498. }
  10499. },
  10500. "autoload": {
  10501. "classmap": [
  10502. "src/"
  10503. ]
  10504. },
  10505. "notification-url": "https://packagist.org/downloads/",
  10506. "license": [
  10507. "BSD-3-Clause"
  10508. ],
  10509. "authors": [
  10510. {
  10511. "name": "Arne Blankerts",
  10512. "email": "arne@blankerts.de",
  10513. "role": "Developer"
  10514. },
  10515. {
  10516. "name": "Sebastian Heuer",
  10517. "email": "sebastian@phpeople.de",
  10518. "role": "Developer"
  10519. },
  10520. {
  10521. "name": "Sebastian Bergmann",
  10522. "email": "sebastian@phpunit.de",
  10523. "role": "Developer"
  10524. }
  10525. ],
  10526. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10527. "support": {
  10528. "issues": "https://github.com/phar-io/manifest/issues",
  10529. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10530. },
  10531. "funding": [
  10532. {
  10533. "url": "https://github.com/theseer",
  10534. "type": "github"
  10535. }
  10536. ],
  10537. "time": "2024-03-03T12:33:53+00:00"
  10538. },
  10539. {
  10540. "name": "phar-io/version",
  10541. "version": "3.2.1",
  10542. "source": {
  10543. "type": "git",
  10544. "url": "https://github.com/phar-io/version.git",
  10545. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10546. },
  10547. "dist": {
  10548. "type": "zip",
  10549. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10550. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10551. "shasum": ""
  10552. },
  10553. "require": {
  10554. "php": "^7.2 || ^8.0"
  10555. },
  10556. "type": "library",
  10557. "autoload": {
  10558. "classmap": [
  10559. "src/"
  10560. ]
  10561. },
  10562. "notification-url": "https://packagist.org/downloads/",
  10563. "license": [
  10564. "BSD-3-Clause"
  10565. ],
  10566. "authors": [
  10567. {
  10568. "name": "Arne Blankerts",
  10569. "email": "arne@blankerts.de",
  10570. "role": "Developer"
  10571. },
  10572. {
  10573. "name": "Sebastian Heuer",
  10574. "email": "sebastian@phpeople.de",
  10575. "role": "Developer"
  10576. },
  10577. {
  10578. "name": "Sebastian Bergmann",
  10579. "email": "sebastian@phpunit.de",
  10580. "role": "Developer"
  10581. }
  10582. ],
  10583. "description": "Library for handling version information and constraints",
  10584. "support": {
  10585. "issues": "https://github.com/phar-io/version/issues",
  10586. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10587. },
  10588. "time": "2022-02-21T01:04:05+00:00"
  10589. },
  10590. {
  10591. "name": "php-di/invoker",
  10592. "version": "2.3.6",
  10593. "source": {
  10594. "type": "git",
  10595. "url": "https://github.com/PHP-DI/Invoker.git",
  10596. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576"
  10597. },
  10598. "dist": {
  10599. "type": "zip",
  10600. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/59f15608528d8a8838d69b422a919fd6b16aa576",
  10601. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576",
  10602. "shasum": ""
  10603. },
  10604. "require": {
  10605. "php": ">=7.3",
  10606. "psr/container": "^1.0|^2.0"
  10607. },
  10608. "require-dev": {
  10609. "athletic/athletic": "~0.1.8",
  10610. "mnapoli/hard-mode": "~0.3.0",
  10611. "phpunit/phpunit": "^9.0"
  10612. },
  10613. "type": "library",
  10614. "autoload": {
  10615. "psr-4": {
  10616. "Invoker\\": "src/"
  10617. }
  10618. },
  10619. "notification-url": "https://packagist.org/downloads/",
  10620. "license": [
  10621. "MIT"
  10622. ],
  10623. "description": "Generic and extensible callable invoker",
  10624. "homepage": "https://github.com/PHP-DI/Invoker",
  10625. "keywords": [
  10626. "callable",
  10627. "dependency",
  10628. "dependency-injection",
  10629. "injection",
  10630. "invoke",
  10631. "invoker"
  10632. ],
  10633. "support": {
  10634. "issues": "https://github.com/PHP-DI/Invoker/issues",
  10635. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.6"
  10636. },
  10637. "funding": [
  10638. {
  10639. "url": "https://github.com/mnapoli",
  10640. "type": "github"
  10641. }
  10642. ],
  10643. "time": "2025-01-17T12:49:27+00:00"
  10644. },
  10645. {
  10646. "name": "php-di/php-di",
  10647. "version": "7.0.8",
  10648. "source": {
  10649. "type": "git",
  10650. "url": "https://github.com/PHP-DI/PHP-DI.git",
  10651. "reference": "98ddc81f8f768a2ad39e4cbe737285eaeabe577a"
  10652. },
  10653. "dist": {
  10654. "type": "zip",
  10655. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/98ddc81f8f768a2ad39e4cbe737285eaeabe577a",
  10656. "reference": "98ddc81f8f768a2ad39e4cbe737285eaeabe577a",
  10657. "shasum": ""
  10658. },
  10659. "require": {
  10660. "laravel/serializable-closure": "^1.0 || ^2.0",
  10661. "php": ">=8.0",
  10662. "php-di/invoker": "^2.0",
  10663. "psr/container": "^1.1 || ^2.0"
  10664. },
  10665. "provide": {
  10666. "psr/container-implementation": "^1.0"
  10667. },
  10668. "require-dev": {
  10669. "friendsofphp/php-cs-fixer": "^3",
  10670. "friendsofphp/proxy-manager-lts": "^1",
  10671. "mnapoli/phpunit-easymock": "^1.3",
  10672. "phpunit/phpunit": "^9.6",
  10673. "vimeo/psalm": "^4.6"
  10674. },
  10675. "suggest": {
  10676. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  10677. },
  10678. "type": "library",
  10679. "autoload": {
  10680. "files": [
  10681. "src/functions.php"
  10682. ],
  10683. "psr-4": {
  10684. "DI\\": "src/"
  10685. }
  10686. },
  10687. "notification-url": "https://packagist.org/downloads/",
  10688. "license": [
  10689. "MIT"
  10690. ],
  10691. "description": "The dependency injection container for humans",
  10692. "homepage": "https://php-di.org/",
  10693. "keywords": [
  10694. "PSR-11",
  10695. "container",
  10696. "container-interop",
  10697. "dependency injection",
  10698. "di",
  10699. "ioc",
  10700. "psr11"
  10701. ],
  10702. "support": {
  10703. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10704. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.8"
  10705. },
  10706. "funding": [
  10707. {
  10708. "url": "https://github.com/mnapoli",
  10709. "type": "github"
  10710. },
  10711. {
  10712. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10713. "type": "tidelift"
  10714. }
  10715. ],
  10716. "time": "2025-01-28T21:02:46+00:00"
  10717. },
  10718. {
  10719. "name": "phpdocumentor/reflection-common",
  10720. "version": "2.2.0",
  10721. "source": {
  10722. "type": "git",
  10723. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10724. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10725. },
  10726. "dist": {
  10727. "type": "zip",
  10728. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10729. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10730. "shasum": ""
  10731. },
  10732. "require": {
  10733. "php": "^7.2 || ^8.0"
  10734. },
  10735. "type": "library",
  10736. "extra": {
  10737. "branch-alias": {
  10738. "dev-2.x": "2.x-dev"
  10739. }
  10740. },
  10741. "autoload": {
  10742. "psr-4": {
  10743. "phpDocumentor\\Reflection\\": "src/"
  10744. }
  10745. },
  10746. "notification-url": "https://packagist.org/downloads/",
  10747. "license": [
  10748. "MIT"
  10749. ],
  10750. "authors": [
  10751. {
  10752. "name": "Jaap van Otterdijk",
  10753. "email": "opensource@ijaap.nl"
  10754. }
  10755. ],
  10756. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10757. "homepage": "http://www.phpdoc.org",
  10758. "keywords": [
  10759. "FQSEN",
  10760. "phpDocumentor",
  10761. "phpdoc",
  10762. "reflection",
  10763. "static analysis"
  10764. ],
  10765. "support": {
  10766. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10767. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10768. },
  10769. "time": "2020-06-27T09:03:43+00:00"
  10770. },
  10771. {
  10772. "name": "phpdocumentor/reflection-docblock",
  10773. "version": "5.6.1",
  10774. "source": {
  10775. "type": "git",
  10776. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10777. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  10778. },
  10779. "dist": {
  10780. "type": "zip",
  10781. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10782. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10783. "shasum": ""
  10784. },
  10785. "require": {
  10786. "doctrine/deprecations": "^1.1",
  10787. "ext-filter": "*",
  10788. "php": "^7.4 || ^8.0",
  10789. "phpdocumentor/reflection-common": "^2.2",
  10790. "phpdocumentor/type-resolver": "^1.7",
  10791. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10792. "webmozart/assert": "^1.9.1"
  10793. },
  10794. "require-dev": {
  10795. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10796. "phpstan/extension-installer": "^1.1",
  10797. "phpstan/phpstan": "^1.8",
  10798. "phpstan/phpstan-mockery": "^1.1",
  10799. "phpstan/phpstan-webmozart-assert": "^1.2",
  10800. "phpunit/phpunit": "^9.5",
  10801. "psalm/phar": "^5.26"
  10802. },
  10803. "type": "library",
  10804. "extra": {
  10805. "branch-alias": {
  10806. "dev-master": "5.x-dev"
  10807. }
  10808. },
  10809. "autoload": {
  10810. "psr-4": {
  10811. "phpDocumentor\\Reflection\\": "src"
  10812. }
  10813. },
  10814. "notification-url": "https://packagist.org/downloads/",
  10815. "license": [
  10816. "MIT"
  10817. ],
  10818. "authors": [
  10819. {
  10820. "name": "Mike van Riel",
  10821. "email": "me@mikevanriel.com"
  10822. },
  10823. {
  10824. "name": "Jaap van Otterdijk",
  10825. "email": "opensource@ijaap.nl"
  10826. }
  10827. ],
  10828. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10829. "support": {
  10830. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10831. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  10832. },
  10833. "time": "2024-12-07T09:39:29+00:00"
  10834. },
  10835. {
  10836. "name": "phpdocumentor/type-resolver",
  10837. "version": "1.10.0",
  10838. "source": {
  10839. "type": "git",
  10840. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10841. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10842. },
  10843. "dist": {
  10844. "type": "zip",
  10845. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10846. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10847. "shasum": ""
  10848. },
  10849. "require": {
  10850. "doctrine/deprecations": "^1.0",
  10851. "php": "^7.3 || ^8.0",
  10852. "phpdocumentor/reflection-common": "^2.0",
  10853. "phpstan/phpdoc-parser": "^1.18|^2.0"
  10854. },
  10855. "require-dev": {
  10856. "ext-tokenizer": "*",
  10857. "phpbench/phpbench": "^1.2",
  10858. "phpstan/extension-installer": "^1.1",
  10859. "phpstan/phpstan": "^1.8",
  10860. "phpstan/phpstan-phpunit": "^1.1",
  10861. "phpunit/phpunit": "^9.5",
  10862. "rector/rector": "^0.13.9",
  10863. "vimeo/psalm": "^4.25"
  10864. },
  10865. "type": "library",
  10866. "extra": {
  10867. "branch-alias": {
  10868. "dev-1.x": "1.x-dev"
  10869. }
  10870. },
  10871. "autoload": {
  10872. "psr-4": {
  10873. "phpDocumentor\\Reflection\\": "src"
  10874. }
  10875. },
  10876. "notification-url": "https://packagist.org/downloads/",
  10877. "license": [
  10878. "MIT"
  10879. ],
  10880. "authors": [
  10881. {
  10882. "name": "Mike van Riel",
  10883. "email": "me@mikevanriel.com"
  10884. }
  10885. ],
  10886. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10887. "support": {
  10888. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10889. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  10890. },
  10891. "time": "2024-11-09T15:12:26+00:00"
  10892. },
  10893. {
  10894. "name": "phpstan/phpdoc-parser",
  10895. "version": "2.0.1",
  10896. "source": {
  10897. "type": "git",
  10898. "url": "https://github.com/phpstan/phpdoc-parser.git",
  10899. "reference": "72e51f7c32c5aef7c8b462195b8c599b11199893"
  10900. },
  10901. "dist": {
  10902. "type": "zip",
  10903. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/72e51f7c32c5aef7c8b462195b8c599b11199893",
  10904. "reference": "72e51f7c32c5aef7c8b462195b8c599b11199893",
  10905. "shasum": ""
  10906. },
  10907. "require": {
  10908. "php": "^7.4 || ^8.0"
  10909. },
  10910. "require-dev": {
  10911. "doctrine/annotations": "^2.0",
  10912. "nikic/php-parser": "^5.3.0",
  10913. "php-parallel-lint/php-parallel-lint": "^1.2",
  10914. "phpstan/extension-installer": "^1.0",
  10915. "phpstan/phpstan": "^2.0",
  10916. "phpstan/phpstan-phpunit": "^2.0",
  10917. "phpstan/phpstan-strict-rules": "^2.0",
  10918. "phpunit/phpunit": "^9.6",
  10919. "symfony/process": "^5.2"
  10920. },
  10921. "type": "library",
  10922. "autoload": {
  10923. "psr-4": {
  10924. "PHPStan\\PhpDocParser\\": [
  10925. "src/"
  10926. ]
  10927. }
  10928. },
  10929. "notification-url": "https://packagist.org/downloads/",
  10930. "license": [
  10931. "MIT"
  10932. ],
  10933. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  10934. "support": {
  10935. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  10936. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.1"
  10937. },
  10938. "time": "2025-02-13T12:25:43+00:00"
  10939. },
  10940. {
  10941. "name": "phpunit/php-code-coverage",
  10942. "version": "11.0.8",
  10943. "source": {
  10944. "type": "git",
  10945. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10946. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118"
  10947. },
  10948. "dist": {
  10949. "type": "zip",
  10950. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/418c59fd080954f8c4aa5631d9502ecda2387118",
  10951. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118",
  10952. "shasum": ""
  10953. },
  10954. "require": {
  10955. "ext-dom": "*",
  10956. "ext-libxml": "*",
  10957. "ext-xmlwriter": "*",
  10958. "nikic/php-parser": "^5.3.1",
  10959. "php": ">=8.2",
  10960. "phpunit/php-file-iterator": "^5.1.0",
  10961. "phpunit/php-text-template": "^4.0.1",
  10962. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  10963. "sebastian/complexity": "^4.0.1",
  10964. "sebastian/environment": "^7.2.0",
  10965. "sebastian/lines-of-code": "^3.0.1",
  10966. "sebastian/version": "^5.0.2",
  10967. "theseer/tokenizer": "^1.2.3"
  10968. },
  10969. "require-dev": {
  10970. "phpunit/phpunit": "^11.5.0"
  10971. },
  10972. "suggest": {
  10973. "ext-pcov": "PHP extension that provides line coverage",
  10974. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10975. },
  10976. "type": "library",
  10977. "extra": {
  10978. "branch-alias": {
  10979. "dev-main": "11.0.x-dev"
  10980. }
  10981. },
  10982. "autoload": {
  10983. "classmap": [
  10984. "src/"
  10985. ]
  10986. },
  10987. "notification-url": "https://packagist.org/downloads/",
  10988. "license": [
  10989. "BSD-3-Clause"
  10990. ],
  10991. "authors": [
  10992. {
  10993. "name": "Sebastian Bergmann",
  10994. "email": "sebastian@phpunit.de",
  10995. "role": "lead"
  10996. }
  10997. ],
  10998. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10999. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11000. "keywords": [
  11001. "coverage",
  11002. "testing",
  11003. "xunit"
  11004. ],
  11005. "support": {
  11006. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11007. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11008. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.8"
  11009. },
  11010. "funding": [
  11011. {
  11012. "url": "https://github.com/sebastianbergmann",
  11013. "type": "github"
  11014. }
  11015. ],
  11016. "time": "2024-12-11T12:34:27+00:00"
  11017. },
  11018. {
  11019. "name": "phpunit/php-file-iterator",
  11020. "version": "5.1.0",
  11021. "source": {
  11022. "type": "git",
  11023. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11024. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11025. },
  11026. "dist": {
  11027. "type": "zip",
  11028. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11029. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11030. "shasum": ""
  11031. },
  11032. "require": {
  11033. "php": ">=8.2"
  11034. },
  11035. "require-dev": {
  11036. "phpunit/phpunit": "^11.0"
  11037. },
  11038. "type": "library",
  11039. "extra": {
  11040. "branch-alias": {
  11041. "dev-main": "5.0-dev"
  11042. }
  11043. },
  11044. "autoload": {
  11045. "classmap": [
  11046. "src/"
  11047. ]
  11048. },
  11049. "notification-url": "https://packagist.org/downloads/",
  11050. "license": [
  11051. "BSD-3-Clause"
  11052. ],
  11053. "authors": [
  11054. {
  11055. "name": "Sebastian Bergmann",
  11056. "email": "sebastian@phpunit.de",
  11057. "role": "lead"
  11058. }
  11059. ],
  11060. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11061. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11062. "keywords": [
  11063. "filesystem",
  11064. "iterator"
  11065. ],
  11066. "support": {
  11067. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11068. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11069. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11070. },
  11071. "funding": [
  11072. {
  11073. "url": "https://github.com/sebastianbergmann",
  11074. "type": "github"
  11075. }
  11076. ],
  11077. "time": "2024-08-27T05:02:59+00:00"
  11078. },
  11079. {
  11080. "name": "phpunit/php-invoker",
  11081. "version": "5.0.1",
  11082. "source": {
  11083. "type": "git",
  11084. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11085. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11086. },
  11087. "dist": {
  11088. "type": "zip",
  11089. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11090. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11091. "shasum": ""
  11092. },
  11093. "require": {
  11094. "php": ">=8.2"
  11095. },
  11096. "require-dev": {
  11097. "ext-pcntl": "*",
  11098. "phpunit/phpunit": "^11.0"
  11099. },
  11100. "suggest": {
  11101. "ext-pcntl": "*"
  11102. },
  11103. "type": "library",
  11104. "extra": {
  11105. "branch-alias": {
  11106. "dev-main": "5.0-dev"
  11107. }
  11108. },
  11109. "autoload": {
  11110. "classmap": [
  11111. "src/"
  11112. ]
  11113. },
  11114. "notification-url": "https://packagist.org/downloads/",
  11115. "license": [
  11116. "BSD-3-Clause"
  11117. ],
  11118. "authors": [
  11119. {
  11120. "name": "Sebastian Bergmann",
  11121. "email": "sebastian@phpunit.de",
  11122. "role": "lead"
  11123. }
  11124. ],
  11125. "description": "Invoke callables with a timeout",
  11126. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11127. "keywords": [
  11128. "process"
  11129. ],
  11130. "support": {
  11131. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11132. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11133. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11134. },
  11135. "funding": [
  11136. {
  11137. "url": "https://github.com/sebastianbergmann",
  11138. "type": "github"
  11139. }
  11140. ],
  11141. "time": "2024-07-03T05:07:44+00:00"
  11142. },
  11143. {
  11144. "name": "phpunit/php-text-template",
  11145. "version": "4.0.1",
  11146. "source": {
  11147. "type": "git",
  11148. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11149. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11150. },
  11151. "dist": {
  11152. "type": "zip",
  11153. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11154. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11155. "shasum": ""
  11156. },
  11157. "require": {
  11158. "php": ">=8.2"
  11159. },
  11160. "require-dev": {
  11161. "phpunit/phpunit": "^11.0"
  11162. },
  11163. "type": "library",
  11164. "extra": {
  11165. "branch-alias": {
  11166. "dev-main": "4.0-dev"
  11167. }
  11168. },
  11169. "autoload": {
  11170. "classmap": [
  11171. "src/"
  11172. ]
  11173. },
  11174. "notification-url": "https://packagist.org/downloads/",
  11175. "license": [
  11176. "BSD-3-Clause"
  11177. ],
  11178. "authors": [
  11179. {
  11180. "name": "Sebastian Bergmann",
  11181. "email": "sebastian@phpunit.de",
  11182. "role": "lead"
  11183. }
  11184. ],
  11185. "description": "Simple template engine.",
  11186. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11187. "keywords": [
  11188. "template"
  11189. ],
  11190. "support": {
  11191. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11192. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11193. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11194. },
  11195. "funding": [
  11196. {
  11197. "url": "https://github.com/sebastianbergmann",
  11198. "type": "github"
  11199. }
  11200. ],
  11201. "time": "2024-07-03T05:08:43+00:00"
  11202. },
  11203. {
  11204. "name": "phpunit/php-timer",
  11205. "version": "7.0.1",
  11206. "source": {
  11207. "type": "git",
  11208. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11209. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11210. },
  11211. "dist": {
  11212. "type": "zip",
  11213. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11214. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11215. "shasum": ""
  11216. },
  11217. "require": {
  11218. "php": ">=8.2"
  11219. },
  11220. "require-dev": {
  11221. "phpunit/phpunit": "^11.0"
  11222. },
  11223. "type": "library",
  11224. "extra": {
  11225. "branch-alias": {
  11226. "dev-main": "7.0-dev"
  11227. }
  11228. },
  11229. "autoload": {
  11230. "classmap": [
  11231. "src/"
  11232. ]
  11233. },
  11234. "notification-url": "https://packagist.org/downloads/",
  11235. "license": [
  11236. "BSD-3-Clause"
  11237. ],
  11238. "authors": [
  11239. {
  11240. "name": "Sebastian Bergmann",
  11241. "email": "sebastian@phpunit.de",
  11242. "role": "lead"
  11243. }
  11244. ],
  11245. "description": "Utility class for timing",
  11246. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11247. "keywords": [
  11248. "timer"
  11249. ],
  11250. "support": {
  11251. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11252. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11253. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11254. },
  11255. "funding": [
  11256. {
  11257. "url": "https://github.com/sebastianbergmann",
  11258. "type": "github"
  11259. }
  11260. ],
  11261. "time": "2024-07-03T05:09:35+00:00"
  11262. },
  11263. {
  11264. "name": "phpunit/phpunit",
  11265. "version": "11.5.3",
  11266. "source": {
  11267. "type": "git",
  11268. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11269. "reference": "30e319e578a7b5da3543073e30002bf82042f701"
  11270. },
  11271. "dist": {
  11272. "type": "zip",
  11273. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701",
  11274. "reference": "30e319e578a7b5da3543073e30002bf82042f701",
  11275. "shasum": ""
  11276. },
  11277. "require": {
  11278. "ext-dom": "*",
  11279. "ext-json": "*",
  11280. "ext-libxml": "*",
  11281. "ext-mbstring": "*",
  11282. "ext-xml": "*",
  11283. "ext-xmlwriter": "*",
  11284. "myclabs/deep-copy": "^1.12.1",
  11285. "phar-io/manifest": "^2.0.4",
  11286. "phar-io/version": "^3.2.1",
  11287. "php": ">=8.2",
  11288. "phpunit/php-code-coverage": "^11.0.8",
  11289. "phpunit/php-file-iterator": "^5.1.0",
  11290. "phpunit/php-invoker": "^5.0.1",
  11291. "phpunit/php-text-template": "^4.0.1",
  11292. "phpunit/php-timer": "^7.0.1",
  11293. "sebastian/cli-parser": "^3.0.2",
  11294. "sebastian/code-unit": "^3.0.2",
  11295. "sebastian/comparator": "^6.3.0",
  11296. "sebastian/diff": "^6.0.2",
  11297. "sebastian/environment": "^7.2.0",
  11298. "sebastian/exporter": "^6.3.0",
  11299. "sebastian/global-state": "^7.0.2",
  11300. "sebastian/object-enumerator": "^6.0.1",
  11301. "sebastian/type": "^5.1.0",
  11302. "sebastian/version": "^5.0.2",
  11303. "staabm/side-effects-detector": "^1.0.5"
  11304. },
  11305. "suggest": {
  11306. "ext-soap": "To be able to generate mocks based on WSDL files"
  11307. },
  11308. "bin": [
  11309. "phpunit"
  11310. ],
  11311. "type": "library",
  11312. "extra": {
  11313. "branch-alias": {
  11314. "dev-main": "11.5-dev"
  11315. }
  11316. },
  11317. "autoload": {
  11318. "files": [
  11319. "src/Framework/Assert/Functions.php"
  11320. ],
  11321. "classmap": [
  11322. "src/"
  11323. ]
  11324. },
  11325. "notification-url": "https://packagist.org/downloads/",
  11326. "license": [
  11327. "BSD-3-Clause"
  11328. ],
  11329. "authors": [
  11330. {
  11331. "name": "Sebastian Bergmann",
  11332. "email": "sebastian@phpunit.de",
  11333. "role": "lead"
  11334. }
  11335. ],
  11336. "description": "The PHP Unit Testing framework.",
  11337. "homepage": "https://phpunit.de/",
  11338. "keywords": [
  11339. "phpunit",
  11340. "testing",
  11341. "xunit"
  11342. ],
  11343. "support": {
  11344. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11345. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11346. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3"
  11347. },
  11348. "funding": [
  11349. {
  11350. "url": "https://phpunit.de/sponsors.html",
  11351. "type": "custom"
  11352. },
  11353. {
  11354. "url": "https://github.com/sebastianbergmann",
  11355. "type": "github"
  11356. },
  11357. {
  11358. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11359. "type": "tidelift"
  11360. }
  11361. ],
  11362. "time": "2025-01-13T09:36:00+00:00"
  11363. },
  11364. {
  11365. "name": "sebastian/cli-parser",
  11366. "version": "3.0.2",
  11367. "source": {
  11368. "type": "git",
  11369. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11370. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11371. },
  11372. "dist": {
  11373. "type": "zip",
  11374. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11375. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11376. "shasum": ""
  11377. },
  11378. "require": {
  11379. "php": ">=8.2"
  11380. },
  11381. "require-dev": {
  11382. "phpunit/phpunit": "^11.0"
  11383. },
  11384. "type": "library",
  11385. "extra": {
  11386. "branch-alias": {
  11387. "dev-main": "3.0-dev"
  11388. }
  11389. },
  11390. "autoload": {
  11391. "classmap": [
  11392. "src/"
  11393. ]
  11394. },
  11395. "notification-url": "https://packagist.org/downloads/",
  11396. "license": [
  11397. "BSD-3-Clause"
  11398. ],
  11399. "authors": [
  11400. {
  11401. "name": "Sebastian Bergmann",
  11402. "email": "sebastian@phpunit.de",
  11403. "role": "lead"
  11404. }
  11405. ],
  11406. "description": "Library for parsing CLI options",
  11407. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11408. "support": {
  11409. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11410. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11411. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11412. },
  11413. "funding": [
  11414. {
  11415. "url": "https://github.com/sebastianbergmann",
  11416. "type": "github"
  11417. }
  11418. ],
  11419. "time": "2024-07-03T04:41:36+00:00"
  11420. },
  11421. {
  11422. "name": "sebastian/code-unit",
  11423. "version": "3.0.2",
  11424. "source": {
  11425. "type": "git",
  11426. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11427. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca"
  11428. },
  11429. "dist": {
  11430. "type": "zip",
  11431. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11432. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11433. "shasum": ""
  11434. },
  11435. "require": {
  11436. "php": ">=8.2"
  11437. },
  11438. "require-dev": {
  11439. "phpunit/phpunit": "^11.5"
  11440. },
  11441. "type": "library",
  11442. "extra": {
  11443. "branch-alias": {
  11444. "dev-main": "3.0-dev"
  11445. }
  11446. },
  11447. "autoload": {
  11448. "classmap": [
  11449. "src/"
  11450. ]
  11451. },
  11452. "notification-url": "https://packagist.org/downloads/",
  11453. "license": [
  11454. "BSD-3-Clause"
  11455. ],
  11456. "authors": [
  11457. {
  11458. "name": "Sebastian Bergmann",
  11459. "email": "sebastian@phpunit.de",
  11460. "role": "lead"
  11461. }
  11462. ],
  11463. "description": "Collection of value objects that represent the PHP code units",
  11464. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11465. "support": {
  11466. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11467. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11468. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2"
  11469. },
  11470. "funding": [
  11471. {
  11472. "url": "https://github.com/sebastianbergmann",
  11473. "type": "github"
  11474. }
  11475. ],
  11476. "time": "2024-12-12T09:59:06+00:00"
  11477. },
  11478. {
  11479. "name": "sebastian/code-unit-reverse-lookup",
  11480. "version": "4.0.1",
  11481. "source": {
  11482. "type": "git",
  11483. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11484. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11485. },
  11486. "dist": {
  11487. "type": "zip",
  11488. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11489. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11490. "shasum": ""
  11491. },
  11492. "require": {
  11493. "php": ">=8.2"
  11494. },
  11495. "require-dev": {
  11496. "phpunit/phpunit": "^11.0"
  11497. },
  11498. "type": "library",
  11499. "extra": {
  11500. "branch-alias": {
  11501. "dev-main": "4.0-dev"
  11502. }
  11503. },
  11504. "autoload": {
  11505. "classmap": [
  11506. "src/"
  11507. ]
  11508. },
  11509. "notification-url": "https://packagist.org/downloads/",
  11510. "license": [
  11511. "BSD-3-Clause"
  11512. ],
  11513. "authors": [
  11514. {
  11515. "name": "Sebastian Bergmann",
  11516. "email": "sebastian@phpunit.de"
  11517. }
  11518. ],
  11519. "description": "Looks up which function or method a line of code belongs to",
  11520. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11521. "support": {
  11522. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11523. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11524. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11525. },
  11526. "funding": [
  11527. {
  11528. "url": "https://github.com/sebastianbergmann",
  11529. "type": "github"
  11530. }
  11531. ],
  11532. "time": "2024-07-03T04:45:54+00:00"
  11533. },
  11534. {
  11535. "name": "sebastian/comparator",
  11536. "version": "6.3.0",
  11537. "source": {
  11538. "type": "git",
  11539. "url": "https://github.com/sebastianbergmann/comparator.git",
  11540. "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115"
  11541. },
  11542. "dist": {
  11543. "type": "zip",
  11544. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
  11545. "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
  11546. "shasum": ""
  11547. },
  11548. "require": {
  11549. "ext-dom": "*",
  11550. "ext-mbstring": "*",
  11551. "php": ">=8.2",
  11552. "sebastian/diff": "^6.0",
  11553. "sebastian/exporter": "^6.0"
  11554. },
  11555. "require-dev": {
  11556. "phpunit/phpunit": "^11.4"
  11557. },
  11558. "suggest": {
  11559. "ext-bcmath": "For comparing BcMath\\Number objects"
  11560. },
  11561. "type": "library",
  11562. "extra": {
  11563. "branch-alias": {
  11564. "dev-main": "6.2-dev"
  11565. }
  11566. },
  11567. "autoload": {
  11568. "classmap": [
  11569. "src/"
  11570. ]
  11571. },
  11572. "notification-url": "https://packagist.org/downloads/",
  11573. "license": [
  11574. "BSD-3-Clause"
  11575. ],
  11576. "authors": [
  11577. {
  11578. "name": "Sebastian Bergmann",
  11579. "email": "sebastian@phpunit.de"
  11580. },
  11581. {
  11582. "name": "Jeff Welch",
  11583. "email": "whatthejeff@gmail.com"
  11584. },
  11585. {
  11586. "name": "Volker Dusch",
  11587. "email": "github@wallbash.com"
  11588. },
  11589. {
  11590. "name": "Bernhard Schussek",
  11591. "email": "bschussek@2bepublished.at"
  11592. }
  11593. ],
  11594. "description": "Provides the functionality to compare PHP values for equality",
  11595. "homepage": "https://github.com/sebastianbergmann/comparator",
  11596. "keywords": [
  11597. "comparator",
  11598. "compare",
  11599. "equality"
  11600. ],
  11601. "support": {
  11602. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11603. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11604. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.0"
  11605. },
  11606. "funding": [
  11607. {
  11608. "url": "https://github.com/sebastianbergmann",
  11609. "type": "github"
  11610. }
  11611. ],
  11612. "time": "2025-01-06T10:28:19+00:00"
  11613. },
  11614. {
  11615. "name": "sebastian/complexity",
  11616. "version": "4.0.1",
  11617. "source": {
  11618. "type": "git",
  11619. "url": "https://github.com/sebastianbergmann/complexity.git",
  11620. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11621. },
  11622. "dist": {
  11623. "type": "zip",
  11624. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11625. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11626. "shasum": ""
  11627. },
  11628. "require": {
  11629. "nikic/php-parser": "^5.0",
  11630. "php": ">=8.2"
  11631. },
  11632. "require-dev": {
  11633. "phpunit/phpunit": "^11.0"
  11634. },
  11635. "type": "library",
  11636. "extra": {
  11637. "branch-alias": {
  11638. "dev-main": "4.0-dev"
  11639. }
  11640. },
  11641. "autoload": {
  11642. "classmap": [
  11643. "src/"
  11644. ]
  11645. },
  11646. "notification-url": "https://packagist.org/downloads/",
  11647. "license": [
  11648. "BSD-3-Clause"
  11649. ],
  11650. "authors": [
  11651. {
  11652. "name": "Sebastian Bergmann",
  11653. "email": "sebastian@phpunit.de",
  11654. "role": "lead"
  11655. }
  11656. ],
  11657. "description": "Library for calculating the complexity of PHP code units",
  11658. "homepage": "https://github.com/sebastianbergmann/complexity",
  11659. "support": {
  11660. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11661. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11662. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11663. },
  11664. "funding": [
  11665. {
  11666. "url": "https://github.com/sebastianbergmann",
  11667. "type": "github"
  11668. }
  11669. ],
  11670. "time": "2024-07-03T04:49:50+00:00"
  11671. },
  11672. {
  11673. "name": "sebastian/diff",
  11674. "version": "6.0.2",
  11675. "source": {
  11676. "type": "git",
  11677. "url": "https://github.com/sebastianbergmann/diff.git",
  11678. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11679. },
  11680. "dist": {
  11681. "type": "zip",
  11682. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11683. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11684. "shasum": ""
  11685. },
  11686. "require": {
  11687. "php": ">=8.2"
  11688. },
  11689. "require-dev": {
  11690. "phpunit/phpunit": "^11.0",
  11691. "symfony/process": "^4.2 || ^5"
  11692. },
  11693. "type": "library",
  11694. "extra": {
  11695. "branch-alias": {
  11696. "dev-main": "6.0-dev"
  11697. }
  11698. },
  11699. "autoload": {
  11700. "classmap": [
  11701. "src/"
  11702. ]
  11703. },
  11704. "notification-url": "https://packagist.org/downloads/",
  11705. "license": [
  11706. "BSD-3-Clause"
  11707. ],
  11708. "authors": [
  11709. {
  11710. "name": "Sebastian Bergmann",
  11711. "email": "sebastian@phpunit.de"
  11712. },
  11713. {
  11714. "name": "Kore Nordmann",
  11715. "email": "mail@kore-nordmann.de"
  11716. }
  11717. ],
  11718. "description": "Diff implementation",
  11719. "homepage": "https://github.com/sebastianbergmann/diff",
  11720. "keywords": [
  11721. "diff",
  11722. "udiff",
  11723. "unidiff",
  11724. "unified diff"
  11725. ],
  11726. "support": {
  11727. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11728. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11729. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11730. },
  11731. "funding": [
  11732. {
  11733. "url": "https://github.com/sebastianbergmann",
  11734. "type": "github"
  11735. }
  11736. ],
  11737. "time": "2024-07-03T04:53:05+00:00"
  11738. },
  11739. {
  11740. "name": "sebastian/environment",
  11741. "version": "7.2.0",
  11742. "source": {
  11743. "type": "git",
  11744. "url": "https://github.com/sebastianbergmann/environment.git",
  11745. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  11746. },
  11747. "dist": {
  11748. "type": "zip",
  11749. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11750. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11751. "shasum": ""
  11752. },
  11753. "require": {
  11754. "php": ">=8.2"
  11755. },
  11756. "require-dev": {
  11757. "phpunit/phpunit": "^11.0"
  11758. },
  11759. "suggest": {
  11760. "ext-posix": "*"
  11761. },
  11762. "type": "library",
  11763. "extra": {
  11764. "branch-alias": {
  11765. "dev-main": "7.2-dev"
  11766. }
  11767. },
  11768. "autoload": {
  11769. "classmap": [
  11770. "src/"
  11771. ]
  11772. },
  11773. "notification-url": "https://packagist.org/downloads/",
  11774. "license": [
  11775. "BSD-3-Clause"
  11776. ],
  11777. "authors": [
  11778. {
  11779. "name": "Sebastian Bergmann",
  11780. "email": "sebastian@phpunit.de"
  11781. }
  11782. ],
  11783. "description": "Provides functionality to handle HHVM/PHP environments",
  11784. "homepage": "https://github.com/sebastianbergmann/environment",
  11785. "keywords": [
  11786. "Xdebug",
  11787. "environment",
  11788. "hhvm"
  11789. ],
  11790. "support": {
  11791. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11792. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11793. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  11794. },
  11795. "funding": [
  11796. {
  11797. "url": "https://github.com/sebastianbergmann",
  11798. "type": "github"
  11799. }
  11800. ],
  11801. "time": "2024-07-03T04:54:44+00:00"
  11802. },
  11803. {
  11804. "name": "sebastian/exporter",
  11805. "version": "6.3.0",
  11806. "source": {
  11807. "type": "git",
  11808. "url": "https://github.com/sebastianbergmann/exporter.git",
  11809. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11810. },
  11811. "dist": {
  11812. "type": "zip",
  11813. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11814. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11815. "shasum": ""
  11816. },
  11817. "require": {
  11818. "ext-mbstring": "*",
  11819. "php": ">=8.2",
  11820. "sebastian/recursion-context": "^6.0"
  11821. },
  11822. "require-dev": {
  11823. "phpunit/phpunit": "^11.3"
  11824. },
  11825. "type": "library",
  11826. "extra": {
  11827. "branch-alias": {
  11828. "dev-main": "6.1-dev"
  11829. }
  11830. },
  11831. "autoload": {
  11832. "classmap": [
  11833. "src/"
  11834. ]
  11835. },
  11836. "notification-url": "https://packagist.org/downloads/",
  11837. "license": [
  11838. "BSD-3-Clause"
  11839. ],
  11840. "authors": [
  11841. {
  11842. "name": "Sebastian Bergmann",
  11843. "email": "sebastian@phpunit.de"
  11844. },
  11845. {
  11846. "name": "Jeff Welch",
  11847. "email": "whatthejeff@gmail.com"
  11848. },
  11849. {
  11850. "name": "Volker Dusch",
  11851. "email": "github@wallbash.com"
  11852. },
  11853. {
  11854. "name": "Adam Harvey",
  11855. "email": "aharvey@php.net"
  11856. },
  11857. {
  11858. "name": "Bernhard Schussek",
  11859. "email": "bschussek@gmail.com"
  11860. }
  11861. ],
  11862. "description": "Provides the functionality to export PHP variables for visualization",
  11863. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11864. "keywords": [
  11865. "export",
  11866. "exporter"
  11867. ],
  11868. "support": {
  11869. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11870. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11871. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  11872. },
  11873. "funding": [
  11874. {
  11875. "url": "https://github.com/sebastianbergmann",
  11876. "type": "github"
  11877. }
  11878. ],
  11879. "time": "2024-12-05T09:17:50+00:00"
  11880. },
  11881. {
  11882. "name": "sebastian/global-state",
  11883. "version": "7.0.2",
  11884. "source": {
  11885. "type": "git",
  11886. "url": "https://github.com/sebastianbergmann/global-state.git",
  11887. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  11888. },
  11889. "dist": {
  11890. "type": "zip",
  11891. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  11892. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  11893. "shasum": ""
  11894. },
  11895. "require": {
  11896. "php": ">=8.2",
  11897. "sebastian/object-reflector": "^4.0",
  11898. "sebastian/recursion-context": "^6.0"
  11899. },
  11900. "require-dev": {
  11901. "ext-dom": "*",
  11902. "phpunit/phpunit": "^11.0"
  11903. },
  11904. "type": "library",
  11905. "extra": {
  11906. "branch-alias": {
  11907. "dev-main": "7.0-dev"
  11908. }
  11909. },
  11910. "autoload": {
  11911. "classmap": [
  11912. "src/"
  11913. ]
  11914. },
  11915. "notification-url": "https://packagist.org/downloads/",
  11916. "license": [
  11917. "BSD-3-Clause"
  11918. ],
  11919. "authors": [
  11920. {
  11921. "name": "Sebastian Bergmann",
  11922. "email": "sebastian@phpunit.de"
  11923. }
  11924. ],
  11925. "description": "Snapshotting of global state",
  11926. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11927. "keywords": [
  11928. "global state"
  11929. ],
  11930. "support": {
  11931. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11932. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11933. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  11934. },
  11935. "funding": [
  11936. {
  11937. "url": "https://github.com/sebastianbergmann",
  11938. "type": "github"
  11939. }
  11940. ],
  11941. "time": "2024-07-03T04:57:36+00:00"
  11942. },
  11943. {
  11944. "name": "sebastian/lines-of-code",
  11945. "version": "3.0.1",
  11946. "source": {
  11947. "type": "git",
  11948. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11949. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  11950. },
  11951. "dist": {
  11952. "type": "zip",
  11953. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11954. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11955. "shasum": ""
  11956. },
  11957. "require": {
  11958. "nikic/php-parser": "^5.0",
  11959. "php": ">=8.2"
  11960. },
  11961. "require-dev": {
  11962. "phpunit/phpunit": "^11.0"
  11963. },
  11964. "type": "library",
  11965. "extra": {
  11966. "branch-alias": {
  11967. "dev-main": "3.0-dev"
  11968. }
  11969. },
  11970. "autoload": {
  11971. "classmap": [
  11972. "src/"
  11973. ]
  11974. },
  11975. "notification-url": "https://packagist.org/downloads/",
  11976. "license": [
  11977. "BSD-3-Clause"
  11978. ],
  11979. "authors": [
  11980. {
  11981. "name": "Sebastian Bergmann",
  11982. "email": "sebastian@phpunit.de",
  11983. "role": "lead"
  11984. }
  11985. ],
  11986. "description": "Library for counting the lines of code in PHP source code",
  11987. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11988. "support": {
  11989. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11990. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11991. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  11992. },
  11993. "funding": [
  11994. {
  11995. "url": "https://github.com/sebastianbergmann",
  11996. "type": "github"
  11997. }
  11998. ],
  11999. "time": "2024-07-03T04:58:38+00:00"
  12000. },
  12001. {
  12002. "name": "sebastian/object-enumerator",
  12003. "version": "6.0.1",
  12004. "source": {
  12005. "type": "git",
  12006. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12007. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12008. },
  12009. "dist": {
  12010. "type": "zip",
  12011. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12012. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12013. "shasum": ""
  12014. },
  12015. "require": {
  12016. "php": ">=8.2",
  12017. "sebastian/object-reflector": "^4.0",
  12018. "sebastian/recursion-context": "^6.0"
  12019. },
  12020. "require-dev": {
  12021. "phpunit/phpunit": "^11.0"
  12022. },
  12023. "type": "library",
  12024. "extra": {
  12025. "branch-alias": {
  12026. "dev-main": "6.0-dev"
  12027. }
  12028. },
  12029. "autoload": {
  12030. "classmap": [
  12031. "src/"
  12032. ]
  12033. },
  12034. "notification-url": "https://packagist.org/downloads/",
  12035. "license": [
  12036. "BSD-3-Clause"
  12037. ],
  12038. "authors": [
  12039. {
  12040. "name": "Sebastian Bergmann",
  12041. "email": "sebastian@phpunit.de"
  12042. }
  12043. ],
  12044. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12045. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12046. "support": {
  12047. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12048. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12049. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12050. },
  12051. "funding": [
  12052. {
  12053. "url": "https://github.com/sebastianbergmann",
  12054. "type": "github"
  12055. }
  12056. ],
  12057. "time": "2024-07-03T05:00:13+00:00"
  12058. },
  12059. {
  12060. "name": "sebastian/object-reflector",
  12061. "version": "4.0.1",
  12062. "source": {
  12063. "type": "git",
  12064. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12065. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12066. },
  12067. "dist": {
  12068. "type": "zip",
  12069. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12070. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12071. "shasum": ""
  12072. },
  12073. "require": {
  12074. "php": ">=8.2"
  12075. },
  12076. "require-dev": {
  12077. "phpunit/phpunit": "^11.0"
  12078. },
  12079. "type": "library",
  12080. "extra": {
  12081. "branch-alias": {
  12082. "dev-main": "4.0-dev"
  12083. }
  12084. },
  12085. "autoload": {
  12086. "classmap": [
  12087. "src/"
  12088. ]
  12089. },
  12090. "notification-url": "https://packagist.org/downloads/",
  12091. "license": [
  12092. "BSD-3-Clause"
  12093. ],
  12094. "authors": [
  12095. {
  12096. "name": "Sebastian Bergmann",
  12097. "email": "sebastian@phpunit.de"
  12098. }
  12099. ],
  12100. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12101. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12102. "support": {
  12103. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12104. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12105. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12106. },
  12107. "funding": [
  12108. {
  12109. "url": "https://github.com/sebastianbergmann",
  12110. "type": "github"
  12111. }
  12112. ],
  12113. "time": "2024-07-03T05:01:32+00:00"
  12114. },
  12115. {
  12116. "name": "sebastian/recursion-context",
  12117. "version": "6.0.2",
  12118. "source": {
  12119. "type": "git",
  12120. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12121. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12122. },
  12123. "dist": {
  12124. "type": "zip",
  12125. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12126. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12127. "shasum": ""
  12128. },
  12129. "require": {
  12130. "php": ">=8.2"
  12131. },
  12132. "require-dev": {
  12133. "phpunit/phpunit": "^11.0"
  12134. },
  12135. "type": "library",
  12136. "extra": {
  12137. "branch-alias": {
  12138. "dev-main": "6.0-dev"
  12139. }
  12140. },
  12141. "autoload": {
  12142. "classmap": [
  12143. "src/"
  12144. ]
  12145. },
  12146. "notification-url": "https://packagist.org/downloads/",
  12147. "license": [
  12148. "BSD-3-Clause"
  12149. ],
  12150. "authors": [
  12151. {
  12152. "name": "Sebastian Bergmann",
  12153. "email": "sebastian@phpunit.de"
  12154. },
  12155. {
  12156. "name": "Jeff Welch",
  12157. "email": "whatthejeff@gmail.com"
  12158. },
  12159. {
  12160. "name": "Adam Harvey",
  12161. "email": "aharvey@php.net"
  12162. }
  12163. ],
  12164. "description": "Provides functionality to recursively process PHP variables",
  12165. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12166. "support": {
  12167. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12168. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12169. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12170. },
  12171. "funding": [
  12172. {
  12173. "url": "https://github.com/sebastianbergmann",
  12174. "type": "github"
  12175. }
  12176. ],
  12177. "time": "2024-07-03T05:10:34+00:00"
  12178. },
  12179. {
  12180. "name": "sebastian/type",
  12181. "version": "5.1.0",
  12182. "source": {
  12183. "type": "git",
  12184. "url": "https://github.com/sebastianbergmann/type.git",
  12185. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  12186. },
  12187. "dist": {
  12188. "type": "zip",
  12189. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12190. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12191. "shasum": ""
  12192. },
  12193. "require": {
  12194. "php": ">=8.2"
  12195. },
  12196. "require-dev": {
  12197. "phpunit/phpunit": "^11.3"
  12198. },
  12199. "type": "library",
  12200. "extra": {
  12201. "branch-alias": {
  12202. "dev-main": "5.1-dev"
  12203. }
  12204. },
  12205. "autoload": {
  12206. "classmap": [
  12207. "src/"
  12208. ]
  12209. },
  12210. "notification-url": "https://packagist.org/downloads/",
  12211. "license": [
  12212. "BSD-3-Clause"
  12213. ],
  12214. "authors": [
  12215. {
  12216. "name": "Sebastian Bergmann",
  12217. "email": "sebastian@phpunit.de",
  12218. "role": "lead"
  12219. }
  12220. ],
  12221. "description": "Collection of value objects that represent the types of the PHP type system",
  12222. "homepage": "https://github.com/sebastianbergmann/type",
  12223. "support": {
  12224. "issues": "https://github.com/sebastianbergmann/type/issues",
  12225. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12226. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  12227. },
  12228. "funding": [
  12229. {
  12230. "url": "https://github.com/sebastianbergmann",
  12231. "type": "github"
  12232. }
  12233. ],
  12234. "time": "2024-09-17T13:12:04+00:00"
  12235. },
  12236. {
  12237. "name": "sebastian/version",
  12238. "version": "5.0.2",
  12239. "source": {
  12240. "type": "git",
  12241. "url": "https://github.com/sebastianbergmann/version.git",
  12242. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12243. },
  12244. "dist": {
  12245. "type": "zip",
  12246. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12247. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12248. "shasum": ""
  12249. },
  12250. "require": {
  12251. "php": ">=8.2"
  12252. },
  12253. "type": "library",
  12254. "extra": {
  12255. "branch-alias": {
  12256. "dev-main": "5.0-dev"
  12257. }
  12258. },
  12259. "autoload": {
  12260. "classmap": [
  12261. "src/"
  12262. ]
  12263. },
  12264. "notification-url": "https://packagist.org/downloads/",
  12265. "license": [
  12266. "BSD-3-Clause"
  12267. ],
  12268. "authors": [
  12269. {
  12270. "name": "Sebastian Bergmann",
  12271. "email": "sebastian@phpunit.de",
  12272. "role": "lead"
  12273. }
  12274. ],
  12275. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12276. "homepage": "https://github.com/sebastianbergmann/version",
  12277. "support": {
  12278. "issues": "https://github.com/sebastianbergmann/version/issues",
  12279. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12280. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12281. },
  12282. "funding": [
  12283. {
  12284. "url": "https://github.com/sebastianbergmann",
  12285. "type": "github"
  12286. }
  12287. ],
  12288. "time": "2024-10-09T05:16:32+00:00"
  12289. },
  12290. {
  12291. "name": "spatie/backtrace",
  12292. "version": "1.7.1",
  12293. "source": {
  12294. "type": "git",
  12295. "url": "https://github.com/spatie/backtrace.git",
  12296. "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
  12297. },
  12298. "dist": {
  12299. "type": "zip",
  12300. "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
  12301. "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
  12302. "shasum": ""
  12303. },
  12304. "require": {
  12305. "php": "^7.3 || ^8.0"
  12306. },
  12307. "require-dev": {
  12308. "ext-json": "*",
  12309. "laravel/serializable-closure": "^1.3 || ^2.0",
  12310. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12311. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12312. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12313. },
  12314. "type": "library",
  12315. "autoload": {
  12316. "psr-4": {
  12317. "Spatie\\Backtrace\\": "src"
  12318. }
  12319. },
  12320. "notification-url": "https://packagist.org/downloads/",
  12321. "license": [
  12322. "MIT"
  12323. ],
  12324. "authors": [
  12325. {
  12326. "name": "Freek Van de Herten",
  12327. "email": "freek@spatie.be",
  12328. "homepage": "https://spatie.be",
  12329. "role": "Developer"
  12330. }
  12331. ],
  12332. "description": "A better backtrace",
  12333. "homepage": "https://github.com/spatie/backtrace",
  12334. "keywords": [
  12335. "Backtrace",
  12336. "spatie"
  12337. ],
  12338. "support": {
  12339. "source": "https://github.com/spatie/backtrace/tree/1.7.1"
  12340. },
  12341. "funding": [
  12342. {
  12343. "url": "https://github.com/sponsors/spatie",
  12344. "type": "github"
  12345. },
  12346. {
  12347. "url": "https://spatie.be/open-source/support-us",
  12348. "type": "other"
  12349. }
  12350. ],
  12351. "time": "2024-12-02T13:28:15+00:00"
  12352. },
  12353. {
  12354. "name": "spatie/error-solutions",
  12355. "version": "1.1.3",
  12356. "source": {
  12357. "type": "git",
  12358. "url": "https://github.com/spatie/error-solutions.git",
  12359. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936"
  12360. },
  12361. "dist": {
  12362. "type": "zip",
  12363. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12364. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12365. "shasum": ""
  12366. },
  12367. "require": {
  12368. "php": "^8.0"
  12369. },
  12370. "require-dev": {
  12371. "illuminate/broadcasting": "^10.0|^11.0|^12.0",
  12372. "illuminate/cache": "^10.0|^11.0|^12.0",
  12373. "illuminate/support": "^10.0|^11.0|^12.0",
  12374. "livewire/livewire": "^2.11|^3.5.20",
  12375. "openai-php/client": "^0.10.1",
  12376. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12377. "pestphp/pest": "^2.20|^3.0",
  12378. "phpstan/phpstan": "^2.1",
  12379. "psr/simple-cache": "^3.0",
  12380. "psr/simple-cache-implementation": "^3.0",
  12381. "spatie/ray": "^1.28",
  12382. "symfony/cache": "^5.4|^6.0|^7.0",
  12383. "symfony/process": "^5.4|^6.0|^7.0",
  12384. "vlucas/phpdotenv": "^5.5"
  12385. },
  12386. "suggest": {
  12387. "openai-php/client": "Require get solutions from OpenAI",
  12388. "simple-cache-implementation": "To cache solutions from OpenAI"
  12389. },
  12390. "type": "library",
  12391. "autoload": {
  12392. "psr-4": {
  12393. "Spatie\\Ignition\\": "legacy/ignition",
  12394. "Spatie\\ErrorSolutions\\": "src",
  12395. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12396. }
  12397. },
  12398. "notification-url": "https://packagist.org/downloads/",
  12399. "license": [
  12400. "MIT"
  12401. ],
  12402. "authors": [
  12403. {
  12404. "name": "Ruben Van Assche",
  12405. "email": "ruben@spatie.be",
  12406. "role": "Developer"
  12407. }
  12408. ],
  12409. "description": "This is my package error-solutions",
  12410. "homepage": "https://github.com/spatie/error-solutions",
  12411. "keywords": [
  12412. "error-solutions",
  12413. "spatie"
  12414. ],
  12415. "support": {
  12416. "issues": "https://github.com/spatie/error-solutions/issues",
  12417. "source": "https://github.com/spatie/error-solutions/tree/1.1.3"
  12418. },
  12419. "funding": [
  12420. {
  12421. "url": "https://github.com/Spatie",
  12422. "type": "github"
  12423. }
  12424. ],
  12425. "time": "2025-02-14T12:29:50+00:00"
  12426. },
  12427. {
  12428. "name": "spatie/flare-client-php",
  12429. "version": "1.10.1",
  12430. "source": {
  12431. "type": "git",
  12432. "url": "https://github.com/spatie/flare-client-php.git",
  12433. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
  12434. },
  12435. "dist": {
  12436. "type": "zip",
  12437. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
  12438. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
  12439. "shasum": ""
  12440. },
  12441. "require": {
  12442. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
  12443. "php": "^8.0",
  12444. "spatie/backtrace": "^1.6.1",
  12445. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12446. "symfony/mime": "^5.2|^6.0|^7.0",
  12447. "symfony/process": "^5.2|^6.0|^7.0",
  12448. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12449. },
  12450. "require-dev": {
  12451. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12452. "pestphp/pest": "^1.20|^2.0",
  12453. "phpstan/extension-installer": "^1.1",
  12454. "phpstan/phpstan-deprecation-rules": "^1.0",
  12455. "phpstan/phpstan-phpunit": "^1.0",
  12456. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12457. },
  12458. "type": "library",
  12459. "extra": {
  12460. "branch-alias": {
  12461. "dev-main": "1.3.x-dev"
  12462. }
  12463. },
  12464. "autoload": {
  12465. "files": [
  12466. "src/helpers.php"
  12467. ],
  12468. "psr-4": {
  12469. "Spatie\\FlareClient\\": "src"
  12470. }
  12471. },
  12472. "notification-url": "https://packagist.org/downloads/",
  12473. "license": [
  12474. "MIT"
  12475. ],
  12476. "description": "Send PHP errors to Flare",
  12477. "homepage": "https://github.com/spatie/flare-client-php",
  12478. "keywords": [
  12479. "exception",
  12480. "flare",
  12481. "reporting",
  12482. "spatie"
  12483. ],
  12484. "support": {
  12485. "issues": "https://github.com/spatie/flare-client-php/issues",
  12486. "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
  12487. },
  12488. "funding": [
  12489. {
  12490. "url": "https://github.com/spatie",
  12491. "type": "github"
  12492. }
  12493. ],
  12494. "time": "2025-02-14T13:42:06+00:00"
  12495. },
  12496. {
  12497. "name": "spatie/ignition",
  12498. "version": "1.15.0",
  12499. "source": {
  12500. "type": "git",
  12501. "url": "https://github.com/spatie/ignition.git",
  12502. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  12503. },
  12504. "dist": {
  12505. "type": "zip",
  12506. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12507. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12508. "shasum": ""
  12509. },
  12510. "require": {
  12511. "ext-json": "*",
  12512. "ext-mbstring": "*",
  12513. "php": "^8.0",
  12514. "spatie/error-solutions": "^1.0",
  12515. "spatie/flare-client-php": "^1.7",
  12516. "symfony/console": "^5.4|^6.0|^7.0",
  12517. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12518. },
  12519. "require-dev": {
  12520. "illuminate/cache": "^9.52|^10.0|^11.0",
  12521. "mockery/mockery": "^1.4",
  12522. "pestphp/pest": "^1.20|^2.0",
  12523. "phpstan/extension-installer": "^1.1",
  12524. "phpstan/phpstan-deprecation-rules": "^1.0",
  12525. "phpstan/phpstan-phpunit": "^1.0",
  12526. "psr/simple-cache-implementation": "*",
  12527. "symfony/cache": "^5.4|^6.0|^7.0",
  12528. "symfony/process": "^5.4|^6.0|^7.0",
  12529. "vlucas/phpdotenv": "^5.5"
  12530. },
  12531. "suggest": {
  12532. "openai-php/client": "Require get solutions from OpenAI",
  12533. "simple-cache-implementation": "To cache solutions from OpenAI"
  12534. },
  12535. "type": "library",
  12536. "extra": {
  12537. "branch-alias": {
  12538. "dev-main": "1.5.x-dev"
  12539. }
  12540. },
  12541. "autoload": {
  12542. "psr-4": {
  12543. "Spatie\\Ignition\\": "src"
  12544. }
  12545. },
  12546. "notification-url": "https://packagist.org/downloads/",
  12547. "license": [
  12548. "MIT"
  12549. ],
  12550. "authors": [
  12551. {
  12552. "name": "Spatie",
  12553. "email": "info@spatie.be",
  12554. "role": "Developer"
  12555. }
  12556. ],
  12557. "description": "A beautiful error page for PHP applications.",
  12558. "homepage": "https://flareapp.io/ignition",
  12559. "keywords": [
  12560. "error",
  12561. "flare",
  12562. "laravel",
  12563. "page"
  12564. ],
  12565. "support": {
  12566. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12567. "forum": "https://twitter.com/flareappio",
  12568. "issues": "https://github.com/spatie/ignition/issues",
  12569. "source": "https://github.com/spatie/ignition"
  12570. },
  12571. "funding": [
  12572. {
  12573. "url": "https://github.com/spatie",
  12574. "type": "github"
  12575. }
  12576. ],
  12577. "time": "2024-06-12T14:55:22+00:00"
  12578. },
  12579. {
  12580. "name": "spatie/laravel-ignition",
  12581. "version": "2.9.0",
  12582. "source": {
  12583. "type": "git",
  12584. "url": "https://github.com/spatie/laravel-ignition.git",
  12585. "reference": "62042df15314b829d0f26e02108f559018e2aad0"
  12586. },
  12587. "dist": {
  12588. "type": "zip",
  12589. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/62042df15314b829d0f26e02108f559018e2aad0",
  12590. "reference": "62042df15314b829d0f26e02108f559018e2aad0",
  12591. "shasum": ""
  12592. },
  12593. "require": {
  12594. "ext-curl": "*",
  12595. "ext-json": "*",
  12596. "ext-mbstring": "*",
  12597. "illuminate/support": "^10.0|^11.0",
  12598. "php": "^8.1",
  12599. "spatie/ignition": "^1.15",
  12600. "symfony/console": "^6.2.3|^7.0",
  12601. "symfony/var-dumper": "^6.2.3|^7.0"
  12602. },
  12603. "require-dev": {
  12604. "livewire/livewire": "^2.11|^3.3.5",
  12605. "mockery/mockery": "^1.5.1",
  12606. "openai-php/client": "^0.8.1",
  12607. "orchestra/testbench": "8.22.3|^9.0",
  12608. "pestphp/pest": "^2.34",
  12609. "phpstan/extension-installer": "^1.3.1",
  12610. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  12611. "phpstan/phpstan-phpunit": "^1.3.16",
  12612. "vlucas/phpdotenv": "^5.5"
  12613. },
  12614. "suggest": {
  12615. "openai-php/client": "Require get solutions from OpenAI",
  12616. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12617. },
  12618. "type": "library",
  12619. "extra": {
  12620. "laravel": {
  12621. "aliases": {
  12622. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12623. },
  12624. "providers": [
  12625. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12626. ]
  12627. }
  12628. },
  12629. "autoload": {
  12630. "files": [
  12631. "src/helpers.php"
  12632. ],
  12633. "psr-4": {
  12634. "Spatie\\LaravelIgnition\\": "src"
  12635. }
  12636. },
  12637. "notification-url": "https://packagist.org/downloads/",
  12638. "license": [
  12639. "MIT"
  12640. ],
  12641. "authors": [
  12642. {
  12643. "name": "Spatie",
  12644. "email": "info@spatie.be",
  12645. "role": "Developer"
  12646. }
  12647. ],
  12648. "description": "A beautiful error page for Laravel applications.",
  12649. "homepage": "https://flareapp.io/ignition",
  12650. "keywords": [
  12651. "error",
  12652. "flare",
  12653. "laravel",
  12654. "page"
  12655. ],
  12656. "support": {
  12657. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12658. "forum": "https://twitter.com/flareappio",
  12659. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12660. "source": "https://github.com/spatie/laravel-ignition"
  12661. },
  12662. "funding": [
  12663. {
  12664. "url": "https://github.com/spatie",
  12665. "type": "github"
  12666. }
  12667. ],
  12668. "time": "2024-12-02T08:43:31+00:00"
  12669. },
  12670. {
  12671. "name": "spatie/laravel-ray",
  12672. "version": "1.39.1",
  12673. "source": {
  12674. "type": "git",
  12675. "url": "https://github.com/spatie/laravel-ray.git",
  12676. "reference": "0d890fa2cd2c0b6175cf54c56b9321d81047571d"
  12677. },
  12678. "dist": {
  12679. "type": "zip",
  12680. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/0d890fa2cd2c0b6175cf54c56b9321d81047571d",
  12681. "reference": "0d890fa2cd2c0b6175cf54c56b9321d81047571d",
  12682. "shasum": ""
  12683. },
  12684. "require": {
  12685. "composer-runtime-api": "^2.2",
  12686. "ext-json": "*",
  12687. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12688. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12689. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12690. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12691. "php": "^7.4 || ^8.0",
  12692. "spatie/backtrace": "^1.7.1",
  12693. "spatie/ray": "^1.41.3",
  12694. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12695. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12696. },
  12697. "require-dev": {
  12698. "guzzlehttp/guzzle": "^7.3",
  12699. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12700. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  12701. "pestphp/pest": "^1.22 || ^2.0 || ^3.0",
  12702. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12703. "phpunit/phpunit": "^9.3 || ^10.1 || ^11.0.10",
  12704. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12705. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12706. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12707. },
  12708. "type": "library",
  12709. "extra": {
  12710. "laravel": {
  12711. "providers": [
  12712. "Spatie\\LaravelRay\\RayServiceProvider"
  12713. ]
  12714. },
  12715. "branch-alias": {
  12716. "dev-main": "1.x-dev"
  12717. }
  12718. },
  12719. "autoload": {
  12720. "psr-4": {
  12721. "Spatie\\LaravelRay\\": "src"
  12722. }
  12723. },
  12724. "notification-url": "https://packagist.org/downloads/",
  12725. "license": [
  12726. "MIT"
  12727. ],
  12728. "authors": [
  12729. {
  12730. "name": "Freek Van der Herten",
  12731. "email": "freek@spatie.be",
  12732. "homepage": "https://spatie.be",
  12733. "role": "Developer"
  12734. }
  12735. ],
  12736. "description": "Easily debug Laravel apps",
  12737. "homepage": "https://github.com/spatie/laravel-ray",
  12738. "keywords": [
  12739. "laravel-ray",
  12740. "spatie"
  12741. ],
  12742. "support": {
  12743. "issues": "https://github.com/spatie/laravel-ray/issues",
  12744. "source": "https://github.com/spatie/laravel-ray/tree/1.39.1"
  12745. },
  12746. "funding": [
  12747. {
  12748. "url": "https://github.com/sponsors/spatie",
  12749. "type": "github"
  12750. },
  12751. {
  12752. "url": "https://spatie.be/open-source/support-us",
  12753. "type": "other"
  12754. }
  12755. ],
  12756. "time": "2025-02-05T08:16:15+00:00"
  12757. },
  12758. {
  12759. "name": "spatie/macroable",
  12760. "version": "2.0.0",
  12761. "source": {
  12762. "type": "git",
  12763. "url": "https://github.com/spatie/macroable.git",
  12764. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12765. },
  12766. "dist": {
  12767. "type": "zip",
  12768. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12769. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12770. "shasum": ""
  12771. },
  12772. "require": {
  12773. "php": "^8.0"
  12774. },
  12775. "require-dev": {
  12776. "phpunit/phpunit": "^8.0|^9.3"
  12777. },
  12778. "type": "library",
  12779. "autoload": {
  12780. "psr-4": {
  12781. "Spatie\\Macroable\\": "src"
  12782. }
  12783. },
  12784. "notification-url": "https://packagist.org/downloads/",
  12785. "license": [
  12786. "MIT"
  12787. ],
  12788. "authors": [
  12789. {
  12790. "name": "Freek Van der Herten",
  12791. "email": "freek@spatie.be",
  12792. "homepage": "https://spatie.be",
  12793. "role": "Developer"
  12794. }
  12795. ],
  12796. "description": "A trait to dynamically add methods to a class",
  12797. "homepage": "https://github.com/spatie/macroable",
  12798. "keywords": [
  12799. "macroable",
  12800. "spatie"
  12801. ],
  12802. "support": {
  12803. "issues": "https://github.com/spatie/macroable/issues",
  12804. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12805. },
  12806. "time": "2021-03-26T22:39:02+00:00"
  12807. },
  12808. {
  12809. "name": "spatie/ray",
  12810. "version": "1.41.5",
  12811. "source": {
  12812. "type": "git",
  12813. "url": "https://github.com/spatie/ray.git",
  12814. "reference": "9d078f04ffa32ad543a20716844ec343fdd7d856"
  12815. },
  12816. "dist": {
  12817. "type": "zip",
  12818. "url": "https://api.github.com/repos/spatie/ray/zipball/9d078f04ffa32ad543a20716844ec343fdd7d856",
  12819. "reference": "9d078f04ffa32ad543a20716844ec343fdd7d856",
  12820. "shasum": ""
  12821. },
  12822. "require": {
  12823. "ext-curl": "*",
  12824. "ext-json": "*",
  12825. "php": "^7.4 || ^8.0",
  12826. "ramsey/uuid": "^3.0 || ^4.1",
  12827. "spatie/backtrace": "^1.7.1",
  12828. "spatie/macroable": "^1.0 || ^2.0",
  12829. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12830. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12831. },
  12832. "require-dev": {
  12833. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12834. "nesbot/carbon": "^2.63 || ^3.8.4",
  12835. "pestphp/pest": "^1.22",
  12836. "phpstan/phpstan": "^1.10.57 || ^2.0.3",
  12837. "phpunit/phpunit": "^9.5",
  12838. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12839. "spatie/phpunit-snapshot-assertions": "^4.2",
  12840. "spatie/test-time": "^1.2"
  12841. },
  12842. "bin": [
  12843. "bin/remove-ray.sh"
  12844. ],
  12845. "type": "library",
  12846. "extra": {
  12847. "branch-alias": {
  12848. "dev-main": "1.x-dev"
  12849. }
  12850. },
  12851. "autoload": {
  12852. "files": [
  12853. "src/helpers.php"
  12854. ],
  12855. "psr-4": {
  12856. "Spatie\\Ray\\": "src"
  12857. }
  12858. },
  12859. "notification-url": "https://packagist.org/downloads/",
  12860. "license": [
  12861. "MIT"
  12862. ],
  12863. "authors": [
  12864. {
  12865. "name": "Freek Van der Herten",
  12866. "email": "freek@spatie.be",
  12867. "homepage": "https://spatie.be",
  12868. "role": "Developer"
  12869. }
  12870. ],
  12871. "description": "Debug with Ray to fix problems faster",
  12872. "homepage": "https://github.com/spatie/ray",
  12873. "keywords": [
  12874. "ray",
  12875. "spatie"
  12876. ],
  12877. "support": {
  12878. "issues": "https://github.com/spatie/ray/issues",
  12879. "source": "https://github.com/spatie/ray/tree/1.41.5"
  12880. },
  12881. "funding": [
  12882. {
  12883. "url": "https://github.com/sponsors/spatie",
  12884. "type": "github"
  12885. },
  12886. {
  12887. "url": "https://spatie.be/open-source/support-us",
  12888. "type": "other"
  12889. }
  12890. ],
  12891. "time": "2025-02-14T12:51:43+00:00"
  12892. },
  12893. {
  12894. "name": "staabm/side-effects-detector",
  12895. "version": "1.0.5",
  12896. "source": {
  12897. "type": "git",
  12898. "url": "https://github.com/staabm/side-effects-detector.git",
  12899. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  12900. },
  12901. "dist": {
  12902. "type": "zip",
  12903. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  12904. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  12905. "shasum": ""
  12906. },
  12907. "require": {
  12908. "ext-tokenizer": "*",
  12909. "php": "^7.4 || ^8.0"
  12910. },
  12911. "require-dev": {
  12912. "phpstan/extension-installer": "^1.4.3",
  12913. "phpstan/phpstan": "^1.12.6",
  12914. "phpunit/phpunit": "^9.6.21",
  12915. "symfony/var-dumper": "^5.4.43",
  12916. "tomasvotruba/type-coverage": "1.0.0",
  12917. "tomasvotruba/unused-public": "1.0.0"
  12918. },
  12919. "type": "library",
  12920. "autoload": {
  12921. "classmap": [
  12922. "lib/"
  12923. ]
  12924. },
  12925. "notification-url": "https://packagist.org/downloads/",
  12926. "license": [
  12927. "MIT"
  12928. ],
  12929. "description": "A static analysis tool to detect side effects in PHP code",
  12930. "keywords": [
  12931. "static analysis"
  12932. ],
  12933. "support": {
  12934. "issues": "https://github.com/staabm/side-effects-detector/issues",
  12935. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  12936. },
  12937. "funding": [
  12938. {
  12939. "url": "https://github.com/staabm",
  12940. "type": "github"
  12941. }
  12942. ],
  12943. "time": "2024-10-20T05:08:20+00:00"
  12944. },
  12945. {
  12946. "name": "symfony/polyfill-iconv",
  12947. "version": "v1.31.0",
  12948. "source": {
  12949. "type": "git",
  12950. "url": "https://github.com/symfony/polyfill-iconv.git",
  12951. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  12952. },
  12953. "dist": {
  12954. "type": "zip",
  12955. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  12956. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  12957. "shasum": ""
  12958. },
  12959. "require": {
  12960. "php": ">=7.2"
  12961. },
  12962. "provide": {
  12963. "ext-iconv": "*"
  12964. },
  12965. "suggest": {
  12966. "ext-iconv": "For best performance"
  12967. },
  12968. "type": "library",
  12969. "extra": {
  12970. "thanks": {
  12971. "url": "https://github.com/symfony/polyfill",
  12972. "name": "symfony/polyfill"
  12973. }
  12974. },
  12975. "autoload": {
  12976. "files": [
  12977. "bootstrap.php"
  12978. ],
  12979. "psr-4": {
  12980. "Symfony\\Polyfill\\Iconv\\": ""
  12981. }
  12982. },
  12983. "notification-url": "https://packagist.org/downloads/",
  12984. "license": [
  12985. "MIT"
  12986. ],
  12987. "authors": [
  12988. {
  12989. "name": "Nicolas Grekas",
  12990. "email": "p@tchwork.com"
  12991. },
  12992. {
  12993. "name": "Symfony Community",
  12994. "homepage": "https://symfony.com/contributors"
  12995. }
  12996. ],
  12997. "description": "Symfony polyfill for the Iconv extension",
  12998. "homepage": "https://symfony.com",
  12999. "keywords": [
  13000. "compatibility",
  13001. "iconv",
  13002. "polyfill",
  13003. "portable",
  13004. "shim"
  13005. ],
  13006. "support": {
  13007. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  13008. },
  13009. "funding": [
  13010. {
  13011. "url": "https://symfony.com/sponsor",
  13012. "type": "custom"
  13013. },
  13014. {
  13015. "url": "https://github.com/fabpot",
  13016. "type": "github"
  13017. },
  13018. {
  13019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13020. "type": "tidelift"
  13021. }
  13022. ],
  13023. "time": "2024-09-09T11:45:10+00:00"
  13024. },
  13025. {
  13026. "name": "symfony/stopwatch",
  13027. "version": "v7.2.2",
  13028. "source": {
  13029. "type": "git",
  13030. "url": "https://github.com/symfony/stopwatch.git",
  13031. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df"
  13032. },
  13033. "dist": {
  13034. "type": "zip",
  13035. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  13036. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  13037. "shasum": ""
  13038. },
  13039. "require": {
  13040. "php": ">=8.2",
  13041. "symfony/service-contracts": "^2.5|^3"
  13042. },
  13043. "type": "library",
  13044. "autoload": {
  13045. "psr-4": {
  13046. "Symfony\\Component\\Stopwatch\\": ""
  13047. },
  13048. "exclude-from-classmap": [
  13049. "/Tests/"
  13050. ]
  13051. },
  13052. "notification-url": "https://packagist.org/downloads/",
  13053. "license": [
  13054. "MIT"
  13055. ],
  13056. "authors": [
  13057. {
  13058. "name": "Fabien Potencier",
  13059. "email": "fabien@symfony.com"
  13060. },
  13061. {
  13062. "name": "Symfony Community",
  13063. "homepage": "https://symfony.com/contributors"
  13064. }
  13065. ],
  13066. "description": "Provides a way to profile code",
  13067. "homepage": "https://symfony.com",
  13068. "support": {
  13069. "source": "https://github.com/symfony/stopwatch/tree/v7.2.2"
  13070. },
  13071. "funding": [
  13072. {
  13073. "url": "https://symfony.com/sponsor",
  13074. "type": "custom"
  13075. },
  13076. {
  13077. "url": "https://github.com/fabpot",
  13078. "type": "github"
  13079. },
  13080. {
  13081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13082. "type": "tidelift"
  13083. }
  13084. ],
  13085. "time": "2024-12-18T14:28:33+00:00"
  13086. },
  13087. {
  13088. "name": "symfony/yaml",
  13089. "version": "v7.2.3",
  13090. "source": {
  13091. "type": "git",
  13092. "url": "https://github.com/symfony/yaml.git",
  13093. "reference": "ac238f173df0c9c1120f862d0f599e17535a87ec"
  13094. },
  13095. "dist": {
  13096. "type": "zip",
  13097. "url": "https://api.github.com/repos/symfony/yaml/zipball/ac238f173df0c9c1120f862d0f599e17535a87ec",
  13098. "reference": "ac238f173df0c9c1120f862d0f599e17535a87ec",
  13099. "shasum": ""
  13100. },
  13101. "require": {
  13102. "php": ">=8.2",
  13103. "symfony/deprecation-contracts": "^2.5|^3.0",
  13104. "symfony/polyfill-ctype": "^1.8"
  13105. },
  13106. "conflict": {
  13107. "symfony/console": "<6.4"
  13108. },
  13109. "require-dev": {
  13110. "symfony/console": "^6.4|^7.0"
  13111. },
  13112. "bin": [
  13113. "Resources/bin/yaml-lint"
  13114. ],
  13115. "type": "library",
  13116. "autoload": {
  13117. "psr-4": {
  13118. "Symfony\\Component\\Yaml\\": ""
  13119. },
  13120. "exclude-from-classmap": [
  13121. "/Tests/"
  13122. ]
  13123. },
  13124. "notification-url": "https://packagist.org/downloads/",
  13125. "license": [
  13126. "MIT"
  13127. ],
  13128. "authors": [
  13129. {
  13130. "name": "Fabien Potencier",
  13131. "email": "fabien@symfony.com"
  13132. },
  13133. {
  13134. "name": "Symfony Community",
  13135. "homepage": "https://symfony.com/contributors"
  13136. }
  13137. ],
  13138. "description": "Loads and dumps YAML files",
  13139. "homepage": "https://symfony.com",
  13140. "support": {
  13141. "source": "https://github.com/symfony/yaml/tree/v7.2.3"
  13142. },
  13143. "funding": [
  13144. {
  13145. "url": "https://symfony.com/sponsor",
  13146. "type": "custom"
  13147. },
  13148. {
  13149. "url": "https://github.com/fabpot",
  13150. "type": "github"
  13151. },
  13152. {
  13153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13154. "type": "tidelift"
  13155. }
  13156. ],
  13157. "time": "2025-01-07T12:55:42+00:00"
  13158. },
  13159. {
  13160. "name": "ta-tikoma/phpunit-architecture-test",
  13161. "version": "0.8.4",
  13162. "source": {
  13163. "type": "git",
  13164. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13165. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13166. },
  13167. "dist": {
  13168. "type": "zip",
  13169. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13170. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13171. "shasum": ""
  13172. },
  13173. "require": {
  13174. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13175. "php": "^8.1.0",
  13176. "phpdocumentor/reflection-docblock": "^5.3.0",
  13177. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13178. "symfony/finder": "^6.4.0 || ^7.0.0"
  13179. },
  13180. "require-dev": {
  13181. "laravel/pint": "^1.13.7",
  13182. "phpstan/phpstan": "^1.10.52"
  13183. },
  13184. "type": "library",
  13185. "autoload": {
  13186. "psr-4": {
  13187. "PHPUnit\\Architecture\\": "src/"
  13188. }
  13189. },
  13190. "notification-url": "https://packagist.org/downloads/",
  13191. "license": [
  13192. "MIT"
  13193. ],
  13194. "authors": [
  13195. {
  13196. "name": "Ni Shi",
  13197. "email": "futik0ma011@gmail.com"
  13198. },
  13199. {
  13200. "name": "Nuno Maduro",
  13201. "email": "enunomaduro@gmail.com"
  13202. }
  13203. ],
  13204. "description": "Methods for testing application architecture",
  13205. "keywords": [
  13206. "architecture",
  13207. "phpunit",
  13208. "stucture",
  13209. "test",
  13210. "testing"
  13211. ],
  13212. "support": {
  13213. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13214. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13215. },
  13216. "time": "2024-01-05T14:10:56+00:00"
  13217. },
  13218. {
  13219. "name": "theseer/tokenizer",
  13220. "version": "1.2.3",
  13221. "source": {
  13222. "type": "git",
  13223. "url": "https://github.com/theseer/tokenizer.git",
  13224. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13225. },
  13226. "dist": {
  13227. "type": "zip",
  13228. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13229. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13230. "shasum": ""
  13231. },
  13232. "require": {
  13233. "ext-dom": "*",
  13234. "ext-tokenizer": "*",
  13235. "ext-xmlwriter": "*",
  13236. "php": "^7.2 || ^8.0"
  13237. },
  13238. "type": "library",
  13239. "autoload": {
  13240. "classmap": [
  13241. "src/"
  13242. ]
  13243. },
  13244. "notification-url": "https://packagist.org/downloads/",
  13245. "license": [
  13246. "BSD-3-Clause"
  13247. ],
  13248. "authors": [
  13249. {
  13250. "name": "Arne Blankerts",
  13251. "email": "arne@blankerts.de",
  13252. "role": "Developer"
  13253. }
  13254. ],
  13255. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13256. "support": {
  13257. "issues": "https://github.com/theseer/tokenizer/issues",
  13258. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13259. },
  13260. "funding": [
  13261. {
  13262. "url": "https://github.com/theseer",
  13263. "type": "github"
  13264. }
  13265. ],
  13266. "time": "2024-03-03T12:36:25+00:00"
  13267. },
  13268. {
  13269. "name": "zbateson/mail-mime-parser",
  13270. "version": "3.0.3",
  13271. "source": {
  13272. "type": "git",
  13273. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13274. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  13275. },
  13276. "dist": {
  13277. "type": "zip",
  13278. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  13279. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  13280. "shasum": ""
  13281. },
  13282. "require": {
  13283. "guzzlehttp/psr7": "^2.5",
  13284. "php": ">=8.0",
  13285. "php-di/php-di": "^6.0|^7.0",
  13286. "psr/log": "^1|^2|^3",
  13287. "zbateson/mb-wrapper": "^2.0",
  13288. "zbateson/stream-decorators": "^2.1"
  13289. },
  13290. "require-dev": {
  13291. "friendsofphp/php-cs-fixer": "*",
  13292. "monolog/monolog": "^2|^3",
  13293. "phpstan/phpstan": "*",
  13294. "phpunit/phpunit": "^9.6"
  13295. },
  13296. "suggest": {
  13297. "ext-iconv": "For best support/performance",
  13298. "ext-mbstring": "For best support/performance"
  13299. },
  13300. "type": "library",
  13301. "autoload": {
  13302. "psr-4": {
  13303. "ZBateson\\MailMimeParser\\": "src/"
  13304. }
  13305. },
  13306. "notification-url": "https://packagist.org/downloads/",
  13307. "license": [
  13308. "BSD-2-Clause"
  13309. ],
  13310. "authors": [
  13311. {
  13312. "name": "Zaahid Bateson"
  13313. },
  13314. {
  13315. "name": "Contributors",
  13316. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13317. }
  13318. ],
  13319. "description": "MIME email message parser",
  13320. "homepage": "https://mail-mime-parser.org",
  13321. "keywords": [
  13322. "MimeMailParser",
  13323. "email",
  13324. "mail",
  13325. "mailparse",
  13326. "mime",
  13327. "mimeparse",
  13328. "parser",
  13329. "php-imap"
  13330. ],
  13331. "support": {
  13332. "docs": "https://mail-mime-parser.org/#usage-guide",
  13333. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13334. "source": "https://github.com/zbateson/mail-mime-parser"
  13335. },
  13336. "funding": [
  13337. {
  13338. "url": "https://github.com/zbateson",
  13339. "type": "github"
  13340. }
  13341. ],
  13342. "time": "2024-08-10T18:44:09+00:00"
  13343. },
  13344. {
  13345. "name": "zbateson/mb-wrapper",
  13346. "version": "2.0.1",
  13347. "source": {
  13348. "type": "git",
  13349. "url": "https://github.com/zbateson/mb-wrapper.git",
  13350. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff"
  13351. },
  13352. "dist": {
  13353. "type": "zip",
  13354. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13355. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13356. "shasum": ""
  13357. },
  13358. "require": {
  13359. "php": ">=8.0",
  13360. "symfony/polyfill-iconv": "^1.9",
  13361. "symfony/polyfill-mbstring": "^1.9"
  13362. },
  13363. "require-dev": {
  13364. "friendsofphp/php-cs-fixer": "*",
  13365. "phpstan/phpstan": "*",
  13366. "phpunit/phpunit": "^9.6|^10.0"
  13367. },
  13368. "suggest": {
  13369. "ext-iconv": "For best support/performance",
  13370. "ext-mbstring": "For best support/performance"
  13371. },
  13372. "type": "library",
  13373. "autoload": {
  13374. "psr-4": {
  13375. "ZBateson\\MbWrapper\\": "src/"
  13376. }
  13377. },
  13378. "notification-url": "https://packagist.org/downloads/",
  13379. "license": [
  13380. "BSD-2-Clause"
  13381. ],
  13382. "authors": [
  13383. {
  13384. "name": "Zaahid Bateson"
  13385. }
  13386. ],
  13387. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13388. "keywords": [
  13389. "charset",
  13390. "encoding",
  13391. "http",
  13392. "iconv",
  13393. "mail",
  13394. "mb",
  13395. "mb_convert_encoding",
  13396. "mbstring",
  13397. "mime",
  13398. "multibyte",
  13399. "string"
  13400. ],
  13401. "support": {
  13402. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13403. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.1"
  13404. },
  13405. "funding": [
  13406. {
  13407. "url": "https://github.com/zbateson",
  13408. "type": "github"
  13409. }
  13410. ],
  13411. "time": "2024-12-20T22:05:33+00:00"
  13412. },
  13413. {
  13414. "name": "zbateson/stream-decorators",
  13415. "version": "2.1.1",
  13416. "source": {
  13417. "type": "git",
  13418. "url": "https://github.com/zbateson/stream-decorators.git",
  13419. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  13420. },
  13421. "dist": {
  13422. "type": "zip",
  13423. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13424. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13425. "shasum": ""
  13426. },
  13427. "require": {
  13428. "guzzlehttp/psr7": "^2.5",
  13429. "php": ">=8.0",
  13430. "zbateson/mb-wrapper": "^2.0"
  13431. },
  13432. "require-dev": {
  13433. "friendsofphp/php-cs-fixer": "*",
  13434. "phpstan/phpstan": "*",
  13435. "phpunit/phpunit": "^9.6|^10.0"
  13436. },
  13437. "type": "library",
  13438. "autoload": {
  13439. "psr-4": {
  13440. "ZBateson\\StreamDecorators\\": "src/"
  13441. }
  13442. },
  13443. "notification-url": "https://packagist.org/downloads/",
  13444. "license": [
  13445. "BSD-2-Clause"
  13446. ],
  13447. "authors": [
  13448. {
  13449. "name": "Zaahid Bateson"
  13450. }
  13451. ],
  13452. "description": "PHP psr7 stream decorators for mime message part streams",
  13453. "keywords": [
  13454. "base64",
  13455. "charset",
  13456. "decorators",
  13457. "mail",
  13458. "mime",
  13459. "psr7",
  13460. "quoted-printable",
  13461. "stream",
  13462. "uuencode"
  13463. ],
  13464. "support": {
  13465. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13466. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  13467. },
  13468. "funding": [
  13469. {
  13470. "url": "https://github.com/zbateson",
  13471. "type": "github"
  13472. }
  13473. ],
  13474. "time": "2024-04-29T21:42:39+00:00"
  13475. }
  13476. ],
  13477. "aliases": [],
  13478. "minimum-stability": "stable",
  13479. "stability-flags": {},
  13480. "prefer-stable": true,
  13481. "prefer-lowest": false,
  13482. "platform": {
  13483. "php": "^8.2",
  13484. "ext-bcmath": "*",
  13485. "ext-intl": "*"
  13486. },
  13487. "platform-dev": {},
  13488. "plugin-api-version": "2.6.0"
  13489. }