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 482KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396
  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": "6f7204f976352f049caf598df4454ace",
  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.0.6",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "d45c96f2a1baff0b1579513e4ef176b59322b8bb"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/d45c96f2a1baff0b1579513e4ef176b59322b8bb",
  89. "reference": "d45c96f2a1baff0b1579513e4ef176b59322b8bb",
  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.0.6"
  154. },
  155. "time": "2024-11-13T23:20:24+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.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  232. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  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. "providers": [
  260. "Wallo\\Transmatic\\TransmaticServiceProvider"
  261. ],
  262. "aliases": {
  263. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  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.0"
  300. },
  301. "time": "2024-03-22T21:31:50+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.2.26",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "756c1232ff0d02321fd90f4fe3c221d6a7b8d697"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/756c1232ff0d02321fd90f4fe3c221d6a7b8d697",
  314. "reference": "756c1232ff0d02321fd90f4fe3c221d6a7b8d697",
  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": "^1.10",
  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.26"
  366. },
  367. "time": "2024-11-16T12:29:47+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.331.0",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "0f8b3f63ba7b296afedcb3e6a43ce140831b9400"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/0f8b3f63ba7b296afedcb3e6a43ce140831b9400",
  509. "reference": "0f8b3f63ba7b296afedcb3e6a43ce140831b9400",
  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": "^6.5.8 || ^7.4.5",
  518. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  519. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  520. "mtdowling/jmespath.php": "^2.6",
  521. "php": ">=7.2.5",
  522. "psr/http-message": "^1.0 || ^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": "^1.10.22",
  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. "nette/neon": "^2.3",
  536. "paragonie/random_compat": ">= 2",
  537. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  538. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  539. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  540. "sebastian/comparator": "^1.2.3 || ^4.0",
  541. "yoast/phpunit-polyfills": "^1.0"
  542. },
  543. "suggest": {
  544. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  545. "doctrine/cache": "To use the DoctrineCacheAdapter",
  546. "ext-curl": "To send requests using cURL",
  547. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  548. "ext-sockets": "To use client-side monitoring"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "3.0-dev"
  554. }
  555. },
  556. "autoload": {
  557. "files": [
  558. "src/functions.php"
  559. ],
  560. "psr-4": {
  561. "Aws\\": "src/"
  562. },
  563. "exclude-from-classmap": [
  564. "src/data/"
  565. ]
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "Apache-2.0"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Amazon Web Services",
  574. "homepage": "http://aws.amazon.com"
  575. }
  576. ],
  577. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  578. "homepage": "http://aws.amazon.com/sdkforphp",
  579. "keywords": [
  580. "amazon",
  581. "aws",
  582. "cloud",
  583. "dynamodb",
  584. "ec2",
  585. "glacier",
  586. "s3",
  587. "sdk"
  588. ],
  589. "support": {
  590. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  591. "issues": "https://github.com/aws/aws-sdk-php/issues",
  592. "source": "https://github.com/aws/aws-sdk-php/tree/3.331.0"
  593. },
  594. "time": "2024-11-27T19:12:58+00:00"
  595. },
  596. {
  597. "name": "aws/aws-sdk-php-laravel",
  598. "version": "3.9.0",
  599. "source": {
  600. "type": "git",
  601. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  602. "reference": "11cb363873bd77a91b262936936abfa6a2122d53"
  603. },
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/11cb363873bd77a91b262936936abfa6a2122d53",
  607. "reference": "11cb363873bd77a91b262936936abfa6a2122d53",
  608. "shasum": ""
  609. },
  610. "require": {
  611. "aws/aws-sdk-php": "^3.279.0",
  612. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
  613. "php": ">=7.2.5"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "^8.0 || ^9.0",
  617. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  618. "yoast/phpunit-polyfills": "^1.0"
  619. },
  620. "suggest": {
  621. "laravel/framework": "To test the Laravel bindings",
  622. "laravel/lumen-framework": "To test the Lumen bindings"
  623. },
  624. "type": "library",
  625. "extra": {
  626. "laravel": {
  627. "providers": [
  628. "Aws\\Laravel\\AwsServiceProvider"
  629. ],
  630. "aliases": {
  631. "AWS": "Aws\\Laravel\\AwsFacade"
  632. }
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Aws\\Laravel\\": "src/"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "Apache-2.0"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Amazon Web Services",
  647. "homepage": "http://aws.amazon.com"
  648. }
  649. ],
  650. "description": "A simple Laravel 6/7/8/9/10/11 service provider for including the AWS SDK for PHP.",
  651. "homepage": "https://aws.amazon.com/sdk-for-php/",
  652. "keywords": [
  653. "amazon",
  654. "aws",
  655. "dynamodb",
  656. "ec2",
  657. "laravel",
  658. "laravel 10",
  659. "laravel 11",
  660. "laravel 6",
  661. "laravel 7",
  662. "laravel 8",
  663. "laravel 9",
  664. "s3",
  665. "sdk"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  669. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.9.0"
  670. },
  671. "time": "2024-03-18T17:43:45+00:00"
  672. },
  673. {
  674. "name": "barryvdh/laravel-snappy",
  675. "version": "v1.0.3",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/barryvdh/laravel-snappy.git",
  679. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  684. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "illuminate/filesystem": "^9|^10|^11.0",
  689. "illuminate/support": "^9|^10|^11.0",
  690. "knplabs/knp-snappy": "^1.4.4",
  691. "php": ">=7.2"
  692. },
  693. "require-dev": {
  694. "orchestra/testbench": "^7|^8|^9.0"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "branch-alias": {
  699. "dev-master": "1.0-dev"
  700. },
  701. "laravel": {
  702. "providers": [
  703. "Barryvdh\\Snappy\\ServiceProvider"
  704. ],
  705. "aliases": {
  706. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  707. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  708. }
  709. }
  710. },
  711. "autoload": {
  712. "psr-4": {
  713. "Barryvdh\\Snappy\\": "src/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Barry vd. Heuvel",
  723. "email": "barryvdh@gmail.com"
  724. }
  725. ],
  726. "description": "Snappy PDF/Image for Laravel",
  727. "keywords": [
  728. "image",
  729. "laravel",
  730. "pdf",
  731. "snappy",
  732. "wkhtmltoimage",
  733. "wkhtmltopdf"
  734. ],
  735. "support": {
  736. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  737. "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.3"
  738. },
  739. "funding": [
  740. {
  741. "url": "https://fruitcake.nl",
  742. "type": "custom"
  743. },
  744. {
  745. "url": "https://github.com/barryvdh",
  746. "type": "github"
  747. }
  748. ],
  749. "time": "2024-03-09T19:20:39+00:00"
  750. },
  751. {
  752. "name": "blade-ui-kit/blade-heroicons",
  753. "version": "2.5.0",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  757. "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/4ed3ed08e9ac192d0d126b2f12711d6fb6576a48",
  762. "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "blade-ui-kit/blade-icons": "^1.6",
  767. "illuminate/support": "^9.0|^10.0|^11.0",
  768. "php": "^8.0"
  769. },
  770. "require-dev": {
  771. "orchestra/testbench": "^7.0|^8.0|^9.0",
  772. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  773. },
  774. "type": "library",
  775. "extra": {
  776. "laravel": {
  777. "providers": [
  778. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  779. ]
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "BladeUI\\Heroicons\\": "src"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Dries Vints",
  794. "homepage": "https://driesvints.com"
  795. }
  796. ],
  797. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  798. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  799. "keywords": [
  800. "Heroicons",
  801. "blade",
  802. "laravel"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  806. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.5.0"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://github.com/sponsors/driesvints",
  811. "type": "github"
  812. },
  813. {
  814. "url": "https://www.paypal.com/paypalme/driesvints",
  815. "type": "paypal"
  816. }
  817. ],
  818. "time": "2024-11-18T19:59:07+00:00"
  819. },
  820. {
  821. "name": "blade-ui-kit/blade-icons",
  822. "version": "1.7.2",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  826. "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/75a54a3f5a2810fcf6574ab23e91b6cc229a1b53",
  831. "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  836. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  837. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  838. "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
  839. "php": "^7.4|^8.0",
  840. "symfony/console": "^5.3|^6.0|^7.0",
  841. "symfony/finder": "^5.3|^6.0|^7.0"
  842. },
  843. "require-dev": {
  844. "mockery/mockery": "^1.5.1",
  845. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  846. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  847. },
  848. "bin": [
  849. "bin/blade-icons-generate"
  850. ],
  851. "type": "library",
  852. "extra": {
  853. "laravel": {
  854. "providers": [
  855. "BladeUI\\Icons\\BladeIconsServiceProvider"
  856. ]
  857. }
  858. },
  859. "autoload": {
  860. "files": [
  861. "src/helpers.php"
  862. ],
  863. "psr-4": {
  864. "BladeUI\\Icons\\": "src"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Dries Vints",
  874. "homepage": "https://driesvints.com"
  875. }
  876. ],
  877. "description": "A package to easily make use of icons in your Laravel Blade views.",
  878. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  879. "keywords": [
  880. "blade",
  881. "icons",
  882. "laravel",
  883. "svg"
  884. ],
  885. "support": {
  886. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  887. "source": "https://github.com/blade-ui-kit/blade-icons"
  888. },
  889. "funding": [
  890. {
  891. "url": "https://github.com/sponsors/driesvints",
  892. "type": "github"
  893. },
  894. {
  895. "url": "https://www.paypal.com/paypalme/driesvints",
  896. "type": "paypal"
  897. }
  898. ],
  899. "time": "2024-10-17T17:38:00+00:00"
  900. },
  901. {
  902. "name": "brick/math",
  903. "version": "0.12.1",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/brick/math.git",
  907. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  912. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "^8.1"
  917. },
  918. "require-dev": {
  919. "php-coveralls/php-coveralls": "^2.2",
  920. "phpunit/phpunit": "^10.1",
  921. "vimeo/psalm": "5.16.0"
  922. },
  923. "type": "library",
  924. "autoload": {
  925. "psr-4": {
  926. "Brick\\Math\\": "src/"
  927. }
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "MIT"
  932. ],
  933. "description": "Arbitrary-precision arithmetic library",
  934. "keywords": [
  935. "Arbitrary-precision",
  936. "BigInteger",
  937. "BigRational",
  938. "arithmetic",
  939. "bigdecimal",
  940. "bignum",
  941. "bignumber",
  942. "brick",
  943. "decimal",
  944. "integer",
  945. "math",
  946. "mathematics",
  947. "rational"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/brick/math/issues",
  951. "source": "https://github.com/brick/math/tree/0.12.1"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://github.com/BenMorel",
  956. "type": "github"
  957. }
  958. ],
  959. "time": "2023-11-29T23:19:16+00:00"
  960. },
  961. {
  962. "name": "carbonphp/carbon-doctrine-types",
  963. "version": "3.2.0",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  967. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  972. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "php": "^8.1"
  977. },
  978. "conflict": {
  979. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  980. },
  981. "require-dev": {
  982. "doctrine/dbal": "^4.0.0",
  983. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  984. "phpunit/phpunit": "^10.3"
  985. },
  986. "type": "library",
  987. "autoload": {
  988. "psr-4": {
  989. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "KyleKatarn",
  999. "email": "kylekatarnls@gmail.com"
  1000. }
  1001. ],
  1002. "description": "Types to use Carbon in Doctrine",
  1003. "keywords": [
  1004. "carbon",
  1005. "date",
  1006. "datetime",
  1007. "doctrine",
  1008. "time"
  1009. ],
  1010. "support": {
  1011. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1012. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1013. },
  1014. "funding": [
  1015. {
  1016. "url": "https://github.com/kylekatarnls",
  1017. "type": "github"
  1018. },
  1019. {
  1020. "url": "https://opencollective.com/Carbon",
  1021. "type": "open_collective"
  1022. },
  1023. {
  1024. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1025. "type": "tidelift"
  1026. }
  1027. ],
  1028. "time": "2024-02-09T16:56:22+00:00"
  1029. },
  1030. {
  1031. "name": "danharrin/date-format-converter",
  1032. "version": "v0.3.1",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/danharrin/date-format-converter.git",
  1036. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1041. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": "^7.2|^8.0"
  1046. },
  1047. "type": "library",
  1048. "autoload": {
  1049. "files": [
  1050. "src/helpers.php",
  1051. "src/standards.php"
  1052. ],
  1053. "psr-4": {
  1054. "DanHarrin\\DateFormatConverter\\": "src/"
  1055. }
  1056. },
  1057. "notification-url": "https://packagist.org/downloads/",
  1058. "license": [
  1059. "MIT"
  1060. ],
  1061. "authors": [
  1062. {
  1063. "name": "Dan Harrin",
  1064. "email": "dan@danharrin.com"
  1065. }
  1066. ],
  1067. "description": "Convert token-based date formats between standards.",
  1068. "homepage": "https://github.com/danharrin/date-format-converter",
  1069. "support": {
  1070. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1071. "source": "https://github.com/danharrin/date-format-converter"
  1072. },
  1073. "funding": [
  1074. {
  1075. "url": "https://github.com/danharrin",
  1076. "type": "github"
  1077. }
  1078. ],
  1079. "time": "2024-06-13T09:38:44+00:00"
  1080. },
  1081. {
  1082. "name": "danharrin/livewire-rate-limiting",
  1083. "version": "v1.3.1",
  1084. "source": {
  1085. "type": "git",
  1086. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1087. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb"
  1088. },
  1089. "dist": {
  1090. "type": "zip",
  1091. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1092. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1093. "shasum": ""
  1094. },
  1095. "require": {
  1096. "illuminate/support": "^9.0|^10.0|^11.0",
  1097. "php": "^8.0"
  1098. },
  1099. "require-dev": {
  1100. "livewire/livewire": "^3.0",
  1101. "livewire/volt": "^1.3",
  1102. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1103. "phpunit/phpunit": "^9.0|^10.0"
  1104. },
  1105. "type": "library",
  1106. "autoload": {
  1107. "psr-4": {
  1108. "DanHarrin\\LivewireRateLimiting\\": "src"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Dan Harrin",
  1118. "email": "dan@danharrin.com"
  1119. }
  1120. ],
  1121. "description": "Apply rate limiters to Laravel Livewire actions.",
  1122. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1123. "support": {
  1124. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1125. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1126. },
  1127. "funding": [
  1128. {
  1129. "url": "https://github.com/danharrin",
  1130. "type": "github"
  1131. }
  1132. ],
  1133. "time": "2024-05-06T09:10:03+00:00"
  1134. },
  1135. {
  1136. "name": "dflydev/dot-access-data",
  1137. "version": "v3.0.3",
  1138. "source": {
  1139. "type": "git",
  1140. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1141. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1142. },
  1143. "dist": {
  1144. "type": "zip",
  1145. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1146. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1147. "shasum": ""
  1148. },
  1149. "require": {
  1150. "php": "^7.1 || ^8.0"
  1151. },
  1152. "require-dev": {
  1153. "phpstan/phpstan": "^0.12.42",
  1154. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1155. "scrutinizer/ocular": "1.6.0",
  1156. "squizlabs/php_codesniffer": "^3.5",
  1157. "vimeo/psalm": "^4.0.0"
  1158. },
  1159. "type": "library",
  1160. "extra": {
  1161. "branch-alias": {
  1162. "dev-main": "3.x-dev"
  1163. }
  1164. },
  1165. "autoload": {
  1166. "psr-4": {
  1167. "Dflydev\\DotAccessData\\": "src/"
  1168. }
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Dragonfly Development Inc.",
  1177. "email": "info@dflydev.com",
  1178. "homepage": "http://dflydev.com"
  1179. },
  1180. {
  1181. "name": "Beau Simensen",
  1182. "email": "beau@dflydev.com",
  1183. "homepage": "http://beausimensen.com"
  1184. },
  1185. {
  1186. "name": "Carlos Frutos",
  1187. "email": "carlos@kiwing.it",
  1188. "homepage": "https://github.com/cfrutos"
  1189. },
  1190. {
  1191. "name": "Colin O'Dell",
  1192. "email": "colinodell@gmail.com",
  1193. "homepage": "https://www.colinodell.com"
  1194. }
  1195. ],
  1196. "description": "Given a deep data structure, access data by dot notation.",
  1197. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1198. "keywords": [
  1199. "access",
  1200. "data",
  1201. "dot",
  1202. "notation"
  1203. ],
  1204. "support": {
  1205. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1206. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1207. },
  1208. "time": "2024-07-08T12:26:09+00:00"
  1209. },
  1210. {
  1211. "name": "doctrine/dbal",
  1212. "version": "4.2.1",
  1213. "source": {
  1214. "type": "git",
  1215. "url": "https://github.com/doctrine/dbal.git",
  1216. "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0"
  1217. },
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "https://api.github.com/repos/doctrine/dbal/zipball/dadd35300837a3a2184bd47d403333b15d0a9bd0",
  1221. "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0",
  1222. "shasum": ""
  1223. },
  1224. "require": {
  1225. "doctrine/deprecations": "^0.5.3|^1",
  1226. "php": "^8.1",
  1227. "psr/cache": "^1|^2|^3",
  1228. "psr/log": "^1|^2|^3"
  1229. },
  1230. "require-dev": {
  1231. "doctrine/coding-standard": "12.0.0",
  1232. "fig/log-test": "^1",
  1233. "jetbrains/phpstorm-stubs": "2023.2",
  1234. "phpstan/phpstan": "1.12.6",
  1235. "phpstan/phpstan-phpunit": "1.4.0",
  1236. "phpstan/phpstan-strict-rules": "^1.6",
  1237. "phpunit/phpunit": "10.5.30",
  1238. "psalm/plugin-phpunit": "0.19.0",
  1239. "slevomat/coding-standard": "8.13.1",
  1240. "squizlabs/php_codesniffer": "3.10.2",
  1241. "symfony/cache": "^6.3.8|^7.0",
  1242. "symfony/console": "^5.4|^6.3|^7.0",
  1243. "vimeo/psalm": "5.25.0"
  1244. },
  1245. "suggest": {
  1246. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1247. },
  1248. "type": "library",
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Doctrine\\DBAL\\": "src"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Guilherme Blanco",
  1261. "email": "guilhermeblanco@gmail.com"
  1262. },
  1263. {
  1264. "name": "Roman Borschel",
  1265. "email": "roman@code-factory.org"
  1266. },
  1267. {
  1268. "name": "Benjamin Eberlei",
  1269. "email": "kontakt@beberlei.de"
  1270. },
  1271. {
  1272. "name": "Jonathan Wage",
  1273. "email": "jonwage@gmail.com"
  1274. }
  1275. ],
  1276. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1277. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1278. "keywords": [
  1279. "abstraction",
  1280. "database",
  1281. "db2",
  1282. "dbal",
  1283. "mariadb",
  1284. "mssql",
  1285. "mysql",
  1286. "oci8",
  1287. "oracle",
  1288. "pdo",
  1289. "pgsql",
  1290. "postgresql",
  1291. "queryobject",
  1292. "sasql",
  1293. "sql",
  1294. "sqlite",
  1295. "sqlserver",
  1296. "sqlsrv"
  1297. ],
  1298. "support": {
  1299. "issues": "https://github.com/doctrine/dbal/issues",
  1300. "source": "https://github.com/doctrine/dbal/tree/4.2.1"
  1301. },
  1302. "funding": [
  1303. {
  1304. "url": "https://www.doctrine-project.org/sponsorship.html",
  1305. "type": "custom"
  1306. },
  1307. {
  1308. "url": "https://www.patreon.com/phpdoctrine",
  1309. "type": "patreon"
  1310. },
  1311. {
  1312. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1313. "type": "tidelift"
  1314. }
  1315. ],
  1316. "time": "2024-10-10T18:01:27+00:00"
  1317. },
  1318. {
  1319. "name": "doctrine/deprecations",
  1320. "version": "1.1.3",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/doctrine/deprecations.git",
  1324. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1329. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1330. "shasum": ""
  1331. },
  1332. "require": {
  1333. "php": "^7.1 || ^8.0"
  1334. },
  1335. "require-dev": {
  1336. "doctrine/coding-standard": "^9",
  1337. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1338. "phpstan/phpstan-phpunit": "^1.0",
  1339. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1340. "psalm/plugin-phpunit": "0.18.4",
  1341. "psr/log": "^1 || ^2 || ^3",
  1342. "vimeo/psalm": "4.30.0 || 5.12.0"
  1343. },
  1344. "suggest": {
  1345. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1346. },
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "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.",
  1358. "homepage": "https://www.doctrine-project.org/",
  1359. "support": {
  1360. "issues": "https://github.com/doctrine/deprecations/issues",
  1361. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1362. },
  1363. "time": "2024-01-30T19:34:25+00:00"
  1364. },
  1365. {
  1366. "name": "doctrine/inflector",
  1367. "version": "2.0.10",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/doctrine/inflector.git",
  1371. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1376. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "php": "^7.2 || ^8.0"
  1381. },
  1382. "require-dev": {
  1383. "doctrine/coding-standard": "^11.0",
  1384. "phpstan/phpstan": "^1.8",
  1385. "phpstan/phpstan-phpunit": "^1.1",
  1386. "phpstan/phpstan-strict-rules": "^1.3",
  1387. "phpunit/phpunit": "^8.5 || ^9.5",
  1388. "vimeo/psalm": "^4.25 || ^5.4"
  1389. },
  1390. "type": "library",
  1391. "autoload": {
  1392. "psr-4": {
  1393. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1394. }
  1395. },
  1396. "notification-url": "https://packagist.org/downloads/",
  1397. "license": [
  1398. "MIT"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Guilherme Blanco",
  1403. "email": "guilhermeblanco@gmail.com"
  1404. },
  1405. {
  1406. "name": "Roman Borschel",
  1407. "email": "roman@code-factory.org"
  1408. },
  1409. {
  1410. "name": "Benjamin Eberlei",
  1411. "email": "kontakt@beberlei.de"
  1412. },
  1413. {
  1414. "name": "Jonathan Wage",
  1415. "email": "jonwage@gmail.com"
  1416. },
  1417. {
  1418. "name": "Johannes Schmitt",
  1419. "email": "schmittjoh@gmail.com"
  1420. }
  1421. ],
  1422. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1423. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1424. "keywords": [
  1425. "inflection",
  1426. "inflector",
  1427. "lowercase",
  1428. "manipulation",
  1429. "php",
  1430. "plural",
  1431. "singular",
  1432. "strings",
  1433. "uppercase",
  1434. "words"
  1435. ],
  1436. "support": {
  1437. "issues": "https://github.com/doctrine/inflector/issues",
  1438. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1439. },
  1440. "funding": [
  1441. {
  1442. "url": "https://www.doctrine-project.org/sponsorship.html",
  1443. "type": "custom"
  1444. },
  1445. {
  1446. "url": "https://www.patreon.com/phpdoctrine",
  1447. "type": "patreon"
  1448. },
  1449. {
  1450. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1451. "type": "tidelift"
  1452. }
  1453. ],
  1454. "time": "2024-02-18T20:23:39+00:00"
  1455. },
  1456. {
  1457. "name": "doctrine/lexer",
  1458. "version": "3.0.1",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/doctrine/lexer.git",
  1462. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1467. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "php": "^8.1"
  1472. },
  1473. "require-dev": {
  1474. "doctrine/coding-standard": "^12",
  1475. "phpstan/phpstan": "^1.10",
  1476. "phpunit/phpunit": "^10.5",
  1477. "psalm/plugin-phpunit": "^0.18.3",
  1478. "vimeo/psalm": "^5.21"
  1479. },
  1480. "type": "library",
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Doctrine\\Common\\Lexer\\": "src"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Guilherme Blanco",
  1493. "email": "guilhermeblanco@gmail.com"
  1494. },
  1495. {
  1496. "name": "Roman Borschel",
  1497. "email": "roman@code-factory.org"
  1498. },
  1499. {
  1500. "name": "Johannes Schmitt",
  1501. "email": "schmittjoh@gmail.com"
  1502. }
  1503. ],
  1504. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1505. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1506. "keywords": [
  1507. "annotations",
  1508. "docblock",
  1509. "lexer",
  1510. "parser",
  1511. "php"
  1512. ],
  1513. "support": {
  1514. "issues": "https://github.com/doctrine/lexer/issues",
  1515. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1516. },
  1517. "funding": [
  1518. {
  1519. "url": "https://www.doctrine-project.org/sponsorship.html",
  1520. "type": "custom"
  1521. },
  1522. {
  1523. "url": "https://www.patreon.com/phpdoctrine",
  1524. "type": "patreon"
  1525. },
  1526. {
  1527. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1528. "type": "tidelift"
  1529. }
  1530. ],
  1531. "time": "2024-02-05T11:56:58+00:00"
  1532. },
  1533. {
  1534. "name": "dragonmantank/cron-expression",
  1535. "version": "v3.4.0",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/dragonmantank/cron-expression.git",
  1539. "reference": "8c784d071debd117328803d86b2097615b457500"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1544. "reference": "8c784d071debd117328803d86b2097615b457500",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "php": "^7.2|^8.0",
  1549. "webmozart/assert": "^1.0"
  1550. },
  1551. "replace": {
  1552. "mtdowling/cron-expression": "^1.0"
  1553. },
  1554. "require-dev": {
  1555. "phpstan/extension-installer": "^1.0",
  1556. "phpstan/phpstan": "^1.0",
  1557. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "3.x-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Cron\\": "src/Cron/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Chris Tankersley",
  1577. "email": "chris@ctankersley.com",
  1578. "homepage": "https://github.com/dragonmantank"
  1579. }
  1580. ],
  1581. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1582. "keywords": [
  1583. "cron",
  1584. "schedule"
  1585. ],
  1586. "support": {
  1587. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1588. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1589. },
  1590. "funding": [
  1591. {
  1592. "url": "https://github.com/dragonmantank",
  1593. "type": "github"
  1594. }
  1595. ],
  1596. "time": "2024-10-09T13:47:03+00:00"
  1597. },
  1598. {
  1599. "name": "egulias/email-validator",
  1600. "version": "4.0.2",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/egulias/EmailValidator.git",
  1604. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1609. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "doctrine/lexer": "^2.0 || ^3.0",
  1614. "php": ">=8.1",
  1615. "symfony/polyfill-intl-idn": "^1.26"
  1616. },
  1617. "require-dev": {
  1618. "phpunit/phpunit": "^10.2",
  1619. "vimeo/psalm": "^5.12"
  1620. },
  1621. "suggest": {
  1622. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "4.0.x-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "Egulias\\EmailValidator\\": "src"
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Eduardo Gulias Davis"
  1642. }
  1643. ],
  1644. "description": "A library for validating emails against several RFCs",
  1645. "homepage": "https://github.com/egulias/EmailValidator",
  1646. "keywords": [
  1647. "email",
  1648. "emailvalidation",
  1649. "emailvalidator",
  1650. "validation",
  1651. "validator"
  1652. ],
  1653. "support": {
  1654. "issues": "https://github.com/egulias/EmailValidator/issues",
  1655. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1656. },
  1657. "funding": [
  1658. {
  1659. "url": "https://github.com/egulias",
  1660. "type": "github"
  1661. }
  1662. ],
  1663. "time": "2023-10-06T06:47:41+00:00"
  1664. },
  1665. {
  1666. "name": "filament/actions",
  1667. "version": "v3.2.125",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/filamentphp/actions.git",
  1671. "reference": "56d5d6f288cc5793b6da0cd85db45ffd98d06c6a"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/filamentphp/actions/zipball/56d5d6f288cc5793b6da0cd85db45ffd98d06c6a",
  1676. "reference": "56d5d6f288cc5793b6da0cd85db45ffd98d06c6a",
  1677. "shasum": ""
  1678. },
  1679. "require": {
  1680. "anourvalar/eloquent-serialize": "^1.2",
  1681. "filament/forms": "self.version",
  1682. "filament/infolists": "self.version",
  1683. "filament/notifications": "self.version",
  1684. "filament/support": "self.version",
  1685. "illuminate/contracts": "^10.45|^11.0",
  1686. "illuminate/database": "^10.45|^11.0",
  1687. "illuminate/support": "^10.45|^11.0",
  1688. "league/csv": "^9.14",
  1689. "openspout/openspout": "^4.23",
  1690. "php": "^8.1",
  1691. "spatie/laravel-package-tools": "^1.9"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "laravel": {
  1696. "providers": [
  1697. "Filament\\Actions\\ActionsServiceProvider"
  1698. ]
  1699. }
  1700. },
  1701. "autoload": {
  1702. "psr-4": {
  1703. "Filament\\Actions\\": "src"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "description": "Easily add beautiful action modals to any Livewire component.",
  1711. "homepage": "https://github.com/filamentphp/filament",
  1712. "support": {
  1713. "issues": "https://github.com/filamentphp/filament/issues",
  1714. "source": "https://github.com/filamentphp/filament"
  1715. },
  1716. "time": "2024-11-27T16:52:06+00:00"
  1717. },
  1718. {
  1719. "name": "filament/filament",
  1720. "version": "v3.2.125",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/filamentphp/panels.git",
  1724. "reference": "f76abb738d64cbb71fddb04d4c34e97b7e7ed86c"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/filamentphp/panels/zipball/f76abb738d64cbb71fddb04d4c34e97b7e7ed86c",
  1729. "reference": "f76abb738d64cbb71fddb04d4c34e97b7e7ed86c",
  1730. "shasum": ""
  1731. },
  1732. "require": {
  1733. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1734. "filament/actions": "self.version",
  1735. "filament/forms": "self.version",
  1736. "filament/infolists": "self.version",
  1737. "filament/notifications": "self.version",
  1738. "filament/support": "self.version",
  1739. "filament/tables": "self.version",
  1740. "filament/widgets": "self.version",
  1741. "illuminate/auth": "^10.45|^11.0",
  1742. "illuminate/console": "^10.45|^11.0",
  1743. "illuminate/contracts": "^10.45|^11.0",
  1744. "illuminate/cookie": "^10.45|^11.0",
  1745. "illuminate/database": "^10.45|^11.0",
  1746. "illuminate/http": "^10.45|^11.0",
  1747. "illuminate/routing": "^10.45|^11.0",
  1748. "illuminate/session": "^10.45|^11.0",
  1749. "illuminate/support": "^10.45|^11.0",
  1750. "illuminate/view": "^10.45|^11.0",
  1751. "php": "^8.1",
  1752. "spatie/laravel-package-tools": "^1.9"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "laravel": {
  1757. "providers": [
  1758. "Filament\\FilamentServiceProvider"
  1759. ]
  1760. }
  1761. },
  1762. "autoload": {
  1763. "files": [
  1764. "src/global_helpers.php",
  1765. "src/helpers.php"
  1766. ],
  1767. "psr-4": {
  1768. "Filament\\": "src"
  1769. }
  1770. },
  1771. "notification-url": "https://packagist.org/downloads/",
  1772. "license": [
  1773. "MIT"
  1774. ],
  1775. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1776. "homepage": "https://github.com/filamentphp/filament",
  1777. "support": {
  1778. "issues": "https://github.com/filamentphp/filament/issues",
  1779. "source": "https://github.com/filamentphp/filament"
  1780. },
  1781. "time": "2024-11-27T16:52:10+00:00"
  1782. },
  1783. {
  1784. "name": "filament/forms",
  1785. "version": "v3.2.125",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/filamentphp/forms.git",
  1789. "reference": "7fadc5def6c9fbaf5ab68d1e65829ec4f2859a56"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/filamentphp/forms/zipball/7fadc5def6c9fbaf5ab68d1e65829ec4f2859a56",
  1794. "reference": "7fadc5def6c9fbaf5ab68d1e65829ec4f2859a56",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "danharrin/date-format-converter": "^0.3",
  1799. "filament/actions": "self.version",
  1800. "filament/support": "self.version",
  1801. "illuminate/console": "^10.45|^11.0",
  1802. "illuminate/contracts": "^10.45|^11.0",
  1803. "illuminate/database": "^10.45|^11.0",
  1804. "illuminate/filesystem": "^10.45|^11.0",
  1805. "illuminate/support": "^10.45|^11.0",
  1806. "illuminate/validation": "^10.45|^11.0",
  1807. "illuminate/view": "^10.45|^11.0",
  1808. "php": "^8.1",
  1809. "spatie/laravel-package-tools": "^1.9"
  1810. },
  1811. "type": "library",
  1812. "extra": {
  1813. "laravel": {
  1814. "providers": [
  1815. "Filament\\Forms\\FormsServiceProvider"
  1816. ]
  1817. }
  1818. },
  1819. "autoload": {
  1820. "files": [
  1821. "src/helpers.php"
  1822. ],
  1823. "psr-4": {
  1824. "Filament\\Forms\\": "src"
  1825. }
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "description": "Easily add beautiful forms to any Livewire component.",
  1832. "homepage": "https://github.com/filamentphp/filament",
  1833. "support": {
  1834. "issues": "https://github.com/filamentphp/filament/issues",
  1835. "source": "https://github.com/filamentphp/filament"
  1836. },
  1837. "time": "2024-11-27T16:52:07+00:00"
  1838. },
  1839. {
  1840. "name": "filament/infolists",
  1841. "version": "v3.2.125",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/filamentphp/infolists.git",
  1845. "reference": "7946035f47746e69ff9d98bfed04b0248000ee2e"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/7946035f47746e69ff9d98bfed04b0248000ee2e",
  1850. "reference": "7946035f47746e69ff9d98bfed04b0248000ee2e",
  1851. "shasum": ""
  1852. },
  1853. "require": {
  1854. "filament/actions": "self.version",
  1855. "filament/support": "self.version",
  1856. "illuminate/console": "^10.45|^11.0",
  1857. "illuminate/contracts": "^10.45|^11.0",
  1858. "illuminate/database": "^10.45|^11.0",
  1859. "illuminate/filesystem": "^10.45|^11.0",
  1860. "illuminate/support": "^10.45|^11.0",
  1861. "illuminate/view": "^10.45|^11.0",
  1862. "php": "^8.1",
  1863. "spatie/laravel-package-tools": "^1.9"
  1864. },
  1865. "type": "library",
  1866. "extra": {
  1867. "laravel": {
  1868. "providers": [
  1869. "Filament\\Infolists\\InfolistsServiceProvider"
  1870. ]
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Filament\\Infolists\\": "src"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1883. "homepage": "https://github.com/filamentphp/filament",
  1884. "support": {
  1885. "issues": "https://github.com/filamentphp/filament/issues",
  1886. "source": "https://github.com/filamentphp/filament"
  1887. },
  1888. "time": "2024-11-13T16:35:31+00:00"
  1889. },
  1890. {
  1891. "name": "filament/notifications",
  1892. "version": "v3.2.125",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/filamentphp/notifications.git",
  1896. "reference": "c19df07c801c5550de0d30957c5a316f53019533"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/c19df07c801c5550de0d30957c5a316f53019533",
  1901. "reference": "c19df07c801c5550de0d30957c5a316f53019533",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "filament/actions": "self.version",
  1906. "filament/support": "self.version",
  1907. "illuminate/contracts": "^10.45|^11.0",
  1908. "illuminate/filesystem": "^10.45|^11.0",
  1909. "illuminate/notifications": "^10.45|^11.0",
  1910. "illuminate/support": "^10.45|^11.0",
  1911. "php": "^8.1",
  1912. "spatie/laravel-package-tools": "^1.9"
  1913. },
  1914. "type": "library",
  1915. "extra": {
  1916. "laravel": {
  1917. "providers": [
  1918. "Filament\\Notifications\\NotificationsServiceProvider"
  1919. ]
  1920. }
  1921. },
  1922. "autoload": {
  1923. "files": [
  1924. "src/Testing/Autoload.php"
  1925. ],
  1926. "psr-4": {
  1927. "Filament\\Notifications\\": "src"
  1928. }
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "description": "Easily add beautiful notifications to any Livewire app.",
  1935. "homepage": "https://github.com/filamentphp/filament",
  1936. "support": {
  1937. "issues": "https://github.com/filamentphp/filament/issues",
  1938. "source": "https://github.com/filamentphp/filament"
  1939. },
  1940. "time": "2024-10-23T07:36:14+00:00"
  1941. },
  1942. {
  1943. "name": "filament/support",
  1944. "version": "v3.2.125",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/filamentphp/support.git",
  1948. "reference": "4bd6a02e096742ec68d0ed955b285579b21d02a4"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/filamentphp/support/zipball/4bd6a02e096742ec68d0ed955b285579b21d02a4",
  1953. "reference": "4bd6a02e096742ec68d0ed955b285579b21d02a4",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "blade-ui-kit/blade-heroicons": "^2.5",
  1958. "doctrine/dbal": "^3.2|^4.0",
  1959. "ext-intl": "*",
  1960. "illuminate/contracts": "^10.45|^11.0",
  1961. "illuminate/support": "^10.45|^11.0",
  1962. "illuminate/view": "^10.45|^11.0",
  1963. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  1964. "livewire/livewire": "3.5.12",
  1965. "php": "^8.1",
  1966. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  1967. "spatie/color": "^1.5",
  1968. "spatie/invade": "^1.0|^2.0",
  1969. "spatie/laravel-package-tools": "^1.9",
  1970. "symfony/console": "^6.0|^7.0",
  1971. "symfony/html-sanitizer": "^6.1|^7.0"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "laravel": {
  1976. "providers": [
  1977. "Filament\\Support\\SupportServiceProvider"
  1978. ]
  1979. }
  1980. },
  1981. "autoload": {
  1982. "files": [
  1983. "src/helpers.php"
  1984. ],
  1985. "psr-4": {
  1986. "Filament\\Support\\": "src"
  1987. }
  1988. },
  1989. "notification-url": "https://packagist.org/downloads/",
  1990. "license": [
  1991. "MIT"
  1992. ],
  1993. "description": "Core helper methods and foundation code for all Filament packages.",
  1994. "homepage": "https://github.com/filamentphp/filament",
  1995. "support": {
  1996. "issues": "https://github.com/filamentphp/filament/issues",
  1997. "source": "https://github.com/filamentphp/filament"
  1998. },
  1999. "time": "2024-11-27T16:52:24+00:00"
  2000. },
  2001. {
  2002. "name": "filament/tables",
  2003. "version": "v3.2.125",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/filamentphp/tables.git",
  2007. "reference": "85b23e7222e4b3df8531fc62b480a11e2dfb00c4"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/filamentphp/tables/zipball/85b23e7222e4b3df8531fc62b480a11e2dfb00c4",
  2012. "reference": "85b23e7222e4b3df8531fc62b480a11e2dfb00c4",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "filament/actions": "self.version",
  2017. "filament/forms": "self.version",
  2018. "filament/support": "self.version",
  2019. "illuminate/console": "^10.45|^11.0",
  2020. "illuminate/contracts": "^10.45|^11.0",
  2021. "illuminate/database": "^10.45|^11.0",
  2022. "illuminate/filesystem": "^10.45|^11.0",
  2023. "illuminate/support": "^10.45|^11.0",
  2024. "illuminate/view": "^10.45|^11.0",
  2025. "php": "^8.1",
  2026. "spatie/laravel-package-tools": "^1.9"
  2027. },
  2028. "type": "library",
  2029. "extra": {
  2030. "laravel": {
  2031. "providers": [
  2032. "Filament\\Tables\\TablesServiceProvider"
  2033. ]
  2034. }
  2035. },
  2036. "autoload": {
  2037. "psr-4": {
  2038. "Filament\\Tables\\": "src"
  2039. }
  2040. },
  2041. "notification-url": "https://packagist.org/downloads/",
  2042. "license": [
  2043. "MIT"
  2044. ],
  2045. "description": "Easily add beautiful tables to any Livewire component.",
  2046. "homepage": "https://github.com/filamentphp/filament",
  2047. "support": {
  2048. "issues": "https://github.com/filamentphp/filament/issues",
  2049. "source": "https://github.com/filamentphp/filament"
  2050. },
  2051. "time": "2024-11-27T16:52:27+00:00"
  2052. },
  2053. {
  2054. "name": "filament/widgets",
  2055. "version": "v3.2.125",
  2056. "source": {
  2057. "type": "git",
  2058. "url": "https://github.com/filamentphp/widgets.git",
  2059. "reference": "6de1c84d71168fd1c6a5b1ae1e1b4ec5ee4b6f55"
  2060. },
  2061. "dist": {
  2062. "type": "zip",
  2063. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/6de1c84d71168fd1c6a5b1ae1e1b4ec5ee4b6f55",
  2064. "reference": "6de1c84d71168fd1c6a5b1ae1e1b4ec5ee4b6f55",
  2065. "shasum": ""
  2066. },
  2067. "require": {
  2068. "filament/support": "self.version",
  2069. "php": "^8.1",
  2070. "spatie/laravel-package-tools": "^1.9"
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "laravel": {
  2075. "providers": [
  2076. "Filament\\Widgets\\WidgetsServiceProvider"
  2077. ]
  2078. }
  2079. },
  2080. "autoload": {
  2081. "psr-4": {
  2082. "Filament\\Widgets\\": "src"
  2083. }
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "MIT"
  2088. ],
  2089. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2090. "homepage": "https://github.com/filamentphp/filament",
  2091. "support": {
  2092. "issues": "https://github.com/filamentphp/filament/issues",
  2093. "source": "https://github.com/filamentphp/filament"
  2094. },
  2095. "time": "2024-11-27T16:52:29+00:00"
  2096. },
  2097. {
  2098. "name": "firebase/php-jwt",
  2099. "version": "v6.10.2",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/firebase/php-jwt.git",
  2103. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  2108. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "php": "^8.0"
  2113. },
  2114. "require-dev": {
  2115. "guzzlehttp/guzzle": "^7.4",
  2116. "phpspec/prophecy-phpunit": "^2.0",
  2117. "phpunit/phpunit": "^9.5",
  2118. "psr/cache": "^2.0||^3.0",
  2119. "psr/http-client": "^1.0",
  2120. "psr/http-factory": "^1.0"
  2121. },
  2122. "suggest": {
  2123. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2124. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2125. },
  2126. "type": "library",
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Firebase\\JWT\\": "src"
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "BSD-3-Clause"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "Neuman Vong",
  2139. "email": "neuman+pear@twilio.com",
  2140. "role": "Developer"
  2141. },
  2142. {
  2143. "name": "Anant Narayanan",
  2144. "email": "anant@php.net",
  2145. "role": "Developer"
  2146. }
  2147. ],
  2148. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2149. "homepage": "https://github.com/firebase/php-jwt",
  2150. "keywords": [
  2151. "jwt",
  2152. "php"
  2153. ],
  2154. "support": {
  2155. "issues": "https://github.com/firebase/php-jwt/issues",
  2156. "source": "https://github.com/firebase/php-jwt/tree/v6.10.2"
  2157. },
  2158. "time": "2024-11-24T11:22:49+00:00"
  2159. },
  2160. {
  2161. "name": "fruitcake/php-cors",
  2162. "version": "v1.3.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/fruitcake/php-cors.git",
  2166. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2171. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "php": "^7.4|^8.0",
  2176. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2177. },
  2178. "require-dev": {
  2179. "phpstan/phpstan": "^1.4",
  2180. "phpunit/phpunit": "^9",
  2181. "squizlabs/php_codesniffer": "^3.5"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "branch-alias": {
  2186. "dev-master": "1.2-dev"
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-4": {
  2191. "Fruitcake\\Cors\\": "src/"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "MIT"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Fruitcake",
  2201. "homepage": "https://fruitcake.nl"
  2202. },
  2203. {
  2204. "name": "Barryvdh",
  2205. "email": "barryvdh@gmail.com"
  2206. }
  2207. ],
  2208. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2209. "homepage": "https://github.com/fruitcake/php-cors",
  2210. "keywords": [
  2211. "cors",
  2212. "laravel",
  2213. "symfony"
  2214. ],
  2215. "support": {
  2216. "issues": "https://github.com/fruitcake/php-cors/issues",
  2217. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2218. },
  2219. "funding": [
  2220. {
  2221. "url": "https://fruitcake.nl",
  2222. "type": "custom"
  2223. },
  2224. {
  2225. "url": "https://github.com/barryvdh",
  2226. "type": "github"
  2227. }
  2228. ],
  2229. "time": "2023-10-12T05:21:21+00:00"
  2230. },
  2231. {
  2232. "name": "graham-campbell/result-type",
  2233. "version": "v1.1.3",
  2234. "source": {
  2235. "type": "git",
  2236. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2237. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2238. },
  2239. "dist": {
  2240. "type": "zip",
  2241. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2242. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2243. "shasum": ""
  2244. },
  2245. "require": {
  2246. "php": "^7.2.5 || ^8.0",
  2247. "phpoption/phpoption": "^1.9.3"
  2248. },
  2249. "require-dev": {
  2250. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2251. },
  2252. "type": "library",
  2253. "autoload": {
  2254. "psr-4": {
  2255. "GrahamCampbell\\ResultType\\": "src/"
  2256. }
  2257. },
  2258. "notification-url": "https://packagist.org/downloads/",
  2259. "license": [
  2260. "MIT"
  2261. ],
  2262. "authors": [
  2263. {
  2264. "name": "Graham Campbell",
  2265. "email": "hello@gjcampbell.co.uk",
  2266. "homepage": "https://github.com/GrahamCampbell"
  2267. }
  2268. ],
  2269. "description": "An Implementation Of The Result Type",
  2270. "keywords": [
  2271. "Graham Campbell",
  2272. "GrahamCampbell",
  2273. "Result Type",
  2274. "Result-Type",
  2275. "result"
  2276. ],
  2277. "support": {
  2278. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2279. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2280. },
  2281. "funding": [
  2282. {
  2283. "url": "https://github.com/GrahamCampbell",
  2284. "type": "github"
  2285. },
  2286. {
  2287. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2288. "type": "tidelift"
  2289. }
  2290. ],
  2291. "time": "2024-07-20T21:45:45+00:00"
  2292. },
  2293. {
  2294. "name": "guava/filament-clusters",
  2295. "version": "1.4.0",
  2296. "source": {
  2297. "type": "git",
  2298. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2299. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2300. },
  2301. "dist": {
  2302. "type": "zip",
  2303. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2304. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2305. "shasum": ""
  2306. },
  2307. "require": {
  2308. "filament/filament": "^3.0",
  2309. "illuminate/contracts": "^10.0 | ^11.0",
  2310. "php": "^8.1",
  2311. "spatie/laravel-package-tools": "^1.14.0"
  2312. },
  2313. "require-dev": {
  2314. "laravel/pint": "^1.0",
  2315. "nunomaduro/collision": "^7.8",
  2316. "nunomaduro/larastan": "^2.0.1",
  2317. "orchestra/testbench": "^8.8",
  2318. "pestphp/pest": "^2.0",
  2319. "pestphp/pest-plugin-arch": "^2.0",
  2320. "pestphp/pest-plugin-laravel": "^2.0",
  2321. "phpstan/extension-installer": "^1.1",
  2322. "phpstan/phpstan-deprecation-rules": "^1.0",
  2323. "phpstan/phpstan-phpunit": "^1.0"
  2324. },
  2325. "type": "library",
  2326. "extra": {
  2327. "laravel": {
  2328. "providers": [
  2329. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2330. ]
  2331. }
  2332. },
  2333. "autoload": {
  2334. "psr-4": {
  2335. "Guava\\FilamentClusters\\": "src/"
  2336. }
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "Lukas Frey",
  2345. "email": "lukas.frey@guava.cz",
  2346. "role": "Developer"
  2347. }
  2348. ],
  2349. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2350. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2351. "keywords": [
  2352. "Guava",
  2353. "filament-clusters",
  2354. "laravel"
  2355. ],
  2356. "support": {
  2357. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2358. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2359. },
  2360. "funding": [
  2361. {
  2362. "url": "https://github.com/GuavaCZ",
  2363. "type": "github"
  2364. }
  2365. ],
  2366. "time": "2024-05-31T09:31:08+00:00"
  2367. },
  2368. {
  2369. "name": "guzzlehttp/guzzle",
  2370. "version": "7.9.2",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://github.com/guzzle/guzzle.git",
  2374. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2379. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2380. "shasum": ""
  2381. },
  2382. "require": {
  2383. "ext-json": "*",
  2384. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2385. "guzzlehttp/psr7": "^2.7.0",
  2386. "php": "^7.2.5 || ^8.0",
  2387. "psr/http-client": "^1.0",
  2388. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2389. },
  2390. "provide": {
  2391. "psr/http-client-implementation": "1.0"
  2392. },
  2393. "require-dev": {
  2394. "bamarni/composer-bin-plugin": "^1.8.2",
  2395. "ext-curl": "*",
  2396. "guzzle/client-integration-tests": "3.0.2",
  2397. "php-http/message-factory": "^1.1",
  2398. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2399. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2400. },
  2401. "suggest": {
  2402. "ext-curl": "Required for CURL handler support",
  2403. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2404. "psr/log": "Required for using the Log middleware"
  2405. },
  2406. "type": "library",
  2407. "extra": {
  2408. "bamarni-bin": {
  2409. "bin-links": true,
  2410. "forward-command": false
  2411. }
  2412. },
  2413. "autoload": {
  2414. "files": [
  2415. "src/functions_include.php"
  2416. ],
  2417. "psr-4": {
  2418. "GuzzleHttp\\": "src/"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "MIT"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Graham Campbell",
  2428. "email": "hello@gjcampbell.co.uk",
  2429. "homepage": "https://github.com/GrahamCampbell"
  2430. },
  2431. {
  2432. "name": "Michael Dowling",
  2433. "email": "mtdowling@gmail.com",
  2434. "homepage": "https://github.com/mtdowling"
  2435. },
  2436. {
  2437. "name": "Jeremy Lindblom",
  2438. "email": "jeremeamia@gmail.com",
  2439. "homepage": "https://github.com/jeremeamia"
  2440. },
  2441. {
  2442. "name": "George Mponos",
  2443. "email": "gmponos@gmail.com",
  2444. "homepage": "https://github.com/gmponos"
  2445. },
  2446. {
  2447. "name": "Tobias Nyholm",
  2448. "email": "tobias.nyholm@gmail.com",
  2449. "homepage": "https://github.com/Nyholm"
  2450. },
  2451. {
  2452. "name": "Márk Sági-Kazár",
  2453. "email": "mark.sagikazar@gmail.com",
  2454. "homepage": "https://github.com/sagikazarmark"
  2455. },
  2456. {
  2457. "name": "Tobias Schultze",
  2458. "email": "webmaster@tubo-world.de",
  2459. "homepage": "https://github.com/Tobion"
  2460. }
  2461. ],
  2462. "description": "Guzzle is a PHP HTTP client library",
  2463. "keywords": [
  2464. "client",
  2465. "curl",
  2466. "framework",
  2467. "http",
  2468. "http client",
  2469. "psr-18",
  2470. "psr-7",
  2471. "rest",
  2472. "web service"
  2473. ],
  2474. "support": {
  2475. "issues": "https://github.com/guzzle/guzzle/issues",
  2476. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2477. },
  2478. "funding": [
  2479. {
  2480. "url": "https://github.com/GrahamCampbell",
  2481. "type": "github"
  2482. },
  2483. {
  2484. "url": "https://github.com/Nyholm",
  2485. "type": "github"
  2486. },
  2487. {
  2488. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2489. "type": "tidelift"
  2490. }
  2491. ],
  2492. "time": "2024-07-24T11:22:20+00:00"
  2493. },
  2494. {
  2495. "name": "guzzlehttp/promises",
  2496. "version": "2.0.4",
  2497. "source": {
  2498. "type": "git",
  2499. "url": "https://github.com/guzzle/promises.git",
  2500. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2501. },
  2502. "dist": {
  2503. "type": "zip",
  2504. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2505. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2506. "shasum": ""
  2507. },
  2508. "require": {
  2509. "php": "^7.2.5 || ^8.0"
  2510. },
  2511. "require-dev": {
  2512. "bamarni/composer-bin-plugin": "^1.8.2",
  2513. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2514. },
  2515. "type": "library",
  2516. "extra": {
  2517. "bamarni-bin": {
  2518. "bin-links": true,
  2519. "forward-command": false
  2520. }
  2521. },
  2522. "autoload": {
  2523. "psr-4": {
  2524. "GuzzleHttp\\Promise\\": "src/"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Graham Campbell",
  2534. "email": "hello@gjcampbell.co.uk",
  2535. "homepage": "https://github.com/GrahamCampbell"
  2536. },
  2537. {
  2538. "name": "Michael Dowling",
  2539. "email": "mtdowling@gmail.com",
  2540. "homepage": "https://github.com/mtdowling"
  2541. },
  2542. {
  2543. "name": "Tobias Nyholm",
  2544. "email": "tobias.nyholm@gmail.com",
  2545. "homepage": "https://github.com/Nyholm"
  2546. },
  2547. {
  2548. "name": "Tobias Schultze",
  2549. "email": "webmaster@tubo-world.de",
  2550. "homepage": "https://github.com/Tobion"
  2551. }
  2552. ],
  2553. "description": "Guzzle promises library",
  2554. "keywords": [
  2555. "promise"
  2556. ],
  2557. "support": {
  2558. "issues": "https://github.com/guzzle/promises/issues",
  2559. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2560. },
  2561. "funding": [
  2562. {
  2563. "url": "https://github.com/GrahamCampbell",
  2564. "type": "github"
  2565. },
  2566. {
  2567. "url": "https://github.com/Nyholm",
  2568. "type": "github"
  2569. },
  2570. {
  2571. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2572. "type": "tidelift"
  2573. }
  2574. ],
  2575. "time": "2024-10-17T10:06:22+00:00"
  2576. },
  2577. {
  2578. "name": "guzzlehttp/psr7",
  2579. "version": "2.7.0",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/guzzle/psr7.git",
  2583. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2588. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2589. "shasum": ""
  2590. },
  2591. "require": {
  2592. "php": "^7.2.5 || ^8.0",
  2593. "psr/http-factory": "^1.0",
  2594. "psr/http-message": "^1.1 || ^2.0",
  2595. "ralouphie/getallheaders": "^3.0"
  2596. },
  2597. "provide": {
  2598. "psr/http-factory-implementation": "1.0",
  2599. "psr/http-message-implementation": "1.0"
  2600. },
  2601. "require-dev": {
  2602. "bamarni/composer-bin-plugin": "^1.8.2",
  2603. "http-interop/http-factory-tests": "0.9.0",
  2604. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2605. },
  2606. "suggest": {
  2607. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2608. },
  2609. "type": "library",
  2610. "extra": {
  2611. "bamarni-bin": {
  2612. "bin-links": true,
  2613. "forward-command": false
  2614. }
  2615. },
  2616. "autoload": {
  2617. "psr-4": {
  2618. "GuzzleHttp\\Psr7\\": "src/"
  2619. }
  2620. },
  2621. "notification-url": "https://packagist.org/downloads/",
  2622. "license": [
  2623. "MIT"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "Graham Campbell",
  2628. "email": "hello@gjcampbell.co.uk",
  2629. "homepage": "https://github.com/GrahamCampbell"
  2630. },
  2631. {
  2632. "name": "Michael Dowling",
  2633. "email": "mtdowling@gmail.com",
  2634. "homepage": "https://github.com/mtdowling"
  2635. },
  2636. {
  2637. "name": "George Mponos",
  2638. "email": "gmponos@gmail.com",
  2639. "homepage": "https://github.com/gmponos"
  2640. },
  2641. {
  2642. "name": "Tobias Nyholm",
  2643. "email": "tobias.nyholm@gmail.com",
  2644. "homepage": "https://github.com/Nyholm"
  2645. },
  2646. {
  2647. "name": "Márk Sági-Kazár",
  2648. "email": "mark.sagikazar@gmail.com",
  2649. "homepage": "https://github.com/sagikazarmark"
  2650. },
  2651. {
  2652. "name": "Tobias Schultze",
  2653. "email": "webmaster@tubo-world.de",
  2654. "homepage": "https://github.com/Tobion"
  2655. },
  2656. {
  2657. "name": "Márk Sági-Kazár",
  2658. "email": "mark.sagikazar@gmail.com",
  2659. "homepage": "https://sagikazarmark.hu"
  2660. }
  2661. ],
  2662. "description": "PSR-7 message implementation that also provides common utility methods",
  2663. "keywords": [
  2664. "http",
  2665. "message",
  2666. "psr-7",
  2667. "request",
  2668. "response",
  2669. "stream",
  2670. "uri",
  2671. "url"
  2672. ],
  2673. "support": {
  2674. "issues": "https://github.com/guzzle/psr7/issues",
  2675. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2676. },
  2677. "funding": [
  2678. {
  2679. "url": "https://github.com/GrahamCampbell",
  2680. "type": "github"
  2681. },
  2682. {
  2683. "url": "https://github.com/Nyholm",
  2684. "type": "github"
  2685. },
  2686. {
  2687. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2688. "type": "tidelift"
  2689. }
  2690. ],
  2691. "time": "2024-07-18T11:15:46+00:00"
  2692. },
  2693. {
  2694. "name": "guzzlehttp/uri-template",
  2695. "version": "v1.0.3",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/guzzle/uri-template.git",
  2699. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2704. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "php": "^7.2.5 || ^8.0",
  2709. "symfony/polyfill-php80": "^1.24"
  2710. },
  2711. "require-dev": {
  2712. "bamarni/composer-bin-plugin": "^1.8.2",
  2713. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2714. "uri-template/tests": "1.0.0"
  2715. },
  2716. "type": "library",
  2717. "extra": {
  2718. "bamarni-bin": {
  2719. "bin-links": true,
  2720. "forward-command": false
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "GuzzleHttp\\UriTemplate\\": "src"
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "MIT"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Graham Campbell",
  2735. "email": "hello@gjcampbell.co.uk",
  2736. "homepage": "https://github.com/GrahamCampbell"
  2737. },
  2738. {
  2739. "name": "Michael Dowling",
  2740. "email": "mtdowling@gmail.com",
  2741. "homepage": "https://github.com/mtdowling"
  2742. },
  2743. {
  2744. "name": "George Mponos",
  2745. "email": "gmponos@gmail.com",
  2746. "homepage": "https://github.com/gmponos"
  2747. },
  2748. {
  2749. "name": "Tobias Nyholm",
  2750. "email": "tobias.nyholm@gmail.com",
  2751. "homepage": "https://github.com/Nyholm"
  2752. }
  2753. ],
  2754. "description": "A polyfill class for uri_template of PHP",
  2755. "keywords": [
  2756. "guzzlehttp",
  2757. "uri-template"
  2758. ],
  2759. "support": {
  2760. "issues": "https://github.com/guzzle/uri-template/issues",
  2761. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2762. },
  2763. "funding": [
  2764. {
  2765. "url": "https://github.com/GrahamCampbell",
  2766. "type": "github"
  2767. },
  2768. {
  2769. "url": "https://github.com/Nyholm",
  2770. "type": "github"
  2771. },
  2772. {
  2773. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2774. "type": "tidelift"
  2775. }
  2776. ],
  2777. "time": "2023-12-03T19:50:20+00:00"
  2778. },
  2779. {
  2780. "name": "jaocero/radio-deck",
  2781. "version": "v1.2.8",
  2782. "source": {
  2783. "type": "git",
  2784. "url": "https://github.com/199ocero/radio-deck.git",
  2785. "reference": "23815595cfdb441794964f0729e0ea57eec48f5e"
  2786. },
  2787. "dist": {
  2788. "type": "zip",
  2789. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/23815595cfdb441794964f0729e0ea57eec48f5e",
  2790. "reference": "23815595cfdb441794964f0729e0ea57eec48f5e",
  2791. "shasum": ""
  2792. },
  2793. "require": {
  2794. "filament/forms": "^3.0",
  2795. "illuminate/contracts": "^10.0|^11.0",
  2796. "php": "^8.1",
  2797. "spatie/laravel-package-tools": "^1.15.0"
  2798. },
  2799. "require-dev": {
  2800. "nunomaduro/collision": "^7.9",
  2801. "orchestra/testbench": "^8.0|^9.0",
  2802. "pestphp/pest": "^2.0",
  2803. "pestphp/pest-plugin-arch": "^2.0",
  2804. "pestphp/pest-plugin-laravel": "^2.0"
  2805. },
  2806. "type": "library",
  2807. "extra": {
  2808. "laravel": {
  2809. "providers": [
  2810. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2811. ]
  2812. }
  2813. },
  2814. "autoload": {
  2815. "psr-4": {
  2816. "JaOcero\\RadioDeck\\": "src/",
  2817. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2818. }
  2819. },
  2820. "notification-url": "https://packagist.org/downloads/",
  2821. "license": [
  2822. "MIT"
  2823. ],
  2824. "authors": [
  2825. {
  2826. "name": "Jay-Are Ocero",
  2827. "email": "199ocero@gmail.com",
  2828. "role": "Developer"
  2829. }
  2830. ],
  2831. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2832. "homepage": "https://github.com/jaocero/radio-deck",
  2833. "keywords": [
  2834. "filament-form",
  2835. "filament-plugin",
  2836. "filamentphp",
  2837. "jaocero",
  2838. "laravel",
  2839. "radio-deck"
  2840. ],
  2841. "support": {
  2842. "issues": "https://github.com/jaocero/radio-deck/issues",
  2843. "source": "https://github.com/jaocero/radio-deck"
  2844. },
  2845. "funding": [
  2846. {
  2847. "url": "https://github.com/jaocero",
  2848. "type": "github"
  2849. }
  2850. ],
  2851. "time": "2024-06-25T23:06:42+00:00"
  2852. },
  2853. {
  2854. "name": "kirschbaum-development/eloquent-power-joins",
  2855. "version": "4.0.1",
  2856. "source": {
  2857. "type": "git",
  2858. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2859. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638"
  2860. },
  2861. "dist": {
  2862. "type": "zip",
  2863. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2864. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2865. "shasum": ""
  2866. },
  2867. "require": {
  2868. "illuminate/database": "^10.0|^11.0",
  2869. "illuminate/support": "^10.0|^11.0",
  2870. "php": "^8.1"
  2871. },
  2872. "require-dev": {
  2873. "friendsofphp/php-cs-fixer": "dev-master",
  2874. "laravel/legacy-factories": "^1.0@dev",
  2875. "orchestra/testbench": "^8.0|^9.0",
  2876. "phpunit/phpunit": "^10.0"
  2877. },
  2878. "type": "library",
  2879. "extra": {
  2880. "laravel": {
  2881. "providers": [
  2882. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2883. ]
  2884. }
  2885. },
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Kirschbaum\\PowerJoins\\": "src"
  2889. }
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "MIT"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "Luis Dalmolin",
  2898. "email": "luis.nh@gmail.com",
  2899. "role": "Developer"
  2900. }
  2901. ],
  2902. "description": "The Laravel magic applied to joins.",
  2903. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2904. "keywords": [
  2905. "eloquent",
  2906. "join",
  2907. "laravel",
  2908. "mysql"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2912. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.0.1"
  2913. },
  2914. "time": "2024-11-26T13:22:08+00:00"
  2915. },
  2916. {
  2917. "name": "knplabs/knp-snappy",
  2918. "version": "v1.5.0",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/KnpLabs/snappy.git",
  2922. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/98468898b50c09f26d56d905b79b0f52a2215da6",
  2927. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "php": ">=8.1",
  2932. "psr/log": "^2.0||^3.0",
  2933. "symfony/process": "^5.0||^6.0||^7.0"
  2934. },
  2935. "require-dev": {
  2936. "friendsofphp/php-cs-fixer": "^3.0",
  2937. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2938. "phpstan/phpstan": "^1.0.0",
  2939. "phpstan/phpstan-phpunit": "^1.0.0",
  2940. "phpunit/phpunit": "^8.5"
  2941. },
  2942. "type": "library",
  2943. "extra": {
  2944. "branch-alias": {
  2945. "dev-master": "1.x-dev"
  2946. }
  2947. },
  2948. "autoload": {
  2949. "psr-4": {
  2950. "Knp\\Snappy\\": "src/Knp/Snappy"
  2951. }
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "KNP Labs Team",
  2960. "homepage": "http://knplabs.com"
  2961. },
  2962. {
  2963. "name": "Symfony Community",
  2964. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2965. }
  2966. ],
  2967. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2968. "homepage": "http://github.com/KnpLabs/snappy",
  2969. "keywords": [
  2970. "knp",
  2971. "knplabs",
  2972. "pdf",
  2973. "snapshot",
  2974. "thumbnail",
  2975. "wkhtmltopdf"
  2976. ],
  2977. "support": {
  2978. "issues": "https://github.com/KnpLabs/snappy/issues",
  2979. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.0"
  2980. },
  2981. "time": "2023-12-18T09:12:11+00:00"
  2982. },
  2983. {
  2984. "name": "laravel/framework",
  2985. "version": "v11.34.2",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://github.com/laravel/framework.git",
  2989. "reference": "865da6d73dd353f07a7bcbd778c55966a620121f"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://api.github.com/repos/laravel/framework/zipball/865da6d73dd353f07a7bcbd778c55966a620121f",
  2994. "reference": "865da6d73dd353f07a7bcbd778c55966a620121f",
  2995. "shasum": ""
  2996. },
  2997. "require": {
  2998. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2999. "composer-runtime-api": "^2.2",
  3000. "doctrine/inflector": "^2.0.5",
  3001. "dragonmantank/cron-expression": "^3.4",
  3002. "egulias/email-validator": "^3.2.1|^4.0",
  3003. "ext-ctype": "*",
  3004. "ext-filter": "*",
  3005. "ext-hash": "*",
  3006. "ext-mbstring": "*",
  3007. "ext-openssl": "*",
  3008. "ext-session": "*",
  3009. "ext-tokenizer": "*",
  3010. "fruitcake/php-cors": "^1.3",
  3011. "guzzlehttp/guzzle": "^7.8.2",
  3012. "guzzlehttp/uri-template": "^1.0",
  3013. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3014. "laravel/serializable-closure": "^1.3|^2.0",
  3015. "league/commonmark": "^2.2.1",
  3016. "league/flysystem": "^3.25.1",
  3017. "league/flysystem-local": "^3.25.1",
  3018. "monolog/monolog": "^3.0",
  3019. "nesbot/carbon": "^2.72.2|^3.4",
  3020. "nunomaduro/termwind": "^2.0",
  3021. "php": "^8.2",
  3022. "psr/container": "^1.1.1|^2.0.1",
  3023. "psr/log": "^1.0|^2.0|^3.0",
  3024. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3025. "ramsey/uuid": "^4.7",
  3026. "symfony/console": "^7.0.3",
  3027. "symfony/error-handler": "^7.0.3",
  3028. "symfony/finder": "^7.0.3",
  3029. "symfony/http-foundation": "^7.0.3",
  3030. "symfony/http-kernel": "^7.0.3",
  3031. "symfony/mailer": "^7.0.3",
  3032. "symfony/mime": "^7.0.3",
  3033. "symfony/polyfill-php83": "^1.31",
  3034. "symfony/process": "^7.0.3",
  3035. "symfony/routing": "^7.0.3",
  3036. "symfony/uid": "^7.0.3",
  3037. "symfony/var-dumper": "^7.0.3",
  3038. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3039. "vlucas/phpdotenv": "^5.6.1",
  3040. "voku/portable-ascii": "^2.0.2"
  3041. },
  3042. "conflict": {
  3043. "mockery/mockery": "1.6.8",
  3044. "tightenco/collect": "<5.5.33"
  3045. },
  3046. "provide": {
  3047. "psr/container-implementation": "1.1|2.0",
  3048. "psr/log-implementation": "1.0|2.0|3.0",
  3049. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3050. },
  3051. "replace": {
  3052. "illuminate/auth": "self.version",
  3053. "illuminate/broadcasting": "self.version",
  3054. "illuminate/bus": "self.version",
  3055. "illuminate/cache": "self.version",
  3056. "illuminate/collections": "self.version",
  3057. "illuminate/concurrency": "self.version",
  3058. "illuminate/conditionable": "self.version",
  3059. "illuminate/config": "self.version",
  3060. "illuminate/console": "self.version",
  3061. "illuminate/container": "self.version",
  3062. "illuminate/contracts": "self.version",
  3063. "illuminate/cookie": "self.version",
  3064. "illuminate/database": "self.version",
  3065. "illuminate/encryption": "self.version",
  3066. "illuminate/events": "self.version",
  3067. "illuminate/filesystem": "self.version",
  3068. "illuminate/hashing": "self.version",
  3069. "illuminate/http": "self.version",
  3070. "illuminate/log": "self.version",
  3071. "illuminate/macroable": "self.version",
  3072. "illuminate/mail": "self.version",
  3073. "illuminate/notifications": "self.version",
  3074. "illuminate/pagination": "self.version",
  3075. "illuminate/pipeline": "self.version",
  3076. "illuminate/process": "self.version",
  3077. "illuminate/queue": "self.version",
  3078. "illuminate/redis": "self.version",
  3079. "illuminate/routing": "self.version",
  3080. "illuminate/session": "self.version",
  3081. "illuminate/support": "self.version",
  3082. "illuminate/testing": "self.version",
  3083. "illuminate/translation": "self.version",
  3084. "illuminate/validation": "self.version",
  3085. "illuminate/view": "self.version",
  3086. "spatie/once": "*"
  3087. },
  3088. "require-dev": {
  3089. "ably/ably-php": "^1.0",
  3090. "aws/aws-sdk-php": "^3.322.9",
  3091. "ext-gmp": "*",
  3092. "fakerphp/faker": "^1.24",
  3093. "guzzlehttp/promises": "^2.0.3",
  3094. "guzzlehttp/psr7": "^2.4",
  3095. "league/flysystem-aws-s3-v3": "^3.25.1",
  3096. "league/flysystem-ftp": "^3.25.1",
  3097. "league/flysystem-path-prefixing": "^3.25.1",
  3098. "league/flysystem-read-only": "^3.25.1",
  3099. "league/flysystem-sftp-v3": "^3.25.1",
  3100. "mockery/mockery": "^1.6.10",
  3101. "nyholm/psr7": "^1.2",
  3102. "orchestra/testbench-core": "^9.6",
  3103. "pda/pheanstalk": "^5.0.6",
  3104. "phpstan/phpstan": "^1.11.5",
  3105. "phpunit/phpunit": "^10.5.35|^11.3.6",
  3106. "predis/predis": "^2.3",
  3107. "resend/resend-php": "^0.10.0",
  3108. "symfony/cache": "^7.0.3",
  3109. "symfony/http-client": "^7.0.3",
  3110. "symfony/psr-http-message-bridge": "^7.0.3",
  3111. "symfony/translation": "^7.0.3"
  3112. },
  3113. "suggest": {
  3114. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3115. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3116. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3117. "ext-apcu": "Required to use the APC cache driver.",
  3118. "ext-fileinfo": "Required to use the Filesystem class.",
  3119. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3120. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3121. "ext-memcached": "Required to use the memcache cache driver.",
  3122. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3123. "ext-pdo": "Required to use all database features.",
  3124. "ext-posix": "Required to use all features of the queue worker.",
  3125. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3126. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3127. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3128. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3129. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3130. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3131. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3132. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3133. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3134. "mockery/mockery": "Required to use mocking (^1.6).",
  3135. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3136. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3137. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3138. "predis/predis": "Required to use the predis connector (^2.3).",
  3139. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3140. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3141. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3142. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3143. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3144. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3145. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3146. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3147. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3148. },
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "11.x-dev"
  3153. }
  3154. },
  3155. "autoload": {
  3156. "files": [
  3157. "src/Illuminate/Collections/helpers.php",
  3158. "src/Illuminate/Events/functions.php",
  3159. "src/Illuminate/Filesystem/functions.php",
  3160. "src/Illuminate/Foundation/helpers.php",
  3161. "src/Illuminate/Log/functions.php",
  3162. "src/Illuminate/Support/functions.php",
  3163. "src/Illuminate/Support/helpers.php"
  3164. ],
  3165. "psr-4": {
  3166. "Illuminate\\": "src/Illuminate/",
  3167. "Illuminate\\Support\\": [
  3168. "src/Illuminate/Macroable/",
  3169. "src/Illuminate/Collections/",
  3170. "src/Illuminate/Conditionable/"
  3171. ]
  3172. }
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "MIT"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "Taylor Otwell",
  3181. "email": "taylor@laravel.com"
  3182. }
  3183. ],
  3184. "description": "The Laravel Framework.",
  3185. "homepage": "https://laravel.com",
  3186. "keywords": [
  3187. "framework",
  3188. "laravel"
  3189. ],
  3190. "support": {
  3191. "issues": "https://github.com/laravel/framework/issues",
  3192. "source": "https://github.com/laravel/framework"
  3193. },
  3194. "time": "2024-11-27T15:43:57+00:00"
  3195. },
  3196. {
  3197. "name": "laravel/prompts",
  3198. "version": "v0.3.2",
  3199. "source": {
  3200. "type": "git",
  3201. "url": "https://github.com/laravel/prompts.git",
  3202. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  3203. },
  3204. "dist": {
  3205. "type": "zip",
  3206. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  3207. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  3208. "shasum": ""
  3209. },
  3210. "require": {
  3211. "composer-runtime-api": "^2.2",
  3212. "ext-mbstring": "*",
  3213. "php": "^8.1",
  3214. "symfony/console": "^6.2|^7.0"
  3215. },
  3216. "conflict": {
  3217. "illuminate/console": ">=10.17.0 <10.25.0",
  3218. "laravel/framework": ">=10.17.0 <10.25.0"
  3219. },
  3220. "require-dev": {
  3221. "illuminate/collections": "^10.0|^11.0",
  3222. "mockery/mockery": "^1.5",
  3223. "pestphp/pest": "^2.3|^3.4",
  3224. "phpstan/phpstan": "^1.11",
  3225. "phpstan/phpstan-mockery": "^1.1"
  3226. },
  3227. "suggest": {
  3228. "ext-pcntl": "Required for the spinner to be animated."
  3229. },
  3230. "type": "library",
  3231. "extra": {
  3232. "branch-alias": {
  3233. "dev-main": "0.3.x-dev"
  3234. }
  3235. },
  3236. "autoload": {
  3237. "files": [
  3238. "src/helpers.php"
  3239. ],
  3240. "psr-4": {
  3241. "Laravel\\Prompts\\": "src/"
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3249. "support": {
  3250. "issues": "https://github.com/laravel/prompts/issues",
  3251. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  3252. },
  3253. "time": "2024-11-12T14:59:47+00:00"
  3254. },
  3255. {
  3256. "name": "laravel/sanctum",
  3257. "version": "v4.0.5",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/laravel/sanctum.git",
  3261. "reference": "fe361b9a63407a228f884eb78d7217f680b50140"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fe361b9a63407a228f884eb78d7217f680b50140",
  3266. "reference": "fe361b9a63407a228f884eb78d7217f680b50140",
  3267. "shasum": ""
  3268. },
  3269. "require": {
  3270. "ext-json": "*",
  3271. "illuminate/console": "^11.0",
  3272. "illuminate/contracts": "^11.0",
  3273. "illuminate/database": "^11.0",
  3274. "illuminate/support": "^11.0",
  3275. "php": "^8.2",
  3276. "symfony/console": "^7.0"
  3277. },
  3278. "require-dev": {
  3279. "mockery/mockery": "^1.6",
  3280. "orchestra/testbench": "^9.0",
  3281. "phpstan/phpstan": "^1.10",
  3282. "phpunit/phpunit": "^10.5"
  3283. },
  3284. "type": "library",
  3285. "extra": {
  3286. "laravel": {
  3287. "providers": [
  3288. "Laravel\\Sanctum\\SanctumServiceProvider"
  3289. ]
  3290. }
  3291. },
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Laravel\\Sanctum\\": "src/"
  3295. }
  3296. },
  3297. "notification-url": "https://packagist.org/downloads/",
  3298. "license": [
  3299. "MIT"
  3300. ],
  3301. "authors": [
  3302. {
  3303. "name": "Taylor Otwell",
  3304. "email": "taylor@laravel.com"
  3305. }
  3306. ],
  3307. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3308. "keywords": [
  3309. "auth",
  3310. "laravel",
  3311. "sanctum"
  3312. ],
  3313. "support": {
  3314. "issues": "https://github.com/laravel/sanctum/issues",
  3315. "source": "https://github.com/laravel/sanctum"
  3316. },
  3317. "time": "2024-11-26T14:36:23+00:00"
  3318. },
  3319. {
  3320. "name": "laravel/serializable-closure",
  3321. "version": "v2.0.0",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/laravel/serializable-closure.git",
  3325. "reference": "0d8d3d8086984996df86596a86dea60398093a81"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/0d8d3d8086984996df86596a86dea60398093a81",
  3330. "reference": "0d8d3d8086984996df86596a86dea60398093a81",
  3331. "shasum": ""
  3332. },
  3333. "require": {
  3334. "php": "^8.1"
  3335. },
  3336. "require-dev": {
  3337. "illuminate/support": "^10.0|^11.0",
  3338. "nesbot/carbon": "^2.67|^3.0",
  3339. "pestphp/pest": "^2.36",
  3340. "phpstan/phpstan": "^2.0",
  3341. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "branch-alias": {
  3346. "dev-master": "2.x-dev"
  3347. }
  3348. },
  3349. "autoload": {
  3350. "psr-4": {
  3351. "Laravel\\SerializableClosure\\": "src/"
  3352. }
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "MIT"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Taylor Otwell",
  3361. "email": "taylor@laravel.com"
  3362. },
  3363. {
  3364. "name": "Nuno Maduro",
  3365. "email": "nuno@laravel.com"
  3366. }
  3367. ],
  3368. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3369. "keywords": [
  3370. "closure",
  3371. "laravel",
  3372. "serializable"
  3373. ],
  3374. "support": {
  3375. "issues": "https://github.com/laravel/serializable-closure/issues",
  3376. "source": "https://github.com/laravel/serializable-closure"
  3377. },
  3378. "time": "2024-11-19T01:38:44+00:00"
  3379. },
  3380. {
  3381. "name": "laravel/socialite",
  3382. "version": "v5.16.0",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/laravel/socialite.git",
  3386. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  3391. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "ext-json": "*",
  3396. "firebase/php-jwt": "^6.4",
  3397. "guzzlehttp/guzzle": "^6.0|^7.0",
  3398. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3399. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3400. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3401. "league/oauth1-client": "^1.10.1",
  3402. "php": "^7.2|^8.0",
  3403. "phpseclib/phpseclib": "^3.0"
  3404. },
  3405. "require-dev": {
  3406. "mockery/mockery": "^1.0",
  3407. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3408. "phpstan/phpstan": "^1.10",
  3409. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3410. },
  3411. "type": "library",
  3412. "extra": {
  3413. "branch-alias": {
  3414. "dev-master": "5.x-dev"
  3415. },
  3416. "laravel": {
  3417. "providers": [
  3418. "Laravel\\Socialite\\SocialiteServiceProvider"
  3419. ],
  3420. "aliases": {
  3421. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3422. }
  3423. }
  3424. },
  3425. "autoload": {
  3426. "psr-4": {
  3427. "Laravel\\Socialite\\": "src/"
  3428. }
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "Taylor Otwell",
  3437. "email": "taylor@laravel.com"
  3438. }
  3439. ],
  3440. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3441. "homepage": "https://laravel.com",
  3442. "keywords": [
  3443. "laravel",
  3444. "oauth"
  3445. ],
  3446. "support": {
  3447. "issues": "https://github.com/laravel/socialite/issues",
  3448. "source": "https://github.com/laravel/socialite"
  3449. },
  3450. "time": "2024-09-03T09:46:57+00:00"
  3451. },
  3452. {
  3453. "name": "laravel/tinker",
  3454. "version": "v2.10.0",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/laravel/tinker.git",
  3458. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3463. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3468. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3469. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3470. "php": "^7.2.5|^8.0",
  3471. "psy/psysh": "^0.11.1|^0.12.0",
  3472. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3473. },
  3474. "require-dev": {
  3475. "mockery/mockery": "~1.3.3|^1.4.2",
  3476. "phpstan/phpstan": "^1.10",
  3477. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3478. },
  3479. "suggest": {
  3480. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3481. },
  3482. "type": "library",
  3483. "extra": {
  3484. "laravel": {
  3485. "providers": [
  3486. "Laravel\\Tinker\\TinkerServiceProvider"
  3487. ]
  3488. }
  3489. },
  3490. "autoload": {
  3491. "psr-4": {
  3492. "Laravel\\Tinker\\": "src/"
  3493. }
  3494. },
  3495. "notification-url": "https://packagist.org/downloads/",
  3496. "license": [
  3497. "MIT"
  3498. ],
  3499. "authors": [
  3500. {
  3501. "name": "Taylor Otwell",
  3502. "email": "taylor@laravel.com"
  3503. }
  3504. ],
  3505. "description": "Powerful REPL for the Laravel framework.",
  3506. "keywords": [
  3507. "REPL",
  3508. "Tinker",
  3509. "laravel",
  3510. "psysh"
  3511. ],
  3512. "support": {
  3513. "issues": "https://github.com/laravel/tinker/issues",
  3514. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  3515. },
  3516. "time": "2024-09-23T13:32:56+00:00"
  3517. },
  3518. {
  3519. "name": "league/commonmark",
  3520. "version": "2.5.3",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/thephpleague/commonmark.git",
  3524. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  3529. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "ext-mbstring": "*",
  3534. "league/config": "^1.1.1",
  3535. "php": "^7.4 || ^8.0",
  3536. "psr/event-dispatcher": "^1.0",
  3537. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3538. "symfony/polyfill-php80": "^1.16"
  3539. },
  3540. "require-dev": {
  3541. "cebe/markdown": "^1.0",
  3542. "commonmark/cmark": "0.31.1",
  3543. "commonmark/commonmark.js": "0.31.1",
  3544. "composer/package-versions-deprecated": "^1.8",
  3545. "embed/embed": "^4.4",
  3546. "erusev/parsedown": "^1.0",
  3547. "ext-json": "*",
  3548. "github/gfm": "0.29.0",
  3549. "michelf/php-markdown": "^1.4 || ^2.0",
  3550. "nyholm/psr7": "^1.5",
  3551. "phpstan/phpstan": "^1.8.2",
  3552. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3553. "scrutinizer/ocular": "^1.8.1",
  3554. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  3555. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  3556. "unleashedtech/php-coding-standard": "^3.1.1",
  3557. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3558. },
  3559. "suggest": {
  3560. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3561. },
  3562. "type": "library",
  3563. "extra": {
  3564. "branch-alias": {
  3565. "dev-main": "2.6-dev"
  3566. }
  3567. },
  3568. "autoload": {
  3569. "psr-4": {
  3570. "League\\CommonMark\\": "src"
  3571. }
  3572. },
  3573. "notification-url": "https://packagist.org/downloads/",
  3574. "license": [
  3575. "BSD-3-Clause"
  3576. ],
  3577. "authors": [
  3578. {
  3579. "name": "Colin O'Dell",
  3580. "email": "colinodell@gmail.com",
  3581. "homepage": "https://www.colinodell.com",
  3582. "role": "Lead Developer"
  3583. }
  3584. ],
  3585. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3586. "homepage": "https://commonmark.thephpleague.com",
  3587. "keywords": [
  3588. "commonmark",
  3589. "flavored",
  3590. "gfm",
  3591. "github",
  3592. "github-flavored",
  3593. "markdown",
  3594. "md",
  3595. "parser"
  3596. ],
  3597. "support": {
  3598. "docs": "https://commonmark.thephpleague.com/",
  3599. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3600. "issues": "https://github.com/thephpleague/commonmark/issues",
  3601. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3602. "source": "https://github.com/thephpleague/commonmark"
  3603. },
  3604. "funding": [
  3605. {
  3606. "url": "https://www.colinodell.com/sponsor",
  3607. "type": "custom"
  3608. },
  3609. {
  3610. "url": "https://www.paypal.me/colinpodell/10.00",
  3611. "type": "custom"
  3612. },
  3613. {
  3614. "url": "https://github.com/colinodell",
  3615. "type": "github"
  3616. },
  3617. {
  3618. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3619. "type": "tidelift"
  3620. }
  3621. ],
  3622. "time": "2024-08-16T11:46:16+00:00"
  3623. },
  3624. {
  3625. "name": "league/config",
  3626. "version": "v1.2.0",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/thephpleague/config.git",
  3630. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3635. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3636. "shasum": ""
  3637. },
  3638. "require": {
  3639. "dflydev/dot-access-data": "^3.0.1",
  3640. "nette/schema": "^1.2",
  3641. "php": "^7.4 || ^8.0"
  3642. },
  3643. "require-dev": {
  3644. "phpstan/phpstan": "^1.8.2",
  3645. "phpunit/phpunit": "^9.5.5",
  3646. "scrutinizer/ocular": "^1.8.1",
  3647. "unleashedtech/php-coding-standard": "^3.1",
  3648. "vimeo/psalm": "^4.7.3"
  3649. },
  3650. "type": "library",
  3651. "extra": {
  3652. "branch-alias": {
  3653. "dev-main": "1.2-dev"
  3654. }
  3655. },
  3656. "autoload": {
  3657. "psr-4": {
  3658. "League\\Config\\": "src"
  3659. }
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "BSD-3-Clause"
  3664. ],
  3665. "authors": [
  3666. {
  3667. "name": "Colin O'Dell",
  3668. "email": "colinodell@gmail.com",
  3669. "homepage": "https://www.colinodell.com",
  3670. "role": "Lead Developer"
  3671. }
  3672. ],
  3673. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3674. "homepage": "https://config.thephpleague.com",
  3675. "keywords": [
  3676. "array",
  3677. "config",
  3678. "configuration",
  3679. "dot",
  3680. "dot-access",
  3681. "nested",
  3682. "schema"
  3683. ],
  3684. "support": {
  3685. "docs": "https://config.thephpleague.com/",
  3686. "issues": "https://github.com/thephpleague/config/issues",
  3687. "rss": "https://github.com/thephpleague/config/releases.atom",
  3688. "source": "https://github.com/thephpleague/config"
  3689. },
  3690. "funding": [
  3691. {
  3692. "url": "https://www.colinodell.com/sponsor",
  3693. "type": "custom"
  3694. },
  3695. {
  3696. "url": "https://www.paypal.me/colinpodell/10.00",
  3697. "type": "custom"
  3698. },
  3699. {
  3700. "url": "https://github.com/colinodell",
  3701. "type": "github"
  3702. }
  3703. ],
  3704. "time": "2022-12-11T20:36:23+00:00"
  3705. },
  3706. {
  3707. "name": "league/csv",
  3708. "version": "9.18.0",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/thephpleague/csv.git",
  3712. "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/thephpleague/csv/zipball/b02d010e4055ae992247f6ffd1e7b103ef2a0790",
  3717. "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790",
  3718. "shasum": ""
  3719. },
  3720. "require": {
  3721. "ext-filter": "*",
  3722. "php": "^8.1.2"
  3723. },
  3724. "require-dev": {
  3725. "ext-dom": "*",
  3726. "ext-xdebug": "*",
  3727. "friendsofphp/php-cs-fixer": "^3.64.0",
  3728. "phpbench/phpbench": "^1.3.1",
  3729. "phpstan/phpstan": "^1.12.6",
  3730. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3731. "phpstan/phpstan-phpunit": "^1.4.0",
  3732. "phpstan/phpstan-strict-rules": "^1.6.1",
  3733. "phpunit/phpunit": "^10.5.16 || ^11.4.1",
  3734. "symfony/var-dumper": "^6.4.8 || ^7.1.5"
  3735. },
  3736. "suggest": {
  3737. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3738. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3739. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3740. },
  3741. "type": "library",
  3742. "extra": {
  3743. "branch-alias": {
  3744. "dev-master": "9.x-dev"
  3745. }
  3746. },
  3747. "autoload": {
  3748. "files": [
  3749. "src/functions_include.php"
  3750. ],
  3751. "psr-4": {
  3752. "League\\Csv\\": "src/"
  3753. }
  3754. },
  3755. "notification-url": "https://packagist.org/downloads/",
  3756. "license": [
  3757. "MIT"
  3758. ],
  3759. "authors": [
  3760. {
  3761. "name": "Ignace Nyamagana Butera",
  3762. "email": "nyamsprod@gmail.com",
  3763. "homepage": "https://github.com/nyamsprod/",
  3764. "role": "Developer"
  3765. }
  3766. ],
  3767. "description": "CSV data manipulation made easy in PHP",
  3768. "homepage": "https://csv.thephpleague.com",
  3769. "keywords": [
  3770. "convert",
  3771. "csv",
  3772. "export",
  3773. "filter",
  3774. "import",
  3775. "read",
  3776. "transform",
  3777. "write"
  3778. ],
  3779. "support": {
  3780. "docs": "https://csv.thephpleague.com",
  3781. "issues": "https://github.com/thephpleague/csv/issues",
  3782. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3783. "source": "https://github.com/thephpleague/csv"
  3784. },
  3785. "funding": [
  3786. {
  3787. "url": "https://github.com/sponsors/nyamsprod",
  3788. "type": "github"
  3789. }
  3790. ],
  3791. "time": "2024-10-18T08:14:48+00:00"
  3792. },
  3793. {
  3794. "name": "league/flysystem",
  3795. "version": "3.29.1",
  3796. "source": {
  3797. "type": "git",
  3798. "url": "https://github.com/thephpleague/flysystem.git",
  3799. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3800. },
  3801. "dist": {
  3802. "type": "zip",
  3803. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3804. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3805. "shasum": ""
  3806. },
  3807. "require": {
  3808. "league/flysystem-local": "^3.0.0",
  3809. "league/mime-type-detection": "^1.0.0",
  3810. "php": "^8.0.2"
  3811. },
  3812. "conflict": {
  3813. "async-aws/core": "<1.19.0",
  3814. "async-aws/s3": "<1.14.0",
  3815. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3816. "guzzlehttp/guzzle": "<7.0",
  3817. "guzzlehttp/ringphp": "<1.1.1",
  3818. "phpseclib/phpseclib": "3.0.15",
  3819. "symfony/http-client": "<5.2"
  3820. },
  3821. "require-dev": {
  3822. "async-aws/s3": "^1.5 || ^2.0",
  3823. "async-aws/simple-s3": "^1.1 || ^2.0",
  3824. "aws/aws-sdk-php": "^3.295.10",
  3825. "composer/semver": "^3.0",
  3826. "ext-fileinfo": "*",
  3827. "ext-ftp": "*",
  3828. "ext-mongodb": "^1.3",
  3829. "ext-zip": "*",
  3830. "friendsofphp/php-cs-fixer": "^3.5",
  3831. "google/cloud-storage": "^1.23",
  3832. "guzzlehttp/psr7": "^2.6",
  3833. "microsoft/azure-storage-blob": "^1.1",
  3834. "mongodb/mongodb": "^1.2",
  3835. "phpseclib/phpseclib": "^3.0.36",
  3836. "phpstan/phpstan": "^1.10",
  3837. "phpunit/phpunit": "^9.5.11|^10.0",
  3838. "sabre/dav": "^4.6.0"
  3839. },
  3840. "type": "library",
  3841. "autoload": {
  3842. "psr-4": {
  3843. "League\\Flysystem\\": "src"
  3844. }
  3845. },
  3846. "notification-url": "https://packagist.org/downloads/",
  3847. "license": [
  3848. "MIT"
  3849. ],
  3850. "authors": [
  3851. {
  3852. "name": "Frank de Jonge",
  3853. "email": "info@frankdejonge.nl"
  3854. }
  3855. ],
  3856. "description": "File storage abstraction for PHP",
  3857. "keywords": [
  3858. "WebDAV",
  3859. "aws",
  3860. "cloud",
  3861. "file",
  3862. "files",
  3863. "filesystem",
  3864. "filesystems",
  3865. "ftp",
  3866. "s3",
  3867. "sftp",
  3868. "storage"
  3869. ],
  3870. "support": {
  3871. "issues": "https://github.com/thephpleague/flysystem/issues",
  3872. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  3873. },
  3874. "time": "2024-10-08T08:58:34+00:00"
  3875. },
  3876. {
  3877. "name": "league/flysystem-local",
  3878. "version": "3.29.0",
  3879. "source": {
  3880. "type": "git",
  3881. "url": "https://github.com/thephpleague/flysystem-local.git",
  3882. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  3883. },
  3884. "dist": {
  3885. "type": "zip",
  3886. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3887. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3888. "shasum": ""
  3889. },
  3890. "require": {
  3891. "ext-fileinfo": "*",
  3892. "league/flysystem": "^3.0.0",
  3893. "league/mime-type-detection": "^1.0.0",
  3894. "php": "^8.0.2"
  3895. },
  3896. "type": "library",
  3897. "autoload": {
  3898. "psr-4": {
  3899. "League\\Flysystem\\Local\\": ""
  3900. }
  3901. },
  3902. "notification-url": "https://packagist.org/downloads/",
  3903. "license": [
  3904. "MIT"
  3905. ],
  3906. "authors": [
  3907. {
  3908. "name": "Frank de Jonge",
  3909. "email": "info@frankdejonge.nl"
  3910. }
  3911. ],
  3912. "description": "Local filesystem adapter for Flysystem.",
  3913. "keywords": [
  3914. "Flysystem",
  3915. "file",
  3916. "files",
  3917. "filesystem",
  3918. "local"
  3919. ],
  3920. "support": {
  3921. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  3922. },
  3923. "time": "2024-08-09T21:24:39+00:00"
  3924. },
  3925. {
  3926. "name": "league/mime-type-detection",
  3927. "version": "1.16.0",
  3928. "source": {
  3929. "type": "git",
  3930. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3931. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3932. },
  3933. "dist": {
  3934. "type": "zip",
  3935. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3936. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3937. "shasum": ""
  3938. },
  3939. "require": {
  3940. "ext-fileinfo": "*",
  3941. "php": "^7.4 || ^8.0"
  3942. },
  3943. "require-dev": {
  3944. "friendsofphp/php-cs-fixer": "^3.2",
  3945. "phpstan/phpstan": "^0.12.68",
  3946. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3947. },
  3948. "type": "library",
  3949. "autoload": {
  3950. "psr-4": {
  3951. "League\\MimeTypeDetection\\": "src"
  3952. }
  3953. },
  3954. "notification-url": "https://packagist.org/downloads/",
  3955. "license": [
  3956. "MIT"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "Frank de Jonge",
  3961. "email": "info@frankdejonge.nl"
  3962. }
  3963. ],
  3964. "description": "Mime-type detection for Flysystem",
  3965. "support": {
  3966. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3967. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3968. },
  3969. "funding": [
  3970. {
  3971. "url": "https://github.com/frankdejonge",
  3972. "type": "github"
  3973. },
  3974. {
  3975. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3976. "type": "tidelift"
  3977. }
  3978. ],
  3979. "time": "2024-09-21T08:32:55+00:00"
  3980. },
  3981. {
  3982. "name": "league/oauth1-client",
  3983. "version": "v1.10.1",
  3984. "source": {
  3985. "type": "git",
  3986. "url": "https://github.com/thephpleague/oauth1-client.git",
  3987. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3988. },
  3989. "dist": {
  3990. "type": "zip",
  3991. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3992. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3993. "shasum": ""
  3994. },
  3995. "require": {
  3996. "ext-json": "*",
  3997. "ext-openssl": "*",
  3998. "guzzlehttp/guzzle": "^6.0|^7.0",
  3999. "guzzlehttp/psr7": "^1.7|^2.0",
  4000. "php": ">=7.1||>=8.0"
  4001. },
  4002. "require-dev": {
  4003. "ext-simplexml": "*",
  4004. "friendsofphp/php-cs-fixer": "^2.17",
  4005. "mockery/mockery": "^1.3.3",
  4006. "phpstan/phpstan": "^0.12.42",
  4007. "phpunit/phpunit": "^7.5||9.5"
  4008. },
  4009. "suggest": {
  4010. "ext-simplexml": "For decoding XML-based responses."
  4011. },
  4012. "type": "library",
  4013. "extra": {
  4014. "branch-alias": {
  4015. "dev-master": "1.0-dev",
  4016. "dev-develop": "2.0-dev"
  4017. }
  4018. },
  4019. "autoload": {
  4020. "psr-4": {
  4021. "League\\OAuth1\\Client\\": "src/"
  4022. }
  4023. },
  4024. "notification-url": "https://packagist.org/downloads/",
  4025. "license": [
  4026. "MIT"
  4027. ],
  4028. "authors": [
  4029. {
  4030. "name": "Ben Corlett",
  4031. "email": "bencorlett@me.com",
  4032. "homepage": "http://www.webcomm.com.au",
  4033. "role": "Developer"
  4034. }
  4035. ],
  4036. "description": "OAuth 1.0 Client Library",
  4037. "keywords": [
  4038. "Authentication",
  4039. "SSO",
  4040. "authorization",
  4041. "bitbucket",
  4042. "identity",
  4043. "idp",
  4044. "oauth",
  4045. "oauth1",
  4046. "single sign on",
  4047. "trello",
  4048. "tumblr",
  4049. "twitter"
  4050. ],
  4051. "support": {
  4052. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4053. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4054. },
  4055. "time": "2022-04-15T14:02:14+00:00"
  4056. },
  4057. {
  4058. "name": "league/uri",
  4059. "version": "7.4.1",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/thephpleague/uri.git",
  4063. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4068. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4069. "shasum": ""
  4070. },
  4071. "require": {
  4072. "league/uri-interfaces": "^7.3",
  4073. "php": "^8.1"
  4074. },
  4075. "conflict": {
  4076. "league/uri-schemes": "^1.0"
  4077. },
  4078. "suggest": {
  4079. "ext-bcmath": "to improve IPV4 host parsing",
  4080. "ext-fileinfo": "to create Data URI from file contennts",
  4081. "ext-gmp": "to improve IPV4 host parsing",
  4082. "ext-intl": "to handle IDN host with the best performance",
  4083. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4084. "league/uri-components": "Needed to easily manipulate URI objects components",
  4085. "php-64bit": "to improve IPV4 host parsing",
  4086. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4087. },
  4088. "type": "library",
  4089. "extra": {
  4090. "branch-alias": {
  4091. "dev-master": "7.x-dev"
  4092. }
  4093. },
  4094. "autoload": {
  4095. "psr-4": {
  4096. "League\\Uri\\": ""
  4097. }
  4098. },
  4099. "notification-url": "https://packagist.org/downloads/",
  4100. "license": [
  4101. "MIT"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "Ignace Nyamagana Butera",
  4106. "email": "nyamsprod@gmail.com",
  4107. "homepage": "https://nyamsprod.com"
  4108. }
  4109. ],
  4110. "description": "URI manipulation library",
  4111. "homepage": "https://uri.thephpleague.com",
  4112. "keywords": [
  4113. "data-uri",
  4114. "file-uri",
  4115. "ftp",
  4116. "hostname",
  4117. "http",
  4118. "https",
  4119. "middleware",
  4120. "parse_str",
  4121. "parse_url",
  4122. "psr-7",
  4123. "query-string",
  4124. "querystring",
  4125. "rfc3986",
  4126. "rfc3987",
  4127. "rfc6570",
  4128. "uri",
  4129. "uri-template",
  4130. "url",
  4131. "ws"
  4132. ],
  4133. "support": {
  4134. "docs": "https://uri.thephpleague.com",
  4135. "forum": "https://thephpleague.slack.com",
  4136. "issues": "https://github.com/thephpleague/uri-src/issues",
  4137. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  4138. },
  4139. "funding": [
  4140. {
  4141. "url": "https://github.com/sponsors/nyamsprod",
  4142. "type": "github"
  4143. }
  4144. ],
  4145. "time": "2024-03-23T07:42:40+00:00"
  4146. },
  4147. {
  4148. "name": "league/uri-interfaces",
  4149. "version": "7.4.1",
  4150. "source": {
  4151. "type": "git",
  4152. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4153. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  4154. },
  4155. "dist": {
  4156. "type": "zip",
  4157. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  4158. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  4159. "shasum": ""
  4160. },
  4161. "require": {
  4162. "ext-filter": "*",
  4163. "php": "^8.1",
  4164. "psr/http-factory": "^1",
  4165. "psr/http-message": "^1.1 || ^2.0"
  4166. },
  4167. "suggest": {
  4168. "ext-bcmath": "to improve IPV4 host parsing",
  4169. "ext-gmp": "to improve IPV4 host parsing",
  4170. "ext-intl": "to handle IDN host with the best performance",
  4171. "php-64bit": "to improve IPV4 host parsing",
  4172. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4173. },
  4174. "type": "library",
  4175. "extra": {
  4176. "branch-alias": {
  4177. "dev-master": "7.x-dev"
  4178. }
  4179. },
  4180. "autoload": {
  4181. "psr-4": {
  4182. "League\\Uri\\": ""
  4183. }
  4184. },
  4185. "notification-url": "https://packagist.org/downloads/",
  4186. "license": [
  4187. "MIT"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "Ignace Nyamagana Butera",
  4192. "email": "nyamsprod@gmail.com",
  4193. "homepage": "https://nyamsprod.com"
  4194. }
  4195. ],
  4196. "description": "Common interfaces and classes for URI representation and interaction",
  4197. "homepage": "https://uri.thephpleague.com",
  4198. "keywords": [
  4199. "data-uri",
  4200. "file-uri",
  4201. "ftp",
  4202. "hostname",
  4203. "http",
  4204. "https",
  4205. "parse_str",
  4206. "parse_url",
  4207. "psr-7",
  4208. "query-string",
  4209. "querystring",
  4210. "rfc3986",
  4211. "rfc3987",
  4212. "rfc6570",
  4213. "uri",
  4214. "url",
  4215. "ws"
  4216. ],
  4217. "support": {
  4218. "docs": "https://uri.thephpleague.com",
  4219. "forum": "https://thephpleague.slack.com",
  4220. "issues": "https://github.com/thephpleague/uri-src/issues",
  4221. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  4222. },
  4223. "funding": [
  4224. {
  4225. "url": "https://github.com/sponsors/nyamsprod",
  4226. "type": "github"
  4227. }
  4228. ],
  4229. "time": "2024-03-23T07:42:40+00:00"
  4230. },
  4231. {
  4232. "name": "livewire/livewire",
  4233. "version": "v3.5.12",
  4234. "source": {
  4235. "type": "git",
  4236. "url": "https://github.com/livewire/livewire.git",
  4237. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d"
  4238. },
  4239. "dist": {
  4240. "type": "zip",
  4241. "url": "https://api.github.com/repos/livewire/livewire/zipball/3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4242. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4243. "shasum": ""
  4244. },
  4245. "require": {
  4246. "illuminate/database": "^10.0|^11.0",
  4247. "illuminate/routing": "^10.0|^11.0",
  4248. "illuminate/support": "^10.0|^11.0",
  4249. "illuminate/validation": "^10.0|^11.0",
  4250. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4251. "league/mime-type-detection": "^1.9",
  4252. "php": "^8.1",
  4253. "symfony/console": "^6.0|^7.0",
  4254. "symfony/http-kernel": "^6.2|^7.0"
  4255. },
  4256. "require-dev": {
  4257. "calebporzio/sushi": "^2.1",
  4258. "laravel/framework": "^10.15.0|^11.0",
  4259. "mockery/mockery": "^1.3.1",
  4260. "orchestra/testbench": "^8.21.0|^9.0",
  4261. "orchestra/testbench-dusk": "^8.24|^9.1",
  4262. "phpunit/phpunit": "^10.4",
  4263. "psy/psysh": "^0.11.22|^0.12"
  4264. },
  4265. "type": "library",
  4266. "extra": {
  4267. "laravel": {
  4268. "aliases": {
  4269. "Livewire": "Livewire\\Livewire"
  4270. },
  4271. "providers": [
  4272. "Livewire\\LivewireServiceProvider"
  4273. ]
  4274. }
  4275. },
  4276. "autoload": {
  4277. "files": [
  4278. "src/helpers.php"
  4279. ],
  4280. "psr-4": {
  4281. "Livewire\\": "src/"
  4282. }
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "Caleb Porzio",
  4291. "email": "calebporzio@gmail.com"
  4292. }
  4293. ],
  4294. "description": "A front-end framework for Laravel.",
  4295. "support": {
  4296. "issues": "https://github.com/livewire/livewire/issues",
  4297. "source": "https://github.com/livewire/livewire/tree/v3.5.12"
  4298. },
  4299. "funding": [
  4300. {
  4301. "url": "https://github.com/livewire",
  4302. "type": "github"
  4303. }
  4304. ],
  4305. "time": "2024-10-15T19:35:06+00:00"
  4306. },
  4307. {
  4308. "name": "masterminds/html5",
  4309. "version": "2.9.0",
  4310. "source": {
  4311. "type": "git",
  4312. "url": "https://github.com/Masterminds/html5-php.git",
  4313. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4314. },
  4315. "dist": {
  4316. "type": "zip",
  4317. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4318. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4319. "shasum": ""
  4320. },
  4321. "require": {
  4322. "ext-dom": "*",
  4323. "php": ">=5.3.0"
  4324. },
  4325. "require-dev": {
  4326. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4327. },
  4328. "type": "library",
  4329. "extra": {
  4330. "branch-alias": {
  4331. "dev-master": "2.7-dev"
  4332. }
  4333. },
  4334. "autoload": {
  4335. "psr-4": {
  4336. "Masterminds\\": "src"
  4337. }
  4338. },
  4339. "notification-url": "https://packagist.org/downloads/",
  4340. "license": [
  4341. "MIT"
  4342. ],
  4343. "authors": [
  4344. {
  4345. "name": "Matt Butcher",
  4346. "email": "technosophos@gmail.com"
  4347. },
  4348. {
  4349. "name": "Matt Farina",
  4350. "email": "matt@mattfarina.com"
  4351. },
  4352. {
  4353. "name": "Asmir Mustafic",
  4354. "email": "goetas@gmail.com"
  4355. }
  4356. ],
  4357. "description": "An HTML5 parser and serializer.",
  4358. "homepage": "http://masterminds.github.io/html5-php",
  4359. "keywords": [
  4360. "HTML5",
  4361. "dom",
  4362. "html",
  4363. "parser",
  4364. "querypath",
  4365. "serializer",
  4366. "xml"
  4367. ],
  4368. "support": {
  4369. "issues": "https://github.com/Masterminds/html5-php/issues",
  4370. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4371. },
  4372. "time": "2024-03-31T07:05:07+00:00"
  4373. },
  4374. {
  4375. "name": "matomo/device-detector",
  4376. "version": "6.4.1",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/matomo-org/device-detector.git",
  4380. "reference": "0d364e0dd6c177da3c24cd4049178026324fd7ac"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/0d364e0dd6c177da3c24cd4049178026324fd7ac",
  4385. "reference": "0d364e0dd6c177da3c24cd4049178026324fd7ac",
  4386. "shasum": ""
  4387. },
  4388. "require": {
  4389. "mustangostang/spyc": "*",
  4390. "php": "^7.2|^8.0"
  4391. },
  4392. "replace": {
  4393. "piwik/device-detector": "self.version"
  4394. },
  4395. "require-dev": {
  4396. "matthiasmullie/scrapbook": "^1.4.7",
  4397. "mayflower/mo4-coding-standard": "^v9.0.0",
  4398. "phpstan/phpstan": "^1.10.44",
  4399. "phpunit/phpunit": "^8.5.8",
  4400. "psr/cache": "^1.0.1",
  4401. "psr/simple-cache": "^1.0.1",
  4402. "symfony/yaml": "^5.1.7"
  4403. },
  4404. "suggest": {
  4405. "doctrine/cache": "Can directly be used for caching purpose",
  4406. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4407. },
  4408. "type": "library",
  4409. "autoload": {
  4410. "psr-4": {
  4411. "DeviceDetector\\": ""
  4412. },
  4413. "exclude-from-classmap": [
  4414. "Tests/"
  4415. ]
  4416. },
  4417. "notification-url": "https://packagist.org/downloads/",
  4418. "license": [
  4419. "LGPL-3.0-or-later"
  4420. ],
  4421. "authors": [
  4422. {
  4423. "name": "The Matomo Team",
  4424. "email": "hello@matomo.org",
  4425. "homepage": "https://matomo.org/team/"
  4426. }
  4427. ],
  4428. "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.",
  4429. "homepage": "https://matomo.org",
  4430. "keywords": [
  4431. "devicedetection",
  4432. "parser",
  4433. "useragent"
  4434. ],
  4435. "support": {
  4436. "forum": "https://forum.matomo.org/",
  4437. "issues": "https://github.com/matomo-org/device-detector/issues",
  4438. "source": "https://github.com/matomo-org/matomo",
  4439. "wiki": "https://dev.matomo.org/"
  4440. },
  4441. "time": "2024-09-24T13:50:04+00:00"
  4442. },
  4443. {
  4444. "name": "monolog/monolog",
  4445. "version": "3.8.0",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://github.com/Seldaek/monolog.git",
  4449. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  4454. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  4455. "shasum": ""
  4456. },
  4457. "require": {
  4458. "php": ">=8.1",
  4459. "psr/log": "^2.0 || ^3.0"
  4460. },
  4461. "provide": {
  4462. "psr/log-implementation": "3.0.0"
  4463. },
  4464. "require-dev": {
  4465. "aws/aws-sdk-php": "^3.0",
  4466. "doctrine/couchdb": "~1.0@dev",
  4467. "elasticsearch/elasticsearch": "^7 || ^8",
  4468. "ext-json": "*",
  4469. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4470. "guzzlehttp/guzzle": "^7.4.5",
  4471. "guzzlehttp/psr7": "^2.2",
  4472. "mongodb/mongodb": "^1.8",
  4473. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4474. "php-console/php-console": "^3.1.8",
  4475. "phpstan/phpstan": "^2",
  4476. "phpstan/phpstan-deprecation-rules": "^2",
  4477. "phpstan/phpstan-strict-rules": "^2",
  4478. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4479. "predis/predis": "^1.1 || ^2",
  4480. "rollbar/rollbar": "^4.0",
  4481. "ruflin/elastica": "^7 || ^8",
  4482. "symfony/mailer": "^5.4 || ^6",
  4483. "symfony/mime": "^5.4 || ^6"
  4484. },
  4485. "suggest": {
  4486. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4487. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4488. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4489. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4490. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4491. "ext-mbstring": "Allow to work properly with unicode symbols",
  4492. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4493. "ext-openssl": "Required to send log messages using SSL",
  4494. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4495. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4496. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4497. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4498. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4499. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4500. },
  4501. "type": "library",
  4502. "extra": {
  4503. "branch-alias": {
  4504. "dev-main": "3.x-dev"
  4505. }
  4506. },
  4507. "autoload": {
  4508. "psr-4": {
  4509. "Monolog\\": "src/Monolog"
  4510. }
  4511. },
  4512. "notification-url": "https://packagist.org/downloads/",
  4513. "license": [
  4514. "MIT"
  4515. ],
  4516. "authors": [
  4517. {
  4518. "name": "Jordi Boggiano",
  4519. "email": "j.boggiano@seld.be",
  4520. "homepage": "https://seld.be"
  4521. }
  4522. ],
  4523. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4524. "homepage": "https://github.com/Seldaek/monolog",
  4525. "keywords": [
  4526. "log",
  4527. "logging",
  4528. "psr-3"
  4529. ],
  4530. "support": {
  4531. "issues": "https://github.com/Seldaek/monolog/issues",
  4532. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  4533. },
  4534. "funding": [
  4535. {
  4536. "url": "https://github.com/Seldaek",
  4537. "type": "github"
  4538. },
  4539. {
  4540. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4541. "type": "tidelift"
  4542. }
  4543. ],
  4544. "time": "2024-11-12T13:57:08+00:00"
  4545. },
  4546. {
  4547. "name": "mtdowling/jmespath.php",
  4548. "version": "2.8.0",
  4549. "source": {
  4550. "type": "git",
  4551. "url": "https://github.com/jmespath/jmespath.php.git",
  4552. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4553. },
  4554. "dist": {
  4555. "type": "zip",
  4556. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4557. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4558. "shasum": ""
  4559. },
  4560. "require": {
  4561. "php": "^7.2.5 || ^8.0",
  4562. "symfony/polyfill-mbstring": "^1.17"
  4563. },
  4564. "require-dev": {
  4565. "composer/xdebug-handler": "^3.0.3",
  4566. "phpunit/phpunit": "^8.5.33"
  4567. },
  4568. "bin": [
  4569. "bin/jp.php"
  4570. ],
  4571. "type": "library",
  4572. "extra": {
  4573. "branch-alias": {
  4574. "dev-master": "2.8-dev"
  4575. }
  4576. },
  4577. "autoload": {
  4578. "files": [
  4579. "src/JmesPath.php"
  4580. ],
  4581. "psr-4": {
  4582. "JmesPath\\": "src/"
  4583. }
  4584. },
  4585. "notification-url": "https://packagist.org/downloads/",
  4586. "license": [
  4587. "MIT"
  4588. ],
  4589. "authors": [
  4590. {
  4591. "name": "Graham Campbell",
  4592. "email": "hello@gjcampbell.co.uk",
  4593. "homepage": "https://github.com/GrahamCampbell"
  4594. },
  4595. {
  4596. "name": "Michael Dowling",
  4597. "email": "mtdowling@gmail.com",
  4598. "homepage": "https://github.com/mtdowling"
  4599. }
  4600. ],
  4601. "description": "Declaratively specify how to extract elements from a JSON document",
  4602. "keywords": [
  4603. "json",
  4604. "jsonpath"
  4605. ],
  4606. "support": {
  4607. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4608. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4609. },
  4610. "time": "2024-09-04T18:46:31+00:00"
  4611. },
  4612. {
  4613. "name": "mustangostang/spyc",
  4614. "version": "0.6.3",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/mustangostang/spyc.git",
  4618. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4623. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4624. "shasum": ""
  4625. },
  4626. "require": {
  4627. "php": ">=5.3.1"
  4628. },
  4629. "require-dev": {
  4630. "phpunit/phpunit": "4.3.*@dev"
  4631. },
  4632. "type": "library",
  4633. "extra": {
  4634. "branch-alias": {
  4635. "dev-master": "0.5.x-dev"
  4636. }
  4637. },
  4638. "autoload": {
  4639. "files": [
  4640. "Spyc.php"
  4641. ]
  4642. },
  4643. "notification-url": "https://packagist.org/downloads/",
  4644. "license": [
  4645. "MIT"
  4646. ],
  4647. "authors": [
  4648. {
  4649. "name": "mustangostang",
  4650. "email": "vlad.andersen@gmail.com"
  4651. }
  4652. ],
  4653. "description": "A simple YAML loader/dumper class for PHP",
  4654. "homepage": "https://github.com/mustangostang/spyc/",
  4655. "keywords": [
  4656. "spyc",
  4657. "yaml",
  4658. "yml"
  4659. ],
  4660. "support": {
  4661. "issues": "https://github.com/mustangostang/spyc/issues",
  4662. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4663. },
  4664. "time": "2019-09-10T13:16:29+00:00"
  4665. },
  4666. {
  4667. "name": "nesbot/carbon",
  4668. "version": "3.8.2",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/briannesbitt/Carbon.git",
  4672. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  4677. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  4678. "shasum": ""
  4679. },
  4680. "require": {
  4681. "carbonphp/carbon-doctrine-types": "<100.0",
  4682. "ext-json": "*",
  4683. "php": "^8.1",
  4684. "psr/clock": "^1.0",
  4685. "symfony/clock": "^6.3 || ^7.0",
  4686. "symfony/polyfill-mbstring": "^1.0",
  4687. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4688. },
  4689. "provide": {
  4690. "psr/clock-implementation": "1.0"
  4691. },
  4692. "require-dev": {
  4693. "doctrine/dbal": "^3.6.3 || ^4.0",
  4694. "doctrine/orm": "^2.15.2 || ^3.0",
  4695. "friendsofphp/php-cs-fixer": "^3.57.2",
  4696. "kylekatarnls/multi-tester": "^2.5.3",
  4697. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4698. "phpmd/phpmd": "^2.15.0",
  4699. "phpstan/extension-installer": "^1.3.1",
  4700. "phpstan/phpstan": "^1.11.2",
  4701. "phpunit/phpunit": "^10.5.20",
  4702. "squizlabs/php_codesniffer": "^3.9.0"
  4703. },
  4704. "bin": [
  4705. "bin/carbon"
  4706. ],
  4707. "type": "library",
  4708. "extra": {
  4709. "branch-alias": {
  4710. "dev-master": "3.x-dev",
  4711. "dev-2.x": "2.x-dev"
  4712. },
  4713. "laravel": {
  4714. "providers": [
  4715. "Carbon\\Laravel\\ServiceProvider"
  4716. ]
  4717. },
  4718. "phpstan": {
  4719. "includes": [
  4720. "extension.neon"
  4721. ]
  4722. }
  4723. },
  4724. "autoload": {
  4725. "psr-4": {
  4726. "Carbon\\": "src/Carbon/"
  4727. }
  4728. },
  4729. "notification-url": "https://packagist.org/downloads/",
  4730. "license": [
  4731. "MIT"
  4732. ],
  4733. "authors": [
  4734. {
  4735. "name": "Brian Nesbitt",
  4736. "email": "brian@nesbot.com",
  4737. "homepage": "https://markido.com"
  4738. },
  4739. {
  4740. "name": "kylekatarnls",
  4741. "homepage": "https://github.com/kylekatarnls"
  4742. }
  4743. ],
  4744. "description": "An API extension for DateTime that supports 281 different languages.",
  4745. "homepage": "https://carbon.nesbot.com",
  4746. "keywords": [
  4747. "date",
  4748. "datetime",
  4749. "time"
  4750. ],
  4751. "support": {
  4752. "docs": "https://carbon.nesbot.com/docs",
  4753. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4754. "source": "https://github.com/briannesbitt/Carbon"
  4755. },
  4756. "funding": [
  4757. {
  4758. "url": "https://github.com/sponsors/kylekatarnls",
  4759. "type": "github"
  4760. },
  4761. {
  4762. "url": "https://opencollective.com/Carbon#sponsor",
  4763. "type": "opencollective"
  4764. },
  4765. {
  4766. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4767. "type": "tidelift"
  4768. }
  4769. ],
  4770. "time": "2024-11-07T17:46:48+00:00"
  4771. },
  4772. {
  4773. "name": "nette/schema",
  4774. "version": "v1.3.2",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/nette/schema.git",
  4778. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4783. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4784. "shasum": ""
  4785. },
  4786. "require": {
  4787. "nette/utils": "^4.0",
  4788. "php": "8.1 - 8.4"
  4789. },
  4790. "require-dev": {
  4791. "nette/tester": "^2.5.2",
  4792. "phpstan/phpstan-nette": "^1.0",
  4793. "tracy/tracy": "^2.8"
  4794. },
  4795. "type": "library",
  4796. "extra": {
  4797. "branch-alias": {
  4798. "dev-master": "1.3-dev"
  4799. }
  4800. },
  4801. "autoload": {
  4802. "classmap": [
  4803. "src/"
  4804. ]
  4805. },
  4806. "notification-url": "https://packagist.org/downloads/",
  4807. "license": [
  4808. "BSD-3-Clause",
  4809. "GPL-2.0-only",
  4810. "GPL-3.0-only"
  4811. ],
  4812. "authors": [
  4813. {
  4814. "name": "David Grudl",
  4815. "homepage": "https://davidgrudl.com"
  4816. },
  4817. {
  4818. "name": "Nette Community",
  4819. "homepage": "https://nette.org/contributors"
  4820. }
  4821. ],
  4822. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4823. "homepage": "https://nette.org",
  4824. "keywords": [
  4825. "config",
  4826. "nette"
  4827. ],
  4828. "support": {
  4829. "issues": "https://github.com/nette/schema/issues",
  4830. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4831. },
  4832. "time": "2024-10-06T23:10:23+00:00"
  4833. },
  4834. {
  4835. "name": "nette/utils",
  4836. "version": "v4.0.5",
  4837. "source": {
  4838. "type": "git",
  4839. "url": "https://github.com/nette/utils.git",
  4840. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  4841. },
  4842. "dist": {
  4843. "type": "zip",
  4844. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4845. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4846. "shasum": ""
  4847. },
  4848. "require": {
  4849. "php": "8.0 - 8.4"
  4850. },
  4851. "conflict": {
  4852. "nette/finder": "<3",
  4853. "nette/schema": "<1.2.2"
  4854. },
  4855. "require-dev": {
  4856. "jetbrains/phpstorm-attributes": "dev-master",
  4857. "nette/tester": "^2.5",
  4858. "phpstan/phpstan": "^1.0",
  4859. "tracy/tracy": "^2.9"
  4860. },
  4861. "suggest": {
  4862. "ext-gd": "to use Image",
  4863. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4864. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4865. "ext-json": "to use Nette\\Utils\\Json",
  4866. "ext-mbstring": "to use Strings::lower() etc...",
  4867. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4868. },
  4869. "type": "library",
  4870. "extra": {
  4871. "branch-alias": {
  4872. "dev-master": "4.0-dev"
  4873. }
  4874. },
  4875. "autoload": {
  4876. "classmap": [
  4877. "src/"
  4878. ]
  4879. },
  4880. "notification-url": "https://packagist.org/downloads/",
  4881. "license": [
  4882. "BSD-3-Clause",
  4883. "GPL-2.0-only",
  4884. "GPL-3.0-only"
  4885. ],
  4886. "authors": [
  4887. {
  4888. "name": "David Grudl",
  4889. "homepage": "https://davidgrudl.com"
  4890. },
  4891. {
  4892. "name": "Nette Community",
  4893. "homepage": "https://nette.org/contributors"
  4894. }
  4895. ],
  4896. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4897. "homepage": "https://nette.org",
  4898. "keywords": [
  4899. "array",
  4900. "core",
  4901. "datetime",
  4902. "images",
  4903. "json",
  4904. "nette",
  4905. "paginator",
  4906. "password",
  4907. "slugify",
  4908. "string",
  4909. "unicode",
  4910. "utf-8",
  4911. "utility",
  4912. "validation"
  4913. ],
  4914. "support": {
  4915. "issues": "https://github.com/nette/utils/issues",
  4916. "source": "https://github.com/nette/utils/tree/v4.0.5"
  4917. },
  4918. "time": "2024-08-07T15:39:19+00:00"
  4919. },
  4920. {
  4921. "name": "nikic/php-parser",
  4922. "version": "v5.3.1",
  4923. "source": {
  4924. "type": "git",
  4925. "url": "https://github.com/nikic/PHP-Parser.git",
  4926. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  4927. },
  4928. "dist": {
  4929. "type": "zip",
  4930. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  4931. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  4932. "shasum": ""
  4933. },
  4934. "require": {
  4935. "ext-ctype": "*",
  4936. "ext-json": "*",
  4937. "ext-tokenizer": "*",
  4938. "php": ">=7.4"
  4939. },
  4940. "require-dev": {
  4941. "ircmaxell/php-yacc": "^0.0.7",
  4942. "phpunit/phpunit": "^9.0"
  4943. },
  4944. "bin": [
  4945. "bin/php-parse"
  4946. ],
  4947. "type": "library",
  4948. "extra": {
  4949. "branch-alias": {
  4950. "dev-master": "5.0-dev"
  4951. }
  4952. },
  4953. "autoload": {
  4954. "psr-4": {
  4955. "PhpParser\\": "lib/PhpParser"
  4956. }
  4957. },
  4958. "notification-url": "https://packagist.org/downloads/",
  4959. "license": [
  4960. "BSD-3-Clause"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "Nikita Popov"
  4965. }
  4966. ],
  4967. "description": "A PHP parser written in PHP",
  4968. "keywords": [
  4969. "parser",
  4970. "php"
  4971. ],
  4972. "support": {
  4973. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4974. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  4975. },
  4976. "time": "2024-10-08T18:51:32+00:00"
  4977. },
  4978. {
  4979. "name": "nunomaduro/termwind",
  4980. "version": "v2.3.0",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/nunomaduro/termwind.git",
  4984. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4989. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4990. "shasum": ""
  4991. },
  4992. "require": {
  4993. "ext-mbstring": "*",
  4994. "php": "^8.2",
  4995. "symfony/console": "^7.1.8"
  4996. },
  4997. "require-dev": {
  4998. "illuminate/console": "^11.33.2",
  4999. "laravel/pint": "^1.18.2",
  5000. "mockery/mockery": "^1.6.12",
  5001. "pestphp/pest": "^2.36.0",
  5002. "phpstan/phpstan": "^1.12.11",
  5003. "phpstan/phpstan-strict-rules": "^1.6.1",
  5004. "symfony/var-dumper": "^7.1.8",
  5005. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5006. },
  5007. "type": "library",
  5008. "extra": {
  5009. "laravel": {
  5010. "providers": [
  5011. "Termwind\\Laravel\\TermwindServiceProvider"
  5012. ]
  5013. },
  5014. "branch-alias": {
  5015. "dev-2.x": "2.x-dev"
  5016. }
  5017. },
  5018. "autoload": {
  5019. "files": [
  5020. "src/Functions.php"
  5021. ],
  5022. "psr-4": {
  5023. "Termwind\\": "src/"
  5024. }
  5025. },
  5026. "notification-url": "https://packagist.org/downloads/",
  5027. "license": [
  5028. "MIT"
  5029. ],
  5030. "authors": [
  5031. {
  5032. "name": "Nuno Maduro",
  5033. "email": "enunomaduro@gmail.com"
  5034. }
  5035. ],
  5036. "description": "Its like Tailwind CSS, but for the console.",
  5037. "keywords": [
  5038. "cli",
  5039. "console",
  5040. "css",
  5041. "package",
  5042. "php",
  5043. "style"
  5044. ],
  5045. "support": {
  5046. "issues": "https://github.com/nunomaduro/termwind/issues",
  5047. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  5048. },
  5049. "funding": [
  5050. {
  5051. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5052. "type": "custom"
  5053. },
  5054. {
  5055. "url": "https://github.com/nunomaduro",
  5056. "type": "github"
  5057. },
  5058. {
  5059. "url": "https://github.com/xiCO2k",
  5060. "type": "github"
  5061. }
  5062. ],
  5063. "time": "2024-11-21T10:39:51+00:00"
  5064. },
  5065. {
  5066. "name": "openspout/openspout",
  5067. "version": "v4.27.0",
  5068. "source": {
  5069. "type": "git",
  5070. "url": "https://github.com/openspout/openspout.git",
  5071. "reference": "1841a6047b4d23d1d353821b8a03f8d599a94143"
  5072. },
  5073. "dist": {
  5074. "type": "zip",
  5075. "url": "https://api.github.com/repos/openspout/openspout/zipball/1841a6047b4d23d1d353821b8a03f8d599a94143",
  5076. "reference": "1841a6047b4d23d1d353821b8a03f8d599a94143",
  5077. "shasum": ""
  5078. },
  5079. "require": {
  5080. "ext-dom": "*",
  5081. "ext-fileinfo": "*",
  5082. "ext-filter": "*",
  5083. "ext-libxml": "*",
  5084. "ext-xmlreader": "*",
  5085. "ext-zip": "*",
  5086. "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
  5087. },
  5088. "require-dev": {
  5089. "ext-zlib": "*",
  5090. "friendsofphp/php-cs-fixer": "^3.65.0",
  5091. "infection/infection": "^0.29.8",
  5092. "phpbench/phpbench": "^1.3.1",
  5093. "phpstan/phpstan": "^2.0.2",
  5094. "phpstan/phpstan-phpunit": "^2.0.1",
  5095. "phpstan/phpstan-strict-rules": "^2",
  5096. "phpunit/phpunit": "^11.4.3"
  5097. },
  5098. "suggest": {
  5099. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5100. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5101. },
  5102. "type": "library",
  5103. "extra": {
  5104. "branch-alias": {
  5105. "dev-master": "3.3.x-dev"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "psr-4": {
  5110. "OpenSpout\\": "src/"
  5111. }
  5112. },
  5113. "notification-url": "https://packagist.org/downloads/",
  5114. "license": [
  5115. "MIT"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "Adrien Loison",
  5120. "email": "adrien@box.com"
  5121. }
  5122. ],
  5123. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5124. "homepage": "https://github.com/openspout/openspout",
  5125. "keywords": [
  5126. "OOXML",
  5127. "csv",
  5128. "excel",
  5129. "memory",
  5130. "odf",
  5131. "ods",
  5132. "office",
  5133. "open",
  5134. "php",
  5135. "read",
  5136. "scale",
  5137. "spreadsheet",
  5138. "stream",
  5139. "write",
  5140. "xlsx"
  5141. ],
  5142. "support": {
  5143. "issues": "https://github.com/openspout/openspout/issues",
  5144. "source": "https://github.com/openspout/openspout/tree/v4.27.0"
  5145. },
  5146. "funding": [
  5147. {
  5148. "url": "https://paypal.me/filippotessarotto",
  5149. "type": "custom"
  5150. },
  5151. {
  5152. "url": "https://github.com/Slamdunk",
  5153. "type": "github"
  5154. }
  5155. ],
  5156. "time": "2024-11-25T10:23:43+00:00"
  5157. },
  5158. {
  5159. "name": "paragonie/constant_time_encoding",
  5160. "version": "v3.0.0",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5164. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5169. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "php": "^8"
  5174. },
  5175. "require-dev": {
  5176. "phpunit/phpunit": "^9",
  5177. "vimeo/psalm": "^4|^5"
  5178. },
  5179. "type": "library",
  5180. "autoload": {
  5181. "psr-4": {
  5182. "ParagonIE\\ConstantTime\\": "src/"
  5183. }
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Paragon Initiative Enterprises",
  5192. "email": "security@paragonie.com",
  5193. "homepage": "https://paragonie.com",
  5194. "role": "Maintainer"
  5195. },
  5196. {
  5197. "name": "Steve 'Sc00bz' Thomas",
  5198. "email": "steve@tobtu.com",
  5199. "homepage": "https://www.tobtu.com",
  5200. "role": "Original Developer"
  5201. }
  5202. ],
  5203. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5204. "keywords": [
  5205. "base16",
  5206. "base32",
  5207. "base32_decode",
  5208. "base32_encode",
  5209. "base64",
  5210. "base64_decode",
  5211. "base64_encode",
  5212. "bin2hex",
  5213. "encoding",
  5214. "hex",
  5215. "hex2bin",
  5216. "rfc4648"
  5217. ],
  5218. "support": {
  5219. "email": "info@paragonie.com",
  5220. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5221. "source": "https://github.com/paragonie/constant_time_encoding"
  5222. },
  5223. "time": "2024-05-08T12:36:18+00:00"
  5224. },
  5225. {
  5226. "name": "paragonie/random_compat",
  5227. "version": "v9.99.100",
  5228. "source": {
  5229. "type": "git",
  5230. "url": "https://github.com/paragonie/random_compat.git",
  5231. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5232. },
  5233. "dist": {
  5234. "type": "zip",
  5235. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5236. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5237. "shasum": ""
  5238. },
  5239. "require": {
  5240. "php": ">= 7"
  5241. },
  5242. "require-dev": {
  5243. "phpunit/phpunit": "4.*|5.*",
  5244. "vimeo/psalm": "^1"
  5245. },
  5246. "suggest": {
  5247. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5248. },
  5249. "type": "library",
  5250. "notification-url": "https://packagist.org/downloads/",
  5251. "license": [
  5252. "MIT"
  5253. ],
  5254. "authors": [
  5255. {
  5256. "name": "Paragon Initiative Enterprises",
  5257. "email": "security@paragonie.com",
  5258. "homepage": "https://paragonie.com"
  5259. }
  5260. ],
  5261. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5262. "keywords": [
  5263. "csprng",
  5264. "polyfill",
  5265. "pseudorandom",
  5266. "random"
  5267. ],
  5268. "support": {
  5269. "email": "info@paragonie.com",
  5270. "issues": "https://github.com/paragonie/random_compat/issues",
  5271. "source": "https://github.com/paragonie/random_compat"
  5272. },
  5273. "time": "2020-10-15T08:29:30+00:00"
  5274. },
  5275. {
  5276. "name": "phpoption/phpoption",
  5277. "version": "1.9.3",
  5278. "source": {
  5279. "type": "git",
  5280. "url": "https://github.com/schmittjoh/php-option.git",
  5281. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5282. },
  5283. "dist": {
  5284. "type": "zip",
  5285. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5286. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5287. "shasum": ""
  5288. },
  5289. "require": {
  5290. "php": "^7.2.5 || ^8.0"
  5291. },
  5292. "require-dev": {
  5293. "bamarni/composer-bin-plugin": "^1.8.2",
  5294. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5295. },
  5296. "type": "library",
  5297. "extra": {
  5298. "bamarni-bin": {
  5299. "bin-links": true,
  5300. "forward-command": false
  5301. },
  5302. "branch-alias": {
  5303. "dev-master": "1.9-dev"
  5304. }
  5305. },
  5306. "autoload": {
  5307. "psr-4": {
  5308. "PhpOption\\": "src/PhpOption/"
  5309. }
  5310. },
  5311. "notification-url": "https://packagist.org/downloads/",
  5312. "license": [
  5313. "Apache-2.0"
  5314. ],
  5315. "authors": [
  5316. {
  5317. "name": "Johannes M. Schmitt",
  5318. "email": "schmittjoh@gmail.com",
  5319. "homepage": "https://github.com/schmittjoh"
  5320. },
  5321. {
  5322. "name": "Graham Campbell",
  5323. "email": "hello@gjcampbell.co.uk",
  5324. "homepage": "https://github.com/GrahamCampbell"
  5325. }
  5326. ],
  5327. "description": "Option Type for PHP",
  5328. "keywords": [
  5329. "language",
  5330. "option",
  5331. "php",
  5332. "type"
  5333. ],
  5334. "support": {
  5335. "issues": "https://github.com/schmittjoh/php-option/issues",
  5336. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5337. },
  5338. "funding": [
  5339. {
  5340. "url": "https://github.com/GrahamCampbell",
  5341. "type": "github"
  5342. },
  5343. {
  5344. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5345. "type": "tidelift"
  5346. }
  5347. ],
  5348. "time": "2024-07-20T21:41:07+00:00"
  5349. },
  5350. {
  5351. "name": "phpseclib/phpseclib",
  5352. "version": "3.0.42",
  5353. "source": {
  5354. "type": "git",
  5355. "url": "https://github.com/phpseclib/phpseclib.git",
  5356. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5357. },
  5358. "dist": {
  5359. "type": "zip",
  5360. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5361. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5362. "shasum": ""
  5363. },
  5364. "require": {
  5365. "paragonie/constant_time_encoding": "^1|^2|^3",
  5366. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5367. "php": ">=5.6.1"
  5368. },
  5369. "require-dev": {
  5370. "phpunit/phpunit": "*"
  5371. },
  5372. "suggest": {
  5373. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5374. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5375. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5376. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5377. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5378. },
  5379. "type": "library",
  5380. "autoload": {
  5381. "files": [
  5382. "phpseclib/bootstrap.php"
  5383. ],
  5384. "psr-4": {
  5385. "phpseclib3\\": "phpseclib/"
  5386. }
  5387. },
  5388. "notification-url": "https://packagist.org/downloads/",
  5389. "license": [
  5390. "MIT"
  5391. ],
  5392. "authors": [
  5393. {
  5394. "name": "Jim Wigginton",
  5395. "email": "terrafrost@php.net",
  5396. "role": "Lead Developer"
  5397. },
  5398. {
  5399. "name": "Patrick Monnerat",
  5400. "email": "pm@datasphere.ch",
  5401. "role": "Developer"
  5402. },
  5403. {
  5404. "name": "Andreas Fischer",
  5405. "email": "bantu@phpbb.com",
  5406. "role": "Developer"
  5407. },
  5408. {
  5409. "name": "Hans-Jürgen Petrich",
  5410. "email": "petrich@tronic-media.com",
  5411. "role": "Developer"
  5412. },
  5413. {
  5414. "name": "Graham Campbell",
  5415. "email": "graham@alt-three.com",
  5416. "role": "Developer"
  5417. }
  5418. ],
  5419. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5420. "homepage": "http://phpseclib.sourceforge.net",
  5421. "keywords": [
  5422. "BigInteger",
  5423. "aes",
  5424. "asn.1",
  5425. "asn1",
  5426. "blowfish",
  5427. "crypto",
  5428. "cryptography",
  5429. "encryption",
  5430. "rsa",
  5431. "security",
  5432. "sftp",
  5433. "signature",
  5434. "signing",
  5435. "ssh",
  5436. "twofish",
  5437. "x.509",
  5438. "x509"
  5439. ],
  5440. "support": {
  5441. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5442. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  5443. },
  5444. "funding": [
  5445. {
  5446. "url": "https://github.com/terrafrost",
  5447. "type": "github"
  5448. },
  5449. {
  5450. "url": "https://www.patreon.com/phpseclib",
  5451. "type": "patreon"
  5452. },
  5453. {
  5454. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5455. "type": "tidelift"
  5456. }
  5457. ],
  5458. "time": "2024-09-16T03:06:04+00:00"
  5459. },
  5460. {
  5461. "name": "psr/cache",
  5462. "version": "3.0.0",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/php-fig/cache.git",
  5466. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5471. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "php": ">=8.0.0"
  5476. },
  5477. "type": "library",
  5478. "extra": {
  5479. "branch-alias": {
  5480. "dev-master": "1.0.x-dev"
  5481. }
  5482. },
  5483. "autoload": {
  5484. "psr-4": {
  5485. "Psr\\Cache\\": "src/"
  5486. }
  5487. },
  5488. "notification-url": "https://packagist.org/downloads/",
  5489. "license": [
  5490. "MIT"
  5491. ],
  5492. "authors": [
  5493. {
  5494. "name": "PHP-FIG",
  5495. "homepage": "https://www.php-fig.org/"
  5496. }
  5497. ],
  5498. "description": "Common interface for caching libraries",
  5499. "keywords": [
  5500. "cache",
  5501. "psr",
  5502. "psr-6"
  5503. ],
  5504. "support": {
  5505. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5506. },
  5507. "time": "2021-02-03T23:26:27+00:00"
  5508. },
  5509. {
  5510. "name": "psr/clock",
  5511. "version": "1.0.0",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://github.com/php-fig/clock.git",
  5515. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5520. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5521. "shasum": ""
  5522. },
  5523. "require": {
  5524. "php": "^7.0 || ^8.0"
  5525. },
  5526. "type": "library",
  5527. "autoload": {
  5528. "psr-4": {
  5529. "Psr\\Clock\\": "src/"
  5530. }
  5531. },
  5532. "notification-url": "https://packagist.org/downloads/",
  5533. "license": [
  5534. "MIT"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "PHP-FIG",
  5539. "homepage": "https://www.php-fig.org/"
  5540. }
  5541. ],
  5542. "description": "Common interface for reading the clock.",
  5543. "homepage": "https://github.com/php-fig/clock",
  5544. "keywords": [
  5545. "clock",
  5546. "now",
  5547. "psr",
  5548. "psr-20",
  5549. "time"
  5550. ],
  5551. "support": {
  5552. "issues": "https://github.com/php-fig/clock/issues",
  5553. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5554. },
  5555. "time": "2022-11-25T14:36:26+00:00"
  5556. },
  5557. {
  5558. "name": "psr/container",
  5559. "version": "2.0.2",
  5560. "source": {
  5561. "type": "git",
  5562. "url": "https://github.com/php-fig/container.git",
  5563. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5564. },
  5565. "dist": {
  5566. "type": "zip",
  5567. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5568. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5569. "shasum": ""
  5570. },
  5571. "require": {
  5572. "php": ">=7.4.0"
  5573. },
  5574. "type": "library",
  5575. "extra": {
  5576. "branch-alias": {
  5577. "dev-master": "2.0.x-dev"
  5578. }
  5579. },
  5580. "autoload": {
  5581. "psr-4": {
  5582. "Psr\\Container\\": "src/"
  5583. }
  5584. },
  5585. "notification-url": "https://packagist.org/downloads/",
  5586. "license": [
  5587. "MIT"
  5588. ],
  5589. "authors": [
  5590. {
  5591. "name": "PHP-FIG",
  5592. "homepage": "https://www.php-fig.org/"
  5593. }
  5594. ],
  5595. "description": "Common Container Interface (PHP FIG PSR-11)",
  5596. "homepage": "https://github.com/php-fig/container",
  5597. "keywords": [
  5598. "PSR-11",
  5599. "container",
  5600. "container-interface",
  5601. "container-interop",
  5602. "psr"
  5603. ],
  5604. "support": {
  5605. "issues": "https://github.com/php-fig/container/issues",
  5606. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5607. },
  5608. "time": "2021-11-05T16:47:00+00:00"
  5609. },
  5610. {
  5611. "name": "psr/event-dispatcher",
  5612. "version": "1.0.0",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/php-fig/event-dispatcher.git",
  5616. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5621. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5622. "shasum": ""
  5623. },
  5624. "require": {
  5625. "php": ">=7.2.0"
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-master": "1.0.x-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Psr\\EventDispatcher\\": "src/"
  5636. }
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "MIT"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "PHP-FIG",
  5645. "homepage": "http://www.php-fig.org/"
  5646. }
  5647. ],
  5648. "description": "Standard interfaces for event handling.",
  5649. "keywords": [
  5650. "events",
  5651. "psr",
  5652. "psr-14"
  5653. ],
  5654. "support": {
  5655. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5656. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5657. },
  5658. "time": "2019-01-08T18:20:26+00:00"
  5659. },
  5660. {
  5661. "name": "psr/http-client",
  5662. "version": "1.0.3",
  5663. "source": {
  5664. "type": "git",
  5665. "url": "https://github.com/php-fig/http-client.git",
  5666. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5667. },
  5668. "dist": {
  5669. "type": "zip",
  5670. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5671. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5672. "shasum": ""
  5673. },
  5674. "require": {
  5675. "php": "^7.0 || ^8.0",
  5676. "psr/http-message": "^1.0 || ^2.0"
  5677. },
  5678. "type": "library",
  5679. "extra": {
  5680. "branch-alias": {
  5681. "dev-master": "1.0.x-dev"
  5682. }
  5683. },
  5684. "autoload": {
  5685. "psr-4": {
  5686. "Psr\\Http\\Client\\": "src/"
  5687. }
  5688. },
  5689. "notification-url": "https://packagist.org/downloads/",
  5690. "license": [
  5691. "MIT"
  5692. ],
  5693. "authors": [
  5694. {
  5695. "name": "PHP-FIG",
  5696. "homepage": "https://www.php-fig.org/"
  5697. }
  5698. ],
  5699. "description": "Common interface for HTTP clients",
  5700. "homepage": "https://github.com/php-fig/http-client",
  5701. "keywords": [
  5702. "http",
  5703. "http-client",
  5704. "psr",
  5705. "psr-18"
  5706. ],
  5707. "support": {
  5708. "source": "https://github.com/php-fig/http-client"
  5709. },
  5710. "time": "2023-09-23T14:17:50+00:00"
  5711. },
  5712. {
  5713. "name": "psr/http-factory",
  5714. "version": "1.1.0",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/php-fig/http-factory.git",
  5718. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5723. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5724. "shasum": ""
  5725. },
  5726. "require": {
  5727. "php": ">=7.1",
  5728. "psr/http-message": "^1.0 || ^2.0"
  5729. },
  5730. "type": "library",
  5731. "extra": {
  5732. "branch-alias": {
  5733. "dev-master": "1.0.x-dev"
  5734. }
  5735. },
  5736. "autoload": {
  5737. "psr-4": {
  5738. "Psr\\Http\\Message\\": "src/"
  5739. }
  5740. },
  5741. "notification-url": "https://packagist.org/downloads/",
  5742. "license": [
  5743. "MIT"
  5744. ],
  5745. "authors": [
  5746. {
  5747. "name": "PHP-FIG",
  5748. "homepage": "https://www.php-fig.org/"
  5749. }
  5750. ],
  5751. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5752. "keywords": [
  5753. "factory",
  5754. "http",
  5755. "message",
  5756. "psr",
  5757. "psr-17",
  5758. "psr-7",
  5759. "request",
  5760. "response"
  5761. ],
  5762. "support": {
  5763. "source": "https://github.com/php-fig/http-factory"
  5764. },
  5765. "time": "2024-04-15T12:06:14+00:00"
  5766. },
  5767. {
  5768. "name": "psr/http-message",
  5769. "version": "2.0",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/php-fig/http-message.git",
  5773. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5778. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5779. "shasum": ""
  5780. },
  5781. "require": {
  5782. "php": "^7.2 || ^8.0"
  5783. },
  5784. "type": "library",
  5785. "extra": {
  5786. "branch-alias": {
  5787. "dev-master": "2.0.x-dev"
  5788. }
  5789. },
  5790. "autoload": {
  5791. "psr-4": {
  5792. "Psr\\Http\\Message\\": "src/"
  5793. }
  5794. },
  5795. "notification-url": "https://packagist.org/downloads/",
  5796. "license": [
  5797. "MIT"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "PHP-FIG",
  5802. "homepage": "https://www.php-fig.org/"
  5803. }
  5804. ],
  5805. "description": "Common interface for HTTP messages",
  5806. "homepage": "https://github.com/php-fig/http-message",
  5807. "keywords": [
  5808. "http",
  5809. "http-message",
  5810. "psr",
  5811. "psr-7",
  5812. "request",
  5813. "response"
  5814. ],
  5815. "support": {
  5816. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5817. },
  5818. "time": "2023-04-04T09:54:51+00:00"
  5819. },
  5820. {
  5821. "name": "psr/log",
  5822. "version": "3.0.2",
  5823. "source": {
  5824. "type": "git",
  5825. "url": "https://github.com/php-fig/log.git",
  5826. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5827. },
  5828. "dist": {
  5829. "type": "zip",
  5830. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5831. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5832. "shasum": ""
  5833. },
  5834. "require": {
  5835. "php": ">=8.0.0"
  5836. },
  5837. "type": "library",
  5838. "extra": {
  5839. "branch-alias": {
  5840. "dev-master": "3.x-dev"
  5841. }
  5842. },
  5843. "autoload": {
  5844. "psr-4": {
  5845. "Psr\\Log\\": "src"
  5846. }
  5847. },
  5848. "notification-url": "https://packagist.org/downloads/",
  5849. "license": [
  5850. "MIT"
  5851. ],
  5852. "authors": [
  5853. {
  5854. "name": "PHP-FIG",
  5855. "homepage": "https://www.php-fig.org/"
  5856. }
  5857. ],
  5858. "description": "Common interface for logging libraries",
  5859. "homepage": "https://github.com/php-fig/log",
  5860. "keywords": [
  5861. "log",
  5862. "psr",
  5863. "psr-3"
  5864. ],
  5865. "support": {
  5866. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5867. },
  5868. "time": "2024-09-11T13:17:53+00:00"
  5869. },
  5870. {
  5871. "name": "psr/simple-cache",
  5872. "version": "3.0.0",
  5873. "source": {
  5874. "type": "git",
  5875. "url": "https://github.com/php-fig/simple-cache.git",
  5876. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5877. },
  5878. "dist": {
  5879. "type": "zip",
  5880. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5881. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5882. "shasum": ""
  5883. },
  5884. "require": {
  5885. "php": ">=8.0.0"
  5886. },
  5887. "type": "library",
  5888. "extra": {
  5889. "branch-alias": {
  5890. "dev-master": "3.0.x-dev"
  5891. }
  5892. },
  5893. "autoload": {
  5894. "psr-4": {
  5895. "Psr\\SimpleCache\\": "src/"
  5896. }
  5897. },
  5898. "notification-url": "https://packagist.org/downloads/",
  5899. "license": [
  5900. "MIT"
  5901. ],
  5902. "authors": [
  5903. {
  5904. "name": "PHP-FIG",
  5905. "homepage": "https://www.php-fig.org/"
  5906. }
  5907. ],
  5908. "description": "Common interfaces for simple caching",
  5909. "keywords": [
  5910. "cache",
  5911. "caching",
  5912. "psr",
  5913. "psr-16",
  5914. "simple-cache"
  5915. ],
  5916. "support": {
  5917. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5918. },
  5919. "time": "2021-10-29T13:26:27+00:00"
  5920. },
  5921. {
  5922. "name": "psy/psysh",
  5923. "version": "v0.12.4",
  5924. "source": {
  5925. "type": "git",
  5926. "url": "https://github.com/bobthecow/psysh.git",
  5927. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  5928. },
  5929. "dist": {
  5930. "type": "zip",
  5931. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  5932. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  5933. "shasum": ""
  5934. },
  5935. "require": {
  5936. "ext-json": "*",
  5937. "ext-tokenizer": "*",
  5938. "nikic/php-parser": "^5.0 || ^4.0",
  5939. "php": "^8.0 || ^7.4",
  5940. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5941. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5942. },
  5943. "conflict": {
  5944. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5945. },
  5946. "require-dev": {
  5947. "bamarni/composer-bin-plugin": "^1.2"
  5948. },
  5949. "suggest": {
  5950. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5951. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5952. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5953. },
  5954. "bin": [
  5955. "bin/psysh"
  5956. ],
  5957. "type": "library",
  5958. "extra": {
  5959. "branch-alias": {
  5960. "dev-main": "0.12.x-dev"
  5961. },
  5962. "bamarni-bin": {
  5963. "bin-links": false,
  5964. "forward-command": false
  5965. }
  5966. },
  5967. "autoload": {
  5968. "files": [
  5969. "src/functions.php"
  5970. ],
  5971. "psr-4": {
  5972. "Psy\\": "src/"
  5973. }
  5974. },
  5975. "notification-url": "https://packagist.org/downloads/",
  5976. "license": [
  5977. "MIT"
  5978. ],
  5979. "authors": [
  5980. {
  5981. "name": "Justin Hileman",
  5982. "email": "justin@justinhileman.info",
  5983. "homepage": "http://justinhileman.com"
  5984. }
  5985. ],
  5986. "description": "An interactive shell for modern PHP.",
  5987. "homepage": "http://psysh.org",
  5988. "keywords": [
  5989. "REPL",
  5990. "console",
  5991. "interactive",
  5992. "shell"
  5993. ],
  5994. "support": {
  5995. "issues": "https://github.com/bobthecow/psysh/issues",
  5996. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  5997. },
  5998. "time": "2024-06-10T01:18:23+00:00"
  5999. },
  6000. {
  6001. "name": "ralouphie/getallheaders",
  6002. "version": "3.0.3",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/ralouphie/getallheaders.git",
  6006. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6011. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "php": ">=5.6"
  6016. },
  6017. "require-dev": {
  6018. "php-coveralls/php-coveralls": "^2.1",
  6019. "phpunit/phpunit": "^5 || ^6.5"
  6020. },
  6021. "type": "library",
  6022. "autoload": {
  6023. "files": [
  6024. "src/getallheaders.php"
  6025. ]
  6026. },
  6027. "notification-url": "https://packagist.org/downloads/",
  6028. "license": [
  6029. "MIT"
  6030. ],
  6031. "authors": [
  6032. {
  6033. "name": "Ralph Khattar",
  6034. "email": "ralph.khattar@gmail.com"
  6035. }
  6036. ],
  6037. "description": "A polyfill for getallheaders.",
  6038. "support": {
  6039. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6040. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6041. },
  6042. "time": "2019-03-08T08:55:37+00:00"
  6043. },
  6044. {
  6045. "name": "ramsey/collection",
  6046. "version": "2.0.0",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/ramsey/collection.git",
  6050. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6055. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6056. "shasum": ""
  6057. },
  6058. "require": {
  6059. "php": "^8.1"
  6060. },
  6061. "require-dev": {
  6062. "captainhook/plugin-composer": "^5.3",
  6063. "ergebnis/composer-normalize": "^2.28.3",
  6064. "fakerphp/faker": "^1.21",
  6065. "hamcrest/hamcrest-php": "^2.0",
  6066. "jangregor/phpstan-prophecy": "^1.0",
  6067. "mockery/mockery": "^1.5",
  6068. "php-parallel-lint/php-console-highlighter": "^1.0",
  6069. "php-parallel-lint/php-parallel-lint": "^1.3",
  6070. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6071. "phpspec/prophecy-phpunit": "^2.0",
  6072. "phpstan/extension-installer": "^1.2",
  6073. "phpstan/phpstan": "^1.9",
  6074. "phpstan/phpstan-mockery": "^1.1",
  6075. "phpstan/phpstan-phpunit": "^1.3",
  6076. "phpunit/phpunit": "^9.5",
  6077. "psalm/plugin-mockery": "^1.1",
  6078. "psalm/plugin-phpunit": "^0.18.4",
  6079. "ramsey/coding-standard": "^2.0.3",
  6080. "ramsey/conventional-commits": "^1.3",
  6081. "vimeo/psalm": "^5.4"
  6082. },
  6083. "type": "library",
  6084. "extra": {
  6085. "captainhook": {
  6086. "force-install": true
  6087. },
  6088. "ramsey/conventional-commits": {
  6089. "configFile": "conventional-commits.json"
  6090. }
  6091. },
  6092. "autoload": {
  6093. "psr-4": {
  6094. "Ramsey\\Collection\\": "src/"
  6095. }
  6096. },
  6097. "notification-url": "https://packagist.org/downloads/",
  6098. "license": [
  6099. "MIT"
  6100. ],
  6101. "authors": [
  6102. {
  6103. "name": "Ben Ramsey",
  6104. "email": "ben@benramsey.com",
  6105. "homepage": "https://benramsey.com"
  6106. }
  6107. ],
  6108. "description": "A PHP library for representing and manipulating collections.",
  6109. "keywords": [
  6110. "array",
  6111. "collection",
  6112. "hash",
  6113. "map",
  6114. "queue",
  6115. "set"
  6116. ],
  6117. "support": {
  6118. "issues": "https://github.com/ramsey/collection/issues",
  6119. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6120. },
  6121. "funding": [
  6122. {
  6123. "url": "https://github.com/ramsey",
  6124. "type": "github"
  6125. },
  6126. {
  6127. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6128. "type": "tidelift"
  6129. }
  6130. ],
  6131. "time": "2022-12-31T21:50:55+00:00"
  6132. },
  6133. {
  6134. "name": "ramsey/uuid",
  6135. "version": "4.7.6",
  6136. "source": {
  6137. "type": "git",
  6138. "url": "https://github.com/ramsey/uuid.git",
  6139. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6140. },
  6141. "dist": {
  6142. "type": "zip",
  6143. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6144. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6145. "shasum": ""
  6146. },
  6147. "require": {
  6148. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6149. "ext-json": "*",
  6150. "php": "^8.0",
  6151. "ramsey/collection": "^1.2 || ^2.0"
  6152. },
  6153. "replace": {
  6154. "rhumsaa/uuid": "self.version"
  6155. },
  6156. "require-dev": {
  6157. "captainhook/captainhook": "^5.10",
  6158. "captainhook/plugin-composer": "^5.3",
  6159. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6160. "doctrine/annotations": "^1.8",
  6161. "ergebnis/composer-normalize": "^2.15",
  6162. "mockery/mockery": "^1.3",
  6163. "paragonie/random-lib": "^2",
  6164. "php-mock/php-mock": "^2.2",
  6165. "php-mock/php-mock-mockery": "^1.3",
  6166. "php-parallel-lint/php-parallel-lint": "^1.1",
  6167. "phpbench/phpbench": "^1.0",
  6168. "phpstan/extension-installer": "^1.1",
  6169. "phpstan/phpstan": "^1.8",
  6170. "phpstan/phpstan-mockery": "^1.1",
  6171. "phpstan/phpstan-phpunit": "^1.1",
  6172. "phpunit/phpunit": "^8.5 || ^9",
  6173. "ramsey/composer-repl": "^1.4",
  6174. "slevomat/coding-standard": "^8.4",
  6175. "squizlabs/php_codesniffer": "^3.5",
  6176. "vimeo/psalm": "^4.9"
  6177. },
  6178. "suggest": {
  6179. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6180. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6181. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6182. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6183. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6184. },
  6185. "type": "library",
  6186. "extra": {
  6187. "captainhook": {
  6188. "force-install": true
  6189. }
  6190. },
  6191. "autoload": {
  6192. "files": [
  6193. "src/functions.php"
  6194. ],
  6195. "psr-4": {
  6196. "Ramsey\\Uuid\\": "src/"
  6197. }
  6198. },
  6199. "notification-url": "https://packagist.org/downloads/",
  6200. "license": [
  6201. "MIT"
  6202. ],
  6203. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6204. "keywords": [
  6205. "guid",
  6206. "identifier",
  6207. "uuid"
  6208. ],
  6209. "support": {
  6210. "issues": "https://github.com/ramsey/uuid/issues",
  6211. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6212. },
  6213. "funding": [
  6214. {
  6215. "url": "https://github.com/ramsey",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2024-04-27T21:32:50+00:00"
  6224. },
  6225. {
  6226. "name": "ryangjchandler/blade-capture-directive",
  6227. "version": "v1.0.0",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6231. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6236. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "illuminate/contracts": "^10.0|^11.0",
  6241. "php": "^8.1",
  6242. "spatie/laravel-package-tools": "^1.9.2"
  6243. },
  6244. "require-dev": {
  6245. "nunomaduro/collision": "^7.0|^8.0",
  6246. "nunomaduro/larastan": "^2.0",
  6247. "orchestra/testbench": "^8.0|^9.0",
  6248. "pestphp/pest": "^2.0",
  6249. "pestphp/pest-plugin-laravel": "^2.0",
  6250. "phpstan/extension-installer": "^1.1",
  6251. "phpstan/phpstan-deprecation-rules": "^1.0",
  6252. "phpstan/phpstan-phpunit": "^1.0",
  6253. "phpunit/phpunit": "^10.0",
  6254. "spatie/laravel-ray": "^1.26"
  6255. },
  6256. "type": "library",
  6257. "extra": {
  6258. "laravel": {
  6259. "providers": [
  6260. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6261. ],
  6262. "aliases": {
  6263. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6264. }
  6265. }
  6266. },
  6267. "autoload": {
  6268. "psr-4": {
  6269. "RyanChandler\\BladeCaptureDirective\\": "src",
  6270. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6271. }
  6272. },
  6273. "notification-url": "https://packagist.org/downloads/",
  6274. "license": [
  6275. "MIT"
  6276. ],
  6277. "authors": [
  6278. {
  6279. "name": "Ryan Chandler",
  6280. "email": "support@ryangjchandler.co.uk",
  6281. "role": "Developer"
  6282. }
  6283. ],
  6284. "description": "Create inline partials in your Blade templates with ease.",
  6285. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6286. "keywords": [
  6287. "blade-capture-directive",
  6288. "laravel",
  6289. "ryangjchandler"
  6290. ],
  6291. "support": {
  6292. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6293. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6294. },
  6295. "funding": [
  6296. {
  6297. "url": "https://github.com/ryangjchandler",
  6298. "type": "github"
  6299. }
  6300. ],
  6301. "time": "2024-02-26T18:08:49+00:00"
  6302. },
  6303. {
  6304. "name": "spatie/color",
  6305. "version": "1.6.1",
  6306. "source": {
  6307. "type": "git",
  6308. "url": "https://github.com/spatie/color.git",
  6309. "reference": "4c540ffbef68a3df3d209718ae06deaab081e708"
  6310. },
  6311. "dist": {
  6312. "type": "zip",
  6313. "url": "https://api.github.com/repos/spatie/color/zipball/4c540ffbef68a3df3d209718ae06deaab081e708",
  6314. "reference": "4c540ffbef68a3df3d209718ae06deaab081e708",
  6315. "shasum": ""
  6316. },
  6317. "require": {
  6318. "php": "^7.3|^8.0"
  6319. },
  6320. "require-dev": {
  6321. "pestphp/pest": "^1.22",
  6322. "phpunit/phpunit": "^6.5||^9.0"
  6323. },
  6324. "type": "library",
  6325. "autoload": {
  6326. "psr-4": {
  6327. "Spatie\\Color\\": "src"
  6328. }
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "Sebastian De Deyne",
  6337. "email": "sebastian@spatie.be",
  6338. "homepage": "https://spatie.be",
  6339. "role": "Developer"
  6340. }
  6341. ],
  6342. "description": "A little library to handle color conversions",
  6343. "homepage": "https://github.com/spatie/color",
  6344. "keywords": [
  6345. "color",
  6346. "conversion",
  6347. "rgb",
  6348. "spatie"
  6349. ],
  6350. "support": {
  6351. "issues": "https://github.com/spatie/color/issues",
  6352. "source": "https://github.com/spatie/color/tree/1.6.1"
  6353. },
  6354. "funding": [
  6355. {
  6356. "url": "https://github.com/spatie",
  6357. "type": "github"
  6358. }
  6359. ],
  6360. "time": "2024-11-18T15:00:47+00:00"
  6361. },
  6362. {
  6363. "name": "spatie/invade",
  6364. "version": "2.1.0",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/spatie/invade.git",
  6368. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6373. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6374. "shasum": ""
  6375. },
  6376. "require": {
  6377. "php": "^8.0"
  6378. },
  6379. "require-dev": {
  6380. "pestphp/pest": "^1.20",
  6381. "phpstan/phpstan": "^1.4",
  6382. "spatie/ray": "^1.28"
  6383. },
  6384. "type": "library",
  6385. "autoload": {
  6386. "files": [
  6387. "src/functions.php"
  6388. ],
  6389. "psr-4": {
  6390. "Spatie\\Invade\\": "src"
  6391. }
  6392. },
  6393. "notification-url": "https://packagist.org/downloads/",
  6394. "license": [
  6395. "MIT"
  6396. ],
  6397. "authors": [
  6398. {
  6399. "name": "Freek Van der Herten",
  6400. "email": "freek@spatie.be",
  6401. "role": "Developer"
  6402. }
  6403. ],
  6404. "description": "A PHP function to work with private properties and methods",
  6405. "homepage": "https://github.com/spatie/invade",
  6406. "keywords": [
  6407. "invade",
  6408. "spatie"
  6409. ],
  6410. "support": {
  6411. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6412. },
  6413. "funding": [
  6414. {
  6415. "url": "https://github.com/spatie",
  6416. "type": "github"
  6417. }
  6418. ],
  6419. "time": "2024-05-17T09:06:10+00:00"
  6420. },
  6421. {
  6422. "name": "spatie/laravel-package-tools",
  6423. "version": "1.16.6",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/spatie/laravel-package-tools.git",
  6427. "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1f26942dc1e5c49eacfced34fdbc29ed234bd7b3",
  6432. "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6437. "php": "^8.0"
  6438. },
  6439. "require-dev": {
  6440. "mockery/mockery": "^1.5",
  6441. "orchestra/testbench": "^7.7|^8.0",
  6442. "pestphp/pest": "^1.22",
  6443. "phpunit/phpunit": "^9.5.24",
  6444. "spatie/pest-plugin-test-time": "^1.1"
  6445. },
  6446. "type": "library",
  6447. "autoload": {
  6448. "psr-4": {
  6449. "Spatie\\LaravelPackageTools\\": "src"
  6450. }
  6451. },
  6452. "notification-url": "https://packagist.org/downloads/",
  6453. "license": [
  6454. "MIT"
  6455. ],
  6456. "authors": [
  6457. {
  6458. "name": "Freek Van der Herten",
  6459. "email": "freek@spatie.be",
  6460. "role": "Developer"
  6461. }
  6462. ],
  6463. "description": "Tools for creating Laravel packages",
  6464. "homepage": "https://github.com/spatie/laravel-package-tools",
  6465. "keywords": [
  6466. "laravel-package-tools",
  6467. "spatie"
  6468. ],
  6469. "support": {
  6470. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6471. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.6"
  6472. },
  6473. "funding": [
  6474. {
  6475. "url": "https://github.com/spatie",
  6476. "type": "github"
  6477. }
  6478. ],
  6479. "time": "2024-11-18T15:02:02+00:00"
  6480. },
  6481. {
  6482. "name": "squirephp/model",
  6483. "version": "v3.6.0",
  6484. "source": {
  6485. "type": "git",
  6486. "url": "https://github.com/squirephp/model.git",
  6487. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6488. },
  6489. "dist": {
  6490. "type": "zip",
  6491. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6492. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6493. "shasum": ""
  6494. },
  6495. "require": {
  6496. "ext-pdo_sqlite": "*",
  6497. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6498. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6499. "php": "^8.0"
  6500. },
  6501. "type": "library",
  6502. "extra": {
  6503. "laravel": {
  6504. "providers": [
  6505. "Squire\\ModelServiceProvider"
  6506. ]
  6507. }
  6508. },
  6509. "autoload": {
  6510. "psr-4": {
  6511. "Squire\\": "src"
  6512. }
  6513. },
  6514. "notification-url": "https://packagist.org/downloads/",
  6515. "license": [
  6516. "MIT"
  6517. ],
  6518. "authors": [
  6519. {
  6520. "name": "Dan Harrin",
  6521. "email": "dan@danharrin.com"
  6522. }
  6523. ],
  6524. "description": "A library containing the base Squire model class.",
  6525. "homepage": "https://github.com/squirephp",
  6526. "keywords": [
  6527. "squire"
  6528. ],
  6529. "support": {
  6530. "issues": "https://github.com/squirephp/squire/issues",
  6531. "source": "https://github.com/squirephp/squire"
  6532. },
  6533. "time": "2024-03-11T11:06:10+00:00"
  6534. },
  6535. {
  6536. "name": "squirephp/repository",
  6537. "version": "v3.6.0",
  6538. "source": {
  6539. "type": "git",
  6540. "url": "https://github.com/squirephp/repository.git",
  6541. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6542. },
  6543. "dist": {
  6544. "type": "zip",
  6545. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6546. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6547. "shasum": ""
  6548. },
  6549. "require": {
  6550. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6551. "php": "^8.0"
  6552. },
  6553. "type": "library",
  6554. "extra": {
  6555. "laravel": {
  6556. "providers": [
  6557. "Squire\\RepositoryServiceProvider"
  6558. ],
  6559. "aliases": {
  6560. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6561. }
  6562. }
  6563. },
  6564. "autoload": {
  6565. "psr-4": {
  6566. "Squire\\": "src"
  6567. }
  6568. },
  6569. "notification-url": "https://packagist.org/downloads/",
  6570. "license": [
  6571. "MIT"
  6572. ],
  6573. "authors": [
  6574. {
  6575. "name": "Dan Harrin",
  6576. "email": "dan@danharrin.com"
  6577. }
  6578. ],
  6579. "description": "A library containing the Squire repository.",
  6580. "homepage": "https://github.com/squirephp",
  6581. "keywords": [
  6582. "squire"
  6583. ],
  6584. "support": {
  6585. "issues": "https://github.com/squirephp/squire/issues",
  6586. "source": "https://github.com/squirephp/squire"
  6587. },
  6588. "time": "2024-03-11T11:06:10+00:00"
  6589. },
  6590. {
  6591. "name": "symfony/clock",
  6592. "version": "v7.1.6",
  6593. "source": {
  6594. "type": "git",
  6595. "url": "https://github.com/symfony/clock.git",
  6596. "reference": "97bebc53548684c17ed696bc8af016880f0f098d"
  6597. },
  6598. "dist": {
  6599. "type": "zip",
  6600. "url": "https://api.github.com/repos/symfony/clock/zipball/97bebc53548684c17ed696bc8af016880f0f098d",
  6601. "reference": "97bebc53548684c17ed696bc8af016880f0f098d",
  6602. "shasum": ""
  6603. },
  6604. "require": {
  6605. "php": ">=8.2",
  6606. "psr/clock": "^1.0",
  6607. "symfony/polyfill-php83": "^1.28"
  6608. },
  6609. "provide": {
  6610. "psr/clock-implementation": "1.0"
  6611. },
  6612. "type": "library",
  6613. "autoload": {
  6614. "files": [
  6615. "Resources/now.php"
  6616. ],
  6617. "psr-4": {
  6618. "Symfony\\Component\\Clock\\": ""
  6619. },
  6620. "exclude-from-classmap": [
  6621. "/Tests/"
  6622. ]
  6623. },
  6624. "notification-url": "https://packagist.org/downloads/",
  6625. "license": [
  6626. "MIT"
  6627. ],
  6628. "authors": [
  6629. {
  6630. "name": "Nicolas Grekas",
  6631. "email": "p@tchwork.com"
  6632. },
  6633. {
  6634. "name": "Symfony Community",
  6635. "homepage": "https://symfony.com/contributors"
  6636. }
  6637. ],
  6638. "description": "Decouples applications from the system clock",
  6639. "homepage": "https://symfony.com",
  6640. "keywords": [
  6641. "clock",
  6642. "psr20",
  6643. "time"
  6644. ],
  6645. "support": {
  6646. "source": "https://github.com/symfony/clock/tree/v7.1.6"
  6647. },
  6648. "funding": [
  6649. {
  6650. "url": "https://symfony.com/sponsor",
  6651. "type": "custom"
  6652. },
  6653. {
  6654. "url": "https://github.com/fabpot",
  6655. "type": "github"
  6656. },
  6657. {
  6658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6659. "type": "tidelift"
  6660. }
  6661. ],
  6662. "time": "2024-09-25T14:20:29+00:00"
  6663. },
  6664. {
  6665. "name": "symfony/console",
  6666. "version": "v7.1.8",
  6667. "source": {
  6668. "type": "git",
  6669. "url": "https://github.com/symfony/console.git",
  6670. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5"
  6671. },
  6672. "dist": {
  6673. "type": "zip",
  6674. "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  6675. "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5",
  6676. "shasum": ""
  6677. },
  6678. "require": {
  6679. "php": ">=8.2",
  6680. "symfony/polyfill-mbstring": "~1.0",
  6681. "symfony/service-contracts": "^2.5|^3",
  6682. "symfony/string": "^6.4|^7.0"
  6683. },
  6684. "conflict": {
  6685. "symfony/dependency-injection": "<6.4",
  6686. "symfony/dotenv": "<6.4",
  6687. "symfony/event-dispatcher": "<6.4",
  6688. "symfony/lock": "<6.4",
  6689. "symfony/process": "<6.4"
  6690. },
  6691. "provide": {
  6692. "psr/log-implementation": "1.0|2.0|3.0"
  6693. },
  6694. "require-dev": {
  6695. "psr/log": "^1|^2|^3",
  6696. "symfony/config": "^6.4|^7.0",
  6697. "symfony/dependency-injection": "^6.4|^7.0",
  6698. "symfony/event-dispatcher": "^6.4|^7.0",
  6699. "symfony/http-foundation": "^6.4|^7.0",
  6700. "symfony/http-kernel": "^6.4|^7.0",
  6701. "symfony/lock": "^6.4|^7.0",
  6702. "symfony/messenger": "^6.4|^7.0",
  6703. "symfony/process": "^6.4|^7.0",
  6704. "symfony/stopwatch": "^6.4|^7.0",
  6705. "symfony/var-dumper": "^6.4|^7.0"
  6706. },
  6707. "type": "library",
  6708. "autoload": {
  6709. "psr-4": {
  6710. "Symfony\\Component\\Console\\": ""
  6711. },
  6712. "exclude-from-classmap": [
  6713. "/Tests/"
  6714. ]
  6715. },
  6716. "notification-url": "https://packagist.org/downloads/",
  6717. "license": [
  6718. "MIT"
  6719. ],
  6720. "authors": [
  6721. {
  6722. "name": "Fabien Potencier",
  6723. "email": "fabien@symfony.com"
  6724. },
  6725. {
  6726. "name": "Symfony Community",
  6727. "homepage": "https://symfony.com/contributors"
  6728. }
  6729. ],
  6730. "description": "Eases the creation of beautiful and testable command line interfaces",
  6731. "homepage": "https://symfony.com",
  6732. "keywords": [
  6733. "cli",
  6734. "command-line",
  6735. "console",
  6736. "terminal"
  6737. ],
  6738. "support": {
  6739. "source": "https://github.com/symfony/console/tree/v7.1.8"
  6740. },
  6741. "funding": [
  6742. {
  6743. "url": "https://symfony.com/sponsor",
  6744. "type": "custom"
  6745. },
  6746. {
  6747. "url": "https://github.com/fabpot",
  6748. "type": "github"
  6749. },
  6750. {
  6751. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6752. "type": "tidelift"
  6753. }
  6754. ],
  6755. "time": "2024-11-06T14:23:19+00:00"
  6756. },
  6757. {
  6758. "name": "symfony/css-selector",
  6759. "version": "v7.1.6",
  6760. "source": {
  6761. "type": "git",
  6762. "url": "https://github.com/symfony/css-selector.git",
  6763. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
  6764. },
  6765. "dist": {
  6766. "type": "zip",
  6767. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  6768. "reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
  6769. "shasum": ""
  6770. },
  6771. "require": {
  6772. "php": ">=8.2"
  6773. },
  6774. "type": "library",
  6775. "autoload": {
  6776. "psr-4": {
  6777. "Symfony\\Component\\CssSelector\\": ""
  6778. },
  6779. "exclude-from-classmap": [
  6780. "/Tests/"
  6781. ]
  6782. },
  6783. "notification-url": "https://packagist.org/downloads/",
  6784. "license": [
  6785. "MIT"
  6786. ],
  6787. "authors": [
  6788. {
  6789. "name": "Fabien Potencier",
  6790. "email": "fabien@symfony.com"
  6791. },
  6792. {
  6793. "name": "Jean-François Simon",
  6794. "email": "jeanfrancois.simon@sensiolabs.com"
  6795. },
  6796. {
  6797. "name": "Symfony Community",
  6798. "homepage": "https://symfony.com/contributors"
  6799. }
  6800. ],
  6801. "description": "Converts CSS selectors to XPath expressions",
  6802. "homepage": "https://symfony.com",
  6803. "support": {
  6804. "source": "https://github.com/symfony/css-selector/tree/v7.1.6"
  6805. },
  6806. "funding": [
  6807. {
  6808. "url": "https://symfony.com/sponsor",
  6809. "type": "custom"
  6810. },
  6811. {
  6812. "url": "https://github.com/fabpot",
  6813. "type": "github"
  6814. },
  6815. {
  6816. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6817. "type": "tidelift"
  6818. }
  6819. ],
  6820. "time": "2024-09-25T14:20:29+00:00"
  6821. },
  6822. {
  6823. "name": "symfony/deprecation-contracts",
  6824. "version": "v3.5.1",
  6825. "source": {
  6826. "type": "git",
  6827. "url": "https://github.com/symfony/deprecation-contracts.git",
  6828. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6829. },
  6830. "dist": {
  6831. "type": "zip",
  6832. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6833. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6834. "shasum": ""
  6835. },
  6836. "require": {
  6837. "php": ">=8.1"
  6838. },
  6839. "type": "library",
  6840. "extra": {
  6841. "branch-alias": {
  6842. "dev-main": "3.5-dev"
  6843. },
  6844. "thanks": {
  6845. "name": "symfony/contracts",
  6846. "url": "https://github.com/symfony/contracts"
  6847. }
  6848. },
  6849. "autoload": {
  6850. "files": [
  6851. "function.php"
  6852. ]
  6853. },
  6854. "notification-url": "https://packagist.org/downloads/",
  6855. "license": [
  6856. "MIT"
  6857. ],
  6858. "authors": [
  6859. {
  6860. "name": "Nicolas Grekas",
  6861. "email": "p@tchwork.com"
  6862. },
  6863. {
  6864. "name": "Symfony Community",
  6865. "homepage": "https://symfony.com/contributors"
  6866. }
  6867. ],
  6868. "description": "A generic function and convention to trigger deprecation notices",
  6869. "homepage": "https://symfony.com",
  6870. "support": {
  6871. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6872. },
  6873. "funding": [
  6874. {
  6875. "url": "https://symfony.com/sponsor",
  6876. "type": "custom"
  6877. },
  6878. {
  6879. "url": "https://github.com/fabpot",
  6880. "type": "github"
  6881. },
  6882. {
  6883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6884. "type": "tidelift"
  6885. }
  6886. ],
  6887. "time": "2024-09-25T14:20:29+00:00"
  6888. },
  6889. {
  6890. "name": "symfony/error-handler",
  6891. "version": "v7.1.7",
  6892. "source": {
  6893. "type": "git",
  6894. "url": "https://github.com/symfony/error-handler.git",
  6895. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342"
  6896. },
  6897. "dist": {
  6898. "type": "zip",
  6899. "url": "https://api.github.com/repos/symfony/error-handler/zipball/010e44661f4c6babaf8c4862fe68c24a53903342",
  6900. "reference": "010e44661f4c6babaf8c4862fe68c24a53903342",
  6901. "shasum": ""
  6902. },
  6903. "require": {
  6904. "php": ">=8.2",
  6905. "psr/log": "^1|^2|^3",
  6906. "symfony/var-dumper": "^6.4|^7.0"
  6907. },
  6908. "conflict": {
  6909. "symfony/deprecation-contracts": "<2.5",
  6910. "symfony/http-kernel": "<6.4"
  6911. },
  6912. "require-dev": {
  6913. "symfony/deprecation-contracts": "^2.5|^3",
  6914. "symfony/http-kernel": "^6.4|^7.0",
  6915. "symfony/serializer": "^6.4|^7.0"
  6916. },
  6917. "bin": [
  6918. "Resources/bin/patch-type-declarations"
  6919. ],
  6920. "type": "library",
  6921. "autoload": {
  6922. "psr-4": {
  6923. "Symfony\\Component\\ErrorHandler\\": ""
  6924. },
  6925. "exclude-from-classmap": [
  6926. "/Tests/"
  6927. ]
  6928. },
  6929. "notification-url": "https://packagist.org/downloads/",
  6930. "license": [
  6931. "MIT"
  6932. ],
  6933. "authors": [
  6934. {
  6935. "name": "Fabien Potencier",
  6936. "email": "fabien@symfony.com"
  6937. },
  6938. {
  6939. "name": "Symfony Community",
  6940. "homepage": "https://symfony.com/contributors"
  6941. }
  6942. ],
  6943. "description": "Provides tools to manage errors and ease debugging PHP code",
  6944. "homepage": "https://symfony.com",
  6945. "support": {
  6946. "source": "https://github.com/symfony/error-handler/tree/v7.1.7"
  6947. },
  6948. "funding": [
  6949. {
  6950. "url": "https://symfony.com/sponsor",
  6951. "type": "custom"
  6952. },
  6953. {
  6954. "url": "https://github.com/fabpot",
  6955. "type": "github"
  6956. },
  6957. {
  6958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6959. "type": "tidelift"
  6960. }
  6961. ],
  6962. "time": "2024-11-05T15:34:55+00:00"
  6963. },
  6964. {
  6965. "name": "symfony/event-dispatcher",
  6966. "version": "v7.1.6",
  6967. "source": {
  6968. "type": "git",
  6969. "url": "https://github.com/symfony/event-dispatcher.git",
  6970. "reference": "87254c78dd50721cfd015b62277a8281c5589702"
  6971. },
  6972. "dist": {
  6973. "type": "zip",
  6974. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/87254c78dd50721cfd015b62277a8281c5589702",
  6975. "reference": "87254c78dd50721cfd015b62277a8281c5589702",
  6976. "shasum": ""
  6977. },
  6978. "require": {
  6979. "php": ">=8.2",
  6980. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6981. },
  6982. "conflict": {
  6983. "symfony/dependency-injection": "<6.4",
  6984. "symfony/service-contracts": "<2.5"
  6985. },
  6986. "provide": {
  6987. "psr/event-dispatcher-implementation": "1.0",
  6988. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6989. },
  6990. "require-dev": {
  6991. "psr/log": "^1|^2|^3",
  6992. "symfony/config": "^6.4|^7.0",
  6993. "symfony/dependency-injection": "^6.4|^7.0",
  6994. "symfony/error-handler": "^6.4|^7.0",
  6995. "symfony/expression-language": "^6.4|^7.0",
  6996. "symfony/http-foundation": "^6.4|^7.0",
  6997. "symfony/service-contracts": "^2.5|^3",
  6998. "symfony/stopwatch": "^6.4|^7.0"
  6999. },
  7000. "type": "library",
  7001. "autoload": {
  7002. "psr-4": {
  7003. "Symfony\\Component\\EventDispatcher\\": ""
  7004. },
  7005. "exclude-from-classmap": [
  7006. "/Tests/"
  7007. ]
  7008. },
  7009. "notification-url": "https://packagist.org/downloads/",
  7010. "license": [
  7011. "MIT"
  7012. ],
  7013. "authors": [
  7014. {
  7015. "name": "Fabien Potencier",
  7016. "email": "fabien@symfony.com"
  7017. },
  7018. {
  7019. "name": "Symfony Community",
  7020. "homepage": "https://symfony.com/contributors"
  7021. }
  7022. ],
  7023. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7024. "homepage": "https://symfony.com",
  7025. "support": {
  7026. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.6"
  7027. },
  7028. "funding": [
  7029. {
  7030. "url": "https://symfony.com/sponsor",
  7031. "type": "custom"
  7032. },
  7033. {
  7034. "url": "https://github.com/fabpot",
  7035. "type": "github"
  7036. },
  7037. {
  7038. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7039. "type": "tidelift"
  7040. }
  7041. ],
  7042. "time": "2024-09-25T14:20:29+00:00"
  7043. },
  7044. {
  7045. "name": "symfony/event-dispatcher-contracts",
  7046. "version": "v3.5.1",
  7047. "source": {
  7048. "type": "git",
  7049. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7050. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  7051. },
  7052. "dist": {
  7053. "type": "zip",
  7054. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7055. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7056. "shasum": ""
  7057. },
  7058. "require": {
  7059. "php": ">=8.1",
  7060. "psr/event-dispatcher": "^1"
  7061. },
  7062. "type": "library",
  7063. "extra": {
  7064. "branch-alias": {
  7065. "dev-main": "3.5-dev"
  7066. },
  7067. "thanks": {
  7068. "name": "symfony/contracts",
  7069. "url": "https://github.com/symfony/contracts"
  7070. }
  7071. },
  7072. "autoload": {
  7073. "psr-4": {
  7074. "Symfony\\Contracts\\EventDispatcher\\": ""
  7075. }
  7076. },
  7077. "notification-url": "https://packagist.org/downloads/",
  7078. "license": [
  7079. "MIT"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "Nicolas Grekas",
  7084. "email": "p@tchwork.com"
  7085. },
  7086. {
  7087. "name": "Symfony Community",
  7088. "homepage": "https://symfony.com/contributors"
  7089. }
  7090. ],
  7091. "description": "Generic abstractions related to dispatching event",
  7092. "homepage": "https://symfony.com",
  7093. "keywords": [
  7094. "abstractions",
  7095. "contracts",
  7096. "decoupling",
  7097. "interfaces",
  7098. "interoperability",
  7099. "standards"
  7100. ],
  7101. "support": {
  7102. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  7103. },
  7104. "funding": [
  7105. {
  7106. "url": "https://symfony.com/sponsor",
  7107. "type": "custom"
  7108. },
  7109. {
  7110. "url": "https://github.com/fabpot",
  7111. "type": "github"
  7112. },
  7113. {
  7114. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7115. "type": "tidelift"
  7116. }
  7117. ],
  7118. "time": "2024-09-25T14:20:29+00:00"
  7119. },
  7120. {
  7121. "name": "symfony/finder",
  7122. "version": "v7.1.6",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/symfony/finder.git",
  7126. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/symfony/finder/zipball/2cb89664897be33f78c65d3d2845954c8d7a43b8",
  7131. "reference": "2cb89664897be33f78c65d3d2845954c8d7a43b8",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "php": ">=8.2"
  7136. },
  7137. "require-dev": {
  7138. "symfony/filesystem": "^6.4|^7.0"
  7139. },
  7140. "type": "library",
  7141. "autoload": {
  7142. "psr-4": {
  7143. "Symfony\\Component\\Finder\\": ""
  7144. },
  7145. "exclude-from-classmap": [
  7146. "/Tests/"
  7147. ]
  7148. },
  7149. "notification-url": "https://packagist.org/downloads/",
  7150. "license": [
  7151. "MIT"
  7152. ],
  7153. "authors": [
  7154. {
  7155. "name": "Fabien Potencier",
  7156. "email": "fabien@symfony.com"
  7157. },
  7158. {
  7159. "name": "Symfony Community",
  7160. "homepage": "https://symfony.com/contributors"
  7161. }
  7162. ],
  7163. "description": "Finds files and directories via an intuitive fluent interface",
  7164. "homepage": "https://symfony.com",
  7165. "support": {
  7166. "source": "https://github.com/symfony/finder/tree/v7.1.6"
  7167. },
  7168. "funding": [
  7169. {
  7170. "url": "https://symfony.com/sponsor",
  7171. "type": "custom"
  7172. },
  7173. {
  7174. "url": "https://github.com/fabpot",
  7175. "type": "github"
  7176. },
  7177. {
  7178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7179. "type": "tidelift"
  7180. }
  7181. ],
  7182. "time": "2024-10-01T08:31:23+00:00"
  7183. },
  7184. {
  7185. "name": "symfony/html-sanitizer",
  7186. "version": "v7.1.6",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://github.com/symfony/html-sanitizer.git",
  7190. "reference": "a25620fc6407e14331f3c0c5668eb4f35c392d4a"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/a25620fc6407e14331f3c0c5668eb4f35c392d4a",
  7195. "reference": "a25620fc6407e14331f3c0c5668eb4f35c392d4a",
  7196. "shasum": ""
  7197. },
  7198. "require": {
  7199. "ext-dom": "*",
  7200. "league/uri": "^6.5|^7.0",
  7201. "masterminds/html5": "^2.7.2",
  7202. "php": ">=8.2"
  7203. },
  7204. "type": "library",
  7205. "autoload": {
  7206. "psr-4": {
  7207. "Symfony\\Component\\HtmlSanitizer\\": ""
  7208. },
  7209. "exclude-from-classmap": [
  7210. "/Tests/"
  7211. ]
  7212. },
  7213. "notification-url": "https://packagist.org/downloads/",
  7214. "license": [
  7215. "MIT"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "Titouan Galopin",
  7220. "email": "galopintitouan@gmail.com"
  7221. },
  7222. {
  7223. "name": "Symfony Community",
  7224. "homepage": "https://symfony.com/contributors"
  7225. }
  7226. ],
  7227. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7228. "homepage": "https://symfony.com",
  7229. "keywords": [
  7230. "Purifier",
  7231. "html",
  7232. "sanitizer"
  7233. ],
  7234. "support": {
  7235. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.6"
  7236. },
  7237. "funding": [
  7238. {
  7239. "url": "https://symfony.com/sponsor",
  7240. "type": "custom"
  7241. },
  7242. {
  7243. "url": "https://github.com/fabpot",
  7244. "type": "github"
  7245. },
  7246. {
  7247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7248. "type": "tidelift"
  7249. }
  7250. ],
  7251. "time": "2024-09-25T14:20:29+00:00"
  7252. },
  7253. {
  7254. "name": "symfony/http-foundation",
  7255. "version": "v7.1.9",
  7256. "source": {
  7257. "type": "git",
  7258. "url": "https://github.com/symfony/http-foundation.git",
  7259. "reference": "82765842fb599c7ed839b650214680c7ee5779be"
  7260. },
  7261. "dist": {
  7262. "type": "zip",
  7263. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/82765842fb599c7ed839b650214680c7ee5779be",
  7264. "reference": "82765842fb599c7ed839b650214680c7ee5779be",
  7265. "shasum": ""
  7266. },
  7267. "require": {
  7268. "php": ">=8.2",
  7269. "symfony/polyfill-mbstring": "~1.1",
  7270. "symfony/polyfill-php83": "^1.27"
  7271. },
  7272. "conflict": {
  7273. "doctrine/dbal": "<3.6",
  7274. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7275. },
  7276. "require-dev": {
  7277. "doctrine/dbal": "^3.6|^4",
  7278. "predis/predis": "^1.1|^2.0",
  7279. "symfony/cache": "^6.4.12|^7.1.5",
  7280. "symfony/dependency-injection": "^6.4|^7.0",
  7281. "symfony/expression-language": "^6.4|^7.0",
  7282. "symfony/http-kernel": "^6.4|^7.0",
  7283. "symfony/mime": "^6.4|^7.0",
  7284. "symfony/rate-limiter": "^6.4|^7.0"
  7285. },
  7286. "type": "library",
  7287. "autoload": {
  7288. "psr-4": {
  7289. "Symfony\\Component\\HttpFoundation\\": ""
  7290. },
  7291. "exclude-from-classmap": [
  7292. "/Tests/"
  7293. ]
  7294. },
  7295. "notification-url": "https://packagist.org/downloads/",
  7296. "license": [
  7297. "MIT"
  7298. ],
  7299. "authors": [
  7300. {
  7301. "name": "Fabien Potencier",
  7302. "email": "fabien@symfony.com"
  7303. },
  7304. {
  7305. "name": "Symfony Community",
  7306. "homepage": "https://symfony.com/contributors"
  7307. }
  7308. ],
  7309. "description": "Defines an object-oriented layer for the HTTP specification",
  7310. "homepage": "https://symfony.com",
  7311. "support": {
  7312. "source": "https://github.com/symfony/http-foundation/tree/v7.1.9"
  7313. },
  7314. "funding": [
  7315. {
  7316. "url": "https://symfony.com/sponsor",
  7317. "type": "custom"
  7318. },
  7319. {
  7320. "url": "https://github.com/fabpot",
  7321. "type": "github"
  7322. },
  7323. {
  7324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7325. "type": "tidelift"
  7326. }
  7327. ],
  7328. "time": "2024-11-13T18:58:36+00:00"
  7329. },
  7330. {
  7331. "name": "symfony/http-kernel",
  7332. "version": "v7.1.9",
  7333. "source": {
  7334. "type": "git",
  7335. "url": "https://github.com/symfony/http-kernel.git",
  7336. "reference": "649d0e23c571344ef1153d4ffb2564f534b85a45"
  7337. },
  7338. "dist": {
  7339. "type": "zip",
  7340. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/649d0e23c571344ef1153d4ffb2564f534b85a45",
  7341. "reference": "649d0e23c571344ef1153d4ffb2564f534b85a45",
  7342. "shasum": ""
  7343. },
  7344. "require": {
  7345. "php": ">=8.2",
  7346. "psr/log": "^1|^2|^3",
  7347. "symfony/deprecation-contracts": "^2.5|^3",
  7348. "symfony/error-handler": "^6.4|^7.0",
  7349. "symfony/event-dispatcher": "^6.4|^7.0",
  7350. "symfony/http-foundation": "^6.4|^7.0",
  7351. "symfony/polyfill-ctype": "^1.8"
  7352. },
  7353. "conflict": {
  7354. "symfony/browser-kit": "<6.4",
  7355. "symfony/cache": "<6.4",
  7356. "symfony/config": "<6.4",
  7357. "symfony/console": "<6.4",
  7358. "symfony/dependency-injection": "<6.4",
  7359. "symfony/doctrine-bridge": "<6.4",
  7360. "symfony/form": "<6.4",
  7361. "symfony/http-client": "<6.4",
  7362. "symfony/http-client-contracts": "<2.5",
  7363. "symfony/mailer": "<6.4",
  7364. "symfony/messenger": "<6.4",
  7365. "symfony/translation": "<6.4",
  7366. "symfony/translation-contracts": "<2.5",
  7367. "symfony/twig-bridge": "<6.4",
  7368. "symfony/validator": "<6.4",
  7369. "symfony/var-dumper": "<6.4",
  7370. "twig/twig": "<3.0.4"
  7371. },
  7372. "provide": {
  7373. "psr/log-implementation": "1.0|2.0|3.0"
  7374. },
  7375. "require-dev": {
  7376. "psr/cache": "^1.0|^2.0|^3.0",
  7377. "symfony/browser-kit": "^6.4|^7.0",
  7378. "symfony/clock": "^6.4|^7.0",
  7379. "symfony/config": "^6.4|^7.0",
  7380. "symfony/console": "^6.4|^7.0",
  7381. "symfony/css-selector": "^6.4|^7.0",
  7382. "symfony/dependency-injection": "^6.4|^7.0",
  7383. "symfony/dom-crawler": "^6.4|^7.0",
  7384. "symfony/expression-language": "^6.4|^7.0",
  7385. "symfony/finder": "^6.4|^7.0",
  7386. "symfony/http-client-contracts": "^2.5|^3",
  7387. "symfony/process": "^6.4|^7.0",
  7388. "symfony/property-access": "^7.1",
  7389. "symfony/routing": "^6.4|^7.0",
  7390. "symfony/serializer": "^7.1",
  7391. "symfony/stopwatch": "^6.4|^7.0",
  7392. "symfony/translation": "^6.4|^7.0",
  7393. "symfony/translation-contracts": "^2.5|^3",
  7394. "symfony/uid": "^6.4|^7.0",
  7395. "symfony/validator": "^6.4|^7.0",
  7396. "symfony/var-dumper": "^6.4|^7.0",
  7397. "symfony/var-exporter": "^6.4|^7.0",
  7398. "twig/twig": "^3.0.4"
  7399. },
  7400. "type": "library",
  7401. "autoload": {
  7402. "psr-4": {
  7403. "Symfony\\Component\\HttpKernel\\": ""
  7404. },
  7405. "exclude-from-classmap": [
  7406. "/Tests/"
  7407. ]
  7408. },
  7409. "notification-url": "https://packagist.org/downloads/",
  7410. "license": [
  7411. "MIT"
  7412. ],
  7413. "authors": [
  7414. {
  7415. "name": "Fabien Potencier",
  7416. "email": "fabien@symfony.com"
  7417. },
  7418. {
  7419. "name": "Symfony Community",
  7420. "homepage": "https://symfony.com/contributors"
  7421. }
  7422. ],
  7423. "description": "Provides a structured process for converting a Request into a Response",
  7424. "homepage": "https://symfony.com",
  7425. "support": {
  7426. "source": "https://github.com/symfony/http-kernel/tree/v7.1.9"
  7427. },
  7428. "funding": [
  7429. {
  7430. "url": "https://symfony.com/sponsor",
  7431. "type": "custom"
  7432. },
  7433. {
  7434. "url": "https://github.com/fabpot",
  7435. "type": "github"
  7436. },
  7437. {
  7438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7439. "type": "tidelift"
  7440. }
  7441. ],
  7442. "time": "2024-11-27T12:55:11+00:00"
  7443. },
  7444. {
  7445. "name": "symfony/intl",
  7446. "version": "v6.4.15",
  7447. "source": {
  7448. "type": "git",
  7449. "url": "https://github.com/symfony/intl.git",
  7450. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  7451. },
  7452. "dist": {
  7453. "type": "zip",
  7454. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7455. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7456. "shasum": ""
  7457. },
  7458. "require": {
  7459. "php": ">=8.1"
  7460. },
  7461. "require-dev": {
  7462. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7463. "symfony/finder": "^5.4|^6.0|^7.0",
  7464. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7465. },
  7466. "type": "library",
  7467. "autoload": {
  7468. "psr-4": {
  7469. "Symfony\\Component\\Intl\\": ""
  7470. },
  7471. "exclude-from-classmap": [
  7472. "/Tests/",
  7473. "/Resources/data/"
  7474. ]
  7475. },
  7476. "notification-url": "https://packagist.org/downloads/",
  7477. "license": [
  7478. "MIT"
  7479. ],
  7480. "authors": [
  7481. {
  7482. "name": "Bernhard Schussek",
  7483. "email": "bschussek@gmail.com"
  7484. },
  7485. {
  7486. "name": "Eriksen Costa",
  7487. "email": "eriksen.costa@infranology.com.br"
  7488. },
  7489. {
  7490. "name": "Igor Wiedler",
  7491. "email": "igor@wiedler.ch"
  7492. },
  7493. {
  7494. "name": "Symfony Community",
  7495. "homepage": "https://symfony.com/contributors"
  7496. }
  7497. ],
  7498. "description": "Provides access to the localization data of the ICU library",
  7499. "homepage": "https://symfony.com",
  7500. "keywords": [
  7501. "i18n",
  7502. "icu",
  7503. "internationalization",
  7504. "intl",
  7505. "l10n",
  7506. "localization"
  7507. ],
  7508. "support": {
  7509. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  7510. },
  7511. "funding": [
  7512. {
  7513. "url": "https://symfony.com/sponsor",
  7514. "type": "custom"
  7515. },
  7516. {
  7517. "url": "https://github.com/fabpot",
  7518. "type": "github"
  7519. },
  7520. {
  7521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7522. "type": "tidelift"
  7523. }
  7524. ],
  7525. "time": "2024-11-08T15:28:48+00:00"
  7526. },
  7527. {
  7528. "name": "symfony/mailer",
  7529. "version": "v7.1.6",
  7530. "source": {
  7531. "type": "git",
  7532. "url": "https://github.com/symfony/mailer.git",
  7533. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd"
  7534. },
  7535. "dist": {
  7536. "type": "zip",
  7537. "url": "https://api.github.com/repos/symfony/mailer/zipball/69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  7538. "reference": "69c9948451fb3a6a4d47dc8261d1794734e76cdd",
  7539. "shasum": ""
  7540. },
  7541. "require": {
  7542. "egulias/email-validator": "^2.1.10|^3|^4",
  7543. "php": ">=8.2",
  7544. "psr/event-dispatcher": "^1",
  7545. "psr/log": "^1|^2|^3",
  7546. "symfony/event-dispatcher": "^6.4|^7.0",
  7547. "symfony/mime": "^6.4|^7.0",
  7548. "symfony/service-contracts": "^2.5|^3"
  7549. },
  7550. "conflict": {
  7551. "symfony/http-client-contracts": "<2.5",
  7552. "symfony/http-kernel": "<6.4",
  7553. "symfony/messenger": "<6.4",
  7554. "symfony/mime": "<6.4",
  7555. "symfony/twig-bridge": "<6.4"
  7556. },
  7557. "require-dev": {
  7558. "symfony/console": "^6.4|^7.0",
  7559. "symfony/http-client": "^6.4|^7.0",
  7560. "symfony/messenger": "^6.4|^7.0",
  7561. "symfony/twig-bridge": "^6.4|^7.0"
  7562. },
  7563. "type": "library",
  7564. "autoload": {
  7565. "psr-4": {
  7566. "Symfony\\Component\\Mailer\\": ""
  7567. },
  7568. "exclude-from-classmap": [
  7569. "/Tests/"
  7570. ]
  7571. },
  7572. "notification-url": "https://packagist.org/downloads/",
  7573. "license": [
  7574. "MIT"
  7575. ],
  7576. "authors": [
  7577. {
  7578. "name": "Fabien Potencier",
  7579. "email": "fabien@symfony.com"
  7580. },
  7581. {
  7582. "name": "Symfony Community",
  7583. "homepage": "https://symfony.com/contributors"
  7584. }
  7585. ],
  7586. "description": "Helps sending emails",
  7587. "homepage": "https://symfony.com",
  7588. "support": {
  7589. "source": "https://github.com/symfony/mailer/tree/v7.1.6"
  7590. },
  7591. "funding": [
  7592. {
  7593. "url": "https://symfony.com/sponsor",
  7594. "type": "custom"
  7595. },
  7596. {
  7597. "url": "https://github.com/fabpot",
  7598. "type": "github"
  7599. },
  7600. {
  7601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7602. "type": "tidelift"
  7603. }
  7604. ],
  7605. "time": "2024-09-25T14:20:29+00:00"
  7606. },
  7607. {
  7608. "name": "symfony/mime",
  7609. "version": "v7.1.6",
  7610. "source": {
  7611. "type": "git",
  7612. "url": "https://github.com/symfony/mime.git",
  7613. "reference": "caa1e521edb2650b8470918dfe51708c237f0598"
  7614. },
  7615. "dist": {
  7616. "type": "zip",
  7617. "url": "https://api.github.com/repos/symfony/mime/zipball/caa1e521edb2650b8470918dfe51708c237f0598",
  7618. "reference": "caa1e521edb2650b8470918dfe51708c237f0598",
  7619. "shasum": ""
  7620. },
  7621. "require": {
  7622. "php": ">=8.2",
  7623. "symfony/polyfill-intl-idn": "^1.10",
  7624. "symfony/polyfill-mbstring": "^1.0"
  7625. },
  7626. "conflict": {
  7627. "egulias/email-validator": "~3.0.0",
  7628. "phpdocumentor/reflection-docblock": "<3.2.2",
  7629. "phpdocumentor/type-resolver": "<1.4.0",
  7630. "symfony/mailer": "<6.4",
  7631. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7632. },
  7633. "require-dev": {
  7634. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7635. "league/html-to-markdown": "^5.0",
  7636. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7637. "symfony/dependency-injection": "^6.4|^7.0",
  7638. "symfony/process": "^6.4|^7.0",
  7639. "symfony/property-access": "^6.4|^7.0",
  7640. "symfony/property-info": "^6.4|^7.0",
  7641. "symfony/serializer": "^6.4.3|^7.0.3"
  7642. },
  7643. "type": "library",
  7644. "autoload": {
  7645. "psr-4": {
  7646. "Symfony\\Component\\Mime\\": ""
  7647. },
  7648. "exclude-from-classmap": [
  7649. "/Tests/"
  7650. ]
  7651. },
  7652. "notification-url": "https://packagist.org/downloads/",
  7653. "license": [
  7654. "MIT"
  7655. ],
  7656. "authors": [
  7657. {
  7658. "name": "Fabien Potencier",
  7659. "email": "fabien@symfony.com"
  7660. },
  7661. {
  7662. "name": "Symfony Community",
  7663. "homepage": "https://symfony.com/contributors"
  7664. }
  7665. ],
  7666. "description": "Allows manipulating MIME messages",
  7667. "homepage": "https://symfony.com",
  7668. "keywords": [
  7669. "mime",
  7670. "mime-type"
  7671. ],
  7672. "support": {
  7673. "source": "https://github.com/symfony/mime/tree/v7.1.6"
  7674. },
  7675. "funding": [
  7676. {
  7677. "url": "https://symfony.com/sponsor",
  7678. "type": "custom"
  7679. },
  7680. {
  7681. "url": "https://github.com/fabpot",
  7682. "type": "github"
  7683. },
  7684. {
  7685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7686. "type": "tidelift"
  7687. }
  7688. ],
  7689. "time": "2024-10-25T15:11:02+00:00"
  7690. },
  7691. {
  7692. "name": "symfony/polyfill-ctype",
  7693. "version": "v1.31.0",
  7694. "source": {
  7695. "type": "git",
  7696. "url": "https://github.com/symfony/polyfill-ctype.git",
  7697. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7698. },
  7699. "dist": {
  7700. "type": "zip",
  7701. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7702. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7703. "shasum": ""
  7704. },
  7705. "require": {
  7706. "php": ">=7.2"
  7707. },
  7708. "provide": {
  7709. "ext-ctype": "*"
  7710. },
  7711. "suggest": {
  7712. "ext-ctype": "For best performance"
  7713. },
  7714. "type": "library",
  7715. "extra": {
  7716. "thanks": {
  7717. "name": "symfony/polyfill",
  7718. "url": "https://github.com/symfony/polyfill"
  7719. }
  7720. },
  7721. "autoload": {
  7722. "files": [
  7723. "bootstrap.php"
  7724. ],
  7725. "psr-4": {
  7726. "Symfony\\Polyfill\\Ctype\\": ""
  7727. }
  7728. },
  7729. "notification-url": "https://packagist.org/downloads/",
  7730. "license": [
  7731. "MIT"
  7732. ],
  7733. "authors": [
  7734. {
  7735. "name": "Gert de Pagter",
  7736. "email": "BackEndTea@gmail.com"
  7737. },
  7738. {
  7739. "name": "Symfony Community",
  7740. "homepage": "https://symfony.com/contributors"
  7741. }
  7742. ],
  7743. "description": "Symfony polyfill for ctype functions",
  7744. "homepage": "https://symfony.com",
  7745. "keywords": [
  7746. "compatibility",
  7747. "ctype",
  7748. "polyfill",
  7749. "portable"
  7750. ],
  7751. "support": {
  7752. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7753. },
  7754. "funding": [
  7755. {
  7756. "url": "https://symfony.com/sponsor",
  7757. "type": "custom"
  7758. },
  7759. {
  7760. "url": "https://github.com/fabpot",
  7761. "type": "github"
  7762. },
  7763. {
  7764. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7765. "type": "tidelift"
  7766. }
  7767. ],
  7768. "time": "2024-09-09T11:45:10+00:00"
  7769. },
  7770. {
  7771. "name": "symfony/polyfill-intl-grapheme",
  7772. "version": "v1.31.0",
  7773. "source": {
  7774. "type": "git",
  7775. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7776. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7777. },
  7778. "dist": {
  7779. "type": "zip",
  7780. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7781. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7782. "shasum": ""
  7783. },
  7784. "require": {
  7785. "php": ">=7.2"
  7786. },
  7787. "suggest": {
  7788. "ext-intl": "For best performance"
  7789. },
  7790. "type": "library",
  7791. "extra": {
  7792. "thanks": {
  7793. "name": "symfony/polyfill",
  7794. "url": "https://github.com/symfony/polyfill"
  7795. }
  7796. },
  7797. "autoload": {
  7798. "files": [
  7799. "bootstrap.php"
  7800. ],
  7801. "psr-4": {
  7802. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7803. }
  7804. },
  7805. "notification-url": "https://packagist.org/downloads/",
  7806. "license": [
  7807. "MIT"
  7808. ],
  7809. "authors": [
  7810. {
  7811. "name": "Nicolas Grekas",
  7812. "email": "p@tchwork.com"
  7813. },
  7814. {
  7815. "name": "Symfony Community",
  7816. "homepage": "https://symfony.com/contributors"
  7817. }
  7818. ],
  7819. "description": "Symfony polyfill for intl's grapheme_* functions",
  7820. "homepage": "https://symfony.com",
  7821. "keywords": [
  7822. "compatibility",
  7823. "grapheme",
  7824. "intl",
  7825. "polyfill",
  7826. "portable",
  7827. "shim"
  7828. ],
  7829. "support": {
  7830. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7831. },
  7832. "funding": [
  7833. {
  7834. "url": "https://symfony.com/sponsor",
  7835. "type": "custom"
  7836. },
  7837. {
  7838. "url": "https://github.com/fabpot",
  7839. "type": "github"
  7840. },
  7841. {
  7842. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7843. "type": "tidelift"
  7844. }
  7845. ],
  7846. "time": "2024-09-09T11:45:10+00:00"
  7847. },
  7848. {
  7849. "name": "symfony/polyfill-intl-idn",
  7850. "version": "v1.31.0",
  7851. "source": {
  7852. "type": "git",
  7853. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7854. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7855. },
  7856. "dist": {
  7857. "type": "zip",
  7858. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7859. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7860. "shasum": ""
  7861. },
  7862. "require": {
  7863. "php": ">=7.2",
  7864. "symfony/polyfill-intl-normalizer": "^1.10"
  7865. },
  7866. "suggest": {
  7867. "ext-intl": "For best performance"
  7868. },
  7869. "type": "library",
  7870. "extra": {
  7871. "thanks": {
  7872. "name": "symfony/polyfill",
  7873. "url": "https://github.com/symfony/polyfill"
  7874. }
  7875. },
  7876. "autoload": {
  7877. "files": [
  7878. "bootstrap.php"
  7879. ],
  7880. "psr-4": {
  7881. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7882. }
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "MIT"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "Laurent Bassin",
  7891. "email": "laurent@bassin.info"
  7892. },
  7893. {
  7894. "name": "Trevor Rowbotham",
  7895. "email": "trevor.rowbotham@pm.me"
  7896. },
  7897. {
  7898. "name": "Symfony Community",
  7899. "homepage": "https://symfony.com/contributors"
  7900. }
  7901. ],
  7902. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7903. "homepage": "https://symfony.com",
  7904. "keywords": [
  7905. "compatibility",
  7906. "idn",
  7907. "intl",
  7908. "polyfill",
  7909. "portable",
  7910. "shim"
  7911. ],
  7912. "support": {
  7913. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7914. },
  7915. "funding": [
  7916. {
  7917. "url": "https://symfony.com/sponsor",
  7918. "type": "custom"
  7919. },
  7920. {
  7921. "url": "https://github.com/fabpot",
  7922. "type": "github"
  7923. },
  7924. {
  7925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7926. "type": "tidelift"
  7927. }
  7928. ],
  7929. "time": "2024-09-09T11:45:10+00:00"
  7930. },
  7931. {
  7932. "name": "symfony/polyfill-intl-normalizer",
  7933. "version": "v1.31.0",
  7934. "source": {
  7935. "type": "git",
  7936. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7937. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7938. },
  7939. "dist": {
  7940. "type": "zip",
  7941. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7942. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7943. "shasum": ""
  7944. },
  7945. "require": {
  7946. "php": ">=7.2"
  7947. },
  7948. "suggest": {
  7949. "ext-intl": "For best performance"
  7950. },
  7951. "type": "library",
  7952. "extra": {
  7953. "thanks": {
  7954. "name": "symfony/polyfill",
  7955. "url": "https://github.com/symfony/polyfill"
  7956. }
  7957. },
  7958. "autoload": {
  7959. "files": [
  7960. "bootstrap.php"
  7961. ],
  7962. "psr-4": {
  7963. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7964. },
  7965. "classmap": [
  7966. "Resources/stubs"
  7967. ]
  7968. },
  7969. "notification-url": "https://packagist.org/downloads/",
  7970. "license": [
  7971. "MIT"
  7972. ],
  7973. "authors": [
  7974. {
  7975. "name": "Nicolas Grekas",
  7976. "email": "p@tchwork.com"
  7977. },
  7978. {
  7979. "name": "Symfony Community",
  7980. "homepage": "https://symfony.com/contributors"
  7981. }
  7982. ],
  7983. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7984. "homepage": "https://symfony.com",
  7985. "keywords": [
  7986. "compatibility",
  7987. "intl",
  7988. "normalizer",
  7989. "polyfill",
  7990. "portable",
  7991. "shim"
  7992. ],
  7993. "support": {
  7994. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7995. },
  7996. "funding": [
  7997. {
  7998. "url": "https://symfony.com/sponsor",
  7999. "type": "custom"
  8000. },
  8001. {
  8002. "url": "https://github.com/fabpot",
  8003. "type": "github"
  8004. },
  8005. {
  8006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8007. "type": "tidelift"
  8008. }
  8009. ],
  8010. "time": "2024-09-09T11:45:10+00:00"
  8011. },
  8012. {
  8013. "name": "symfony/polyfill-mbstring",
  8014. "version": "v1.31.0",
  8015. "source": {
  8016. "type": "git",
  8017. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8018. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8019. },
  8020. "dist": {
  8021. "type": "zip",
  8022. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8023. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8024. "shasum": ""
  8025. },
  8026. "require": {
  8027. "php": ">=7.2"
  8028. },
  8029. "provide": {
  8030. "ext-mbstring": "*"
  8031. },
  8032. "suggest": {
  8033. "ext-mbstring": "For best performance"
  8034. },
  8035. "type": "library",
  8036. "extra": {
  8037. "thanks": {
  8038. "name": "symfony/polyfill",
  8039. "url": "https://github.com/symfony/polyfill"
  8040. }
  8041. },
  8042. "autoload": {
  8043. "files": [
  8044. "bootstrap.php"
  8045. ],
  8046. "psr-4": {
  8047. "Symfony\\Polyfill\\Mbstring\\": ""
  8048. }
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "MIT"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Nicolas Grekas",
  8057. "email": "p@tchwork.com"
  8058. },
  8059. {
  8060. "name": "Symfony Community",
  8061. "homepage": "https://symfony.com/contributors"
  8062. }
  8063. ],
  8064. "description": "Symfony polyfill for the Mbstring extension",
  8065. "homepage": "https://symfony.com",
  8066. "keywords": [
  8067. "compatibility",
  8068. "mbstring",
  8069. "polyfill",
  8070. "portable",
  8071. "shim"
  8072. ],
  8073. "support": {
  8074. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8075. },
  8076. "funding": [
  8077. {
  8078. "url": "https://symfony.com/sponsor",
  8079. "type": "custom"
  8080. },
  8081. {
  8082. "url": "https://github.com/fabpot",
  8083. "type": "github"
  8084. },
  8085. {
  8086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8087. "type": "tidelift"
  8088. }
  8089. ],
  8090. "time": "2024-09-09T11:45:10+00:00"
  8091. },
  8092. {
  8093. "name": "symfony/polyfill-php80",
  8094. "version": "v1.31.0",
  8095. "source": {
  8096. "type": "git",
  8097. "url": "https://github.com/symfony/polyfill-php80.git",
  8098. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8099. },
  8100. "dist": {
  8101. "type": "zip",
  8102. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8103. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8104. "shasum": ""
  8105. },
  8106. "require": {
  8107. "php": ">=7.2"
  8108. },
  8109. "type": "library",
  8110. "extra": {
  8111. "thanks": {
  8112. "name": "symfony/polyfill",
  8113. "url": "https://github.com/symfony/polyfill"
  8114. }
  8115. },
  8116. "autoload": {
  8117. "files": [
  8118. "bootstrap.php"
  8119. ],
  8120. "psr-4": {
  8121. "Symfony\\Polyfill\\Php80\\": ""
  8122. },
  8123. "classmap": [
  8124. "Resources/stubs"
  8125. ]
  8126. },
  8127. "notification-url": "https://packagist.org/downloads/",
  8128. "license": [
  8129. "MIT"
  8130. ],
  8131. "authors": [
  8132. {
  8133. "name": "Ion Bazan",
  8134. "email": "ion.bazan@gmail.com"
  8135. },
  8136. {
  8137. "name": "Nicolas Grekas",
  8138. "email": "p@tchwork.com"
  8139. },
  8140. {
  8141. "name": "Symfony Community",
  8142. "homepage": "https://symfony.com/contributors"
  8143. }
  8144. ],
  8145. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8146. "homepage": "https://symfony.com",
  8147. "keywords": [
  8148. "compatibility",
  8149. "polyfill",
  8150. "portable",
  8151. "shim"
  8152. ],
  8153. "support": {
  8154. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8155. },
  8156. "funding": [
  8157. {
  8158. "url": "https://symfony.com/sponsor",
  8159. "type": "custom"
  8160. },
  8161. {
  8162. "url": "https://github.com/fabpot",
  8163. "type": "github"
  8164. },
  8165. {
  8166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8167. "type": "tidelift"
  8168. }
  8169. ],
  8170. "time": "2024-09-09T11:45:10+00:00"
  8171. },
  8172. {
  8173. "name": "symfony/polyfill-php83",
  8174. "version": "v1.31.0",
  8175. "source": {
  8176. "type": "git",
  8177. "url": "https://github.com/symfony/polyfill-php83.git",
  8178. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8179. },
  8180. "dist": {
  8181. "type": "zip",
  8182. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8183. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8184. "shasum": ""
  8185. },
  8186. "require": {
  8187. "php": ">=7.2"
  8188. },
  8189. "type": "library",
  8190. "extra": {
  8191. "thanks": {
  8192. "name": "symfony/polyfill",
  8193. "url": "https://github.com/symfony/polyfill"
  8194. }
  8195. },
  8196. "autoload": {
  8197. "files": [
  8198. "bootstrap.php"
  8199. ],
  8200. "psr-4": {
  8201. "Symfony\\Polyfill\\Php83\\": ""
  8202. },
  8203. "classmap": [
  8204. "Resources/stubs"
  8205. ]
  8206. },
  8207. "notification-url": "https://packagist.org/downloads/",
  8208. "license": [
  8209. "MIT"
  8210. ],
  8211. "authors": [
  8212. {
  8213. "name": "Nicolas Grekas",
  8214. "email": "p@tchwork.com"
  8215. },
  8216. {
  8217. "name": "Symfony Community",
  8218. "homepage": "https://symfony.com/contributors"
  8219. }
  8220. ],
  8221. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8222. "homepage": "https://symfony.com",
  8223. "keywords": [
  8224. "compatibility",
  8225. "polyfill",
  8226. "portable",
  8227. "shim"
  8228. ],
  8229. "support": {
  8230. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  8231. },
  8232. "funding": [
  8233. {
  8234. "url": "https://symfony.com/sponsor",
  8235. "type": "custom"
  8236. },
  8237. {
  8238. "url": "https://github.com/fabpot",
  8239. "type": "github"
  8240. },
  8241. {
  8242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8243. "type": "tidelift"
  8244. }
  8245. ],
  8246. "time": "2024-09-09T11:45:10+00:00"
  8247. },
  8248. {
  8249. "name": "symfony/polyfill-uuid",
  8250. "version": "v1.31.0",
  8251. "source": {
  8252. "type": "git",
  8253. "url": "https://github.com/symfony/polyfill-uuid.git",
  8254. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8255. },
  8256. "dist": {
  8257. "type": "zip",
  8258. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8259. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8260. "shasum": ""
  8261. },
  8262. "require": {
  8263. "php": ">=7.2"
  8264. },
  8265. "provide": {
  8266. "ext-uuid": "*"
  8267. },
  8268. "suggest": {
  8269. "ext-uuid": "For best performance"
  8270. },
  8271. "type": "library",
  8272. "extra": {
  8273. "thanks": {
  8274. "name": "symfony/polyfill",
  8275. "url": "https://github.com/symfony/polyfill"
  8276. }
  8277. },
  8278. "autoload": {
  8279. "files": [
  8280. "bootstrap.php"
  8281. ],
  8282. "psr-4": {
  8283. "Symfony\\Polyfill\\Uuid\\": ""
  8284. }
  8285. },
  8286. "notification-url": "https://packagist.org/downloads/",
  8287. "license": [
  8288. "MIT"
  8289. ],
  8290. "authors": [
  8291. {
  8292. "name": "Grégoire Pineau",
  8293. "email": "lyrixx@lyrixx.info"
  8294. },
  8295. {
  8296. "name": "Symfony Community",
  8297. "homepage": "https://symfony.com/contributors"
  8298. }
  8299. ],
  8300. "description": "Symfony polyfill for uuid functions",
  8301. "homepage": "https://symfony.com",
  8302. "keywords": [
  8303. "compatibility",
  8304. "polyfill",
  8305. "portable",
  8306. "uuid"
  8307. ],
  8308. "support": {
  8309. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  8310. },
  8311. "funding": [
  8312. {
  8313. "url": "https://symfony.com/sponsor",
  8314. "type": "custom"
  8315. },
  8316. {
  8317. "url": "https://github.com/fabpot",
  8318. "type": "github"
  8319. },
  8320. {
  8321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8322. "type": "tidelift"
  8323. }
  8324. ],
  8325. "time": "2024-09-09T11:45:10+00:00"
  8326. },
  8327. {
  8328. "name": "symfony/process",
  8329. "version": "v7.1.8",
  8330. "source": {
  8331. "type": "git",
  8332. "url": "https://github.com/symfony/process.git",
  8333. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892"
  8334. },
  8335. "dist": {
  8336. "type": "zip",
  8337. "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892",
  8338. "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892",
  8339. "shasum": ""
  8340. },
  8341. "require": {
  8342. "php": ">=8.2"
  8343. },
  8344. "type": "library",
  8345. "autoload": {
  8346. "psr-4": {
  8347. "Symfony\\Component\\Process\\": ""
  8348. },
  8349. "exclude-from-classmap": [
  8350. "/Tests/"
  8351. ]
  8352. },
  8353. "notification-url": "https://packagist.org/downloads/",
  8354. "license": [
  8355. "MIT"
  8356. ],
  8357. "authors": [
  8358. {
  8359. "name": "Fabien Potencier",
  8360. "email": "fabien@symfony.com"
  8361. },
  8362. {
  8363. "name": "Symfony Community",
  8364. "homepage": "https://symfony.com/contributors"
  8365. }
  8366. ],
  8367. "description": "Executes commands in sub-processes",
  8368. "homepage": "https://symfony.com",
  8369. "support": {
  8370. "source": "https://github.com/symfony/process/tree/v7.1.8"
  8371. },
  8372. "funding": [
  8373. {
  8374. "url": "https://symfony.com/sponsor",
  8375. "type": "custom"
  8376. },
  8377. {
  8378. "url": "https://github.com/fabpot",
  8379. "type": "github"
  8380. },
  8381. {
  8382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8383. "type": "tidelift"
  8384. }
  8385. ],
  8386. "time": "2024-11-06T14:23:19+00:00"
  8387. },
  8388. {
  8389. "name": "symfony/routing",
  8390. "version": "v7.1.9",
  8391. "source": {
  8392. "type": "git",
  8393. "url": "https://github.com/symfony/routing.git",
  8394. "reference": "a27bb8e0cc3ca4baf17159d053910c9736c3aa4c"
  8395. },
  8396. "dist": {
  8397. "type": "zip",
  8398. "url": "https://api.github.com/repos/symfony/routing/zipball/a27bb8e0cc3ca4baf17159d053910c9736c3aa4c",
  8399. "reference": "a27bb8e0cc3ca4baf17159d053910c9736c3aa4c",
  8400. "shasum": ""
  8401. },
  8402. "require": {
  8403. "php": ">=8.2",
  8404. "symfony/deprecation-contracts": "^2.5|^3"
  8405. },
  8406. "conflict": {
  8407. "symfony/config": "<6.4",
  8408. "symfony/dependency-injection": "<6.4",
  8409. "symfony/yaml": "<6.4"
  8410. },
  8411. "require-dev": {
  8412. "psr/log": "^1|^2|^3",
  8413. "symfony/config": "^6.4|^7.0",
  8414. "symfony/dependency-injection": "^6.4|^7.0",
  8415. "symfony/expression-language": "^6.4|^7.0",
  8416. "symfony/http-foundation": "^6.4|^7.0",
  8417. "symfony/yaml": "^6.4|^7.0"
  8418. },
  8419. "type": "library",
  8420. "autoload": {
  8421. "psr-4": {
  8422. "Symfony\\Component\\Routing\\": ""
  8423. },
  8424. "exclude-from-classmap": [
  8425. "/Tests/"
  8426. ]
  8427. },
  8428. "notification-url": "https://packagist.org/downloads/",
  8429. "license": [
  8430. "MIT"
  8431. ],
  8432. "authors": [
  8433. {
  8434. "name": "Fabien Potencier",
  8435. "email": "fabien@symfony.com"
  8436. },
  8437. {
  8438. "name": "Symfony Community",
  8439. "homepage": "https://symfony.com/contributors"
  8440. }
  8441. ],
  8442. "description": "Maps an HTTP request to a set of configuration variables",
  8443. "homepage": "https://symfony.com",
  8444. "keywords": [
  8445. "router",
  8446. "routing",
  8447. "uri",
  8448. "url"
  8449. ],
  8450. "support": {
  8451. "source": "https://github.com/symfony/routing/tree/v7.1.9"
  8452. },
  8453. "funding": [
  8454. {
  8455. "url": "https://symfony.com/sponsor",
  8456. "type": "custom"
  8457. },
  8458. {
  8459. "url": "https://github.com/fabpot",
  8460. "type": "github"
  8461. },
  8462. {
  8463. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8464. "type": "tidelift"
  8465. }
  8466. ],
  8467. "time": "2024-11-13T16:12:35+00:00"
  8468. },
  8469. {
  8470. "name": "symfony/service-contracts",
  8471. "version": "v3.5.1",
  8472. "source": {
  8473. "type": "git",
  8474. "url": "https://github.com/symfony/service-contracts.git",
  8475. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8476. },
  8477. "dist": {
  8478. "type": "zip",
  8479. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8480. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8481. "shasum": ""
  8482. },
  8483. "require": {
  8484. "php": ">=8.1",
  8485. "psr/container": "^1.1|^2.0",
  8486. "symfony/deprecation-contracts": "^2.5|^3"
  8487. },
  8488. "conflict": {
  8489. "ext-psr": "<1.1|>=2"
  8490. },
  8491. "type": "library",
  8492. "extra": {
  8493. "branch-alias": {
  8494. "dev-main": "3.5-dev"
  8495. },
  8496. "thanks": {
  8497. "name": "symfony/contracts",
  8498. "url": "https://github.com/symfony/contracts"
  8499. }
  8500. },
  8501. "autoload": {
  8502. "psr-4": {
  8503. "Symfony\\Contracts\\Service\\": ""
  8504. },
  8505. "exclude-from-classmap": [
  8506. "/Test/"
  8507. ]
  8508. },
  8509. "notification-url": "https://packagist.org/downloads/",
  8510. "license": [
  8511. "MIT"
  8512. ],
  8513. "authors": [
  8514. {
  8515. "name": "Nicolas Grekas",
  8516. "email": "p@tchwork.com"
  8517. },
  8518. {
  8519. "name": "Symfony Community",
  8520. "homepage": "https://symfony.com/contributors"
  8521. }
  8522. ],
  8523. "description": "Generic abstractions related to writing services",
  8524. "homepage": "https://symfony.com",
  8525. "keywords": [
  8526. "abstractions",
  8527. "contracts",
  8528. "decoupling",
  8529. "interfaces",
  8530. "interoperability",
  8531. "standards"
  8532. ],
  8533. "support": {
  8534. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8535. },
  8536. "funding": [
  8537. {
  8538. "url": "https://symfony.com/sponsor",
  8539. "type": "custom"
  8540. },
  8541. {
  8542. "url": "https://github.com/fabpot",
  8543. "type": "github"
  8544. },
  8545. {
  8546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8547. "type": "tidelift"
  8548. }
  8549. ],
  8550. "time": "2024-09-25T14:20:29+00:00"
  8551. },
  8552. {
  8553. "name": "symfony/string",
  8554. "version": "v7.1.8",
  8555. "source": {
  8556. "type": "git",
  8557. "url": "https://github.com/symfony/string.git",
  8558. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281"
  8559. },
  8560. "dist": {
  8561. "type": "zip",
  8562. "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281",
  8563. "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281",
  8564. "shasum": ""
  8565. },
  8566. "require": {
  8567. "php": ">=8.2",
  8568. "symfony/polyfill-ctype": "~1.8",
  8569. "symfony/polyfill-intl-grapheme": "~1.0",
  8570. "symfony/polyfill-intl-normalizer": "~1.0",
  8571. "symfony/polyfill-mbstring": "~1.0"
  8572. },
  8573. "conflict": {
  8574. "symfony/translation-contracts": "<2.5"
  8575. },
  8576. "require-dev": {
  8577. "symfony/emoji": "^7.1",
  8578. "symfony/error-handler": "^6.4|^7.0",
  8579. "symfony/http-client": "^6.4|^7.0",
  8580. "symfony/intl": "^6.4|^7.0",
  8581. "symfony/translation-contracts": "^2.5|^3.0",
  8582. "symfony/var-exporter": "^6.4|^7.0"
  8583. },
  8584. "type": "library",
  8585. "autoload": {
  8586. "files": [
  8587. "Resources/functions.php"
  8588. ],
  8589. "psr-4": {
  8590. "Symfony\\Component\\String\\": ""
  8591. },
  8592. "exclude-from-classmap": [
  8593. "/Tests/"
  8594. ]
  8595. },
  8596. "notification-url": "https://packagist.org/downloads/",
  8597. "license": [
  8598. "MIT"
  8599. ],
  8600. "authors": [
  8601. {
  8602. "name": "Nicolas Grekas",
  8603. "email": "p@tchwork.com"
  8604. },
  8605. {
  8606. "name": "Symfony Community",
  8607. "homepage": "https://symfony.com/contributors"
  8608. }
  8609. ],
  8610. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8611. "homepage": "https://symfony.com",
  8612. "keywords": [
  8613. "grapheme",
  8614. "i18n",
  8615. "string",
  8616. "unicode",
  8617. "utf-8",
  8618. "utf8"
  8619. ],
  8620. "support": {
  8621. "source": "https://github.com/symfony/string/tree/v7.1.8"
  8622. },
  8623. "funding": [
  8624. {
  8625. "url": "https://symfony.com/sponsor",
  8626. "type": "custom"
  8627. },
  8628. {
  8629. "url": "https://github.com/fabpot",
  8630. "type": "github"
  8631. },
  8632. {
  8633. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8634. "type": "tidelift"
  8635. }
  8636. ],
  8637. "time": "2024-11-13T13:31:21+00:00"
  8638. },
  8639. {
  8640. "name": "symfony/translation",
  8641. "version": "v7.1.6",
  8642. "source": {
  8643. "type": "git",
  8644. "url": "https://github.com/symfony/translation.git",
  8645. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f"
  8646. },
  8647. "dist": {
  8648. "type": "zip",
  8649. "url": "https://api.github.com/repos/symfony/translation/zipball/b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  8650. "reference": "b9f72ab14efdb6b772f85041fa12f820dee8d55f",
  8651. "shasum": ""
  8652. },
  8653. "require": {
  8654. "php": ">=8.2",
  8655. "symfony/polyfill-mbstring": "~1.0",
  8656. "symfony/translation-contracts": "^2.5|^3.0"
  8657. },
  8658. "conflict": {
  8659. "symfony/config": "<6.4",
  8660. "symfony/console": "<6.4",
  8661. "symfony/dependency-injection": "<6.4",
  8662. "symfony/http-client-contracts": "<2.5",
  8663. "symfony/http-kernel": "<6.4",
  8664. "symfony/service-contracts": "<2.5",
  8665. "symfony/twig-bundle": "<6.4",
  8666. "symfony/yaml": "<6.4"
  8667. },
  8668. "provide": {
  8669. "symfony/translation-implementation": "2.3|3.0"
  8670. },
  8671. "require-dev": {
  8672. "nikic/php-parser": "^4.18|^5.0",
  8673. "psr/log": "^1|^2|^3",
  8674. "symfony/config": "^6.4|^7.0",
  8675. "symfony/console": "^6.4|^7.0",
  8676. "symfony/dependency-injection": "^6.4|^7.0",
  8677. "symfony/finder": "^6.4|^7.0",
  8678. "symfony/http-client-contracts": "^2.5|^3.0",
  8679. "symfony/http-kernel": "^6.4|^7.0",
  8680. "symfony/intl": "^6.4|^7.0",
  8681. "symfony/polyfill-intl-icu": "^1.21",
  8682. "symfony/routing": "^6.4|^7.0",
  8683. "symfony/service-contracts": "^2.5|^3",
  8684. "symfony/yaml": "^6.4|^7.0"
  8685. },
  8686. "type": "library",
  8687. "autoload": {
  8688. "files": [
  8689. "Resources/functions.php"
  8690. ],
  8691. "psr-4": {
  8692. "Symfony\\Component\\Translation\\": ""
  8693. },
  8694. "exclude-from-classmap": [
  8695. "/Tests/"
  8696. ]
  8697. },
  8698. "notification-url": "https://packagist.org/downloads/",
  8699. "license": [
  8700. "MIT"
  8701. ],
  8702. "authors": [
  8703. {
  8704. "name": "Fabien Potencier",
  8705. "email": "fabien@symfony.com"
  8706. },
  8707. {
  8708. "name": "Symfony Community",
  8709. "homepage": "https://symfony.com/contributors"
  8710. }
  8711. ],
  8712. "description": "Provides tools to internationalize your application",
  8713. "homepage": "https://symfony.com",
  8714. "support": {
  8715. "source": "https://github.com/symfony/translation/tree/v7.1.6"
  8716. },
  8717. "funding": [
  8718. {
  8719. "url": "https://symfony.com/sponsor",
  8720. "type": "custom"
  8721. },
  8722. {
  8723. "url": "https://github.com/fabpot",
  8724. "type": "github"
  8725. },
  8726. {
  8727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8728. "type": "tidelift"
  8729. }
  8730. ],
  8731. "time": "2024-09-28T12:35:13+00:00"
  8732. },
  8733. {
  8734. "name": "symfony/translation-contracts",
  8735. "version": "v3.5.1",
  8736. "source": {
  8737. "type": "git",
  8738. "url": "https://github.com/symfony/translation-contracts.git",
  8739. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8740. },
  8741. "dist": {
  8742. "type": "zip",
  8743. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8744. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8745. "shasum": ""
  8746. },
  8747. "require": {
  8748. "php": ">=8.1"
  8749. },
  8750. "type": "library",
  8751. "extra": {
  8752. "branch-alias": {
  8753. "dev-main": "3.5-dev"
  8754. },
  8755. "thanks": {
  8756. "name": "symfony/contracts",
  8757. "url": "https://github.com/symfony/contracts"
  8758. }
  8759. },
  8760. "autoload": {
  8761. "psr-4": {
  8762. "Symfony\\Contracts\\Translation\\": ""
  8763. },
  8764. "exclude-from-classmap": [
  8765. "/Test/"
  8766. ]
  8767. },
  8768. "notification-url": "https://packagist.org/downloads/",
  8769. "license": [
  8770. "MIT"
  8771. ],
  8772. "authors": [
  8773. {
  8774. "name": "Nicolas Grekas",
  8775. "email": "p@tchwork.com"
  8776. },
  8777. {
  8778. "name": "Symfony Community",
  8779. "homepage": "https://symfony.com/contributors"
  8780. }
  8781. ],
  8782. "description": "Generic abstractions related to translation",
  8783. "homepage": "https://symfony.com",
  8784. "keywords": [
  8785. "abstractions",
  8786. "contracts",
  8787. "decoupling",
  8788. "interfaces",
  8789. "interoperability",
  8790. "standards"
  8791. ],
  8792. "support": {
  8793. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8794. },
  8795. "funding": [
  8796. {
  8797. "url": "https://symfony.com/sponsor",
  8798. "type": "custom"
  8799. },
  8800. {
  8801. "url": "https://github.com/fabpot",
  8802. "type": "github"
  8803. },
  8804. {
  8805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8806. "type": "tidelift"
  8807. }
  8808. ],
  8809. "time": "2024-09-25T14:20:29+00:00"
  8810. },
  8811. {
  8812. "name": "symfony/uid",
  8813. "version": "v7.1.6",
  8814. "source": {
  8815. "type": "git",
  8816. "url": "https://github.com/symfony/uid.git",
  8817. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917"
  8818. },
  8819. "dist": {
  8820. "type": "zip",
  8821. "url": "https://api.github.com/repos/symfony/uid/zipball/65befb3bb2d503bbffbd08c815aa38b472999917",
  8822. "reference": "65befb3bb2d503bbffbd08c815aa38b472999917",
  8823. "shasum": ""
  8824. },
  8825. "require": {
  8826. "php": ">=8.2",
  8827. "symfony/polyfill-uuid": "^1.15"
  8828. },
  8829. "require-dev": {
  8830. "symfony/console": "^6.4|^7.0"
  8831. },
  8832. "type": "library",
  8833. "autoload": {
  8834. "psr-4": {
  8835. "Symfony\\Component\\Uid\\": ""
  8836. },
  8837. "exclude-from-classmap": [
  8838. "/Tests/"
  8839. ]
  8840. },
  8841. "notification-url": "https://packagist.org/downloads/",
  8842. "license": [
  8843. "MIT"
  8844. ],
  8845. "authors": [
  8846. {
  8847. "name": "Grégoire Pineau",
  8848. "email": "lyrixx@lyrixx.info"
  8849. },
  8850. {
  8851. "name": "Nicolas Grekas",
  8852. "email": "p@tchwork.com"
  8853. },
  8854. {
  8855. "name": "Symfony Community",
  8856. "homepage": "https://symfony.com/contributors"
  8857. }
  8858. ],
  8859. "description": "Provides an object-oriented API to generate and represent UIDs",
  8860. "homepage": "https://symfony.com",
  8861. "keywords": [
  8862. "UID",
  8863. "ulid",
  8864. "uuid"
  8865. ],
  8866. "support": {
  8867. "source": "https://github.com/symfony/uid/tree/v7.1.6"
  8868. },
  8869. "funding": [
  8870. {
  8871. "url": "https://symfony.com/sponsor",
  8872. "type": "custom"
  8873. },
  8874. {
  8875. "url": "https://github.com/fabpot",
  8876. "type": "github"
  8877. },
  8878. {
  8879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8880. "type": "tidelift"
  8881. }
  8882. ],
  8883. "time": "2024-09-25T14:20:29+00:00"
  8884. },
  8885. {
  8886. "name": "symfony/var-dumper",
  8887. "version": "v7.1.8",
  8888. "source": {
  8889. "type": "git",
  8890. "url": "https://github.com/symfony/var-dumper.git",
  8891. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8"
  8892. },
  8893. "dist": {
  8894. "type": "zip",
  8895. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  8896. "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8",
  8897. "shasum": ""
  8898. },
  8899. "require": {
  8900. "php": ">=8.2",
  8901. "symfony/polyfill-mbstring": "~1.0"
  8902. },
  8903. "conflict": {
  8904. "symfony/console": "<6.4"
  8905. },
  8906. "require-dev": {
  8907. "ext-iconv": "*",
  8908. "symfony/console": "^6.4|^7.0",
  8909. "symfony/http-kernel": "^6.4|^7.0",
  8910. "symfony/process": "^6.4|^7.0",
  8911. "symfony/uid": "^6.4|^7.0",
  8912. "twig/twig": "^3.0.4"
  8913. },
  8914. "bin": [
  8915. "Resources/bin/var-dump-server"
  8916. ],
  8917. "type": "library",
  8918. "autoload": {
  8919. "files": [
  8920. "Resources/functions/dump.php"
  8921. ],
  8922. "psr-4": {
  8923. "Symfony\\Component\\VarDumper\\": ""
  8924. },
  8925. "exclude-from-classmap": [
  8926. "/Tests/"
  8927. ]
  8928. },
  8929. "notification-url": "https://packagist.org/downloads/",
  8930. "license": [
  8931. "MIT"
  8932. ],
  8933. "authors": [
  8934. {
  8935. "name": "Nicolas Grekas",
  8936. "email": "p@tchwork.com"
  8937. },
  8938. {
  8939. "name": "Symfony Community",
  8940. "homepage": "https://symfony.com/contributors"
  8941. }
  8942. ],
  8943. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8944. "homepage": "https://symfony.com",
  8945. "keywords": [
  8946. "debug",
  8947. "dump"
  8948. ],
  8949. "support": {
  8950. "source": "https://github.com/symfony/var-dumper/tree/v7.1.8"
  8951. },
  8952. "funding": [
  8953. {
  8954. "url": "https://symfony.com/sponsor",
  8955. "type": "custom"
  8956. },
  8957. {
  8958. "url": "https://github.com/fabpot",
  8959. "type": "github"
  8960. },
  8961. {
  8962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8963. "type": "tidelift"
  8964. }
  8965. ],
  8966. "time": "2024-11-08T15:46:42+00:00"
  8967. },
  8968. {
  8969. "name": "tijsverkoyen/css-to-inline-styles",
  8970. "version": "v2.2.7",
  8971. "source": {
  8972. "type": "git",
  8973. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8974. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8975. },
  8976. "dist": {
  8977. "type": "zip",
  8978. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8979. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8980. "shasum": ""
  8981. },
  8982. "require": {
  8983. "ext-dom": "*",
  8984. "ext-libxml": "*",
  8985. "php": "^5.5 || ^7.0 || ^8.0",
  8986. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8987. },
  8988. "require-dev": {
  8989. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8990. },
  8991. "type": "library",
  8992. "extra": {
  8993. "branch-alias": {
  8994. "dev-master": "2.2.x-dev"
  8995. }
  8996. },
  8997. "autoload": {
  8998. "psr-4": {
  8999. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9000. }
  9001. },
  9002. "notification-url": "https://packagist.org/downloads/",
  9003. "license": [
  9004. "BSD-3-Clause"
  9005. ],
  9006. "authors": [
  9007. {
  9008. "name": "Tijs Verkoyen",
  9009. "email": "css_to_inline_styles@verkoyen.eu",
  9010. "role": "Developer"
  9011. }
  9012. ],
  9013. "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.",
  9014. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9015. "support": {
  9016. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9017. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9018. },
  9019. "time": "2023-12-08T13:03:43+00:00"
  9020. },
  9021. {
  9022. "name": "vlucas/phpdotenv",
  9023. "version": "v5.6.1",
  9024. "source": {
  9025. "type": "git",
  9026. "url": "https://github.com/vlucas/phpdotenv.git",
  9027. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9028. },
  9029. "dist": {
  9030. "type": "zip",
  9031. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9032. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9033. "shasum": ""
  9034. },
  9035. "require": {
  9036. "ext-pcre": "*",
  9037. "graham-campbell/result-type": "^1.1.3",
  9038. "php": "^7.2.5 || ^8.0",
  9039. "phpoption/phpoption": "^1.9.3",
  9040. "symfony/polyfill-ctype": "^1.24",
  9041. "symfony/polyfill-mbstring": "^1.24",
  9042. "symfony/polyfill-php80": "^1.24"
  9043. },
  9044. "require-dev": {
  9045. "bamarni/composer-bin-plugin": "^1.8.2",
  9046. "ext-filter": "*",
  9047. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9048. },
  9049. "suggest": {
  9050. "ext-filter": "Required to use the boolean validator."
  9051. },
  9052. "type": "library",
  9053. "extra": {
  9054. "bamarni-bin": {
  9055. "bin-links": true,
  9056. "forward-command": false
  9057. },
  9058. "branch-alias": {
  9059. "dev-master": "5.6-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "psr-4": {
  9064. "Dotenv\\": "src/"
  9065. }
  9066. },
  9067. "notification-url": "https://packagist.org/downloads/",
  9068. "license": [
  9069. "BSD-3-Clause"
  9070. ],
  9071. "authors": [
  9072. {
  9073. "name": "Graham Campbell",
  9074. "email": "hello@gjcampbell.co.uk",
  9075. "homepage": "https://github.com/GrahamCampbell"
  9076. },
  9077. {
  9078. "name": "Vance Lucas",
  9079. "email": "vance@vancelucas.com",
  9080. "homepage": "https://github.com/vlucas"
  9081. }
  9082. ],
  9083. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9084. "keywords": [
  9085. "dotenv",
  9086. "env",
  9087. "environment"
  9088. ],
  9089. "support": {
  9090. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9091. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9092. },
  9093. "funding": [
  9094. {
  9095. "url": "https://github.com/GrahamCampbell",
  9096. "type": "github"
  9097. },
  9098. {
  9099. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9100. "type": "tidelift"
  9101. }
  9102. ],
  9103. "time": "2024-07-20T21:52:34+00:00"
  9104. },
  9105. {
  9106. "name": "voku/portable-ascii",
  9107. "version": "2.0.3",
  9108. "source": {
  9109. "type": "git",
  9110. "url": "https://github.com/voku/portable-ascii.git",
  9111. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9112. },
  9113. "dist": {
  9114. "type": "zip",
  9115. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9116. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9117. "shasum": ""
  9118. },
  9119. "require": {
  9120. "php": ">=7.0.0"
  9121. },
  9122. "require-dev": {
  9123. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9124. },
  9125. "suggest": {
  9126. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9127. },
  9128. "type": "library",
  9129. "autoload": {
  9130. "psr-4": {
  9131. "voku\\": "src/voku/"
  9132. }
  9133. },
  9134. "notification-url": "https://packagist.org/downloads/",
  9135. "license": [
  9136. "MIT"
  9137. ],
  9138. "authors": [
  9139. {
  9140. "name": "Lars Moelleken",
  9141. "homepage": "https://www.moelleken.org/"
  9142. }
  9143. ],
  9144. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9145. "homepage": "https://github.com/voku/portable-ascii",
  9146. "keywords": [
  9147. "ascii",
  9148. "clean",
  9149. "php"
  9150. ],
  9151. "support": {
  9152. "issues": "https://github.com/voku/portable-ascii/issues",
  9153. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9154. },
  9155. "funding": [
  9156. {
  9157. "url": "https://www.paypal.me/moelleken",
  9158. "type": "custom"
  9159. },
  9160. {
  9161. "url": "https://github.com/voku",
  9162. "type": "github"
  9163. },
  9164. {
  9165. "url": "https://opencollective.com/portable-ascii",
  9166. "type": "open_collective"
  9167. },
  9168. {
  9169. "url": "https://www.patreon.com/voku",
  9170. "type": "patreon"
  9171. },
  9172. {
  9173. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9174. "type": "tidelift"
  9175. }
  9176. ],
  9177. "time": "2024-11-21T01:49:47+00:00"
  9178. },
  9179. {
  9180. "name": "webmozart/assert",
  9181. "version": "1.11.0",
  9182. "source": {
  9183. "type": "git",
  9184. "url": "https://github.com/webmozarts/assert.git",
  9185. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9186. },
  9187. "dist": {
  9188. "type": "zip",
  9189. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9190. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9191. "shasum": ""
  9192. },
  9193. "require": {
  9194. "ext-ctype": "*",
  9195. "php": "^7.2 || ^8.0"
  9196. },
  9197. "conflict": {
  9198. "phpstan/phpstan": "<0.12.20",
  9199. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9200. },
  9201. "require-dev": {
  9202. "phpunit/phpunit": "^8.5.13"
  9203. },
  9204. "type": "library",
  9205. "extra": {
  9206. "branch-alias": {
  9207. "dev-master": "1.10-dev"
  9208. }
  9209. },
  9210. "autoload": {
  9211. "psr-4": {
  9212. "Webmozart\\Assert\\": "src/"
  9213. }
  9214. },
  9215. "notification-url": "https://packagist.org/downloads/",
  9216. "license": [
  9217. "MIT"
  9218. ],
  9219. "authors": [
  9220. {
  9221. "name": "Bernhard Schussek",
  9222. "email": "bschussek@gmail.com"
  9223. }
  9224. ],
  9225. "description": "Assertions to validate method input/output with nice error messages.",
  9226. "keywords": [
  9227. "assert",
  9228. "check",
  9229. "validate"
  9230. ],
  9231. "support": {
  9232. "issues": "https://github.com/webmozarts/assert/issues",
  9233. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9234. },
  9235. "time": "2022-06-03T18:03:27+00:00"
  9236. }
  9237. ],
  9238. "packages-dev": [
  9239. {
  9240. "name": "brianium/paratest",
  9241. "version": "v7.6.0",
  9242. "source": {
  9243. "type": "git",
  9244. "url": "https://github.com/paratestphp/paratest.git",
  9245. "reference": "68ff89a8de47d086588e391a516d2a5b5fde6254"
  9246. },
  9247. "dist": {
  9248. "type": "zip",
  9249. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/68ff89a8de47d086588e391a516d2a5b5fde6254",
  9250. "reference": "68ff89a8de47d086588e391a516d2a5b5fde6254",
  9251. "shasum": ""
  9252. },
  9253. "require": {
  9254. "ext-dom": "*",
  9255. "ext-pcre": "*",
  9256. "ext-reflection": "*",
  9257. "ext-simplexml": "*",
  9258. "fidry/cpu-core-counter": "^1.2.0",
  9259. "jean85/pretty-package-versions": "^2.0.6",
  9260. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9261. "phpunit/php-code-coverage": "^11.0.7",
  9262. "phpunit/php-file-iterator": "^5.1.0",
  9263. "phpunit/php-timer": "^7.0.1",
  9264. "phpunit/phpunit": "^11.4.1",
  9265. "sebastian/environment": "^7.2.0",
  9266. "symfony/console": "^6.4.11 || ^7.1.5",
  9267. "symfony/process": "^6.4.8 || ^7.1.5"
  9268. },
  9269. "require-dev": {
  9270. "doctrine/coding-standard": "^12.0.0",
  9271. "ext-pcov": "*",
  9272. "ext-posix": "*",
  9273. "phpstan/phpstan": "^1.12.6",
  9274. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  9275. "phpstan/phpstan-phpunit": "^1.4.0",
  9276. "phpstan/phpstan-strict-rules": "^1.6.1",
  9277. "squizlabs/php_codesniffer": "^3.10.3",
  9278. "symfony/filesystem": "^6.4.9 || ^7.1.5"
  9279. },
  9280. "bin": [
  9281. "bin/paratest",
  9282. "bin/paratest_for_phpstorm"
  9283. ],
  9284. "type": "library",
  9285. "autoload": {
  9286. "psr-4": {
  9287. "ParaTest\\": [
  9288. "src/"
  9289. ]
  9290. }
  9291. },
  9292. "notification-url": "https://packagist.org/downloads/",
  9293. "license": [
  9294. "MIT"
  9295. ],
  9296. "authors": [
  9297. {
  9298. "name": "Brian Scaturro",
  9299. "email": "scaturrob@gmail.com",
  9300. "role": "Developer"
  9301. },
  9302. {
  9303. "name": "Filippo Tessarotto",
  9304. "email": "zoeslam@gmail.com",
  9305. "role": "Developer"
  9306. }
  9307. ],
  9308. "description": "Parallel testing for PHP",
  9309. "homepage": "https://github.com/paratestphp/paratest",
  9310. "keywords": [
  9311. "concurrent",
  9312. "parallel",
  9313. "phpunit",
  9314. "testing"
  9315. ],
  9316. "support": {
  9317. "issues": "https://github.com/paratestphp/paratest/issues",
  9318. "source": "https://github.com/paratestphp/paratest/tree/v7.6.0"
  9319. },
  9320. "funding": [
  9321. {
  9322. "url": "https://github.com/sponsors/Slamdunk",
  9323. "type": "github"
  9324. },
  9325. {
  9326. "url": "https://paypal.me/filippotessarotto",
  9327. "type": "paypal"
  9328. }
  9329. ],
  9330. "time": "2024-10-15T12:38:31+00:00"
  9331. },
  9332. {
  9333. "name": "fakerphp/faker",
  9334. "version": "v1.24.1",
  9335. "source": {
  9336. "type": "git",
  9337. "url": "https://github.com/FakerPHP/Faker.git",
  9338. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9339. },
  9340. "dist": {
  9341. "type": "zip",
  9342. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9343. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9344. "shasum": ""
  9345. },
  9346. "require": {
  9347. "php": "^7.4 || ^8.0",
  9348. "psr/container": "^1.0 || ^2.0",
  9349. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9350. },
  9351. "conflict": {
  9352. "fzaninotto/faker": "*"
  9353. },
  9354. "require-dev": {
  9355. "bamarni/composer-bin-plugin": "^1.4.1",
  9356. "doctrine/persistence": "^1.3 || ^2.0",
  9357. "ext-intl": "*",
  9358. "phpunit/phpunit": "^9.5.26",
  9359. "symfony/phpunit-bridge": "^5.4.16"
  9360. },
  9361. "suggest": {
  9362. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9363. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9364. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9365. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9366. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9367. },
  9368. "type": "library",
  9369. "autoload": {
  9370. "psr-4": {
  9371. "Faker\\": "src/Faker/"
  9372. }
  9373. },
  9374. "notification-url": "https://packagist.org/downloads/",
  9375. "license": [
  9376. "MIT"
  9377. ],
  9378. "authors": [
  9379. {
  9380. "name": "François Zaninotto"
  9381. }
  9382. ],
  9383. "description": "Faker is a PHP library that generates fake data for you.",
  9384. "keywords": [
  9385. "data",
  9386. "faker",
  9387. "fixtures"
  9388. ],
  9389. "support": {
  9390. "issues": "https://github.com/FakerPHP/Faker/issues",
  9391. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9392. },
  9393. "time": "2024-11-21T13:46:39+00:00"
  9394. },
  9395. {
  9396. "name": "fidry/cpu-core-counter",
  9397. "version": "1.2.0",
  9398. "source": {
  9399. "type": "git",
  9400. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9401. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9402. },
  9403. "dist": {
  9404. "type": "zip",
  9405. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9406. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9407. "shasum": ""
  9408. },
  9409. "require": {
  9410. "php": "^7.2 || ^8.0"
  9411. },
  9412. "require-dev": {
  9413. "fidry/makefile": "^0.2.0",
  9414. "fidry/php-cs-fixer-config": "^1.1.2",
  9415. "phpstan/extension-installer": "^1.2.0",
  9416. "phpstan/phpstan": "^1.9.2",
  9417. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9418. "phpstan/phpstan-phpunit": "^1.2.2",
  9419. "phpstan/phpstan-strict-rules": "^1.4.4",
  9420. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9421. "webmozarts/strict-phpunit": "^7.5"
  9422. },
  9423. "type": "library",
  9424. "autoload": {
  9425. "psr-4": {
  9426. "Fidry\\CpuCoreCounter\\": "src/"
  9427. }
  9428. },
  9429. "notification-url": "https://packagist.org/downloads/",
  9430. "license": [
  9431. "MIT"
  9432. ],
  9433. "authors": [
  9434. {
  9435. "name": "Théo FIDRY",
  9436. "email": "theo.fidry@gmail.com"
  9437. }
  9438. ],
  9439. "description": "Tiny utility to get the number of CPU cores.",
  9440. "keywords": [
  9441. "CPU",
  9442. "core"
  9443. ],
  9444. "support": {
  9445. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9446. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9447. },
  9448. "funding": [
  9449. {
  9450. "url": "https://github.com/theofidry",
  9451. "type": "github"
  9452. }
  9453. ],
  9454. "time": "2024-08-06T10:04:20+00:00"
  9455. },
  9456. {
  9457. "name": "filp/whoops",
  9458. "version": "2.16.0",
  9459. "source": {
  9460. "type": "git",
  9461. "url": "https://github.com/filp/whoops.git",
  9462. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  9463. },
  9464. "dist": {
  9465. "type": "zip",
  9466. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  9467. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  9468. "shasum": ""
  9469. },
  9470. "require": {
  9471. "php": "^7.1 || ^8.0",
  9472. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9473. },
  9474. "require-dev": {
  9475. "mockery/mockery": "^1.0",
  9476. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9477. "symfony/var-dumper": "^4.0 || ^5.0"
  9478. },
  9479. "suggest": {
  9480. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9481. "whoops/soap": "Formats errors as SOAP responses"
  9482. },
  9483. "type": "library",
  9484. "extra": {
  9485. "branch-alias": {
  9486. "dev-master": "2.7-dev"
  9487. }
  9488. },
  9489. "autoload": {
  9490. "psr-4": {
  9491. "Whoops\\": "src/Whoops/"
  9492. }
  9493. },
  9494. "notification-url": "https://packagist.org/downloads/",
  9495. "license": [
  9496. "MIT"
  9497. ],
  9498. "authors": [
  9499. {
  9500. "name": "Filipe Dobreira",
  9501. "homepage": "https://github.com/filp",
  9502. "role": "Developer"
  9503. }
  9504. ],
  9505. "description": "php error handling for cool kids",
  9506. "homepage": "https://filp.github.io/whoops/",
  9507. "keywords": [
  9508. "error",
  9509. "exception",
  9510. "handling",
  9511. "library",
  9512. "throwable",
  9513. "whoops"
  9514. ],
  9515. "support": {
  9516. "issues": "https://github.com/filp/whoops/issues",
  9517. "source": "https://github.com/filp/whoops/tree/2.16.0"
  9518. },
  9519. "funding": [
  9520. {
  9521. "url": "https://github.com/denis-sokolov",
  9522. "type": "github"
  9523. }
  9524. ],
  9525. "time": "2024-09-25T12:00:00+00:00"
  9526. },
  9527. {
  9528. "name": "hamcrest/hamcrest-php",
  9529. "version": "v2.0.1",
  9530. "source": {
  9531. "type": "git",
  9532. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9533. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9534. },
  9535. "dist": {
  9536. "type": "zip",
  9537. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9538. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9539. "shasum": ""
  9540. },
  9541. "require": {
  9542. "php": "^5.3|^7.0|^8.0"
  9543. },
  9544. "replace": {
  9545. "cordoval/hamcrest-php": "*",
  9546. "davedevelopment/hamcrest-php": "*",
  9547. "kodova/hamcrest-php": "*"
  9548. },
  9549. "require-dev": {
  9550. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9551. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9552. },
  9553. "type": "library",
  9554. "extra": {
  9555. "branch-alias": {
  9556. "dev-master": "2.1-dev"
  9557. }
  9558. },
  9559. "autoload": {
  9560. "classmap": [
  9561. "hamcrest"
  9562. ]
  9563. },
  9564. "notification-url": "https://packagist.org/downloads/",
  9565. "license": [
  9566. "BSD-3-Clause"
  9567. ],
  9568. "description": "This is the PHP port of Hamcrest Matchers",
  9569. "keywords": [
  9570. "test"
  9571. ],
  9572. "support": {
  9573. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9574. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9575. },
  9576. "time": "2020-07-09T08:09:16+00:00"
  9577. },
  9578. {
  9579. "name": "jean85/pretty-package-versions",
  9580. "version": "2.1.0",
  9581. "source": {
  9582. "type": "git",
  9583. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9584. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10"
  9585. },
  9586. "dist": {
  9587. "type": "zip",
  9588. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9589. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9590. "shasum": ""
  9591. },
  9592. "require": {
  9593. "composer-runtime-api": "^2.1.0",
  9594. "php": "^7.4|^8.0"
  9595. },
  9596. "require-dev": {
  9597. "friendsofphp/php-cs-fixer": "^3.2",
  9598. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9599. "phpstan/phpstan": "^1.4",
  9600. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9601. "vimeo/psalm": "^4.3 || ^5.0"
  9602. },
  9603. "type": "library",
  9604. "extra": {
  9605. "branch-alias": {
  9606. "dev-master": "1.x-dev"
  9607. }
  9608. },
  9609. "autoload": {
  9610. "psr-4": {
  9611. "Jean85\\": "src/"
  9612. }
  9613. },
  9614. "notification-url": "https://packagist.org/downloads/",
  9615. "license": [
  9616. "MIT"
  9617. ],
  9618. "authors": [
  9619. {
  9620. "name": "Alessandro Lai",
  9621. "email": "alessandro.lai85@gmail.com"
  9622. }
  9623. ],
  9624. "description": "A library to get pretty versions strings of installed dependencies",
  9625. "keywords": [
  9626. "composer",
  9627. "package",
  9628. "release",
  9629. "versions"
  9630. ],
  9631. "support": {
  9632. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9633. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0"
  9634. },
  9635. "time": "2024-11-18T16:19:46+00:00"
  9636. },
  9637. {
  9638. "name": "laravel/pint",
  9639. "version": "v1.18.3",
  9640. "source": {
  9641. "type": "git",
  9642. "url": "https://github.com/laravel/pint.git",
  9643. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026"
  9644. },
  9645. "dist": {
  9646. "type": "zip",
  9647. "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026",
  9648. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026",
  9649. "shasum": ""
  9650. },
  9651. "require": {
  9652. "ext-json": "*",
  9653. "ext-mbstring": "*",
  9654. "ext-tokenizer": "*",
  9655. "ext-xml": "*",
  9656. "php": "^8.1.0"
  9657. },
  9658. "require-dev": {
  9659. "friendsofphp/php-cs-fixer": "^3.65.0",
  9660. "illuminate/view": "^10.48.24",
  9661. "larastan/larastan": "^2.9.11",
  9662. "laravel-zero/framework": "^10.4.0",
  9663. "mockery/mockery": "^1.6.12",
  9664. "nunomaduro/termwind": "^1.17.0",
  9665. "pestphp/pest": "^2.36.0"
  9666. },
  9667. "bin": [
  9668. "builds/pint"
  9669. ],
  9670. "type": "project",
  9671. "autoload": {
  9672. "psr-4": {
  9673. "App\\": "app/",
  9674. "Database\\Seeders\\": "database/seeders/",
  9675. "Database\\Factories\\": "database/factories/"
  9676. }
  9677. },
  9678. "notification-url": "https://packagist.org/downloads/",
  9679. "license": [
  9680. "MIT"
  9681. ],
  9682. "authors": [
  9683. {
  9684. "name": "Nuno Maduro",
  9685. "email": "enunomaduro@gmail.com"
  9686. }
  9687. ],
  9688. "description": "An opinionated code formatter for PHP.",
  9689. "homepage": "https://laravel.com",
  9690. "keywords": [
  9691. "format",
  9692. "formatter",
  9693. "lint",
  9694. "linter",
  9695. "php"
  9696. ],
  9697. "support": {
  9698. "issues": "https://github.com/laravel/pint/issues",
  9699. "source": "https://github.com/laravel/pint"
  9700. },
  9701. "time": "2024-11-26T15:34:00+00:00"
  9702. },
  9703. {
  9704. "name": "laravel/sail",
  9705. "version": "v1.39.1",
  9706. "source": {
  9707. "type": "git",
  9708. "url": "https://github.com/laravel/sail.git",
  9709. "reference": "1a3c7291bc88de983b66688919a4d298d68ddec7"
  9710. },
  9711. "dist": {
  9712. "type": "zip",
  9713. "url": "https://api.github.com/repos/laravel/sail/zipball/1a3c7291bc88de983b66688919a4d298d68ddec7",
  9714. "reference": "1a3c7291bc88de983b66688919a4d298d68ddec7",
  9715. "shasum": ""
  9716. },
  9717. "require": {
  9718. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9719. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9720. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9721. "php": "^8.0",
  9722. "symfony/console": "^6.0|^7.0",
  9723. "symfony/yaml": "^6.0|^7.0"
  9724. },
  9725. "require-dev": {
  9726. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9727. "phpstan/phpstan": "^1.10"
  9728. },
  9729. "bin": [
  9730. "bin/sail"
  9731. ],
  9732. "type": "library",
  9733. "extra": {
  9734. "laravel": {
  9735. "providers": [
  9736. "Laravel\\Sail\\SailServiceProvider"
  9737. ]
  9738. }
  9739. },
  9740. "autoload": {
  9741. "psr-4": {
  9742. "Laravel\\Sail\\": "src/"
  9743. }
  9744. },
  9745. "notification-url": "https://packagist.org/downloads/",
  9746. "license": [
  9747. "MIT"
  9748. ],
  9749. "authors": [
  9750. {
  9751. "name": "Taylor Otwell",
  9752. "email": "taylor@laravel.com"
  9753. }
  9754. ],
  9755. "description": "Docker files for running a basic Laravel application.",
  9756. "keywords": [
  9757. "docker",
  9758. "laravel"
  9759. ],
  9760. "support": {
  9761. "issues": "https://github.com/laravel/sail/issues",
  9762. "source": "https://github.com/laravel/sail"
  9763. },
  9764. "time": "2024-11-27T15:42:28+00:00"
  9765. },
  9766. {
  9767. "name": "mockery/mockery",
  9768. "version": "1.6.12",
  9769. "source": {
  9770. "type": "git",
  9771. "url": "https://github.com/mockery/mockery.git",
  9772. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9773. },
  9774. "dist": {
  9775. "type": "zip",
  9776. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9777. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9778. "shasum": ""
  9779. },
  9780. "require": {
  9781. "hamcrest/hamcrest-php": "^2.0.1",
  9782. "lib-pcre": ">=7.0",
  9783. "php": ">=7.3"
  9784. },
  9785. "conflict": {
  9786. "phpunit/phpunit": "<8.0"
  9787. },
  9788. "require-dev": {
  9789. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9790. "symplify/easy-coding-standard": "^12.1.14"
  9791. },
  9792. "type": "library",
  9793. "autoload": {
  9794. "files": [
  9795. "library/helpers.php",
  9796. "library/Mockery.php"
  9797. ],
  9798. "psr-4": {
  9799. "Mockery\\": "library/Mockery"
  9800. }
  9801. },
  9802. "notification-url": "https://packagist.org/downloads/",
  9803. "license": [
  9804. "BSD-3-Clause"
  9805. ],
  9806. "authors": [
  9807. {
  9808. "name": "Pádraic Brady",
  9809. "email": "padraic.brady@gmail.com",
  9810. "homepage": "https://github.com/padraic",
  9811. "role": "Author"
  9812. },
  9813. {
  9814. "name": "Dave Marshall",
  9815. "email": "dave.marshall@atstsolutions.co.uk",
  9816. "homepage": "https://davedevelopment.co.uk",
  9817. "role": "Developer"
  9818. },
  9819. {
  9820. "name": "Nathanael Esayeas",
  9821. "email": "nathanael.esayeas@protonmail.com",
  9822. "homepage": "https://github.com/ghostwriter",
  9823. "role": "Lead Developer"
  9824. }
  9825. ],
  9826. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9827. "homepage": "https://github.com/mockery/mockery",
  9828. "keywords": [
  9829. "BDD",
  9830. "TDD",
  9831. "library",
  9832. "mock",
  9833. "mock objects",
  9834. "mockery",
  9835. "stub",
  9836. "test",
  9837. "test double",
  9838. "testing"
  9839. ],
  9840. "support": {
  9841. "docs": "https://docs.mockery.io/",
  9842. "issues": "https://github.com/mockery/mockery/issues",
  9843. "rss": "https://github.com/mockery/mockery/releases.atom",
  9844. "security": "https://github.com/mockery/mockery/security/advisories",
  9845. "source": "https://github.com/mockery/mockery"
  9846. },
  9847. "time": "2024-05-16T03:13:13+00:00"
  9848. },
  9849. {
  9850. "name": "myclabs/deep-copy",
  9851. "version": "1.12.1",
  9852. "source": {
  9853. "type": "git",
  9854. "url": "https://github.com/myclabs/DeepCopy.git",
  9855. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9856. },
  9857. "dist": {
  9858. "type": "zip",
  9859. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9860. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9861. "shasum": ""
  9862. },
  9863. "require": {
  9864. "php": "^7.1 || ^8.0"
  9865. },
  9866. "conflict": {
  9867. "doctrine/collections": "<1.6.8",
  9868. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9869. },
  9870. "require-dev": {
  9871. "doctrine/collections": "^1.6.8",
  9872. "doctrine/common": "^2.13.3 || ^3.2.2",
  9873. "phpspec/prophecy": "^1.10",
  9874. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9875. },
  9876. "type": "library",
  9877. "autoload": {
  9878. "files": [
  9879. "src/DeepCopy/deep_copy.php"
  9880. ],
  9881. "psr-4": {
  9882. "DeepCopy\\": "src/DeepCopy/"
  9883. }
  9884. },
  9885. "notification-url": "https://packagist.org/downloads/",
  9886. "license": [
  9887. "MIT"
  9888. ],
  9889. "description": "Create deep copies (clones) of your objects",
  9890. "keywords": [
  9891. "clone",
  9892. "copy",
  9893. "duplicate",
  9894. "object",
  9895. "object graph"
  9896. ],
  9897. "support": {
  9898. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9899. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9900. },
  9901. "funding": [
  9902. {
  9903. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9904. "type": "tidelift"
  9905. }
  9906. ],
  9907. "time": "2024-11-08T17:47:46+00:00"
  9908. },
  9909. {
  9910. "name": "nunomaduro/collision",
  9911. "version": "v8.5.0",
  9912. "source": {
  9913. "type": "git",
  9914. "url": "https://github.com/nunomaduro/collision.git",
  9915. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  9916. },
  9917. "dist": {
  9918. "type": "zip",
  9919. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  9920. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  9921. "shasum": ""
  9922. },
  9923. "require": {
  9924. "filp/whoops": "^2.16.0",
  9925. "nunomaduro/termwind": "^2.1.0",
  9926. "php": "^8.2.0",
  9927. "symfony/console": "^7.1.5"
  9928. },
  9929. "conflict": {
  9930. "laravel/framework": "<11.0.0 || >=12.0.0",
  9931. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  9932. },
  9933. "require-dev": {
  9934. "larastan/larastan": "^2.9.8",
  9935. "laravel/framework": "^11.28.0",
  9936. "laravel/pint": "^1.18.1",
  9937. "laravel/sail": "^1.36.0",
  9938. "laravel/sanctum": "^4.0.3",
  9939. "laravel/tinker": "^2.10.0",
  9940. "orchestra/testbench-core": "^9.5.3",
  9941. "pestphp/pest": "^2.36.0 || ^3.4.0",
  9942. "sebastian/environment": "^6.1.0 || ^7.2.0"
  9943. },
  9944. "type": "library",
  9945. "extra": {
  9946. "laravel": {
  9947. "providers": [
  9948. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9949. ]
  9950. },
  9951. "branch-alias": {
  9952. "dev-8.x": "8.x-dev"
  9953. }
  9954. },
  9955. "autoload": {
  9956. "files": [
  9957. "./src/Adapters/Phpunit/Autoload.php"
  9958. ],
  9959. "psr-4": {
  9960. "NunoMaduro\\Collision\\": "src/"
  9961. }
  9962. },
  9963. "notification-url": "https://packagist.org/downloads/",
  9964. "license": [
  9965. "MIT"
  9966. ],
  9967. "authors": [
  9968. {
  9969. "name": "Nuno Maduro",
  9970. "email": "enunomaduro@gmail.com"
  9971. }
  9972. ],
  9973. "description": "Cli error handling for console/command-line PHP applications.",
  9974. "keywords": [
  9975. "artisan",
  9976. "cli",
  9977. "command-line",
  9978. "console",
  9979. "error",
  9980. "handling",
  9981. "laravel",
  9982. "laravel-zero",
  9983. "php",
  9984. "symfony"
  9985. ],
  9986. "support": {
  9987. "issues": "https://github.com/nunomaduro/collision/issues",
  9988. "source": "https://github.com/nunomaduro/collision"
  9989. },
  9990. "funding": [
  9991. {
  9992. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9993. "type": "custom"
  9994. },
  9995. {
  9996. "url": "https://github.com/nunomaduro",
  9997. "type": "github"
  9998. },
  9999. {
  10000. "url": "https://www.patreon.com/nunomaduro",
  10001. "type": "patreon"
  10002. }
  10003. ],
  10004. "time": "2024-10-15T16:06:32+00:00"
  10005. },
  10006. {
  10007. "name": "pestphp/pest",
  10008. "version": "v3.5.1",
  10009. "source": {
  10010. "type": "git",
  10011. "url": "https://github.com/pestphp/pest.git",
  10012. "reference": "179d46ce97d52bcb3f791449ae94025c3f32e3e3"
  10013. },
  10014. "dist": {
  10015. "type": "zip",
  10016. "url": "https://api.github.com/repos/pestphp/pest/zipball/179d46ce97d52bcb3f791449ae94025c3f32e3e3",
  10017. "reference": "179d46ce97d52bcb3f791449ae94025c3f32e3e3",
  10018. "shasum": ""
  10019. },
  10020. "require": {
  10021. "brianium/paratest": "^7.6.0",
  10022. "nunomaduro/collision": "^8.5.0",
  10023. "nunomaduro/termwind": "^2.2.0",
  10024. "pestphp/pest-plugin": "^3.0.0",
  10025. "pestphp/pest-plugin-arch": "^3.0.0",
  10026. "pestphp/pest-plugin-mutate": "^3.0.5",
  10027. "php": "^8.2.0",
  10028. "phpunit/phpunit": "^11.4.3"
  10029. },
  10030. "conflict": {
  10031. "filp/whoops": "<2.16.0",
  10032. "phpunit/phpunit": ">11.4.3",
  10033. "sebastian/exporter": "<6.0.0",
  10034. "webmozart/assert": "<1.11.0"
  10035. },
  10036. "require-dev": {
  10037. "pestphp/pest-dev-tools": "^3.3.0",
  10038. "pestphp/pest-plugin-type-coverage": "^3.1.0",
  10039. "symfony/process": "^7.1.6"
  10040. },
  10041. "bin": [
  10042. "bin/pest"
  10043. ],
  10044. "type": "library",
  10045. "extra": {
  10046. "pest": {
  10047. "plugins": [
  10048. "Pest\\Mutate\\Plugins\\Mutate",
  10049. "Pest\\Plugins\\Configuration",
  10050. "Pest\\Plugins\\Bail",
  10051. "Pest\\Plugins\\Cache",
  10052. "Pest\\Plugins\\Coverage",
  10053. "Pest\\Plugins\\Init",
  10054. "Pest\\Plugins\\Environment",
  10055. "Pest\\Plugins\\Help",
  10056. "Pest\\Plugins\\Memory",
  10057. "Pest\\Plugins\\Only",
  10058. "Pest\\Plugins\\Printer",
  10059. "Pest\\Plugins\\ProcessIsolation",
  10060. "Pest\\Plugins\\Profile",
  10061. "Pest\\Plugins\\Retry",
  10062. "Pest\\Plugins\\Snapshot",
  10063. "Pest\\Plugins\\Verbose",
  10064. "Pest\\Plugins\\Version",
  10065. "Pest\\Plugins\\Parallel"
  10066. ]
  10067. },
  10068. "phpstan": {
  10069. "includes": [
  10070. "extension.neon"
  10071. ]
  10072. }
  10073. },
  10074. "autoload": {
  10075. "files": [
  10076. "src/Functions.php",
  10077. "src/Pest.php"
  10078. ],
  10079. "psr-4": {
  10080. "Pest\\": "src/"
  10081. }
  10082. },
  10083. "notification-url": "https://packagist.org/downloads/",
  10084. "license": [
  10085. "MIT"
  10086. ],
  10087. "authors": [
  10088. {
  10089. "name": "Nuno Maduro",
  10090. "email": "enunomaduro@gmail.com"
  10091. }
  10092. ],
  10093. "description": "The elegant PHP Testing Framework.",
  10094. "keywords": [
  10095. "framework",
  10096. "pest",
  10097. "php",
  10098. "test",
  10099. "testing",
  10100. "unit"
  10101. ],
  10102. "support": {
  10103. "issues": "https://github.com/pestphp/pest/issues",
  10104. "source": "https://github.com/pestphp/pest/tree/v3.5.1"
  10105. },
  10106. "funding": [
  10107. {
  10108. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10109. "type": "custom"
  10110. },
  10111. {
  10112. "url": "https://github.com/nunomaduro",
  10113. "type": "github"
  10114. }
  10115. ],
  10116. "time": "2024-10-31T16:12:45+00:00"
  10117. },
  10118. {
  10119. "name": "pestphp/pest-plugin",
  10120. "version": "v3.0.0",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/pestphp/pest-plugin.git",
  10124. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10129. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10130. "shasum": ""
  10131. },
  10132. "require": {
  10133. "composer-plugin-api": "^2.0.0",
  10134. "composer-runtime-api": "^2.2.2",
  10135. "php": "^8.2"
  10136. },
  10137. "conflict": {
  10138. "pestphp/pest": "<3.0.0"
  10139. },
  10140. "require-dev": {
  10141. "composer/composer": "^2.7.9",
  10142. "pestphp/pest": "^3.0.0",
  10143. "pestphp/pest-dev-tools": "^3.0.0"
  10144. },
  10145. "type": "composer-plugin",
  10146. "extra": {
  10147. "class": "Pest\\Plugin\\Manager"
  10148. },
  10149. "autoload": {
  10150. "psr-4": {
  10151. "Pest\\Plugin\\": "src/"
  10152. }
  10153. },
  10154. "notification-url": "https://packagist.org/downloads/",
  10155. "license": [
  10156. "MIT"
  10157. ],
  10158. "description": "The Pest plugin manager",
  10159. "keywords": [
  10160. "framework",
  10161. "manager",
  10162. "pest",
  10163. "php",
  10164. "plugin",
  10165. "test",
  10166. "testing",
  10167. "unit"
  10168. ],
  10169. "support": {
  10170. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10171. },
  10172. "funding": [
  10173. {
  10174. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10175. "type": "custom"
  10176. },
  10177. {
  10178. "url": "https://github.com/nunomaduro",
  10179. "type": "github"
  10180. },
  10181. {
  10182. "url": "https://www.patreon.com/nunomaduro",
  10183. "type": "patreon"
  10184. }
  10185. ],
  10186. "time": "2024-09-08T23:21:41+00:00"
  10187. },
  10188. {
  10189. "name": "pestphp/pest-plugin-arch",
  10190. "version": "v3.0.0",
  10191. "source": {
  10192. "type": "git",
  10193. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10194. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  10195. },
  10196. "dist": {
  10197. "type": "zip",
  10198. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10199. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10200. "shasum": ""
  10201. },
  10202. "require": {
  10203. "pestphp/pest-plugin": "^3.0.0",
  10204. "php": "^8.2",
  10205. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10206. },
  10207. "require-dev": {
  10208. "pestphp/pest": "^3.0.0",
  10209. "pestphp/pest-dev-tools": "^3.0.0"
  10210. },
  10211. "type": "library",
  10212. "extra": {
  10213. "pest": {
  10214. "plugins": [
  10215. "Pest\\Arch\\Plugin"
  10216. ]
  10217. }
  10218. },
  10219. "autoload": {
  10220. "files": [
  10221. "src/Autoload.php"
  10222. ],
  10223. "psr-4": {
  10224. "Pest\\Arch\\": "src/"
  10225. }
  10226. },
  10227. "notification-url": "https://packagist.org/downloads/",
  10228. "license": [
  10229. "MIT"
  10230. ],
  10231. "description": "The Arch plugin for Pest PHP.",
  10232. "keywords": [
  10233. "arch",
  10234. "architecture",
  10235. "framework",
  10236. "pest",
  10237. "php",
  10238. "plugin",
  10239. "test",
  10240. "testing",
  10241. "unit"
  10242. ],
  10243. "support": {
  10244. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  10245. },
  10246. "funding": [
  10247. {
  10248. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10249. "type": "custom"
  10250. },
  10251. {
  10252. "url": "https://github.com/nunomaduro",
  10253. "type": "github"
  10254. }
  10255. ],
  10256. "time": "2024-09-08T23:23:55+00:00"
  10257. },
  10258. {
  10259. "name": "pestphp/pest-plugin-livewire",
  10260. "version": "v3.0.0",
  10261. "source": {
  10262. "type": "git",
  10263. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10264. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10265. },
  10266. "dist": {
  10267. "type": "zip",
  10268. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10269. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10270. "shasum": ""
  10271. },
  10272. "require": {
  10273. "livewire/livewire": "^3.5.6",
  10274. "pestphp/pest": "^3.0.0",
  10275. "php": "^8.1"
  10276. },
  10277. "require-dev": {
  10278. "orchestra/testbench": "^9.4.0",
  10279. "pestphp/pest-dev-tools": "^3.0.0"
  10280. },
  10281. "type": "library",
  10282. "autoload": {
  10283. "files": [
  10284. "src/Autoload.php"
  10285. ],
  10286. "psr-4": {
  10287. "Pest\\Livewire\\": "src/"
  10288. }
  10289. },
  10290. "notification-url": "https://packagist.org/downloads/",
  10291. "license": [
  10292. "MIT"
  10293. ],
  10294. "description": "The Pest Livewire Plugin",
  10295. "keywords": [
  10296. "framework",
  10297. "livewire",
  10298. "pest",
  10299. "php",
  10300. "plugin",
  10301. "test",
  10302. "testing",
  10303. "unit"
  10304. ],
  10305. "support": {
  10306. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10307. },
  10308. "funding": [
  10309. {
  10310. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10311. "type": "custom"
  10312. },
  10313. {
  10314. "url": "https://github.com/nunomaduro",
  10315. "type": "github"
  10316. },
  10317. {
  10318. "url": "https://www.patreon.com/nunomaduro",
  10319. "type": "patreon"
  10320. }
  10321. ],
  10322. "time": "2024-09-09T00:05:59+00:00"
  10323. },
  10324. {
  10325. "name": "pestphp/pest-plugin-mutate",
  10326. "version": "v3.0.5",
  10327. "source": {
  10328. "type": "git",
  10329. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10330. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10331. },
  10332. "dist": {
  10333. "type": "zip",
  10334. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10335. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10336. "shasum": ""
  10337. },
  10338. "require": {
  10339. "nikic/php-parser": "^5.2.0",
  10340. "pestphp/pest-plugin": "^3.0.0",
  10341. "php": "^8.2",
  10342. "psr/simple-cache": "^3.0.0"
  10343. },
  10344. "require-dev": {
  10345. "pestphp/pest": "^3.0.8",
  10346. "pestphp/pest-dev-tools": "^3.0.0",
  10347. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10348. },
  10349. "type": "library",
  10350. "autoload": {
  10351. "psr-4": {
  10352. "Pest\\Mutate\\": "src/"
  10353. }
  10354. },
  10355. "notification-url": "https://packagist.org/downloads/",
  10356. "license": [
  10357. "MIT"
  10358. ],
  10359. "authors": [
  10360. {
  10361. "name": "Sandro Gehri",
  10362. "email": "sandrogehri@gmail.com"
  10363. }
  10364. ],
  10365. "description": "Mutates your code to find untested cases",
  10366. "keywords": [
  10367. "framework",
  10368. "mutate",
  10369. "mutation",
  10370. "pest",
  10371. "php",
  10372. "plugin",
  10373. "test",
  10374. "testing",
  10375. "unit"
  10376. ],
  10377. "support": {
  10378. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10379. },
  10380. "funding": [
  10381. {
  10382. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10383. "type": "custom"
  10384. },
  10385. {
  10386. "url": "https://github.com/gehrisandro",
  10387. "type": "github"
  10388. },
  10389. {
  10390. "url": "https://github.com/nunomaduro",
  10391. "type": "github"
  10392. }
  10393. ],
  10394. "time": "2024-09-22T07:54:40+00:00"
  10395. },
  10396. {
  10397. "name": "phar-io/manifest",
  10398. "version": "2.0.4",
  10399. "source": {
  10400. "type": "git",
  10401. "url": "https://github.com/phar-io/manifest.git",
  10402. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10403. },
  10404. "dist": {
  10405. "type": "zip",
  10406. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10407. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10408. "shasum": ""
  10409. },
  10410. "require": {
  10411. "ext-dom": "*",
  10412. "ext-libxml": "*",
  10413. "ext-phar": "*",
  10414. "ext-xmlwriter": "*",
  10415. "phar-io/version": "^3.0.1",
  10416. "php": "^7.2 || ^8.0"
  10417. },
  10418. "type": "library",
  10419. "extra": {
  10420. "branch-alias": {
  10421. "dev-master": "2.0.x-dev"
  10422. }
  10423. },
  10424. "autoload": {
  10425. "classmap": [
  10426. "src/"
  10427. ]
  10428. },
  10429. "notification-url": "https://packagist.org/downloads/",
  10430. "license": [
  10431. "BSD-3-Clause"
  10432. ],
  10433. "authors": [
  10434. {
  10435. "name": "Arne Blankerts",
  10436. "email": "arne@blankerts.de",
  10437. "role": "Developer"
  10438. },
  10439. {
  10440. "name": "Sebastian Heuer",
  10441. "email": "sebastian@phpeople.de",
  10442. "role": "Developer"
  10443. },
  10444. {
  10445. "name": "Sebastian Bergmann",
  10446. "email": "sebastian@phpunit.de",
  10447. "role": "Developer"
  10448. }
  10449. ],
  10450. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10451. "support": {
  10452. "issues": "https://github.com/phar-io/manifest/issues",
  10453. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10454. },
  10455. "funding": [
  10456. {
  10457. "url": "https://github.com/theseer",
  10458. "type": "github"
  10459. }
  10460. ],
  10461. "time": "2024-03-03T12:33:53+00:00"
  10462. },
  10463. {
  10464. "name": "phar-io/version",
  10465. "version": "3.2.1",
  10466. "source": {
  10467. "type": "git",
  10468. "url": "https://github.com/phar-io/version.git",
  10469. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10470. },
  10471. "dist": {
  10472. "type": "zip",
  10473. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10474. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10475. "shasum": ""
  10476. },
  10477. "require": {
  10478. "php": "^7.2 || ^8.0"
  10479. },
  10480. "type": "library",
  10481. "autoload": {
  10482. "classmap": [
  10483. "src/"
  10484. ]
  10485. },
  10486. "notification-url": "https://packagist.org/downloads/",
  10487. "license": [
  10488. "BSD-3-Clause"
  10489. ],
  10490. "authors": [
  10491. {
  10492. "name": "Arne Blankerts",
  10493. "email": "arne@blankerts.de",
  10494. "role": "Developer"
  10495. },
  10496. {
  10497. "name": "Sebastian Heuer",
  10498. "email": "sebastian@phpeople.de",
  10499. "role": "Developer"
  10500. },
  10501. {
  10502. "name": "Sebastian Bergmann",
  10503. "email": "sebastian@phpunit.de",
  10504. "role": "Developer"
  10505. }
  10506. ],
  10507. "description": "Library for handling version information and constraints",
  10508. "support": {
  10509. "issues": "https://github.com/phar-io/version/issues",
  10510. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10511. },
  10512. "time": "2022-02-21T01:04:05+00:00"
  10513. },
  10514. {
  10515. "name": "phpdocumentor/reflection-common",
  10516. "version": "2.2.0",
  10517. "source": {
  10518. "type": "git",
  10519. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10520. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10521. },
  10522. "dist": {
  10523. "type": "zip",
  10524. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10525. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10526. "shasum": ""
  10527. },
  10528. "require": {
  10529. "php": "^7.2 || ^8.0"
  10530. },
  10531. "type": "library",
  10532. "extra": {
  10533. "branch-alias": {
  10534. "dev-2.x": "2.x-dev"
  10535. }
  10536. },
  10537. "autoload": {
  10538. "psr-4": {
  10539. "phpDocumentor\\Reflection\\": "src/"
  10540. }
  10541. },
  10542. "notification-url": "https://packagist.org/downloads/",
  10543. "license": [
  10544. "MIT"
  10545. ],
  10546. "authors": [
  10547. {
  10548. "name": "Jaap van Otterdijk",
  10549. "email": "opensource@ijaap.nl"
  10550. }
  10551. ],
  10552. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10553. "homepage": "http://www.phpdoc.org",
  10554. "keywords": [
  10555. "FQSEN",
  10556. "phpDocumentor",
  10557. "phpdoc",
  10558. "reflection",
  10559. "static analysis"
  10560. ],
  10561. "support": {
  10562. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10563. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10564. },
  10565. "time": "2020-06-27T09:03:43+00:00"
  10566. },
  10567. {
  10568. "name": "phpdocumentor/reflection-docblock",
  10569. "version": "5.6.0",
  10570. "source": {
  10571. "type": "git",
  10572. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10573. "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c"
  10574. },
  10575. "dist": {
  10576. "type": "zip",
  10577. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/f3558a4c23426d12bffeaab463f8a8d8b681193c",
  10578. "reference": "f3558a4c23426d12bffeaab463f8a8d8b681193c",
  10579. "shasum": ""
  10580. },
  10581. "require": {
  10582. "doctrine/deprecations": "^1.1",
  10583. "ext-filter": "*",
  10584. "php": "^7.4 || ^8.0",
  10585. "phpdocumentor/reflection-common": "^2.2",
  10586. "phpdocumentor/type-resolver": "^1.7",
  10587. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10588. "webmozart/assert": "^1.9.1"
  10589. },
  10590. "require-dev": {
  10591. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10592. "phpstan/extension-installer": "^1.1",
  10593. "phpstan/phpstan": "^1.8",
  10594. "phpstan/phpstan-mockery": "^1.1",
  10595. "phpstan/phpstan-webmozart-assert": "^1.2",
  10596. "phpunit/phpunit": "^9.5",
  10597. "psalm/phar": "^5.26"
  10598. },
  10599. "type": "library",
  10600. "extra": {
  10601. "branch-alias": {
  10602. "dev-master": "5.x-dev"
  10603. }
  10604. },
  10605. "autoload": {
  10606. "psr-4": {
  10607. "phpDocumentor\\Reflection\\": "src"
  10608. }
  10609. },
  10610. "notification-url": "https://packagist.org/downloads/",
  10611. "license": [
  10612. "MIT"
  10613. ],
  10614. "authors": [
  10615. {
  10616. "name": "Mike van Riel",
  10617. "email": "me@mikevanriel.com"
  10618. },
  10619. {
  10620. "name": "Jaap van Otterdijk",
  10621. "email": "opensource@ijaap.nl"
  10622. }
  10623. ],
  10624. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10625. "support": {
  10626. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10627. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.0"
  10628. },
  10629. "time": "2024-11-12T11:25:25+00:00"
  10630. },
  10631. {
  10632. "name": "phpdocumentor/type-resolver",
  10633. "version": "1.10.0",
  10634. "source": {
  10635. "type": "git",
  10636. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10637. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10638. },
  10639. "dist": {
  10640. "type": "zip",
  10641. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10642. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10643. "shasum": ""
  10644. },
  10645. "require": {
  10646. "doctrine/deprecations": "^1.0",
  10647. "php": "^7.3 || ^8.0",
  10648. "phpdocumentor/reflection-common": "^2.0",
  10649. "phpstan/phpdoc-parser": "^1.18|^2.0"
  10650. },
  10651. "require-dev": {
  10652. "ext-tokenizer": "*",
  10653. "phpbench/phpbench": "^1.2",
  10654. "phpstan/extension-installer": "^1.1",
  10655. "phpstan/phpstan": "^1.8",
  10656. "phpstan/phpstan-phpunit": "^1.1",
  10657. "phpunit/phpunit": "^9.5",
  10658. "rector/rector": "^0.13.9",
  10659. "vimeo/psalm": "^4.25"
  10660. },
  10661. "type": "library",
  10662. "extra": {
  10663. "branch-alias": {
  10664. "dev-1.x": "1.x-dev"
  10665. }
  10666. },
  10667. "autoload": {
  10668. "psr-4": {
  10669. "phpDocumentor\\Reflection\\": "src"
  10670. }
  10671. },
  10672. "notification-url": "https://packagist.org/downloads/",
  10673. "license": [
  10674. "MIT"
  10675. ],
  10676. "authors": [
  10677. {
  10678. "name": "Mike van Riel",
  10679. "email": "me@mikevanriel.com"
  10680. }
  10681. ],
  10682. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10683. "support": {
  10684. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10685. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  10686. },
  10687. "time": "2024-11-09T15:12:26+00:00"
  10688. },
  10689. {
  10690. "name": "phpstan/phpdoc-parser",
  10691. "version": "2.0.0",
  10692. "source": {
  10693. "type": "git",
  10694. "url": "https://github.com/phpstan/phpdoc-parser.git",
  10695. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  10696. },
  10697. "dist": {
  10698. "type": "zip",
  10699. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  10700. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  10701. "shasum": ""
  10702. },
  10703. "require": {
  10704. "php": "^7.4 || ^8.0"
  10705. },
  10706. "require-dev": {
  10707. "doctrine/annotations": "^2.0",
  10708. "nikic/php-parser": "^5.3.0",
  10709. "php-parallel-lint/php-parallel-lint": "^1.2",
  10710. "phpstan/extension-installer": "^1.0",
  10711. "phpstan/phpstan": "^2.0",
  10712. "phpstan/phpstan-phpunit": "^2.0",
  10713. "phpstan/phpstan-strict-rules": "^2.0",
  10714. "phpunit/phpunit": "^9.6",
  10715. "symfony/process": "^5.2"
  10716. },
  10717. "type": "library",
  10718. "autoload": {
  10719. "psr-4": {
  10720. "PHPStan\\PhpDocParser\\": [
  10721. "src/"
  10722. ]
  10723. }
  10724. },
  10725. "notification-url": "https://packagist.org/downloads/",
  10726. "license": [
  10727. "MIT"
  10728. ],
  10729. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  10730. "support": {
  10731. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  10732. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  10733. },
  10734. "time": "2024-10-13T11:29:49+00:00"
  10735. },
  10736. {
  10737. "name": "phpstan/phpstan",
  10738. "version": "1.12.11",
  10739. "source": {
  10740. "type": "git",
  10741. "url": "https://github.com/phpstan/phpstan.git",
  10742. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733"
  10743. },
  10744. "dist": {
  10745. "type": "zip",
  10746. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  10747. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  10748. "shasum": ""
  10749. },
  10750. "require": {
  10751. "php": "^7.2|^8.0"
  10752. },
  10753. "conflict": {
  10754. "phpstan/phpstan-shim": "*"
  10755. },
  10756. "bin": [
  10757. "phpstan",
  10758. "phpstan.phar"
  10759. ],
  10760. "type": "library",
  10761. "autoload": {
  10762. "files": [
  10763. "bootstrap.php"
  10764. ]
  10765. },
  10766. "notification-url": "https://packagist.org/downloads/",
  10767. "license": [
  10768. "MIT"
  10769. ],
  10770. "description": "PHPStan - PHP Static Analysis Tool",
  10771. "keywords": [
  10772. "dev",
  10773. "static analysis"
  10774. ],
  10775. "support": {
  10776. "docs": "https://phpstan.org/user-guide/getting-started",
  10777. "forum": "https://github.com/phpstan/phpstan/discussions",
  10778. "issues": "https://github.com/phpstan/phpstan/issues",
  10779. "security": "https://github.com/phpstan/phpstan/security/policy",
  10780. "source": "https://github.com/phpstan/phpstan-src"
  10781. },
  10782. "funding": [
  10783. {
  10784. "url": "https://github.com/ondrejmirtes",
  10785. "type": "github"
  10786. },
  10787. {
  10788. "url": "https://github.com/phpstan",
  10789. "type": "github"
  10790. }
  10791. ],
  10792. "time": "2024-11-17T14:08:01+00:00"
  10793. },
  10794. {
  10795. "name": "phpunit/php-code-coverage",
  10796. "version": "11.0.7",
  10797. "source": {
  10798. "type": "git",
  10799. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10800. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  10801. },
  10802. "dist": {
  10803. "type": "zip",
  10804. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  10805. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  10806. "shasum": ""
  10807. },
  10808. "require": {
  10809. "ext-dom": "*",
  10810. "ext-libxml": "*",
  10811. "ext-xmlwriter": "*",
  10812. "nikic/php-parser": "^5.3.1",
  10813. "php": ">=8.2",
  10814. "phpunit/php-file-iterator": "^5.1.0",
  10815. "phpunit/php-text-template": "^4.0.1",
  10816. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  10817. "sebastian/complexity": "^4.0.1",
  10818. "sebastian/environment": "^7.2.0",
  10819. "sebastian/lines-of-code": "^3.0.1",
  10820. "sebastian/version": "^5.0.2",
  10821. "theseer/tokenizer": "^1.2.3"
  10822. },
  10823. "require-dev": {
  10824. "phpunit/phpunit": "^11.4.1"
  10825. },
  10826. "suggest": {
  10827. "ext-pcov": "PHP extension that provides line coverage",
  10828. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10829. },
  10830. "type": "library",
  10831. "extra": {
  10832. "branch-alias": {
  10833. "dev-main": "11.0.x-dev"
  10834. }
  10835. },
  10836. "autoload": {
  10837. "classmap": [
  10838. "src/"
  10839. ]
  10840. },
  10841. "notification-url": "https://packagist.org/downloads/",
  10842. "license": [
  10843. "BSD-3-Clause"
  10844. ],
  10845. "authors": [
  10846. {
  10847. "name": "Sebastian Bergmann",
  10848. "email": "sebastian@phpunit.de",
  10849. "role": "lead"
  10850. }
  10851. ],
  10852. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10853. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10854. "keywords": [
  10855. "coverage",
  10856. "testing",
  10857. "xunit"
  10858. ],
  10859. "support": {
  10860. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10861. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10862. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  10863. },
  10864. "funding": [
  10865. {
  10866. "url": "https://github.com/sebastianbergmann",
  10867. "type": "github"
  10868. }
  10869. ],
  10870. "time": "2024-10-09T06:21:38+00:00"
  10871. },
  10872. {
  10873. "name": "phpunit/php-file-iterator",
  10874. "version": "5.1.0",
  10875. "source": {
  10876. "type": "git",
  10877. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10878. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  10879. },
  10880. "dist": {
  10881. "type": "zip",
  10882. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10883. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10884. "shasum": ""
  10885. },
  10886. "require": {
  10887. "php": ">=8.2"
  10888. },
  10889. "require-dev": {
  10890. "phpunit/phpunit": "^11.0"
  10891. },
  10892. "type": "library",
  10893. "extra": {
  10894. "branch-alias": {
  10895. "dev-main": "5.0-dev"
  10896. }
  10897. },
  10898. "autoload": {
  10899. "classmap": [
  10900. "src/"
  10901. ]
  10902. },
  10903. "notification-url": "https://packagist.org/downloads/",
  10904. "license": [
  10905. "BSD-3-Clause"
  10906. ],
  10907. "authors": [
  10908. {
  10909. "name": "Sebastian Bergmann",
  10910. "email": "sebastian@phpunit.de",
  10911. "role": "lead"
  10912. }
  10913. ],
  10914. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10915. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10916. "keywords": [
  10917. "filesystem",
  10918. "iterator"
  10919. ],
  10920. "support": {
  10921. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10922. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10923. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  10924. },
  10925. "funding": [
  10926. {
  10927. "url": "https://github.com/sebastianbergmann",
  10928. "type": "github"
  10929. }
  10930. ],
  10931. "time": "2024-08-27T05:02:59+00:00"
  10932. },
  10933. {
  10934. "name": "phpunit/php-invoker",
  10935. "version": "5.0.1",
  10936. "source": {
  10937. "type": "git",
  10938. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10939. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  10940. },
  10941. "dist": {
  10942. "type": "zip",
  10943. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10944. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10945. "shasum": ""
  10946. },
  10947. "require": {
  10948. "php": ">=8.2"
  10949. },
  10950. "require-dev": {
  10951. "ext-pcntl": "*",
  10952. "phpunit/phpunit": "^11.0"
  10953. },
  10954. "suggest": {
  10955. "ext-pcntl": "*"
  10956. },
  10957. "type": "library",
  10958. "extra": {
  10959. "branch-alias": {
  10960. "dev-main": "5.0-dev"
  10961. }
  10962. },
  10963. "autoload": {
  10964. "classmap": [
  10965. "src/"
  10966. ]
  10967. },
  10968. "notification-url": "https://packagist.org/downloads/",
  10969. "license": [
  10970. "BSD-3-Clause"
  10971. ],
  10972. "authors": [
  10973. {
  10974. "name": "Sebastian Bergmann",
  10975. "email": "sebastian@phpunit.de",
  10976. "role": "lead"
  10977. }
  10978. ],
  10979. "description": "Invoke callables with a timeout",
  10980. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10981. "keywords": [
  10982. "process"
  10983. ],
  10984. "support": {
  10985. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10986. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  10987. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  10988. },
  10989. "funding": [
  10990. {
  10991. "url": "https://github.com/sebastianbergmann",
  10992. "type": "github"
  10993. }
  10994. ],
  10995. "time": "2024-07-03T05:07:44+00:00"
  10996. },
  10997. {
  10998. "name": "phpunit/php-text-template",
  10999. "version": "4.0.1",
  11000. "source": {
  11001. "type": "git",
  11002. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11003. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11004. },
  11005. "dist": {
  11006. "type": "zip",
  11007. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11008. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11009. "shasum": ""
  11010. },
  11011. "require": {
  11012. "php": ">=8.2"
  11013. },
  11014. "require-dev": {
  11015. "phpunit/phpunit": "^11.0"
  11016. },
  11017. "type": "library",
  11018. "extra": {
  11019. "branch-alias": {
  11020. "dev-main": "4.0-dev"
  11021. }
  11022. },
  11023. "autoload": {
  11024. "classmap": [
  11025. "src/"
  11026. ]
  11027. },
  11028. "notification-url": "https://packagist.org/downloads/",
  11029. "license": [
  11030. "BSD-3-Clause"
  11031. ],
  11032. "authors": [
  11033. {
  11034. "name": "Sebastian Bergmann",
  11035. "email": "sebastian@phpunit.de",
  11036. "role": "lead"
  11037. }
  11038. ],
  11039. "description": "Simple template engine.",
  11040. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11041. "keywords": [
  11042. "template"
  11043. ],
  11044. "support": {
  11045. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11046. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11047. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11048. },
  11049. "funding": [
  11050. {
  11051. "url": "https://github.com/sebastianbergmann",
  11052. "type": "github"
  11053. }
  11054. ],
  11055. "time": "2024-07-03T05:08:43+00:00"
  11056. },
  11057. {
  11058. "name": "phpunit/php-timer",
  11059. "version": "7.0.1",
  11060. "source": {
  11061. "type": "git",
  11062. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11063. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11064. },
  11065. "dist": {
  11066. "type": "zip",
  11067. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11068. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11069. "shasum": ""
  11070. },
  11071. "require": {
  11072. "php": ">=8.2"
  11073. },
  11074. "require-dev": {
  11075. "phpunit/phpunit": "^11.0"
  11076. },
  11077. "type": "library",
  11078. "extra": {
  11079. "branch-alias": {
  11080. "dev-main": "7.0-dev"
  11081. }
  11082. },
  11083. "autoload": {
  11084. "classmap": [
  11085. "src/"
  11086. ]
  11087. },
  11088. "notification-url": "https://packagist.org/downloads/",
  11089. "license": [
  11090. "BSD-3-Clause"
  11091. ],
  11092. "authors": [
  11093. {
  11094. "name": "Sebastian Bergmann",
  11095. "email": "sebastian@phpunit.de",
  11096. "role": "lead"
  11097. }
  11098. ],
  11099. "description": "Utility class for timing",
  11100. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11101. "keywords": [
  11102. "timer"
  11103. ],
  11104. "support": {
  11105. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11106. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11107. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11108. },
  11109. "funding": [
  11110. {
  11111. "url": "https://github.com/sebastianbergmann",
  11112. "type": "github"
  11113. }
  11114. ],
  11115. "time": "2024-07-03T05:09:35+00:00"
  11116. },
  11117. {
  11118. "name": "phpunit/phpunit",
  11119. "version": "11.4.3",
  11120. "source": {
  11121. "type": "git",
  11122. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11123. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76"
  11124. },
  11125. "dist": {
  11126. "type": "zip",
  11127. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  11128. "reference": "e8e8ed1854de5d36c088ec1833beae40d2dedd76",
  11129. "shasum": ""
  11130. },
  11131. "require": {
  11132. "ext-dom": "*",
  11133. "ext-json": "*",
  11134. "ext-libxml": "*",
  11135. "ext-mbstring": "*",
  11136. "ext-xml": "*",
  11137. "ext-xmlwriter": "*",
  11138. "myclabs/deep-copy": "^1.12.0",
  11139. "phar-io/manifest": "^2.0.4",
  11140. "phar-io/version": "^3.2.1",
  11141. "php": ">=8.2",
  11142. "phpunit/php-code-coverage": "^11.0.7",
  11143. "phpunit/php-file-iterator": "^5.1.0",
  11144. "phpunit/php-invoker": "^5.0.1",
  11145. "phpunit/php-text-template": "^4.0.1",
  11146. "phpunit/php-timer": "^7.0.1",
  11147. "sebastian/cli-parser": "^3.0.2",
  11148. "sebastian/code-unit": "^3.0.1",
  11149. "sebastian/comparator": "^6.1.1",
  11150. "sebastian/diff": "^6.0.2",
  11151. "sebastian/environment": "^7.2.0",
  11152. "sebastian/exporter": "^6.1.3",
  11153. "sebastian/global-state": "^7.0.2",
  11154. "sebastian/object-enumerator": "^6.0.1",
  11155. "sebastian/type": "^5.1.0",
  11156. "sebastian/version": "^5.0.2"
  11157. },
  11158. "suggest": {
  11159. "ext-soap": "To be able to generate mocks based on WSDL files"
  11160. },
  11161. "bin": [
  11162. "phpunit"
  11163. ],
  11164. "type": "library",
  11165. "extra": {
  11166. "branch-alias": {
  11167. "dev-main": "11.4-dev"
  11168. }
  11169. },
  11170. "autoload": {
  11171. "files": [
  11172. "src/Framework/Assert/Functions.php"
  11173. ],
  11174. "classmap": [
  11175. "src/"
  11176. ]
  11177. },
  11178. "notification-url": "https://packagist.org/downloads/",
  11179. "license": [
  11180. "BSD-3-Clause"
  11181. ],
  11182. "authors": [
  11183. {
  11184. "name": "Sebastian Bergmann",
  11185. "email": "sebastian@phpunit.de",
  11186. "role": "lead"
  11187. }
  11188. ],
  11189. "description": "The PHP Unit Testing framework.",
  11190. "homepage": "https://phpunit.de/",
  11191. "keywords": [
  11192. "phpunit",
  11193. "testing",
  11194. "xunit"
  11195. ],
  11196. "support": {
  11197. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11198. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11199. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.3"
  11200. },
  11201. "funding": [
  11202. {
  11203. "url": "https://phpunit.de/sponsors.html",
  11204. "type": "custom"
  11205. },
  11206. {
  11207. "url": "https://github.com/sebastianbergmann",
  11208. "type": "github"
  11209. },
  11210. {
  11211. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11212. "type": "tidelift"
  11213. }
  11214. ],
  11215. "time": "2024-10-28T13:07:50+00:00"
  11216. },
  11217. {
  11218. "name": "pimple/pimple",
  11219. "version": "v3.5.0",
  11220. "source": {
  11221. "type": "git",
  11222. "url": "https://github.com/silexphp/Pimple.git",
  11223. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  11224. },
  11225. "dist": {
  11226. "type": "zip",
  11227. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11228. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11229. "shasum": ""
  11230. },
  11231. "require": {
  11232. "php": ">=7.2.5",
  11233. "psr/container": "^1.1 || ^2.0"
  11234. },
  11235. "require-dev": {
  11236. "symfony/phpunit-bridge": "^5.4@dev"
  11237. },
  11238. "type": "library",
  11239. "extra": {
  11240. "branch-alias": {
  11241. "dev-master": "3.4.x-dev"
  11242. }
  11243. },
  11244. "autoload": {
  11245. "psr-0": {
  11246. "Pimple": "src/"
  11247. }
  11248. },
  11249. "notification-url": "https://packagist.org/downloads/",
  11250. "license": [
  11251. "MIT"
  11252. ],
  11253. "authors": [
  11254. {
  11255. "name": "Fabien Potencier",
  11256. "email": "fabien@symfony.com"
  11257. }
  11258. ],
  11259. "description": "Pimple, a simple Dependency Injection Container",
  11260. "homepage": "https://pimple.symfony.com",
  11261. "keywords": [
  11262. "container",
  11263. "dependency injection"
  11264. ],
  11265. "support": {
  11266. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  11267. },
  11268. "time": "2021-10-28T11:13:42+00:00"
  11269. },
  11270. {
  11271. "name": "rector/rector",
  11272. "version": "1.2.10",
  11273. "source": {
  11274. "type": "git",
  11275. "url": "https://github.com/rectorphp/rector.git",
  11276. "reference": "40f9cf38c05296bd32f444121336a521a293fa61"
  11277. },
  11278. "dist": {
  11279. "type": "zip",
  11280. "url": "https://api.github.com/repos/rectorphp/rector/zipball/40f9cf38c05296bd32f444121336a521a293fa61",
  11281. "reference": "40f9cf38c05296bd32f444121336a521a293fa61",
  11282. "shasum": ""
  11283. },
  11284. "require": {
  11285. "php": "^7.2|^8.0",
  11286. "phpstan/phpstan": "^1.12.5"
  11287. },
  11288. "conflict": {
  11289. "rector/rector-doctrine": "*",
  11290. "rector/rector-downgrade-php": "*",
  11291. "rector/rector-phpunit": "*",
  11292. "rector/rector-symfony": "*"
  11293. },
  11294. "suggest": {
  11295. "ext-dom": "To manipulate phpunit.xml via the custom-rule command"
  11296. },
  11297. "bin": [
  11298. "bin/rector"
  11299. ],
  11300. "type": "library",
  11301. "autoload": {
  11302. "files": [
  11303. "bootstrap.php"
  11304. ]
  11305. },
  11306. "notification-url": "https://packagist.org/downloads/",
  11307. "license": [
  11308. "MIT"
  11309. ],
  11310. "description": "Instant Upgrade and Automated Refactoring of any PHP code",
  11311. "keywords": [
  11312. "automation",
  11313. "dev",
  11314. "migration",
  11315. "refactoring"
  11316. ],
  11317. "support": {
  11318. "issues": "https://github.com/rectorphp/rector/issues",
  11319. "source": "https://github.com/rectorphp/rector/tree/1.2.10"
  11320. },
  11321. "funding": [
  11322. {
  11323. "url": "https://github.com/tomasvotruba",
  11324. "type": "github"
  11325. }
  11326. ],
  11327. "time": "2024-11-08T13:59:10+00:00"
  11328. },
  11329. {
  11330. "name": "sebastian/cli-parser",
  11331. "version": "3.0.2",
  11332. "source": {
  11333. "type": "git",
  11334. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11335. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11336. },
  11337. "dist": {
  11338. "type": "zip",
  11339. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11340. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11341. "shasum": ""
  11342. },
  11343. "require": {
  11344. "php": ">=8.2"
  11345. },
  11346. "require-dev": {
  11347. "phpunit/phpunit": "^11.0"
  11348. },
  11349. "type": "library",
  11350. "extra": {
  11351. "branch-alias": {
  11352. "dev-main": "3.0-dev"
  11353. }
  11354. },
  11355. "autoload": {
  11356. "classmap": [
  11357. "src/"
  11358. ]
  11359. },
  11360. "notification-url": "https://packagist.org/downloads/",
  11361. "license": [
  11362. "BSD-3-Clause"
  11363. ],
  11364. "authors": [
  11365. {
  11366. "name": "Sebastian Bergmann",
  11367. "email": "sebastian@phpunit.de",
  11368. "role": "lead"
  11369. }
  11370. ],
  11371. "description": "Library for parsing CLI options",
  11372. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11373. "support": {
  11374. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11375. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11376. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11377. },
  11378. "funding": [
  11379. {
  11380. "url": "https://github.com/sebastianbergmann",
  11381. "type": "github"
  11382. }
  11383. ],
  11384. "time": "2024-07-03T04:41:36+00:00"
  11385. },
  11386. {
  11387. "name": "sebastian/code-unit",
  11388. "version": "3.0.1",
  11389. "source": {
  11390. "type": "git",
  11391. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11392. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  11393. },
  11394. "dist": {
  11395. "type": "zip",
  11396. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  11397. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  11398. "shasum": ""
  11399. },
  11400. "require": {
  11401. "php": ">=8.2"
  11402. },
  11403. "require-dev": {
  11404. "phpunit/phpunit": "^11.0"
  11405. },
  11406. "type": "library",
  11407. "extra": {
  11408. "branch-alias": {
  11409. "dev-main": "3.0-dev"
  11410. }
  11411. },
  11412. "autoload": {
  11413. "classmap": [
  11414. "src/"
  11415. ]
  11416. },
  11417. "notification-url": "https://packagist.org/downloads/",
  11418. "license": [
  11419. "BSD-3-Clause"
  11420. ],
  11421. "authors": [
  11422. {
  11423. "name": "Sebastian Bergmann",
  11424. "email": "sebastian@phpunit.de",
  11425. "role": "lead"
  11426. }
  11427. ],
  11428. "description": "Collection of value objects that represent the PHP code units",
  11429. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11430. "support": {
  11431. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11432. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11433. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  11434. },
  11435. "funding": [
  11436. {
  11437. "url": "https://github.com/sebastianbergmann",
  11438. "type": "github"
  11439. }
  11440. ],
  11441. "time": "2024-07-03T04:44:28+00:00"
  11442. },
  11443. {
  11444. "name": "sebastian/code-unit-reverse-lookup",
  11445. "version": "4.0.1",
  11446. "source": {
  11447. "type": "git",
  11448. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11449. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11450. },
  11451. "dist": {
  11452. "type": "zip",
  11453. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11454. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11455. "shasum": ""
  11456. },
  11457. "require": {
  11458. "php": ">=8.2"
  11459. },
  11460. "require-dev": {
  11461. "phpunit/phpunit": "^11.0"
  11462. },
  11463. "type": "library",
  11464. "extra": {
  11465. "branch-alias": {
  11466. "dev-main": "4.0-dev"
  11467. }
  11468. },
  11469. "autoload": {
  11470. "classmap": [
  11471. "src/"
  11472. ]
  11473. },
  11474. "notification-url": "https://packagist.org/downloads/",
  11475. "license": [
  11476. "BSD-3-Clause"
  11477. ],
  11478. "authors": [
  11479. {
  11480. "name": "Sebastian Bergmann",
  11481. "email": "sebastian@phpunit.de"
  11482. }
  11483. ],
  11484. "description": "Looks up which function or method a line of code belongs to",
  11485. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11486. "support": {
  11487. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11488. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11489. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11490. },
  11491. "funding": [
  11492. {
  11493. "url": "https://github.com/sebastianbergmann",
  11494. "type": "github"
  11495. }
  11496. ],
  11497. "time": "2024-07-03T04:45:54+00:00"
  11498. },
  11499. {
  11500. "name": "sebastian/comparator",
  11501. "version": "6.2.1",
  11502. "source": {
  11503. "type": "git",
  11504. "url": "https://github.com/sebastianbergmann/comparator.git",
  11505. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  11506. },
  11507. "dist": {
  11508. "type": "zip",
  11509. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  11510. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  11511. "shasum": ""
  11512. },
  11513. "require": {
  11514. "ext-dom": "*",
  11515. "ext-mbstring": "*",
  11516. "php": ">=8.2",
  11517. "sebastian/diff": "^6.0",
  11518. "sebastian/exporter": "^6.0"
  11519. },
  11520. "require-dev": {
  11521. "phpunit/phpunit": "^11.4"
  11522. },
  11523. "type": "library",
  11524. "extra": {
  11525. "branch-alias": {
  11526. "dev-main": "6.2-dev"
  11527. }
  11528. },
  11529. "autoload": {
  11530. "classmap": [
  11531. "src/"
  11532. ]
  11533. },
  11534. "notification-url": "https://packagist.org/downloads/",
  11535. "license": [
  11536. "BSD-3-Clause"
  11537. ],
  11538. "authors": [
  11539. {
  11540. "name": "Sebastian Bergmann",
  11541. "email": "sebastian@phpunit.de"
  11542. },
  11543. {
  11544. "name": "Jeff Welch",
  11545. "email": "whatthejeff@gmail.com"
  11546. },
  11547. {
  11548. "name": "Volker Dusch",
  11549. "email": "github@wallbash.com"
  11550. },
  11551. {
  11552. "name": "Bernhard Schussek",
  11553. "email": "bschussek@2bepublished.at"
  11554. }
  11555. ],
  11556. "description": "Provides the functionality to compare PHP values for equality",
  11557. "homepage": "https://github.com/sebastianbergmann/comparator",
  11558. "keywords": [
  11559. "comparator",
  11560. "compare",
  11561. "equality"
  11562. ],
  11563. "support": {
  11564. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11565. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11566. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  11567. },
  11568. "funding": [
  11569. {
  11570. "url": "https://github.com/sebastianbergmann",
  11571. "type": "github"
  11572. }
  11573. ],
  11574. "time": "2024-10-31T05:30:08+00:00"
  11575. },
  11576. {
  11577. "name": "sebastian/complexity",
  11578. "version": "4.0.1",
  11579. "source": {
  11580. "type": "git",
  11581. "url": "https://github.com/sebastianbergmann/complexity.git",
  11582. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11583. },
  11584. "dist": {
  11585. "type": "zip",
  11586. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11587. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11588. "shasum": ""
  11589. },
  11590. "require": {
  11591. "nikic/php-parser": "^5.0",
  11592. "php": ">=8.2"
  11593. },
  11594. "require-dev": {
  11595. "phpunit/phpunit": "^11.0"
  11596. },
  11597. "type": "library",
  11598. "extra": {
  11599. "branch-alias": {
  11600. "dev-main": "4.0-dev"
  11601. }
  11602. },
  11603. "autoload": {
  11604. "classmap": [
  11605. "src/"
  11606. ]
  11607. },
  11608. "notification-url": "https://packagist.org/downloads/",
  11609. "license": [
  11610. "BSD-3-Clause"
  11611. ],
  11612. "authors": [
  11613. {
  11614. "name": "Sebastian Bergmann",
  11615. "email": "sebastian@phpunit.de",
  11616. "role": "lead"
  11617. }
  11618. ],
  11619. "description": "Library for calculating the complexity of PHP code units",
  11620. "homepage": "https://github.com/sebastianbergmann/complexity",
  11621. "support": {
  11622. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11623. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11624. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11625. },
  11626. "funding": [
  11627. {
  11628. "url": "https://github.com/sebastianbergmann",
  11629. "type": "github"
  11630. }
  11631. ],
  11632. "time": "2024-07-03T04:49:50+00:00"
  11633. },
  11634. {
  11635. "name": "sebastian/diff",
  11636. "version": "6.0.2",
  11637. "source": {
  11638. "type": "git",
  11639. "url": "https://github.com/sebastianbergmann/diff.git",
  11640. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11641. },
  11642. "dist": {
  11643. "type": "zip",
  11644. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11645. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11646. "shasum": ""
  11647. },
  11648. "require": {
  11649. "php": ">=8.2"
  11650. },
  11651. "require-dev": {
  11652. "phpunit/phpunit": "^11.0",
  11653. "symfony/process": "^4.2 || ^5"
  11654. },
  11655. "type": "library",
  11656. "extra": {
  11657. "branch-alias": {
  11658. "dev-main": "6.0-dev"
  11659. }
  11660. },
  11661. "autoload": {
  11662. "classmap": [
  11663. "src/"
  11664. ]
  11665. },
  11666. "notification-url": "https://packagist.org/downloads/",
  11667. "license": [
  11668. "BSD-3-Clause"
  11669. ],
  11670. "authors": [
  11671. {
  11672. "name": "Sebastian Bergmann",
  11673. "email": "sebastian@phpunit.de"
  11674. },
  11675. {
  11676. "name": "Kore Nordmann",
  11677. "email": "mail@kore-nordmann.de"
  11678. }
  11679. ],
  11680. "description": "Diff implementation",
  11681. "homepage": "https://github.com/sebastianbergmann/diff",
  11682. "keywords": [
  11683. "diff",
  11684. "udiff",
  11685. "unidiff",
  11686. "unified diff"
  11687. ],
  11688. "support": {
  11689. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11690. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11691. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11692. },
  11693. "funding": [
  11694. {
  11695. "url": "https://github.com/sebastianbergmann",
  11696. "type": "github"
  11697. }
  11698. ],
  11699. "time": "2024-07-03T04:53:05+00:00"
  11700. },
  11701. {
  11702. "name": "sebastian/environment",
  11703. "version": "7.2.0",
  11704. "source": {
  11705. "type": "git",
  11706. "url": "https://github.com/sebastianbergmann/environment.git",
  11707. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  11708. },
  11709. "dist": {
  11710. "type": "zip",
  11711. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11712. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11713. "shasum": ""
  11714. },
  11715. "require": {
  11716. "php": ">=8.2"
  11717. },
  11718. "require-dev": {
  11719. "phpunit/phpunit": "^11.0"
  11720. },
  11721. "suggest": {
  11722. "ext-posix": "*"
  11723. },
  11724. "type": "library",
  11725. "extra": {
  11726. "branch-alias": {
  11727. "dev-main": "7.2-dev"
  11728. }
  11729. },
  11730. "autoload": {
  11731. "classmap": [
  11732. "src/"
  11733. ]
  11734. },
  11735. "notification-url": "https://packagist.org/downloads/",
  11736. "license": [
  11737. "BSD-3-Clause"
  11738. ],
  11739. "authors": [
  11740. {
  11741. "name": "Sebastian Bergmann",
  11742. "email": "sebastian@phpunit.de"
  11743. }
  11744. ],
  11745. "description": "Provides functionality to handle HHVM/PHP environments",
  11746. "homepage": "https://github.com/sebastianbergmann/environment",
  11747. "keywords": [
  11748. "Xdebug",
  11749. "environment",
  11750. "hhvm"
  11751. ],
  11752. "support": {
  11753. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11754. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11755. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  11756. },
  11757. "funding": [
  11758. {
  11759. "url": "https://github.com/sebastianbergmann",
  11760. "type": "github"
  11761. }
  11762. ],
  11763. "time": "2024-07-03T04:54:44+00:00"
  11764. },
  11765. {
  11766. "name": "sebastian/exporter",
  11767. "version": "6.1.3",
  11768. "source": {
  11769. "type": "git",
  11770. "url": "https://github.com/sebastianbergmann/exporter.git",
  11771. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  11772. },
  11773. "dist": {
  11774. "type": "zip",
  11775. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  11776. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  11777. "shasum": ""
  11778. },
  11779. "require": {
  11780. "ext-mbstring": "*",
  11781. "php": ">=8.2",
  11782. "sebastian/recursion-context": "^6.0"
  11783. },
  11784. "require-dev": {
  11785. "phpunit/phpunit": "^11.2"
  11786. },
  11787. "type": "library",
  11788. "extra": {
  11789. "branch-alias": {
  11790. "dev-main": "6.1-dev"
  11791. }
  11792. },
  11793. "autoload": {
  11794. "classmap": [
  11795. "src/"
  11796. ]
  11797. },
  11798. "notification-url": "https://packagist.org/downloads/",
  11799. "license": [
  11800. "BSD-3-Clause"
  11801. ],
  11802. "authors": [
  11803. {
  11804. "name": "Sebastian Bergmann",
  11805. "email": "sebastian@phpunit.de"
  11806. },
  11807. {
  11808. "name": "Jeff Welch",
  11809. "email": "whatthejeff@gmail.com"
  11810. },
  11811. {
  11812. "name": "Volker Dusch",
  11813. "email": "github@wallbash.com"
  11814. },
  11815. {
  11816. "name": "Adam Harvey",
  11817. "email": "aharvey@php.net"
  11818. },
  11819. {
  11820. "name": "Bernhard Schussek",
  11821. "email": "bschussek@gmail.com"
  11822. }
  11823. ],
  11824. "description": "Provides the functionality to export PHP variables for visualization",
  11825. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11826. "keywords": [
  11827. "export",
  11828. "exporter"
  11829. ],
  11830. "support": {
  11831. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11832. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11833. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  11834. },
  11835. "funding": [
  11836. {
  11837. "url": "https://github.com/sebastianbergmann",
  11838. "type": "github"
  11839. }
  11840. ],
  11841. "time": "2024-07-03T04:56:19+00:00"
  11842. },
  11843. {
  11844. "name": "sebastian/global-state",
  11845. "version": "7.0.2",
  11846. "source": {
  11847. "type": "git",
  11848. "url": "https://github.com/sebastianbergmann/global-state.git",
  11849. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  11850. },
  11851. "dist": {
  11852. "type": "zip",
  11853. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  11854. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  11855. "shasum": ""
  11856. },
  11857. "require": {
  11858. "php": ">=8.2",
  11859. "sebastian/object-reflector": "^4.0",
  11860. "sebastian/recursion-context": "^6.0"
  11861. },
  11862. "require-dev": {
  11863. "ext-dom": "*",
  11864. "phpunit/phpunit": "^11.0"
  11865. },
  11866. "type": "library",
  11867. "extra": {
  11868. "branch-alias": {
  11869. "dev-main": "7.0-dev"
  11870. }
  11871. },
  11872. "autoload": {
  11873. "classmap": [
  11874. "src/"
  11875. ]
  11876. },
  11877. "notification-url": "https://packagist.org/downloads/",
  11878. "license": [
  11879. "BSD-3-Clause"
  11880. ],
  11881. "authors": [
  11882. {
  11883. "name": "Sebastian Bergmann",
  11884. "email": "sebastian@phpunit.de"
  11885. }
  11886. ],
  11887. "description": "Snapshotting of global state",
  11888. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11889. "keywords": [
  11890. "global state"
  11891. ],
  11892. "support": {
  11893. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11894. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11895. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  11896. },
  11897. "funding": [
  11898. {
  11899. "url": "https://github.com/sebastianbergmann",
  11900. "type": "github"
  11901. }
  11902. ],
  11903. "time": "2024-07-03T04:57:36+00:00"
  11904. },
  11905. {
  11906. "name": "sebastian/lines-of-code",
  11907. "version": "3.0.1",
  11908. "source": {
  11909. "type": "git",
  11910. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11911. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  11912. },
  11913. "dist": {
  11914. "type": "zip",
  11915. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11916. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11917. "shasum": ""
  11918. },
  11919. "require": {
  11920. "nikic/php-parser": "^5.0",
  11921. "php": ">=8.2"
  11922. },
  11923. "require-dev": {
  11924. "phpunit/phpunit": "^11.0"
  11925. },
  11926. "type": "library",
  11927. "extra": {
  11928. "branch-alias": {
  11929. "dev-main": "3.0-dev"
  11930. }
  11931. },
  11932. "autoload": {
  11933. "classmap": [
  11934. "src/"
  11935. ]
  11936. },
  11937. "notification-url": "https://packagist.org/downloads/",
  11938. "license": [
  11939. "BSD-3-Clause"
  11940. ],
  11941. "authors": [
  11942. {
  11943. "name": "Sebastian Bergmann",
  11944. "email": "sebastian@phpunit.de",
  11945. "role": "lead"
  11946. }
  11947. ],
  11948. "description": "Library for counting the lines of code in PHP source code",
  11949. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11950. "support": {
  11951. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11952. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11953. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  11954. },
  11955. "funding": [
  11956. {
  11957. "url": "https://github.com/sebastianbergmann",
  11958. "type": "github"
  11959. }
  11960. ],
  11961. "time": "2024-07-03T04:58:38+00:00"
  11962. },
  11963. {
  11964. "name": "sebastian/object-enumerator",
  11965. "version": "6.0.1",
  11966. "source": {
  11967. "type": "git",
  11968. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11969. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  11970. },
  11971. "dist": {
  11972. "type": "zip",
  11973. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  11974. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  11975. "shasum": ""
  11976. },
  11977. "require": {
  11978. "php": ">=8.2",
  11979. "sebastian/object-reflector": "^4.0",
  11980. "sebastian/recursion-context": "^6.0"
  11981. },
  11982. "require-dev": {
  11983. "phpunit/phpunit": "^11.0"
  11984. },
  11985. "type": "library",
  11986. "extra": {
  11987. "branch-alias": {
  11988. "dev-main": "6.0-dev"
  11989. }
  11990. },
  11991. "autoload": {
  11992. "classmap": [
  11993. "src/"
  11994. ]
  11995. },
  11996. "notification-url": "https://packagist.org/downloads/",
  11997. "license": [
  11998. "BSD-3-Clause"
  11999. ],
  12000. "authors": [
  12001. {
  12002. "name": "Sebastian Bergmann",
  12003. "email": "sebastian@phpunit.de"
  12004. }
  12005. ],
  12006. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12007. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12008. "support": {
  12009. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12010. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12011. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12012. },
  12013. "funding": [
  12014. {
  12015. "url": "https://github.com/sebastianbergmann",
  12016. "type": "github"
  12017. }
  12018. ],
  12019. "time": "2024-07-03T05:00:13+00:00"
  12020. },
  12021. {
  12022. "name": "sebastian/object-reflector",
  12023. "version": "4.0.1",
  12024. "source": {
  12025. "type": "git",
  12026. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12027. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12028. },
  12029. "dist": {
  12030. "type": "zip",
  12031. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12032. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12033. "shasum": ""
  12034. },
  12035. "require": {
  12036. "php": ">=8.2"
  12037. },
  12038. "require-dev": {
  12039. "phpunit/phpunit": "^11.0"
  12040. },
  12041. "type": "library",
  12042. "extra": {
  12043. "branch-alias": {
  12044. "dev-main": "4.0-dev"
  12045. }
  12046. },
  12047. "autoload": {
  12048. "classmap": [
  12049. "src/"
  12050. ]
  12051. },
  12052. "notification-url": "https://packagist.org/downloads/",
  12053. "license": [
  12054. "BSD-3-Clause"
  12055. ],
  12056. "authors": [
  12057. {
  12058. "name": "Sebastian Bergmann",
  12059. "email": "sebastian@phpunit.de"
  12060. }
  12061. ],
  12062. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12063. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12064. "support": {
  12065. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12066. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12067. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12068. },
  12069. "funding": [
  12070. {
  12071. "url": "https://github.com/sebastianbergmann",
  12072. "type": "github"
  12073. }
  12074. ],
  12075. "time": "2024-07-03T05:01:32+00:00"
  12076. },
  12077. {
  12078. "name": "sebastian/recursion-context",
  12079. "version": "6.0.2",
  12080. "source": {
  12081. "type": "git",
  12082. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12083. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12084. },
  12085. "dist": {
  12086. "type": "zip",
  12087. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12088. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12089. "shasum": ""
  12090. },
  12091. "require": {
  12092. "php": ">=8.2"
  12093. },
  12094. "require-dev": {
  12095. "phpunit/phpunit": "^11.0"
  12096. },
  12097. "type": "library",
  12098. "extra": {
  12099. "branch-alias": {
  12100. "dev-main": "6.0-dev"
  12101. }
  12102. },
  12103. "autoload": {
  12104. "classmap": [
  12105. "src/"
  12106. ]
  12107. },
  12108. "notification-url": "https://packagist.org/downloads/",
  12109. "license": [
  12110. "BSD-3-Clause"
  12111. ],
  12112. "authors": [
  12113. {
  12114. "name": "Sebastian Bergmann",
  12115. "email": "sebastian@phpunit.de"
  12116. },
  12117. {
  12118. "name": "Jeff Welch",
  12119. "email": "whatthejeff@gmail.com"
  12120. },
  12121. {
  12122. "name": "Adam Harvey",
  12123. "email": "aharvey@php.net"
  12124. }
  12125. ],
  12126. "description": "Provides functionality to recursively process PHP variables",
  12127. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12128. "support": {
  12129. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12130. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12131. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12132. },
  12133. "funding": [
  12134. {
  12135. "url": "https://github.com/sebastianbergmann",
  12136. "type": "github"
  12137. }
  12138. ],
  12139. "time": "2024-07-03T05:10:34+00:00"
  12140. },
  12141. {
  12142. "name": "sebastian/type",
  12143. "version": "5.1.0",
  12144. "source": {
  12145. "type": "git",
  12146. "url": "https://github.com/sebastianbergmann/type.git",
  12147. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  12148. },
  12149. "dist": {
  12150. "type": "zip",
  12151. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12152. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12153. "shasum": ""
  12154. },
  12155. "require": {
  12156. "php": ">=8.2"
  12157. },
  12158. "require-dev": {
  12159. "phpunit/phpunit": "^11.3"
  12160. },
  12161. "type": "library",
  12162. "extra": {
  12163. "branch-alias": {
  12164. "dev-main": "5.1-dev"
  12165. }
  12166. },
  12167. "autoload": {
  12168. "classmap": [
  12169. "src/"
  12170. ]
  12171. },
  12172. "notification-url": "https://packagist.org/downloads/",
  12173. "license": [
  12174. "BSD-3-Clause"
  12175. ],
  12176. "authors": [
  12177. {
  12178. "name": "Sebastian Bergmann",
  12179. "email": "sebastian@phpunit.de",
  12180. "role": "lead"
  12181. }
  12182. ],
  12183. "description": "Collection of value objects that represent the types of the PHP type system",
  12184. "homepage": "https://github.com/sebastianbergmann/type",
  12185. "support": {
  12186. "issues": "https://github.com/sebastianbergmann/type/issues",
  12187. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12188. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  12189. },
  12190. "funding": [
  12191. {
  12192. "url": "https://github.com/sebastianbergmann",
  12193. "type": "github"
  12194. }
  12195. ],
  12196. "time": "2024-09-17T13:12:04+00:00"
  12197. },
  12198. {
  12199. "name": "sebastian/version",
  12200. "version": "5.0.2",
  12201. "source": {
  12202. "type": "git",
  12203. "url": "https://github.com/sebastianbergmann/version.git",
  12204. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12205. },
  12206. "dist": {
  12207. "type": "zip",
  12208. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12209. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12210. "shasum": ""
  12211. },
  12212. "require": {
  12213. "php": ">=8.2"
  12214. },
  12215. "type": "library",
  12216. "extra": {
  12217. "branch-alias": {
  12218. "dev-main": "5.0-dev"
  12219. }
  12220. },
  12221. "autoload": {
  12222. "classmap": [
  12223. "src/"
  12224. ]
  12225. },
  12226. "notification-url": "https://packagist.org/downloads/",
  12227. "license": [
  12228. "BSD-3-Clause"
  12229. ],
  12230. "authors": [
  12231. {
  12232. "name": "Sebastian Bergmann",
  12233. "email": "sebastian@phpunit.de",
  12234. "role": "lead"
  12235. }
  12236. ],
  12237. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12238. "homepage": "https://github.com/sebastianbergmann/version",
  12239. "support": {
  12240. "issues": "https://github.com/sebastianbergmann/version/issues",
  12241. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12242. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12243. },
  12244. "funding": [
  12245. {
  12246. "url": "https://github.com/sebastianbergmann",
  12247. "type": "github"
  12248. }
  12249. ],
  12250. "time": "2024-10-09T05:16:32+00:00"
  12251. },
  12252. {
  12253. "name": "spatie/backtrace",
  12254. "version": "1.6.3",
  12255. "source": {
  12256. "type": "git",
  12257. "url": "https://github.com/spatie/backtrace.git",
  12258. "reference": "7c18db2bc667ac84e5d7c18e33f16c38ff2d8838"
  12259. },
  12260. "dist": {
  12261. "type": "zip",
  12262. "url": "https://api.github.com/repos/spatie/backtrace/zipball/7c18db2bc667ac84e5d7c18e33f16c38ff2d8838",
  12263. "reference": "7c18db2bc667ac84e5d7c18e33f16c38ff2d8838",
  12264. "shasum": ""
  12265. },
  12266. "require": {
  12267. "php": "^7.3|^8.0"
  12268. },
  12269. "require-dev": {
  12270. "ext-json": "*",
  12271. "laravel/serializable-closure": "^1.3",
  12272. "phpunit/phpunit": "^9.3",
  12273. "spatie/phpunit-snapshot-assertions": "^4.2",
  12274. "symfony/var-dumper": "^5.1"
  12275. },
  12276. "type": "library",
  12277. "autoload": {
  12278. "psr-4": {
  12279. "Spatie\\Backtrace\\": "src"
  12280. }
  12281. },
  12282. "notification-url": "https://packagist.org/downloads/",
  12283. "license": [
  12284. "MIT"
  12285. ],
  12286. "authors": [
  12287. {
  12288. "name": "Freek Van de Herten",
  12289. "email": "freek@spatie.be",
  12290. "homepage": "https://spatie.be",
  12291. "role": "Developer"
  12292. }
  12293. ],
  12294. "description": "A better backtrace",
  12295. "homepage": "https://github.com/spatie/backtrace",
  12296. "keywords": [
  12297. "Backtrace",
  12298. "spatie"
  12299. ],
  12300. "support": {
  12301. "source": "https://github.com/spatie/backtrace/tree/1.6.3"
  12302. },
  12303. "funding": [
  12304. {
  12305. "url": "https://github.com/sponsors/spatie",
  12306. "type": "github"
  12307. },
  12308. {
  12309. "url": "https://spatie.be/open-source/support-us",
  12310. "type": "other"
  12311. }
  12312. ],
  12313. "time": "2024-11-18T14:58:58+00:00"
  12314. },
  12315. {
  12316. "name": "spatie/error-solutions",
  12317. "version": "1.1.1",
  12318. "source": {
  12319. "type": "git",
  12320. "url": "https://github.com/spatie/error-solutions.git",
  12321. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67"
  12322. },
  12323. "dist": {
  12324. "type": "zip",
  12325. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  12326. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  12327. "shasum": ""
  12328. },
  12329. "require": {
  12330. "php": "^8.0"
  12331. },
  12332. "require-dev": {
  12333. "illuminate/broadcasting": "^10.0|^11.0",
  12334. "illuminate/cache": "^10.0|^11.0",
  12335. "illuminate/support": "^10.0|^11.0",
  12336. "livewire/livewire": "^2.11|^3.3.5",
  12337. "openai-php/client": "^0.10.1",
  12338. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  12339. "pestphp/pest": "^2.20",
  12340. "phpstan/phpstan": "^1.11",
  12341. "psr/simple-cache": "^3.0",
  12342. "psr/simple-cache-implementation": "^3.0",
  12343. "spatie/ray": "^1.28",
  12344. "symfony/cache": "^5.4|^6.0|^7.0",
  12345. "symfony/process": "^5.4|^6.0|^7.0",
  12346. "vlucas/phpdotenv": "^5.5"
  12347. },
  12348. "suggest": {
  12349. "openai-php/client": "Require get solutions from OpenAI",
  12350. "simple-cache-implementation": "To cache solutions from OpenAI"
  12351. },
  12352. "type": "library",
  12353. "autoload": {
  12354. "psr-4": {
  12355. "Spatie\\Ignition\\": "legacy/ignition",
  12356. "Spatie\\ErrorSolutions\\": "src",
  12357. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12358. }
  12359. },
  12360. "notification-url": "https://packagist.org/downloads/",
  12361. "license": [
  12362. "MIT"
  12363. ],
  12364. "authors": [
  12365. {
  12366. "name": "Ruben Van Assche",
  12367. "email": "ruben@spatie.be",
  12368. "role": "Developer"
  12369. }
  12370. ],
  12371. "description": "This is my package error-solutions",
  12372. "homepage": "https://github.com/spatie/error-solutions",
  12373. "keywords": [
  12374. "error-solutions",
  12375. "spatie"
  12376. ],
  12377. "support": {
  12378. "issues": "https://github.com/spatie/error-solutions/issues",
  12379. "source": "https://github.com/spatie/error-solutions/tree/1.1.1"
  12380. },
  12381. "funding": [
  12382. {
  12383. "url": "https://github.com/Spatie",
  12384. "type": "github"
  12385. }
  12386. ],
  12387. "time": "2024-07-25T11:06:04+00:00"
  12388. },
  12389. {
  12390. "name": "spatie/flare-client-php",
  12391. "version": "1.8.0",
  12392. "source": {
  12393. "type": "git",
  12394. "url": "https://github.com/spatie/flare-client-php.git",
  12395. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122"
  12396. },
  12397. "dist": {
  12398. "type": "zip",
  12399. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  12400. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  12401. "shasum": ""
  12402. },
  12403. "require": {
  12404. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  12405. "php": "^8.0",
  12406. "spatie/backtrace": "^1.6.1",
  12407. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12408. "symfony/mime": "^5.2|^6.0|^7.0",
  12409. "symfony/process": "^5.2|^6.0|^7.0",
  12410. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12411. },
  12412. "require-dev": {
  12413. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12414. "pestphp/pest": "^1.20|^2.0",
  12415. "phpstan/extension-installer": "^1.1",
  12416. "phpstan/phpstan-deprecation-rules": "^1.0",
  12417. "phpstan/phpstan-phpunit": "^1.0",
  12418. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12419. },
  12420. "type": "library",
  12421. "extra": {
  12422. "branch-alias": {
  12423. "dev-main": "1.3.x-dev"
  12424. }
  12425. },
  12426. "autoload": {
  12427. "files": [
  12428. "src/helpers.php"
  12429. ],
  12430. "psr-4": {
  12431. "Spatie\\FlareClient\\": "src"
  12432. }
  12433. },
  12434. "notification-url": "https://packagist.org/downloads/",
  12435. "license": [
  12436. "MIT"
  12437. ],
  12438. "description": "Send PHP errors to Flare",
  12439. "homepage": "https://github.com/spatie/flare-client-php",
  12440. "keywords": [
  12441. "exception",
  12442. "flare",
  12443. "reporting",
  12444. "spatie"
  12445. ],
  12446. "support": {
  12447. "issues": "https://github.com/spatie/flare-client-php/issues",
  12448. "source": "https://github.com/spatie/flare-client-php/tree/1.8.0"
  12449. },
  12450. "funding": [
  12451. {
  12452. "url": "https://github.com/spatie",
  12453. "type": "github"
  12454. }
  12455. ],
  12456. "time": "2024-08-01T08:27:26+00:00"
  12457. },
  12458. {
  12459. "name": "spatie/ignition",
  12460. "version": "1.15.0",
  12461. "source": {
  12462. "type": "git",
  12463. "url": "https://github.com/spatie/ignition.git",
  12464. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  12465. },
  12466. "dist": {
  12467. "type": "zip",
  12468. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12469. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12470. "shasum": ""
  12471. },
  12472. "require": {
  12473. "ext-json": "*",
  12474. "ext-mbstring": "*",
  12475. "php": "^8.0",
  12476. "spatie/error-solutions": "^1.0",
  12477. "spatie/flare-client-php": "^1.7",
  12478. "symfony/console": "^5.4|^6.0|^7.0",
  12479. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12480. },
  12481. "require-dev": {
  12482. "illuminate/cache": "^9.52|^10.0|^11.0",
  12483. "mockery/mockery": "^1.4",
  12484. "pestphp/pest": "^1.20|^2.0",
  12485. "phpstan/extension-installer": "^1.1",
  12486. "phpstan/phpstan-deprecation-rules": "^1.0",
  12487. "phpstan/phpstan-phpunit": "^1.0",
  12488. "psr/simple-cache-implementation": "*",
  12489. "symfony/cache": "^5.4|^6.0|^7.0",
  12490. "symfony/process": "^5.4|^6.0|^7.0",
  12491. "vlucas/phpdotenv": "^5.5"
  12492. },
  12493. "suggest": {
  12494. "openai-php/client": "Require get solutions from OpenAI",
  12495. "simple-cache-implementation": "To cache solutions from OpenAI"
  12496. },
  12497. "type": "library",
  12498. "extra": {
  12499. "branch-alias": {
  12500. "dev-main": "1.5.x-dev"
  12501. }
  12502. },
  12503. "autoload": {
  12504. "psr-4": {
  12505. "Spatie\\Ignition\\": "src"
  12506. }
  12507. },
  12508. "notification-url": "https://packagist.org/downloads/",
  12509. "license": [
  12510. "MIT"
  12511. ],
  12512. "authors": [
  12513. {
  12514. "name": "Spatie",
  12515. "email": "info@spatie.be",
  12516. "role": "Developer"
  12517. }
  12518. ],
  12519. "description": "A beautiful error page for PHP applications.",
  12520. "homepage": "https://flareapp.io/ignition",
  12521. "keywords": [
  12522. "error",
  12523. "flare",
  12524. "laravel",
  12525. "page"
  12526. ],
  12527. "support": {
  12528. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12529. "forum": "https://twitter.com/flareappio",
  12530. "issues": "https://github.com/spatie/ignition/issues",
  12531. "source": "https://github.com/spatie/ignition"
  12532. },
  12533. "funding": [
  12534. {
  12535. "url": "https://github.com/spatie",
  12536. "type": "github"
  12537. }
  12538. ],
  12539. "time": "2024-06-12T14:55:22+00:00"
  12540. },
  12541. {
  12542. "name": "spatie/laravel-ignition",
  12543. "version": "2.8.0",
  12544. "source": {
  12545. "type": "git",
  12546. "url": "https://github.com/spatie/laravel-ignition.git",
  12547. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c"
  12548. },
  12549. "dist": {
  12550. "type": "zip",
  12551. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c",
  12552. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c",
  12553. "shasum": ""
  12554. },
  12555. "require": {
  12556. "ext-curl": "*",
  12557. "ext-json": "*",
  12558. "ext-mbstring": "*",
  12559. "illuminate/support": "^10.0|^11.0",
  12560. "php": "^8.1",
  12561. "spatie/ignition": "^1.15",
  12562. "symfony/console": "^6.2.3|^7.0",
  12563. "symfony/var-dumper": "^6.2.3|^7.0"
  12564. },
  12565. "require-dev": {
  12566. "livewire/livewire": "^2.11|^3.3.5",
  12567. "mockery/mockery": "^1.5.1",
  12568. "openai-php/client": "^0.8.1",
  12569. "orchestra/testbench": "8.22.3|^9.0",
  12570. "pestphp/pest": "^2.34",
  12571. "phpstan/extension-installer": "^1.3.1",
  12572. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  12573. "phpstan/phpstan-phpunit": "^1.3.16",
  12574. "vlucas/phpdotenv": "^5.5"
  12575. },
  12576. "suggest": {
  12577. "openai-php/client": "Require get solutions from OpenAI",
  12578. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12579. },
  12580. "type": "library",
  12581. "extra": {
  12582. "laravel": {
  12583. "providers": [
  12584. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12585. ],
  12586. "aliases": {
  12587. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12588. }
  12589. }
  12590. },
  12591. "autoload": {
  12592. "files": [
  12593. "src/helpers.php"
  12594. ],
  12595. "psr-4": {
  12596. "Spatie\\LaravelIgnition\\": "src"
  12597. }
  12598. },
  12599. "notification-url": "https://packagist.org/downloads/",
  12600. "license": [
  12601. "MIT"
  12602. ],
  12603. "authors": [
  12604. {
  12605. "name": "Spatie",
  12606. "email": "info@spatie.be",
  12607. "role": "Developer"
  12608. }
  12609. ],
  12610. "description": "A beautiful error page for Laravel applications.",
  12611. "homepage": "https://flareapp.io/ignition",
  12612. "keywords": [
  12613. "error",
  12614. "flare",
  12615. "laravel",
  12616. "page"
  12617. ],
  12618. "support": {
  12619. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12620. "forum": "https://twitter.com/flareappio",
  12621. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12622. "source": "https://github.com/spatie/laravel-ignition"
  12623. },
  12624. "funding": [
  12625. {
  12626. "url": "https://github.com/spatie",
  12627. "type": "github"
  12628. }
  12629. ],
  12630. "time": "2024-06-12T15:01:18+00:00"
  12631. },
  12632. {
  12633. "name": "spatie/laravel-ray",
  12634. "version": "1.37.1",
  12635. "source": {
  12636. "type": "git",
  12637. "url": "https://github.com/spatie/laravel-ray.git",
  12638. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9"
  12639. },
  12640. "dist": {
  12641. "type": "zip",
  12642. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  12643. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  12644. "shasum": ""
  12645. },
  12646. "require": {
  12647. "ext-json": "*",
  12648. "illuminate/contracts": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12649. "illuminate/database": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12650. "illuminate/queue": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12651. "illuminate/support": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12652. "php": "^7.4|^8.0",
  12653. "rector/rector": "^0.19.2|^1.0",
  12654. "spatie/backtrace": "^1.0",
  12655. "spatie/ray": "^1.41.1",
  12656. "symfony/stopwatch": "4.2|^5.1|^6.0|^7.0",
  12657. "zbateson/mail-mime-parser": "^1.3.1|^2.0|^3.0"
  12658. },
  12659. "require-dev": {
  12660. "guzzlehttp/guzzle": "^7.3",
  12661. "laravel/framework": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12662. "orchestra/testbench-core": "^5.0|^6.0|^7.0|^8.0|^9.0",
  12663. "pestphp/pest": "^1.22|^2.0",
  12664. "phpstan/phpstan": "^1.10.57",
  12665. "phpunit/phpunit": "^9.3|^10.1",
  12666. "spatie/pest-plugin-snapshots": "^1.1|^2.0",
  12667. "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3"
  12668. },
  12669. "type": "library",
  12670. "extra": {
  12671. "branch-alias": {
  12672. "dev-main": "1.x-dev"
  12673. },
  12674. "laravel": {
  12675. "providers": [
  12676. "Spatie\\LaravelRay\\RayServiceProvider"
  12677. ]
  12678. }
  12679. },
  12680. "autoload": {
  12681. "psr-4": {
  12682. "Spatie\\LaravelRay\\": "src"
  12683. }
  12684. },
  12685. "notification-url": "https://packagist.org/downloads/",
  12686. "license": [
  12687. "MIT"
  12688. ],
  12689. "authors": [
  12690. {
  12691. "name": "Freek Van der Herten",
  12692. "email": "freek@spatie.be",
  12693. "homepage": "https://spatie.be",
  12694. "role": "Developer"
  12695. }
  12696. ],
  12697. "description": "Easily debug Laravel apps",
  12698. "homepage": "https://github.com/spatie/laravel-ray",
  12699. "keywords": [
  12700. "laravel-ray",
  12701. "spatie"
  12702. ],
  12703. "support": {
  12704. "issues": "https://github.com/spatie/laravel-ray/issues",
  12705. "source": "https://github.com/spatie/laravel-ray/tree/1.37.1"
  12706. },
  12707. "funding": [
  12708. {
  12709. "url": "https://github.com/sponsors/spatie",
  12710. "type": "github"
  12711. },
  12712. {
  12713. "url": "https://spatie.be/open-source/support-us",
  12714. "type": "other"
  12715. }
  12716. ],
  12717. "time": "2024-07-12T12:35:17+00:00"
  12718. },
  12719. {
  12720. "name": "spatie/macroable",
  12721. "version": "2.0.0",
  12722. "source": {
  12723. "type": "git",
  12724. "url": "https://github.com/spatie/macroable.git",
  12725. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12726. },
  12727. "dist": {
  12728. "type": "zip",
  12729. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12730. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12731. "shasum": ""
  12732. },
  12733. "require": {
  12734. "php": "^8.0"
  12735. },
  12736. "require-dev": {
  12737. "phpunit/phpunit": "^8.0|^9.3"
  12738. },
  12739. "type": "library",
  12740. "autoload": {
  12741. "psr-4": {
  12742. "Spatie\\Macroable\\": "src"
  12743. }
  12744. },
  12745. "notification-url": "https://packagist.org/downloads/",
  12746. "license": [
  12747. "MIT"
  12748. ],
  12749. "authors": [
  12750. {
  12751. "name": "Freek Van der Herten",
  12752. "email": "freek@spatie.be",
  12753. "homepage": "https://spatie.be",
  12754. "role": "Developer"
  12755. }
  12756. ],
  12757. "description": "A trait to dynamically add methods to a class",
  12758. "homepage": "https://github.com/spatie/macroable",
  12759. "keywords": [
  12760. "macroable",
  12761. "spatie"
  12762. ],
  12763. "support": {
  12764. "issues": "https://github.com/spatie/macroable/issues",
  12765. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12766. },
  12767. "time": "2021-03-26T22:39:02+00:00"
  12768. },
  12769. {
  12770. "name": "spatie/ray",
  12771. "version": "1.41.2",
  12772. "source": {
  12773. "type": "git",
  12774. "url": "https://github.com/spatie/ray.git",
  12775. "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc"
  12776. },
  12777. "dist": {
  12778. "type": "zip",
  12779. "url": "https://api.github.com/repos/spatie/ray/zipball/c44f8cfbf82c69909b505de61d8d3f2d324e93fc",
  12780. "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc",
  12781. "shasum": ""
  12782. },
  12783. "require": {
  12784. "ext-curl": "*",
  12785. "ext-json": "*",
  12786. "php": "^7.3|^8.0",
  12787. "ramsey/uuid": "^3.0|^4.1",
  12788. "spatie/backtrace": "^1.1",
  12789. "spatie/macroable": "^1.0|^2.0",
  12790. "symfony/stopwatch": "^4.0|^5.1|^6.0|^7.0",
  12791. "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3"
  12792. },
  12793. "require-dev": {
  12794. "illuminate/support": "6.x|^8.18|^9.0",
  12795. "nesbot/carbon": "^2.63",
  12796. "pestphp/pest": "^1.22",
  12797. "phpstan/phpstan": "^1.10",
  12798. "phpunit/phpunit": "^9.5",
  12799. "rector/rector": "^0.19.2",
  12800. "spatie/phpunit-snapshot-assertions": "^4.2",
  12801. "spatie/test-time": "^1.2"
  12802. },
  12803. "bin": [
  12804. "bin/remove-ray.sh"
  12805. ],
  12806. "type": "library",
  12807. "extra": {
  12808. "branch-alias": {
  12809. "dev-main": "1.x-dev"
  12810. }
  12811. },
  12812. "autoload": {
  12813. "files": [
  12814. "src/helpers.php"
  12815. ],
  12816. "psr-4": {
  12817. "Spatie\\Ray\\": "src"
  12818. }
  12819. },
  12820. "notification-url": "https://packagist.org/downloads/",
  12821. "license": [
  12822. "MIT"
  12823. ],
  12824. "authors": [
  12825. {
  12826. "name": "Freek Van der Herten",
  12827. "email": "freek@spatie.be",
  12828. "homepage": "https://spatie.be",
  12829. "role": "Developer"
  12830. }
  12831. ],
  12832. "description": "Debug with Ray to fix problems faster",
  12833. "homepage": "https://github.com/spatie/ray",
  12834. "keywords": [
  12835. "ray",
  12836. "spatie"
  12837. ],
  12838. "support": {
  12839. "issues": "https://github.com/spatie/ray/issues",
  12840. "source": "https://github.com/spatie/ray/tree/1.41.2"
  12841. },
  12842. "funding": [
  12843. {
  12844. "url": "https://github.com/sponsors/spatie",
  12845. "type": "github"
  12846. },
  12847. {
  12848. "url": "https://spatie.be/open-source/support-us",
  12849. "type": "other"
  12850. }
  12851. ],
  12852. "time": "2024-04-24T14:21:46+00:00"
  12853. },
  12854. {
  12855. "name": "symfony/polyfill-iconv",
  12856. "version": "v1.31.0",
  12857. "source": {
  12858. "type": "git",
  12859. "url": "https://github.com/symfony/polyfill-iconv.git",
  12860. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  12861. },
  12862. "dist": {
  12863. "type": "zip",
  12864. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  12865. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  12866. "shasum": ""
  12867. },
  12868. "require": {
  12869. "php": ">=7.2"
  12870. },
  12871. "provide": {
  12872. "ext-iconv": "*"
  12873. },
  12874. "suggest": {
  12875. "ext-iconv": "For best performance"
  12876. },
  12877. "type": "library",
  12878. "extra": {
  12879. "thanks": {
  12880. "name": "symfony/polyfill",
  12881. "url": "https://github.com/symfony/polyfill"
  12882. }
  12883. },
  12884. "autoload": {
  12885. "files": [
  12886. "bootstrap.php"
  12887. ],
  12888. "psr-4": {
  12889. "Symfony\\Polyfill\\Iconv\\": ""
  12890. }
  12891. },
  12892. "notification-url": "https://packagist.org/downloads/",
  12893. "license": [
  12894. "MIT"
  12895. ],
  12896. "authors": [
  12897. {
  12898. "name": "Nicolas Grekas",
  12899. "email": "p@tchwork.com"
  12900. },
  12901. {
  12902. "name": "Symfony Community",
  12903. "homepage": "https://symfony.com/contributors"
  12904. }
  12905. ],
  12906. "description": "Symfony polyfill for the Iconv extension",
  12907. "homepage": "https://symfony.com",
  12908. "keywords": [
  12909. "compatibility",
  12910. "iconv",
  12911. "polyfill",
  12912. "portable",
  12913. "shim"
  12914. ],
  12915. "support": {
  12916. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  12917. },
  12918. "funding": [
  12919. {
  12920. "url": "https://symfony.com/sponsor",
  12921. "type": "custom"
  12922. },
  12923. {
  12924. "url": "https://github.com/fabpot",
  12925. "type": "github"
  12926. },
  12927. {
  12928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12929. "type": "tidelift"
  12930. }
  12931. ],
  12932. "time": "2024-09-09T11:45:10+00:00"
  12933. },
  12934. {
  12935. "name": "symfony/stopwatch",
  12936. "version": "v7.1.6",
  12937. "source": {
  12938. "type": "git",
  12939. "url": "https://github.com/symfony/stopwatch.git",
  12940. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05"
  12941. },
  12942. "dist": {
  12943. "type": "zip",
  12944. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  12945. "reference": "8b4a434e6e7faf6adedffb48783a5c75409a1a05",
  12946. "shasum": ""
  12947. },
  12948. "require": {
  12949. "php": ">=8.2",
  12950. "symfony/service-contracts": "^2.5|^3"
  12951. },
  12952. "type": "library",
  12953. "autoload": {
  12954. "psr-4": {
  12955. "Symfony\\Component\\Stopwatch\\": ""
  12956. },
  12957. "exclude-from-classmap": [
  12958. "/Tests/"
  12959. ]
  12960. },
  12961. "notification-url": "https://packagist.org/downloads/",
  12962. "license": [
  12963. "MIT"
  12964. ],
  12965. "authors": [
  12966. {
  12967. "name": "Fabien Potencier",
  12968. "email": "fabien@symfony.com"
  12969. },
  12970. {
  12971. "name": "Symfony Community",
  12972. "homepage": "https://symfony.com/contributors"
  12973. }
  12974. ],
  12975. "description": "Provides a way to profile code",
  12976. "homepage": "https://symfony.com",
  12977. "support": {
  12978. "source": "https://github.com/symfony/stopwatch/tree/v7.1.6"
  12979. },
  12980. "funding": [
  12981. {
  12982. "url": "https://symfony.com/sponsor",
  12983. "type": "custom"
  12984. },
  12985. {
  12986. "url": "https://github.com/fabpot",
  12987. "type": "github"
  12988. },
  12989. {
  12990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12991. "type": "tidelift"
  12992. }
  12993. ],
  12994. "time": "2024-09-25T14:20:29+00:00"
  12995. },
  12996. {
  12997. "name": "symfony/yaml",
  12998. "version": "v7.1.6",
  12999. "source": {
  13000. "type": "git",
  13001. "url": "https://github.com/symfony/yaml.git",
  13002. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671"
  13003. },
  13004. "dist": {
  13005. "type": "zip",
  13006. "url": "https://api.github.com/repos/symfony/yaml/zipball/3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  13007. "reference": "3ced3f29e4f0d6bce2170ff26719f1fe9aacc671",
  13008. "shasum": ""
  13009. },
  13010. "require": {
  13011. "php": ">=8.2",
  13012. "symfony/polyfill-ctype": "^1.8"
  13013. },
  13014. "conflict": {
  13015. "symfony/console": "<6.4"
  13016. },
  13017. "require-dev": {
  13018. "symfony/console": "^6.4|^7.0"
  13019. },
  13020. "bin": [
  13021. "Resources/bin/yaml-lint"
  13022. ],
  13023. "type": "library",
  13024. "autoload": {
  13025. "psr-4": {
  13026. "Symfony\\Component\\Yaml\\": ""
  13027. },
  13028. "exclude-from-classmap": [
  13029. "/Tests/"
  13030. ]
  13031. },
  13032. "notification-url": "https://packagist.org/downloads/",
  13033. "license": [
  13034. "MIT"
  13035. ],
  13036. "authors": [
  13037. {
  13038. "name": "Fabien Potencier",
  13039. "email": "fabien@symfony.com"
  13040. },
  13041. {
  13042. "name": "Symfony Community",
  13043. "homepage": "https://symfony.com/contributors"
  13044. }
  13045. ],
  13046. "description": "Loads and dumps YAML files",
  13047. "homepage": "https://symfony.com",
  13048. "support": {
  13049. "source": "https://github.com/symfony/yaml/tree/v7.1.6"
  13050. },
  13051. "funding": [
  13052. {
  13053. "url": "https://symfony.com/sponsor",
  13054. "type": "custom"
  13055. },
  13056. {
  13057. "url": "https://github.com/fabpot",
  13058. "type": "github"
  13059. },
  13060. {
  13061. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13062. "type": "tidelift"
  13063. }
  13064. ],
  13065. "time": "2024-09-25T14:20:29+00:00"
  13066. },
  13067. {
  13068. "name": "ta-tikoma/phpunit-architecture-test",
  13069. "version": "0.8.4",
  13070. "source": {
  13071. "type": "git",
  13072. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13073. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13074. },
  13075. "dist": {
  13076. "type": "zip",
  13077. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13078. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13079. "shasum": ""
  13080. },
  13081. "require": {
  13082. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13083. "php": "^8.1.0",
  13084. "phpdocumentor/reflection-docblock": "^5.3.0",
  13085. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13086. "symfony/finder": "^6.4.0 || ^7.0.0"
  13087. },
  13088. "require-dev": {
  13089. "laravel/pint": "^1.13.7",
  13090. "phpstan/phpstan": "^1.10.52"
  13091. },
  13092. "type": "library",
  13093. "autoload": {
  13094. "psr-4": {
  13095. "PHPUnit\\Architecture\\": "src/"
  13096. }
  13097. },
  13098. "notification-url": "https://packagist.org/downloads/",
  13099. "license": [
  13100. "MIT"
  13101. ],
  13102. "authors": [
  13103. {
  13104. "name": "Ni Shi",
  13105. "email": "futik0ma011@gmail.com"
  13106. },
  13107. {
  13108. "name": "Nuno Maduro",
  13109. "email": "enunomaduro@gmail.com"
  13110. }
  13111. ],
  13112. "description": "Methods for testing application architecture",
  13113. "keywords": [
  13114. "architecture",
  13115. "phpunit",
  13116. "stucture",
  13117. "test",
  13118. "testing"
  13119. ],
  13120. "support": {
  13121. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13122. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13123. },
  13124. "time": "2024-01-05T14:10:56+00:00"
  13125. },
  13126. {
  13127. "name": "theseer/tokenizer",
  13128. "version": "1.2.3",
  13129. "source": {
  13130. "type": "git",
  13131. "url": "https://github.com/theseer/tokenizer.git",
  13132. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13133. },
  13134. "dist": {
  13135. "type": "zip",
  13136. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13137. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13138. "shasum": ""
  13139. },
  13140. "require": {
  13141. "ext-dom": "*",
  13142. "ext-tokenizer": "*",
  13143. "ext-xmlwriter": "*",
  13144. "php": "^7.2 || ^8.0"
  13145. },
  13146. "type": "library",
  13147. "autoload": {
  13148. "classmap": [
  13149. "src/"
  13150. ]
  13151. },
  13152. "notification-url": "https://packagist.org/downloads/",
  13153. "license": [
  13154. "BSD-3-Clause"
  13155. ],
  13156. "authors": [
  13157. {
  13158. "name": "Arne Blankerts",
  13159. "email": "arne@blankerts.de",
  13160. "role": "Developer"
  13161. }
  13162. ],
  13163. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13164. "support": {
  13165. "issues": "https://github.com/theseer/tokenizer/issues",
  13166. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13167. },
  13168. "funding": [
  13169. {
  13170. "url": "https://github.com/theseer",
  13171. "type": "github"
  13172. }
  13173. ],
  13174. "time": "2024-03-03T12:36:25+00:00"
  13175. },
  13176. {
  13177. "name": "zbateson/mail-mime-parser",
  13178. "version": "2.4.1",
  13179. "source": {
  13180. "type": "git",
  13181. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13182. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c"
  13183. },
  13184. "dist": {
  13185. "type": "zip",
  13186. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13187. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13188. "shasum": ""
  13189. },
  13190. "require": {
  13191. "guzzlehttp/psr7": "^1.7.0|^2.0",
  13192. "php": ">=7.1",
  13193. "pimple/pimple": "^3.0",
  13194. "zbateson/mb-wrapper": "^1.0.1",
  13195. "zbateson/stream-decorators": "^1.0.6"
  13196. },
  13197. "require-dev": {
  13198. "friendsofphp/php-cs-fixer": "*",
  13199. "mikey179/vfsstream": "^1.6.0",
  13200. "phpstan/phpstan": "*",
  13201. "phpunit/phpunit": "<10"
  13202. },
  13203. "suggest": {
  13204. "ext-iconv": "For best support/performance",
  13205. "ext-mbstring": "For best support/performance"
  13206. },
  13207. "type": "library",
  13208. "autoload": {
  13209. "psr-4": {
  13210. "ZBateson\\MailMimeParser\\": "src/"
  13211. }
  13212. },
  13213. "notification-url": "https://packagist.org/downloads/",
  13214. "license": [
  13215. "BSD-2-Clause"
  13216. ],
  13217. "authors": [
  13218. {
  13219. "name": "Zaahid Bateson"
  13220. },
  13221. {
  13222. "name": "Contributors",
  13223. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13224. }
  13225. ],
  13226. "description": "MIME email message parser",
  13227. "homepage": "https://mail-mime-parser.org",
  13228. "keywords": [
  13229. "MimeMailParser",
  13230. "email",
  13231. "mail",
  13232. "mailparse",
  13233. "mime",
  13234. "mimeparse",
  13235. "parser",
  13236. "php-imap"
  13237. ],
  13238. "support": {
  13239. "docs": "https://mail-mime-parser.org/#usage-guide",
  13240. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13241. "source": "https://github.com/zbateson/mail-mime-parser"
  13242. },
  13243. "funding": [
  13244. {
  13245. "url": "https://github.com/zbateson",
  13246. "type": "github"
  13247. }
  13248. ],
  13249. "time": "2024-04-28T00:58:54+00:00"
  13250. },
  13251. {
  13252. "name": "zbateson/mb-wrapper",
  13253. "version": "1.2.1",
  13254. "source": {
  13255. "type": "git",
  13256. "url": "https://github.com/zbateson/mb-wrapper.git",
  13257. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f"
  13258. },
  13259. "dist": {
  13260. "type": "zip",
  13261. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13262. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13263. "shasum": ""
  13264. },
  13265. "require": {
  13266. "php": ">=7.1",
  13267. "symfony/polyfill-iconv": "^1.9",
  13268. "symfony/polyfill-mbstring": "^1.9"
  13269. },
  13270. "require-dev": {
  13271. "friendsofphp/php-cs-fixer": "*",
  13272. "phpstan/phpstan": "*",
  13273. "phpunit/phpunit": "<10.0"
  13274. },
  13275. "suggest": {
  13276. "ext-iconv": "For best support/performance",
  13277. "ext-mbstring": "For best support/performance"
  13278. },
  13279. "type": "library",
  13280. "autoload": {
  13281. "psr-4": {
  13282. "ZBateson\\MbWrapper\\": "src/"
  13283. }
  13284. },
  13285. "notification-url": "https://packagist.org/downloads/",
  13286. "license": [
  13287. "BSD-2-Clause"
  13288. ],
  13289. "authors": [
  13290. {
  13291. "name": "Zaahid Bateson"
  13292. }
  13293. ],
  13294. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13295. "keywords": [
  13296. "charset",
  13297. "encoding",
  13298. "http",
  13299. "iconv",
  13300. "mail",
  13301. "mb",
  13302. "mb_convert_encoding",
  13303. "mbstring",
  13304. "mime",
  13305. "multibyte",
  13306. "string"
  13307. ],
  13308. "support": {
  13309. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13310. "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.1"
  13311. },
  13312. "funding": [
  13313. {
  13314. "url": "https://github.com/zbateson",
  13315. "type": "github"
  13316. }
  13317. ],
  13318. "time": "2024-03-18T04:31:04+00:00"
  13319. },
  13320. {
  13321. "name": "zbateson/stream-decorators",
  13322. "version": "1.2.1",
  13323. "source": {
  13324. "type": "git",
  13325. "url": "https://github.com/zbateson/stream-decorators.git",
  13326. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9"
  13327. },
  13328. "dist": {
  13329. "type": "zip",
  13330. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/783b034024fda8eafa19675fb2552f8654d3a3e9",
  13331. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9",
  13332. "shasum": ""
  13333. },
  13334. "require": {
  13335. "guzzlehttp/psr7": "^1.9 | ^2.0",
  13336. "php": ">=7.2",
  13337. "zbateson/mb-wrapper": "^1.0.0"
  13338. },
  13339. "require-dev": {
  13340. "friendsofphp/php-cs-fixer": "*",
  13341. "phpstan/phpstan": "*",
  13342. "phpunit/phpunit": "<10.0"
  13343. },
  13344. "type": "library",
  13345. "autoload": {
  13346. "psr-4": {
  13347. "ZBateson\\StreamDecorators\\": "src/"
  13348. }
  13349. },
  13350. "notification-url": "https://packagist.org/downloads/",
  13351. "license": [
  13352. "BSD-2-Clause"
  13353. ],
  13354. "authors": [
  13355. {
  13356. "name": "Zaahid Bateson"
  13357. }
  13358. ],
  13359. "description": "PHP psr7 stream decorators for mime message part streams",
  13360. "keywords": [
  13361. "base64",
  13362. "charset",
  13363. "decorators",
  13364. "mail",
  13365. "mime",
  13366. "psr7",
  13367. "quoted-printable",
  13368. "stream",
  13369. "uuencode"
  13370. ],
  13371. "support": {
  13372. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13373. "source": "https://github.com/zbateson/stream-decorators/tree/1.2.1"
  13374. },
  13375. "funding": [
  13376. {
  13377. "url": "https://github.com/zbateson",
  13378. "type": "github"
  13379. }
  13380. ],
  13381. "time": "2023-05-30T22:51:52+00:00"
  13382. }
  13383. ],
  13384. "aliases": [],
  13385. "minimum-stability": "stable",
  13386. "stability-flags": [],
  13387. "prefer-stable": true,
  13388. "prefer-lowest": false,
  13389. "platform": {
  13390. "php": "^8.2",
  13391. "ext-bcmath": "*",
  13392. "ext-intl": "*"
  13393. },
  13394. "platform-dev": [],
  13395. "plugin-api-version": "2.6.0"
  13396. }