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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571
  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": "e020649d2f98dbf69606fac31a762af8",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.2.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "6cc8abb912286c671de5993ffbcd3225588aeace"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/6cc8abb912286c671de5993ffbcd3225588aeace",
  20. "reference": "6cc8abb912286c671de5993ffbcd3225588aeace",
  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.1"
  75. },
  76. "time": "2024-07-23T15:01:26+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v4.0.5",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "0776c78780cd11d7165a316a692b82947e0cf96f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/0776c78780cd11d7165a316a692b82947e0cf96f",
  89. "reference": "0776c78780cd11d7165a316a692b82947e0cf96f",
  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.5"
  154. },
  155. "time": "2024-07-28T04:42:23+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.24",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "77e3fc7da44fa96b6148a1613dd76fe954a5f279"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/77e3fc7da44fa96b6148a1613dd76fe954a5f279",
  314. "reference": "77e3fc7da44fa96b6148a1613dd76fe954a5f279",
  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.24"
  366. },
  367. "time": "2024-09-08T15:57:08+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.0.5",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "5140e21290a99dea460cec85f1ef015aedbbcf57"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/5140e21290a99dea460cec85f1ef015aedbbcf57",
  380. "reference": "5140e21290a99dea460cec85f1ef015aedbbcf57",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "filament/forms": "^3.1",
  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.0.5"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2024-07-18T16:02:26+00:00"
  443. },
  444. {
  445. "name": "aws/aws-crt-php",
  446. "version": "v1.2.6",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/awslabs/aws-crt-php.git",
  450. "reference": "a63485b65b6b3367039306496d49737cf1995408"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408",
  455. "reference": "a63485b65b6b3367039306496d49737cf1995408",
  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.6"
  495. },
  496. "time": "2024-06-13T17:21:28+00:00"
  497. },
  498. {
  499. "name": "aws/aws-sdk-php",
  500. "version": "3.321.8",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "df456658bdc2ad84a00cf35a7b5af874fdcc7a53"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/df456658bdc2ad84a00cf35a7b5af874fdcc7a53",
  509. "reference": "df456658bdc2ad84a00cf35a7b5af874fdcc7a53",
  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",
  539. "psr/simple-cache": "^1.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.321.8"
  593. },
  594. "time": "2024-09-10T18:18:03+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": "bezhansalleh/filament-panel-switch",
  753. "version": "1.0.6",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/bezhanSalleh/filament-panel-switch.git",
  757. "reference": "91f9b2a7149bcc2564d68e3decb5771287105620"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/bezhanSalleh/filament-panel-switch/zipball/91f9b2a7149bcc2564d68e3decb5771287105620",
  762. "reference": "91f9b2a7149bcc2564d68e3decb5771287105620",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "filament/filament": "^3.0",
  767. "php": "^8.1",
  768. "spatie/laravel-package-tools": "^1.15.0"
  769. },
  770. "require-dev": {
  771. "laravel/pint": "^1.0",
  772. "nunomaduro/collision": "^7.9",
  773. "orchestra/testbench": "^8.0",
  774. "pestphp/pest": "^2.0",
  775. "pestphp/pest-plugin-arch": "^2.0",
  776. "pestphp/pest-plugin-laravel": "^2.0",
  777. "spatie/laravel-ray": "^1.26"
  778. },
  779. "type": "library",
  780. "extra": {
  781. "laravel": {
  782. "providers": [
  783. "BezhanSalleh\\PanelSwitch\\PanelSwitchServiceProvider"
  784. ],
  785. "aliases": {
  786. "PanelSwitch": "BezhanSalleh\\PanelSwitch\\Facades\\PanelSwitch"
  787. }
  788. }
  789. },
  790. "autoload": {
  791. "psr-4": {
  792. "BezhanSalleh\\PanelSwitch\\": "src/",
  793. "BezhanSalleh\\PanelSwitch\\Database\\Factories\\": "database/factories/"
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Bezhan Salleh",
  803. "email": "bezhan_salleh@yahoo.com",
  804. "role": "Developer"
  805. }
  806. ],
  807. "description": "Easily Switch between your Filament Panels",
  808. "homepage": "https://github.com/bezhansalleh/filament-panel-switch",
  809. "keywords": [
  810. "bezhanSalleh",
  811. "filament",
  812. "filament-panel-switch",
  813. "panel-changer",
  814. "panel-navigation",
  815. "panel-switch"
  816. ],
  817. "support": {
  818. "issues": "https://github.com/bezhansalleh/filament-panel-switch/issues",
  819. "source": "https://github.com/bezhansalleh/filament-panel-switch"
  820. },
  821. "funding": [
  822. {
  823. "url": "https://github.com/bezhanSalleh",
  824. "type": "github"
  825. }
  826. ],
  827. "time": "2024-08-07T23:51:12+00:00"
  828. },
  829. {
  830. "name": "blade-ui-kit/blade-heroicons",
  831. "version": "2.4.0",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  835. "reference": "a7c377a4ef88cd54712e3e15cbed30446820da0b"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a7c377a4ef88cd54712e3e15cbed30446820da0b",
  840. "reference": "a7c377a4ef88cd54712e3e15cbed30446820da0b",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "blade-ui-kit/blade-icons": "^1.6",
  845. "illuminate/support": "^9.0|^10.0|^11.0",
  846. "php": "^8.0"
  847. },
  848. "require-dev": {
  849. "orchestra/testbench": "^7.0|^8.0|^9.0",
  850. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "laravel": {
  855. "providers": [
  856. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  857. ]
  858. }
  859. },
  860. "autoload": {
  861. "psr-4": {
  862. "BladeUI\\Heroicons\\": "src"
  863. }
  864. },
  865. "notification-url": "https://packagist.org/downloads/",
  866. "license": [
  867. "MIT"
  868. ],
  869. "authors": [
  870. {
  871. "name": "Dries Vints",
  872. "homepage": "https://driesvints.com"
  873. }
  874. ],
  875. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  876. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  877. "keywords": [
  878. "Heroicons",
  879. "blade",
  880. "laravel"
  881. ],
  882. "support": {
  883. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  884. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.4.0"
  885. },
  886. "funding": [
  887. {
  888. "url": "https://github.com/sponsors/driesvints",
  889. "type": "github"
  890. },
  891. {
  892. "url": "https://www.paypal.com/paypalme/driesvints",
  893. "type": "paypal"
  894. }
  895. ],
  896. "time": "2024-07-16T07:00:01+00:00"
  897. },
  898. {
  899. "name": "blade-ui-kit/blade-icons",
  900. "version": "1.7.1",
  901. "source": {
  902. "type": "git",
  903. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  904. "reference": "8f787baf09d88cdfd6ec4dbaba11ebfa885f0595"
  905. },
  906. "dist": {
  907. "type": "zip",
  908. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/8f787baf09d88cdfd6ec4dbaba11ebfa885f0595",
  909. "reference": "8f787baf09d88cdfd6ec4dbaba11ebfa885f0595",
  910. "shasum": ""
  911. },
  912. "require": {
  913. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  914. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  915. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  916. "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
  917. "php": "^7.4|^8.0",
  918. "symfony/console": "^5.3|^6.0|^7.0",
  919. "symfony/finder": "^5.3|^6.0|^7.0"
  920. },
  921. "require-dev": {
  922. "mockery/mockery": "^1.5.1",
  923. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  924. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  925. },
  926. "bin": [
  927. "bin/blade-icons-generate"
  928. ],
  929. "type": "library",
  930. "extra": {
  931. "laravel": {
  932. "providers": [
  933. "BladeUI\\Icons\\BladeIconsServiceProvider"
  934. ]
  935. }
  936. },
  937. "autoload": {
  938. "files": [
  939. "src/helpers.php"
  940. ],
  941. "psr-4": {
  942. "BladeUI\\Icons\\": "src"
  943. }
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Dries Vints",
  952. "homepage": "https://driesvints.com"
  953. }
  954. ],
  955. "description": "A package to easily make use of icons in your Laravel Blade views.",
  956. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  957. "keywords": [
  958. "blade",
  959. "icons",
  960. "laravel",
  961. "svg"
  962. ],
  963. "support": {
  964. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  965. "source": "https://github.com/blade-ui-kit/blade-icons"
  966. },
  967. "funding": [
  968. {
  969. "url": "https://github.com/sponsors/driesvints",
  970. "type": "github"
  971. },
  972. {
  973. "url": "https://www.paypal.com/paypalme/driesvints",
  974. "type": "paypal"
  975. }
  976. ],
  977. "time": "2024-08-14T14:25:11+00:00"
  978. },
  979. {
  980. "name": "brick/math",
  981. "version": "0.12.1",
  982. "source": {
  983. "type": "git",
  984. "url": "https://github.com/brick/math.git",
  985. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  986. },
  987. "dist": {
  988. "type": "zip",
  989. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  990. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  991. "shasum": ""
  992. },
  993. "require": {
  994. "php": "^8.1"
  995. },
  996. "require-dev": {
  997. "php-coveralls/php-coveralls": "^2.2",
  998. "phpunit/phpunit": "^10.1",
  999. "vimeo/psalm": "5.16.0"
  1000. },
  1001. "type": "library",
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Brick\\Math\\": "src/"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "description": "Arbitrary-precision arithmetic library",
  1012. "keywords": [
  1013. "Arbitrary-precision",
  1014. "BigInteger",
  1015. "BigRational",
  1016. "arithmetic",
  1017. "bigdecimal",
  1018. "bignum",
  1019. "bignumber",
  1020. "brick",
  1021. "decimal",
  1022. "integer",
  1023. "math",
  1024. "mathematics",
  1025. "rational"
  1026. ],
  1027. "support": {
  1028. "issues": "https://github.com/brick/math/issues",
  1029. "source": "https://github.com/brick/math/tree/0.12.1"
  1030. },
  1031. "funding": [
  1032. {
  1033. "url": "https://github.com/BenMorel",
  1034. "type": "github"
  1035. }
  1036. ],
  1037. "time": "2023-11-29T23:19:16+00:00"
  1038. },
  1039. {
  1040. "name": "carbonphp/carbon-doctrine-types",
  1041. "version": "3.2.0",
  1042. "source": {
  1043. "type": "git",
  1044. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1045. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  1046. },
  1047. "dist": {
  1048. "type": "zip",
  1049. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1050. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  1051. "shasum": ""
  1052. },
  1053. "require": {
  1054. "php": "^8.1"
  1055. },
  1056. "conflict": {
  1057. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  1058. },
  1059. "require-dev": {
  1060. "doctrine/dbal": "^4.0.0",
  1061. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1062. "phpunit/phpunit": "^10.3"
  1063. },
  1064. "type": "library",
  1065. "autoload": {
  1066. "psr-4": {
  1067. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "authors": [
  1075. {
  1076. "name": "KyleKatarn",
  1077. "email": "kylekatarnls@gmail.com"
  1078. }
  1079. ],
  1080. "description": "Types to use Carbon in Doctrine",
  1081. "keywords": [
  1082. "carbon",
  1083. "date",
  1084. "datetime",
  1085. "doctrine",
  1086. "time"
  1087. ],
  1088. "support": {
  1089. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1090. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1091. },
  1092. "funding": [
  1093. {
  1094. "url": "https://github.com/kylekatarnls",
  1095. "type": "github"
  1096. },
  1097. {
  1098. "url": "https://opencollective.com/Carbon",
  1099. "type": "open_collective"
  1100. },
  1101. {
  1102. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1103. "type": "tidelift"
  1104. }
  1105. ],
  1106. "time": "2024-02-09T16:56:22+00:00"
  1107. },
  1108. {
  1109. "name": "danharrin/date-format-converter",
  1110. "version": "v0.3.1",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/danharrin/date-format-converter.git",
  1114. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1119. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "php": "^7.2|^8.0"
  1124. },
  1125. "type": "library",
  1126. "autoload": {
  1127. "files": [
  1128. "src/helpers.php",
  1129. "src/standards.php"
  1130. ],
  1131. "psr-4": {
  1132. "DanHarrin\\DateFormatConverter\\": "src/"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Dan Harrin",
  1142. "email": "dan@danharrin.com"
  1143. }
  1144. ],
  1145. "description": "Convert token-based date formats between standards.",
  1146. "homepage": "https://github.com/danharrin/date-format-converter",
  1147. "support": {
  1148. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1149. "source": "https://github.com/danharrin/date-format-converter"
  1150. },
  1151. "funding": [
  1152. {
  1153. "url": "https://github.com/danharrin",
  1154. "type": "github"
  1155. }
  1156. ],
  1157. "time": "2024-06-13T09:38:44+00:00"
  1158. },
  1159. {
  1160. "name": "danharrin/livewire-rate-limiting",
  1161. "version": "v1.3.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1165. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1170. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "illuminate/support": "^9.0|^10.0|^11.0",
  1175. "php": "^8.0"
  1176. },
  1177. "require-dev": {
  1178. "livewire/livewire": "^3.0",
  1179. "livewire/volt": "^1.3",
  1180. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1181. "phpunit/phpunit": "^9.0|^10.0"
  1182. },
  1183. "type": "library",
  1184. "autoload": {
  1185. "psr-4": {
  1186. "DanHarrin\\LivewireRateLimiting\\": "src"
  1187. }
  1188. },
  1189. "notification-url": "https://packagist.org/downloads/",
  1190. "license": [
  1191. "MIT"
  1192. ],
  1193. "authors": [
  1194. {
  1195. "name": "Dan Harrin",
  1196. "email": "dan@danharrin.com"
  1197. }
  1198. ],
  1199. "description": "Apply rate limiters to Laravel Livewire actions.",
  1200. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1201. "support": {
  1202. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1203. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1204. },
  1205. "funding": [
  1206. {
  1207. "url": "https://github.com/danharrin",
  1208. "type": "github"
  1209. }
  1210. ],
  1211. "time": "2024-05-06T09:10:03+00:00"
  1212. },
  1213. {
  1214. "name": "dflydev/dot-access-data",
  1215. "version": "v3.0.3",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1219. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1224. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "php": "^7.1 || ^8.0"
  1229. },
  1230. "require-dev": {
  1231. "phpstan/phpstan": "^0.12.42",
  1232. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1233. "scrutinizer/ocular": "1.6.0",
  1234. "squizlabs/php_codesniffer": "^3.5",
  1235. "vimeo/psalm": "^4.0.0"
  1236. },
  1237. "type": "library",
  1238. "extra": {
  1239. "branch-alias": {
  1240. "dev-main": "3.x-dev"
  1241. }
  1242. },
  1243. "autoload": {
  1244. "psr-4": {
  1245. "Dflydev\\DotAccessData\\": "src/"
  1246. }
  1247. },
  1248. "notification-url": "https://packagist.org/downloads/",
  1249. "license": [
  1250. "MIT"
  1251. ],
  1252. "authors": [
  1253. {
  1254. "name": "Dragonfly Development Inc.",
  1255. "email": "info@dflydev.com",
  1256. "homepage": "http://dflydev.com"
  1257. },
  1258. {
  1259. "name": "Beau Simensen",
  1260. "email": "beau@dflydev.com",
  1261. "homepage": "http://beausimensen.com"
  1262. },
  1263. {
  1264. "name": "Carlos Frutos",
  1265. "email": "carlos@kiwing.it",
  1266. "homepage": "https://github.com/cfrutos"
  1267. },
  1268. {
  1269. "name": "Colin O'Dell",
  1270. "email": "colinodell@gmail.com",
  1271. "homepage": "https://www.colinodell.com"
  1272. }
  1273. ],
  1274. "description": "Given a deep data structure, access data by dot notation.",
  1275. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1276. "keywords": [
  1277. "access",
  1278. "data",
  1279. "dot",
  1280. "notation"
  1281. ],
  1282. "support": {
  1283. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1284. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1285. },
  1286. "time": "2024-07-08T12:26:09+00:00"
  1287. },
  1288. {
  1289. "name": "doctrine/dbal",
  1290. "version": "4.1.1",
  1291. "source": {
  1292. "type": "git",
  1293. "url": "https://github.com/doctrine/dbal.git",
  1294. "reference": "7a8252418689feb860ea8dfeab66d64a56a64df8"
  1295. },
  1296. "dist": {
  1297. "type": "zip",
  1298. "url": "https://api.github.com/repos/doctrine/dbal/zipball/7a8252418689feb860ea8dfeab66d64a56a64df8",
  1299. "reference": "7a8252418689feb860ea8dfeab66d64a56a64df8",
  1300. "shasum": ""
  1301. },
  1302. "require": {
  1303. "doctrine/deprecations": "^0.5.3|^1",
  1304. "php": "^8.1",
  1305. "psr/cache": "^1|^2|^3",
  1306. "psr/log": "^1|^2|^3"
  1307. },
  1308. "require-dev": {
  1309. "doctrine/coding-standard": "12.0.0",
  1310. "fig/log-test": "^1",
  1311. "jetbrains/phpstorm-stubs": "2023.2",
  1312. "phpstan/phpstan": "1.12.0",
  1313. "phpstan/phpstan-phpunit": "1.4.0",
  1314. "phpstan/phpstan-strict-rules": "^1.6",
  1315. "phpunit/phpunit": "10.5.30",
  1316. "psalm/plugin-phpunit": "0.19.0",
  1317. "slevomat/coding-standard": "8.13.1",
  1318. "squizlabs/php_codesniffer": "3.10.2",
  1319. "symfony/cache": "^6.3.8|^7.0",
  1320. "symfony/console": "^5.4|^6.3|^7.0",
  1321. "vimeo/psalm": "5.25.0"
  1322. },
  1323. "suggest": {
  1324. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1325. },
  1326. "type": "library",
  1327. "autoload": {
  1328. "psr-4": {
  1329. "Doctrine\\DBAL\\": "src"
  1330. }
  1331. },
  1332. "notification-url": "https://packagist.org/downloads/",
  1333. "license": [
  1334. "MIT"
  1335. ],
  1336. "authors": [
  1337. {
  1338. "name": "Guilherme Blanco",
  1339. "email": "guilhermeblanco@gmail.com"
  1340. },
  1341. {
  1342. "name": "Roman Borschel",
  1343. "email": "roman@code-factory.org"
  1344. },
  1345. {
  1346. "name": "Benjamin Eberlei",
  1347. "email": "kontakt@beberlei.de"
  1348. },
  1349. {
  1350. "name": "Jonathan Wage",
  1351. "email": "jonwage@gmail.com"
  1352. }
  1353. ],
  1354. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1355. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1356. "keywords": [
  1357. "abstraction",
  1358. "database",
  1359. "db2",
  1360. "dbal",
  1361. "mariadb",
  1362. "mssql",
  1363. "mysql",
  1364. "oci8",
  1365. "oracle",
  1366. "pdo",
  1367. "pgsql",
  1368. "postgresql",
  1369. "queryobject",
  1370. "sasql",
  1371. "sql",
  1372. "sqlite",
  1373. "sqlserver",
  1374. "sqlsrv"
  1375. ],
  1376. "support": {
  1377. "issues": "https://github.com/doctrine/dbal/issues",
  1378. "source": "https://github.com/doctrine/dbal/tree/4.1.1"
  1379. },
  1380. "funding": [
  1381. {
  1382. "url": "https://www.doctrine-project.org/sponsorship.html",
  1383. "type": "custom"
  1384. },
  1385. {
  1386. "url": "https://www.patreon.com/phpdoctrine",
  1387. "type": "patreon"
  1388. },
  1389. {
  1390. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1391. "type": "tidelift"
  1392. }
  1393. ],
  1394. "time": "2024-09-03T08:58:39+00:00"
  1395. },
  1396. {
  1397. "name": "doctrine/deprecations",
  1398. "version": "1.1.3",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/doctrine/deprecations.git",
  1402. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1407. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "php": "^7.1 || ^8.0"
  1412. },
  1413. "require-dev": {
  1414. "doctrine/coding-standard": "^9",
  1415. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1416. "phpstan/phpstan-phpunit": "^1.0",
  1417. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1418. "psalm/plugin-phpunit": "0.18.4",
  1419. "psr/log": "^1 || ^2 || ^3",
  1420. "vimeo/psalm": "4.30.0 || 5.12.0"
  1421. },
  1422. "suggest": {
  1423. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1424. },
  1425. "type": "library",
  1426. "autoload": {
  1427. "psr-4": {
  1428. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "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.",
  1436. "homepage": "https://www.doctrine-project.org/",
  1437. "support": {
  1438. "issues": "https://github.com/doctrine/deprecations/issues",
  1439. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1440. },
  1441. "time": "2024-01-30T19:34:25+00:00"
  1442. },
  1443. {
  1444. "name": "doctrine/inflector",
  1445. "version": "2.0.10",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/doctrine/inflector.git",
  1449. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1454. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1455. "shasum": ""
  1456. },
  1457. "require": {
  1458. "php": "^7.2 || ^8.0"
  1459. },
  1460. "require-dev": {
  1461. "doctrine/coding-standard": "^11.0",
  1462. "phpstan/phpstan": "^1.8",
  1463. "phpstan/phpstan-phpunit": "^1.1",
  1464. "phpstan/phpstan-strict-rules": "^1.3",
  1465. "phpunit/phpunit": "^8.5 || ^9.5",
  1466. "vimeo/psalm": "^4.25 || ^5.4"
  1467. },
  1468. "type": "library",
  1469. "autoload": {
  1470. "psr-4": {
  1471. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1472. }
  1473. },
  1474. "notification-url": "https://packagist.org/downloads/",
  1475. "license": [
  1476. "MIT"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "Guilherme Blanco",
  1481. "email": "guilhermeblanco@gmail.com"
  1482. },
  1483. {
  1484. "name": "Roman Borschel",
  1485. "email": "roman@code-factory.org"
  1486. },
  1487. {
  1488. "name": "Benjamin Eberlei",
  1489. "email": "kontakt@beberlei.de"
  1490. },
  1491. {
  1492. "name": "Jonathan Wage",
  1493. "email": "jonwage@gmail.com"
  1494. },
  1495. {
  1496. "name": "Johannes Schmitt",
  1497. "email": "schmittjoh@gmail.com"
  1498. }
  1499. ],
  1500. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1501. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1502. "keywords": [
  1503. "inflection",
  1504. "inflector",
  1505. "lowercase",
  1506. "manipulation",
  1507. "php",
  1508. "plural",
  1509. "singular",
  1510. "strings",
  1511. "uppercase",
  1512. "words"
  1513. ],
  1514. "support": {
  1515. "issues": "https://github.com/doctrine/inflector/issues",
  1516. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1517. },
  1518. "funding": [
  1519. {
  1520. "url": "https://www.doctrine-project.org/sponsorship.html",
  1521. "type": "custom"
  1522. },
  1523. {
  1524. "url": "https://www.patreon.com/phpdoctrine",
  1525. "type": "patreon"
  1526. },
  1527. {
  1528. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1529. "type": "tidelift"
  1530. }
  1531. ],
  1532. "time": "2024-02-18T20:23:39+00:00"
  1533. },
  1534. {
  1535. "name": "doctrine/lexer",
  1536. "version": "3.0.1",
  1537. "source": {
  1538. "type": "git",
  1539. "url": "https://github.com/doctrine/lexer.git",
  1540. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1541. },
  1542. "dist": {
  1543. "type": "zip",
  1544. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1545. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1546. "shasum": ""
  1547. },
  1548. "require": {
  1549. "php": "^8.1"
  1550. },
  1551. "require-dev": {
  1552. "doctrine/coding-standard": "^12",
  1553. "phpstan/phpstan": "^1.10",
  1554. "phpunit/phpunit": "^10.5",
  1555. "psalm/plugin-phpunit": "^0.18.3",
  1556. "vimeo/psalm": "^5.21"
  1557. },
  1558. "type": "library",
  1559. "autoload": {
  1560. "psr-4": {
  1561. "Doctrine\\Common\\Lexer\\": "src"
  1562. }
  1563. },
  1564. "notification-url": "https://packagist.org/downloads/",
  1565. "license": [
  1566. "MIT"
  1567. ],
  1568. "authors": [
  1569. {
  1570. "name": "Guilherme Blanco",
  1571. "email": "guilhermeblanco@gmail.com"
  1572. },
  1573. {
  1574. "name": "Roman Borschel",
  1575. "email": "roman@code-factory.org"
  1576. },
  1577. {
  1578. "name": "Johannes Schmitt",
  1579. "email": "schmittjoh@gmail.com"
  1580. }
  1581. ],
  1582. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1583. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1584. "keywords": [
  1585. "annotations",
  1586. "docblock",
  1587. "lexer",
  1588. "parser",
  1589. "php"
  1590. ],
  1591. "support": {
  1592. "issues": "https://github.com/doctrine/lexer/issues",
  1593. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1594. },
  1595. "funding": [
  1596. {
  1597. "url": "https://www.doctrine-project.org/sponsorship.html",
  1598. "type": "custom"
  1599. },
  1600. {
  1601. "url": "https://www.patreon.com/phpdoctrine",
  1602. "type": "patreon"
  1603. },
  1604. {
  1605. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1606. "type": "tidelift"
  1607. }
  1608. ],
  1609. "time": "2024-02-05T11:56:58+00:00"
  1610. },
  1611. {
  1612. "name": "dragonmantank/cron-expression",
  1613. "version": "v3.3.3",
  1614. "source": {
  1615. "type": "git",
  1616. "url": "https://github.com/dragonmantank/cron-expression.git",
  1617. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1618. },
  1619. "dist": {
  1620. "type": "zip",
  1621. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1622. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1623. "shasum": ""
  1624. },
  1625. "require": {
  1626. "php": "^7.2|^8.0",
  1627. "webmozart/assert": "^1.0"
  1628. },
  1629. "replace": {
  1630. "mtdowling/cron-expression": "^1.0"
  1631. },
  1632. "require-dev": {
  1633. "phpstan/extension-installer": "^1.0",
  1634. "phpstan/phpstan": "^1.0",
  1635. "phpstan/phpstan-webmozart-assert": "^1.0",
  1636. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1637. },
  1638. "type": "library",
  1639. "autoload": {
  1640. "psr-4": {
  1641. "Cron\\": "src/Cron/"
  1642. }
  1643. },
  1644. "notification-url": "https://packagist.org/downloads/",
  1645. "license": [
  1646. "MIT"
  1647. ],
  1648. "authors": [
  1649. {
  1650. "name": "Chris Tankersley",
  1651. "email": "chris@ctankersley.com",
  1652. "homepage": "https://github.com/dragonmantank"
  1653. }
  1654. ],
  1655. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1656. "keywords": [
  1657. "cron",
  1658. "schedule"
  1659. ],
  1660. "support": {
  1661. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1662. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://github.com/dragonmantank",
  1667. "type": "github"
  1668. }
  1669. ],
  1670. "time": "2023-08-10T19:36:49+00:00"
  1671. },
  1672. {
  1673. "name": "egulias/email-validator",
  1674. "version": "4.0.2",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://github.com/egulias/EmailValidator.git",
  1678. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1683. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1684. "shasum": ""
  1685. },
  1686. "require": {
  1687. "doctrine/lexer": "^2.0 || ^3.0",
  1688. "php": ">=8.1",
  1689. "symfony/polyfill-intl-idn": "^1.26"
  1690. },
  1691. "require-dev": {
  1692. "phpunit/phpunit": "^10.2",
  1693. "vimeo/psalm": "^5.12"
  1694. },
  1695. "suggest": {
  1696. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1697. },
  1698. "type": "library",
  1699. "extra": {
  1700. "branch-alias": {
  1701. "dev-master": "4.0.x-dev"
  1702. }
  1703. },
  1704. "autoload": {
  1705. "psr-4": {
  1706. "Egulias\\EmailValidator\\": "src"
  1707. }
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "MIT"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Eduardo Gulias Davis"
  1716. }
  1717. ],
  1718. "description": "A library for validating emails against several RFCs",
  1719. "homepage": "https://github.com/egulias/EmailValidator",
  1720. "keywords": [
  1721. "email",
  1722. "emailvalidation",
  1723. "emailvalidator",
  1724. "validation",
  1725. "validator"
  1726. ],
  1727. "support": {
  1728. "issues": "https://github.com/egulias/EmailValidator/issues",
  1729. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1730. },
  1731. "funding": [
  1732. {
  1733. "url": "https://github.com/egulias",
  1734. "type": "github"
  1735. }
  1736. ],
  1737. "time": "2023-10-06T06:47:41+00:00"
  1738. },
  1739. {
  1740. "name": "filament/actions",
  1741. "version": "v3.2.110",
  1742. "source": {
  1743. "type": "git",
  1744. "url": "https://github.com/filamentphp/actions.git",
  1745. "reference": "5d6e4fe444f1ef04d373518248a445bbcc3ca272"
  1746. },
  1747. "dist": {
  1748. "type": "zip",
  1749. "url": "https://api.github.com/repos/filamentphp/actions/zipball/5d6e4fe444f1ef04d373518248a445bbcc3ca272",
  1750. "reference": "5d6e4fe444f1ef04d373518248a445bbcc3ca272",
  1751. "shasum": ""
  1752. },
  1753. "require": {
  1754. "anourvalar/eloquent-serialize": "^1.2",
  1755. "filament/forms": "self.version",
  1756. "filament/infolists": "self.version",
  1757. "filament/notifications": "self.version",
  1758. "filament/support": "self.version",
  1759. "illuminate/contracts": "^10.45|^11.0",
  1760. "illuminate/database": "^10.45|^11.0",
  1761. "illuminate/support": "^10.45|^11.0",
  1762. "league/csv": "^9.14",
  1763. "openspout/openspout": "^4.23",
  1764. "php": "^8.1",
  1765. "spatie/laravel-package-tools": "^1.9"
  1766. },
  1767. "type": "library",
  1768. "extra": {
  1769. "laravel": {
  1770. "providers": [
  1771. "Filament\\Actions\\ActionsServiceProvider"
  1772. ]
  1773. }
  1774. },
  1775. "autoload": {
  1776. "psr-4": {
  1777. "Filament\\Actions\\": "src"
  1778. }
  1779. },
  1780. "notification-url": "https://packagist.org/downloads/",
  1781. "license": [
  1782. "MIT"
  1783. ],
  1784. "description": "Easily add beautiful action modals to any Livewire component.",
  1785. "homepage": "https://github.com/filamentphp/filament",
  1786. "support": {
  1787. "issues": "https://github.com/filamentphp/filament/issues",
  1788. "source": "https://github.com/filamentphp/filament"
  1789. },
  1790. "time": "2024-08-26T07:22:35+00:00"
  1791. },
  1792. {
  1793. "name": "filament/filament",
  1794. "version": "v3.2.110",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/filamentphp/panels.git",
  1798. "reference": "130636e90e821154e0ce60dcbc7b358d2a1a716f"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/filamentphp/panels/zipball/130636e90e821154e0ce60dcbc7b358d2a1a716f",
  1803. "reference": "130636e90e821154e0ce60dcbc7b358d2a1a716f",
  1804. "shasum": ""
  1805. },
  1806. "require": {
  1807. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1808. "filament/actions": "self.version",
  1809. "filament/forms": "self.version",
  1810. "filament/infolists": "self.version",
  1811. "filament/notifications": "self.version",
  1812. "filament/support": "self.version",
  1813. "filament/tables": "self.version",
  1814. "filament/widgets": "self.version",
  1815. "illuminate/auth": "^10.45|^11.0",
  1816. "illuminate/console": "^10.45|^11.0",
  1817. "illuminate/contracts": "^10.45|^11.0",
  1818. "illuminate/cookie": "^10.45|^11.0",
  1819. "illuminate/database": "^10.45|^11.0",
  1820. "illuminate/http": "^10.45|^11.0",
  1821. "illuminate/routing": "^10.45|^11.0",
  1822. "illuminate/session": "^10.45|^11.0",
  1823. "illuminate/support": "^10.45|^11.0",
  1824. "illuminate/view": "^10.45|^11.0",
  1825. "php": "^8.1",
  1826. "spatie/laravel-package-tools": "^1.9"
  1827. },
  1828. "type": "library",
  1829. "extra": {
  1830. "laravel": {
  1831. "providers": [
  1832. "Filament\\FilamentServiceProvider"
  1833. ]
  1834. }
  1835. },
  1836. "autoload": {
  1837. "files": [
  1838. "src/global_helpers.php",
  1839. "src/helpers.php"
  1840. ],
  1841. "psr-4": {
  1842. "Filament\\": "src"
  1843. }
  1844. },
  1845. "notification-url": "https://packagist.org/downloads/",
  1846. "license": [
  1847. "MIT"
  1848. ],
  1849. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1850. "homepage": "https://github.com/filamentphp/filament",
  1851. "support": {
  1852. "issues": "https://github.com/filamentphp/filament/issues",
  1853. "source": "https://github.com/filamentphp/filament"
  1854. },
  1855. "time": "2024-08-30T01:52:09+00:00"
  1856. },
  1857. {
  1858. "name": "filament/forms",
  1859. "version": "v3.2.110",
  1860. "source": {
  1861. "type": "git",
  1862. "url": "https://github.com/filamentphp/forms.git",
  1863. "reference": "02fe2e211993f6291b719a093ed6f63e17125e9a"
  1864. },
  1865. "dist": {
  1866. "type": "zip",
  1867. "url": "https://api.github.com/repos/filamentphp/forms/zipball/02fe2e211993f6291b719a093ed6f63e17125e9a",
  1868. "reference": "02fe2e211993f6291b719a093ed6f63e17125e9a",
  1869. "shasum": ""
  1870. },
  1871. "require": {
  1872. "danharrin/date-format-converter": "^0.3",
  1873. "filament/actions": "self.version",
  1874. "filament/support": "self.version",
  1875. "illuminate/console": "^10.45|^11.0",
  1876. "illuminate/contracts": "^10.45|^11.0",
  1877. "illuminate/database": "^10.45|^11.0",
  1878. "illuminate/filesystem": "^10.45|^11.0",
  1879. "illuminate/support": "^10.45|^11.0",
  1880. "illuminate/validation": "^10.45|^11.0",
  1881. "illuminate/view": "^10.45|^11.0",
  1882. "php": "^8.1",
  1883. "spatie/laravel-package-tools": "^1.9"
  1884. },
  1885. "type": "library",
  1886. "extra": {
  1887. "laravel": {
  1888. "providers": [
  1889. "Filament\\Forms\\FormsServiceProvider"
  1890. ]
  1891. }
  1892. },
  1893. "autoload": {
  1894. "files": [
  1895. "src/helpers.php"
  1896. ],
  1897. "psr-4": {
  1898. "Filament\\Forms\\": "src"
  1899. }
  1900. },
  1901. "notification-url": "https://packagist.org/downloads/",
  1902. "license": [
  1903. "MIT"
  1904. ],
  1905. "description": "Easily add beautiful forms to any Livewire component.",
  1906. "homepage": "https://github.com/filamentphp/filament",
  1907. "support": {
  1908. "issues": "https://github.com/filamentphp/filament/issues",
  1909. "source": "https://github.com/filamentphp/filament"
  1910. },
  1911. "time": "2024-08-30T18:04:06+00:00"
  1912. },
  1913. {
  1914. "name": "filament/infolists",
  1915. "version": "v3.2.110",
  1916. "source": {
  1917. "type": "git",
  1918. "url": "https://github.com/filamentphp/infolists.git",
  1919. "reference": "96403f2842e4c485f32110e4456b7a3bbcb1e835"
  1920. },
  1921. "dist": {
  1922. "type": "zip",
  1923. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/96403f2842e4c485f32110e4456b7a3bbcb1e835",
  1924. "reference": "96403f2842e4c485f32110e4456b7a3bbcb1e835",
  1925. "shasum": ""
  1926. },
  1927. "require": {
  1928. "filament/actions": "self.version",
  1929. "filament/support": "self.version",
  1930. "illuminate/console": "^10.45|^11.0",
  1931. "illuminate/contracts": "^10.45|^11.0",
  1932. "illuminate/database": "^10.45|^11.0",
  1933. "illuminate/filesystem": "^10.45|^11.0",
  1934. "illuminate/support": "^10.45|^11.0",
  1935. "illuminate/view": "^10.45|^11.0",
  1936. "php": "^8.1",
  1937. "spatie/laravel-package-tools": "^1.9"
  1938. },
  1939. "type": "library",
  1940. "extra": {
  1941. "laravel": {
  1942. "providers": [
  1943. "Filament\\Infolists\\InfolistsServiceProvider"
  1944. ]
  1945. }
  1946. },
  1947. "autoload": {
  1948. "psr-4": {
  1949. "Filament\\Infolists\\": "src"
  1950. }
  1951. },
  1952. "notification-url": "https://packagist.org/downloads/",
  1953. "license": [
  1954. "MIT"
  1955. ],
  1956. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1957. "homepage": "https://github.com/filamentphp/filament",
  1958. "support": {
  1959. "issues": "https://github.com/filamentphp/filament/issues",
  1960. "source": "https://github.com/filamentphp/filament"
  1961. },
  1962. "time": "2024-08-14T16:52:44+00:00"
  1963. },
  1964. {
  1965. "name": "filament/notifications",
  1966. "version": "v3.2.110",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/filamentphp/notifications.git",
  1970. "reference": "03ea56e0729c98c65831ab0215285a7cb1c4117f"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/03ea56e0729c98c65831ab0215285a7cb1c4117f",
  1975. "reference": "03ea56e0729c98c65831ab0215285a7cb1c4117f",
  1976. "shasum": ""
  1977. },
  1978. "require": {
  1979. "filament/actions": "self.version",
  1980. "filament/support": "self.version",
  1981. "illuminate/contracts": "^10.45|^11.0",
  1982. "illuminate/filesystem": "^10.45|^11.0",
  1983. "illuminate/notifications": "^10.45|^11.0",
  1984. "illuminate/support": "^10.45|^11.0",
  1985. "php": "^8.1",
  1986. "spatie/laravel-package-tools": "^1.9"
  1987. },
  1988. "type": "library",
  1989. "extra": {
  1990. "laravel": {
  1991. "providers": [
  1992. "Filament\\Notifications\\NotificationsServiceProvider"
  1993. ]
  1994. }
  1995. },
  1996. "autoload": {
  1997. "files": [
  1998. "src/Testing/Autoload.php"
  1999. ],
  2000. "psr-4": {
  2001. "Filament\\Notifications\\": "src"
  2002. }
  2003. },
  2004. "notification-url": "https://packagist.org/downloads/",
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "description": "Easily add beautiful notifications to any Livewire app.",
  2009. "homepage": "https://github.com/filamentphp/filament",
  2010. "support": {
  2011. "issues": "https://github.com/filamentphp/filament/issues",
  2012. "source": "https://github.com/filamentphp/filament"
  2013. },
  2014. "time": "2024-07-31T11:53:11+00:00"
  2015. },
  2016. {
  2017. "name": "filament/support",
  2018. "version": "v3.2.110",
  2019. "source": {
  2020. "type": "git",
  2021. "url": "https://github.com/filamentphp/support.git",
  2022. "reference": "78e25428c754fcbb30c321d5dda439c760de9837"
  2023. },
  2024. "dist": {
  2025. "type": "zip",
  2026. "url": "https://api.github.com/repos/filamentphp/support/zipball/78e25428c754fcbb30c321d5dda439c760de9837",
  2027. "reference": "78e25428c754fcbb30c321d5dda439c760de9837",
  2028. "shasum": ""
  2029. },
  2030. "require": {
  2031. "blade-ui-kit/blade-heroicons": "^2.2.1",
  2032. "doctrine/dbal": "^3.2|^4.0",
  2033. "ext-intl": "*",
  2034. "illuminate/contracts": "^10.45|^11.0",
  2035. "illuminate/support": "^10.45|^11.0",
  2036. "illuminate/view": "^10.45|^11.0",
  2037. "kirschbaum-development/eloquent-power-joins": "^3.0",
  2038. "livewire/livewire": "^3.4.10",
  2039. "php": "^8.1",
  2040. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2041. "spatie/color": "^1.5",
  2042. "spatie/invade": "^1.0|^2.0",
  2043. "spatie/laravel-package-tools": "^1.9",
  2044. "symfony/console": "^6.0|^7.0",
  2045. "symfony/html-sanitizer": "^6.1|^7.0"
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "laravel": {
  2050. "providers": [
  2051. "Filament\\Support\\SupportServiceProvider"
  2052. ]
  2053. }
  2054. },
  2055. "autoload": {
  2056. "files": [
  2057. "src/helpers.php"
  2058. ],
  2059. "psr-4": {
  2060. "Filament\\Support\\": "src"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "MIT"
  2066. ],
  2067. "description": "Core helper methods and foundation code for all Filament packages.",
  2068. "homepage": "https://github.com/filamentphp/filament",
  2069. "support": {
  2070. "issues": "https://github.com/filamentphp/filament/issues",
  2071. "source": "https://github.com/filamentphp/filament"
  2072. },
  2073. "time": "2024-08-26T07:22:57+00:00"
  2074. },
  2075. {
  2076. "name": "filament/tables",
  2077. "version": "v3.2.110",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/filamentphp/tables.git",
  2081. "reference": "129943d1b4e6c1edeef53e804eb56ef78a932a6c"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/filamentphp/tables/zipball/129943d1b4e6c1edeef53e804eb56ef78a932a6c",
  2086. "reference": "129943d1b4e6c1edeef53e804eb56ef78a932a6c",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "filament/actions": "self.version",
  2091. "filament/forms": "self.version",
  2092. "filament/support": "self.version",
  2093. "illuminate/console": "^10.45|^11.0",
  2094. "illuminate/contracts": "^10.45|^11.0",
  2095. "illuminate/database": "^10.45|^11.0",
  2096. "illuminate/filesystem": "^10.45|^11.0",
  2097. "illuminate/support": "^10.45|^11.0",
  2098. "illuminate/view": "^10.45|^11.0",
  2099. "php": "^8.1",
  2100. "spatie/laravel-package-tools": "^1.9"
  2101. },
  2102. "type": "library",
  2103. "extra": {
  2104. "laravel": {
  2105. "providers": [
  2106. "Filament\\Tables\\TablesServiceProvider"
  2107. ]
  2108. }
  2109. },
  2110. "autoload": {
  2111. "psr-4": {
  2112. "Filament\\Tables\\": "src"
  2113. }
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "MIT"
  2118. ],
  2119. "description": "Easily add beautiful tables to any Livewire component.",
  2120. "homepage": "https://github.com/filamentphp/filament",
  2121. "support": {
  2122. "issues": "https://github.com/filamentphp/filament/issues",
  2123. "source": "https://github.com/filamentphp/filament"
  2124. },
  2125. "time": "2024-08-30T01:52:14+00:00"
  2126. },
  2127. {
  2128. "name": "filament/widgets",
  2129. "version": "v3.2.110",
  2130. "source": {
  2131. "type": "git",
  2132. "url": "https://github.com/filamentphp/widgets.git",
  2133. "reference": "909fc82bae2cf41d70b3cd7dda8982245b2ea723"
  2134. },
  2135. "dist": {
  2136. "type": "zip",
  2137. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/909fc82bae2cf41d70b3cd7dda8982245b2ea723",
  2138. "reference": "909fc82bae2cf41d70b3cd7dda8982245b2ea723",
  2139. "shasum": ""
  2140. },
  2141. "require": {
  2142. "filament/support": "self.version",
  2143. "php": "^8.1",
  2144. "spatie/laravel-package-tools": "^1.9"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "laravel": {
  2149. "providers": [
  2150. "Filament\\Widgets\\WidgetsServiceProvider"
  2151. ]
  2152. }
  2153. },
  2154. "autoload": {
  2155. "psr-4": {
  2156. "Filament\\Widgets\\": "src"
  2157. }
  2158. },
  2159. "notification-url": "https://packagist.org/downloads/",
  2160. "license": [
  2161. "MIT"
  2162. ],
  2163. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2164. "homepage": "https://github.com/filamentphp/filament",
  2165. "support": {
  2166. "issues": "https://github.com/filamentphp/filament/issues",
  2167. "source": "https://github.com/filamentphp/filament"
  2168. },
  2169. "time": "2024-07-31T11:53:30+00:00"
  2170. },
  2171. {
  2172. "name": "firebase/php-jwt",
  2173. "version": "v6.10.1",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/firebase/php-jwt.git",
  2177. "reference": "500501c2ce893c824c801da135d02661199f60c5"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5",
  2182. "reference": "500501c2ce893c824c801da135d02661199f60c5",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "php": "^8.0"
  2187. },
  2188. "require-dev": {
  2189. "guzzlehttp/guzzle": "^7.4",
  2190. "phpspec/prophecy-phpunit": "^2.0",
  2191. "phpunit/phpunit": "^9.5",
  2192. "psr/cache": "^2.0||^3.0",
  2193. "psr/http-client": "^1.0",
  2194. "psr/http-factory": "^1.0"
  2195. },
  2196. "suggest": {
  2197. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2198. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2199. },
  2200. "type": "library",
  2201. "autoload": {
  2202. "psr-4": {
  2203. "Firebase\\JWT\\": "src"
  2204. }
  2205. },
  2206. "notification-url": "https://packagist.org/downloads/",
  2207. "license": [
  2208. "BSD-3-Clause"
  2209. ],
  2210. "authors": [
  2211. {
  2212. "name": "Neuman Vong",
  2213. "email": "neuman+pear@twilio.com",
  2214. "role": "Developer"
  2215. },
  2216. {
  2217. "name": "Anant Narayanan",
  2218. "email": "anant@php.net",
  2219. "role": "Developer"
  2220. }
  2221. ],
  2222. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2223. "homepage": "https://github.com/firebase/php-jwt",
  2224. "keywords": [
  2225. "jwt",
  2226. "php"
  2227. ],
  2228. "support": {
  2229. "issues": "https://github.com/firebase/php-jwt/issues",
  2230. "source": "https://github.com/firebase/php-jwt/tree/v6.10.1"
  2231. },
  2232. "time": "2024-05-18T18:05:11+00:00"
  2233. },
  2234. {
  2235. "name": "fruitcake/php-cors",
  2236. "version": "v1.3.0",
  2237. "source": {
  2238. "type": "git",
  2239. "url": "https://github.com/fruitcake/php-cors.git",
  2240. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2241. },
  2242. "dist": {
  2243. "type": "zip",
  2244. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2245. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2246. "shasum": ""
  2247. },
  2248. "require": {
  2249. "php": "^7.4|^8.0",
  2250. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2251. },
  2252. "require-dev": {
  2253. "phpstan/phpstan": "^1.4",
  2254. "phpunit/phpunit": "^9",
  2255. "squizlabs/php_codesniffer": "^3.5"
  2256. },
  2257. "type": "library",
  2258. "extra": {
  2259. "branch-alias": {
  2260. "dev-master": "1.2-dev"
  2261. }
  2262. },
  2263. "autoload": {
  2264. "psr-4": {
  2265. "Fruitcake\\Cors\\": "src/"
  2266. }
  2267. },
  2268. "notification-url": "https://packagist.org/downloads/",
  2269. "license": [
  2270. "MIT"
  2271. ],
  2272. "authors": [
  2273. {
  2274. "name": "Fruitcake",
  2275. "homepage": "https://fruitcake.nl"
  2276. },
  2277. {
  2278. "name": "Barryvdh",
  2279. "email": "barryvdh@gmail.com"
  2280. }
  2281. ],
  2282. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2283. "homepage": "https://github.com/fruitcake/php-cors",
  2284. "keywords": [
  2285. "cors",
  2286. "laravel",
  2287. "symfony"
  2288. ],
  2289. "support": {
  2290. "issues": "https://github.com/fruitcake/php-cors/issues",
  2291. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2292. },
  2293. "funding": [
  2294. {
  2295. "url": "https://fruitcake.nl",
  2296. "type": "custom"
  2297. },
  2298. {
  2299. "url": "https://github.com/barryvdh",
  2300. "type": "github"
  2301. }
  2302. ],
  2303. "time": "2023-10-12T05:21:21+00:00"
  2304. },
  2305. {
  2306. "name": "graham-campbell/result-type",
  2307. "version": "v1.1.3",
  2308. "source": {
  2309. "type": "git",
  2310. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2311. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2312. },
  2313. "dist": {
  2314. "type": "zip",
  2315. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2316. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2317. "shasum": ""
  2318. },
  2319. "require": {
  2320. "php": "^7.2.5 || ^8.0",
  2321. "phpoption/phpoption": "^1.9.3"
  2322. },
  2323. "require-dev": {
  2324. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2325. },
  2326. "type": "library",
  2327. "autoload": {
  2328. "psr-4": {
  2329. "GrahamCampbell\\ResultType\\": "src/"
  2330. }
  2331. },
  2332. "notification-url": "https://packagist.org/downloads/",
  2333. "license": [
  2334. "MIT"
  2335. ],
  2336. "authors": [
  2337. {
  2338. "name": "Graham Campbell",
  2339. "email": "hello@gjcampbell.co.uk",
  2340. "homepage": "https://github.com/GrahamCampbell"
  2341. }
  2342. ],
  2343. "description": "An Implementation Of The Result Type",
  2344. "keywords": [
  2345. "Graham Campbell",
  2346. "GrahamCampbell",
  2347. "Result Type",
  2348. "Result-Type",
  2349. "result"
  2350. ],
  2351. "support": {
  2352. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2353. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2354. },
  2355. "funding": [
  2356. {
  2357. "url": "https://github.com/GrahamCampbell",
  2358. "type": "github"
  2359. },
  2360. {
  2361. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2362. "type": "tidelift"
  2363. }
  2364. ],
  2365. "time": "2024-07-20T21:45:45+00:00"
  2366. },
  2367. {
  2368. "name": "guava/filament-clusters",
  2369. "version": "1.4.0",
  2370. "source": {
  2371. "type": "git",
  2372. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2373. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2374. },
  2375. "dist": {
  2376. "type": "zip",
  2377. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2378. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2379. "shasum": ""
  2380. },
  2381. "require": {
  2382. "filament/filament": "^3.0",
  2383. "illuminate/contracts": "^10.0 | ^11.0",
  2384. "php": "^8.1",
  2385. "spatie/laravel-package-tools": "^1.14.0"
  2386. },
  2387. "require-dev": {
  2388. "laravel/pint": "^1.0",
  2389. "nunomaduro/collision": "^7.8",
  2390. "nunomaduro/larastan": "^2.0.1",
  2391. "orchestra/testbench": "^8.8",
  2392. "pestphp/pest": "^2.0",
  2393. "pestphp/pest-plugin-arch": "^2.0",
  2394. "pestphp/pest-plugin-laravel": "^2.0",
  2395. "phpstan/extension-installer": "^1.1",
  2396. "phpstan/phpstan-deprecation-rules": "^1.0",
  2397. "phpstan/phpstan-phpunit": "^1.0"
  2398. },
  2399. "type": "library",
  2400. "extra": {
  2401. "laravel": {
  2402. "providers": [
  2403. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2404. ]
  2405. }
  2406. },
  2407. "autoload": {
  2408. "psr-4": {
  2409. "Guava\\FilamentClusters\\": "src/"
  2410. }
  2411. },
  2412. "notification-url": "https://packagist.org/downloads/",
  2413. "license": [
  2414. "MIT"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "Lukas Frey",
  2419. "email": "lukas.frey@guava.cz",
  2420. "role": "Developer"
  2421. }
  2422. ],
  2423. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2424. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2425. "keywords": [
  2426. "Guava",
  2427. "filament-clusters",
  2428. "laravel"
  2429. ],
  2430. "support": {
  2431. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2432. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2433. },
  2434. "funding": [
  2435. {
  2436. "url": "https://github.com/GuavaCZ",
  2437. "type": "github"
  2438. }
  2439. ],
  2440. "time": "2024-05-31T09:31:08+00:00"
  2441. },
  2442. {
  2443. "name": "guzzlehttp/guzzle",
  2444. "version": "7.9.2",
  2445. "source": {
  2446. "type": "git",
  2447. "url": "https://github.com/guzzle/guzzle.git",
  2448. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2449. },
  2450. "dist": {
  2451. "type": "zip",
  2452. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2453. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2454. "shasum": ""
  2455. },
  2456. "require": {
  2457. "ext-json": "*",
  2458. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2459. "guzzlehttp/psr7": "^2.7.0",
  2460. "php": "^7.2.5 || ^8.0",
  2461. "psr/http-client": "^1.0",
  2462. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2463. },
  2464. "provide": {
  2465. "psr/http-client-implementation": "1.0"
  2466. },
  2467. "require-dev": {
  2468. "bamarni/composer-bin-plugin": "^1.8.2",
  2469. "ext-curl": "*",
  2470. "guzzle/client-integration-tests": "3.0.2",
  2471. "php-http/message-factory": "^1.1",
  2472. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2473. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2474. },
  2475. "suggest": {
  2476. "ext-curl": "Required for CURL handler support",
  2477. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2478. "psr/log": "Required for using the Log middleware"
  2479. },
  2480. "type": "library",
  2481. "extra": {
  2482. "bamarni-bin": {
  2483. "bin-links": true,
  2484. "forward-command": false
  2485. }
  2486. },
  2487. "autoload": {
  2488. "files": [
  2489. "src/functions_include.php"
  2490. ],
  2491. "psr-4": {
  2492. "GuzzleHttp\\": "src/"
  2493. }
  2494. },
  2495. "notification-url": "https://packagist.org/downloads/",
  2496. "license": [
  2497. "MIT"
  2498. ],
  2499. "authors": [
  2500. {
  2501. "name": "Graham Campbell",
  2502. "email": "hello@gjcampbell.co.uk",
  2503. "homepage": "https://github.com/GrahamCampbell"
  2504. },
  2505. {
  2506. "name": "Michael Dowling",
  2507. "email": "mtdowling@gmail.com",
  2508. "homepage": "https://github.com/mtdowling"
  2509. },
  2510. {
  2511. "name": "Jeremy Lindblom",
  2512. "email": "jeremeamia@gmail.com",
  2513. "homepage": "https://github.com/jeremeamia"
  2514. },
  2515. {
  2516. "name": "George Mponos",
  2517. "email": "gmponos@gmail.com",
  2518. "homepage": "https://github.com/gmponos"
  2519. },
  2520. {
  2521. "name": "Tobias Nyholm",
  2522. "email": "tobias.nyholm@gmail.com",
  2523. "homepage": "https://github.com/Nyholm"
  2524. },
  2525. {
  2526. "name": "Márk Sági-Kazár",
  2527. "email": "mark.sagikazar@gmail.com",
  2528. "homepage": "https://github.com/sagikazarmark"
  2529. },
  2530. {
  2531. "name": "Tobias Schultze",
  2532. "email": "webmaster@tubo-world.de",
  2533. "homepage": "https://github.com/Tobion"
  2534. }
  2535. ],
  2536. "description": "Guzzle is a PHP HTTP client library",
  2537. "keywords": [
  2538. "client",
  2539. "curl",
  2540. "framework",
  2541. "http",
  2542. "http client",
  2543. "psr-18",
  2544. "psr-7",
  2545. "rest",
  2546. "web service"
  2547. ],
  2548. "support": {
  2549. "issues": "https://github.com/guzzle/guzzle/issues",
  2550. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2551. },
  2552. "funding": [
  2553. {
  2554. "url": "https://github.com/GrahamCampbell",
  2555. "type": "github"
  2556. },
  2557. {
  2558. "url": "https://github.com/Nyholm",
  2559. "type": "github"
  2560. },
  2561. {
  2562. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2563. "type": "tidelift"
  2564. }
  2565. ],
  2566. "time": "2024-07-24T11:22:20+00:00"
  2567. },
  2568. {
  2569. "name": "guzzlehttp/promises",
  2570. "version": "2.0.3",
  2571. "source": {
  2572. "type": "git",
  2573. "url": "https://github.com/guzzle/promises.git",
  2574. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  2575. },
  2576. "dist": {
  2577. "type": "zip",
  2578. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  2579. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  2580. "shasum": ""
  2581. },
  2582. "require": {
  2583. "php": "^7.2.5 || ^8.0"
  2584. },
  2585. "require-dev": {
  2586. "bamarni/composer-bin-plugin": "^1.8.2",
  2587. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2588. },
  2589. "type": "library",
  2590. "extra": {
  2591. "bamarni-bin": {
  2592. "bin-links": true,
  2593. "forward-command": false
  2594. }
  2595. },
  2596. "autoload": {
  2597. "psr-4": {
  2598. "GuzzleHttp\\Promise\\": "src/"
  2599. }
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "MIT"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Graham Campbell",
  2608. "email": "hello@gjcampbell.co.uk",
  2609. "homepage": "https://github.com/GrahamCampbell"
  2610. },
  2611. {
  2612. "name": "Michael Dowling",
  2613. "email": "mtdowling@gmail.com",
  2614. "homepage": "https://github.com/mtdowling"
  2615. },
  2616. {
  2617. "name": "Tobias Nyholm",
  2618. "email": "tobias.nyholm@gmail.com",
  2619. "homepage": "https://github.com/Nyholm"
  2620. },
  2621. {
  2622. "name": "Tobias Schultze",
  2623. "email": "webmaster@tubo-world.de",
  2624. "homepage": "https://github.com/Tobion"
  2625. }
  2626. ],
  2627. "description": "Guzzle promises library",
  2628. "keywords": [
  2629. "promise"
  2630. ],
  2631. "support": {
  2632. "issues": "https://github.com/guzzle/promises/issues",
  2633. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  2634. },
  2635. "funding": [
  2636. {
  2637. "url": "https://github.com/GrahamCampbell",
  2638. "type": "github"
  2639. },
  2640. {
  2641. "url": "https://github.com/Nyholm",
  2642. "type": "github"
  2643. },
  2644. {
  2645. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2646. "type": "tidelift"
  2647. }
  2648. ],
  2649. "time": "2024-07-18T10:29:17+00:00"
  2650. },
  2651. {
  2652. "name": "guzzlehttp/psr7",
  2653. "version": "2.7.0",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://github.com/guzzle/psr7.git",
  2657. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2662. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2663. "shasum": ""
  2664. },
  2665. "require": {
  2666. "php": "^7.2.5 || ^8.0",
  2667. "psr/http-factory": "^1.0",
  2668. "psr/http-message": "^1.1 || ^2.0",
  2669. "ralouphie/getallheaders": "^3.0"
  2670. },
  2671. "provide": {
  2672. "psr/http-factory-implementation": "1.0",
  2673. "psr/http-message-implementation": "1.0"
  2674. },
  2675. "require-dev": {
  2676. "bamarni/composer-bin-plugin": "^1.8.2",
  2677. "http-interop/http-factory-tests": "0.9.0",
  2678. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2679. },
  2680. "suggest": {
  2681. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2682. },
  2683. "type": "library",
  2684. "extra": {
  2685. "bamarni-bin": {
  2686. "bin-links": true,
  2687. "forward-command": false
  2688. }
  2689. },
  2690. "autoload": {
  2691. "psr-4": {
  2692. "GuzzleHttp\\Psr7\\": "src/"
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "MIT"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Graham Campbell",
  2702. "email": "hello@gjcampbell.co.uk",
  2703. "homepage": "https://github.com/GrahamCampbell"
  2704. },
  2705. {
  2706. "name": "Michael Dowling",
  2707. "email": "mtdowling@gmail.com",
  2708. "homepage": "https://github.com/mtdowling"
  2709. },
  2710. {
  2711. "name": "George Mponos",
  2712. "email": "gmponos@gmail.com",
  2713. "homepage": "https://github.com/gmponos"
  2714. },
  2715. {
  2716. "name": "Tobias Nyholm",
  2717. "email": "tobias.nyholm@gmail.com",
  2718. "homepage": "https://github.com/Nyholm"
  2719. },
  2720. {
  2721. "name": "Márk Sági-Kazár",
  2722. "email": "mark.sagikazar@gmail.com",
  2723. "homepage": "https://github.com/sagikazarmark"
  2724. },
  2725. {
  2726. "name": "Tobias Schultze",
  2727. "email": "webmaster@tubo-world.de",
  2728. "homepage": "https://github.com/Tobion"
  2729. },
  2730. {
  2731. "name": "Márk Sági-Kazár",
  2732. "email": "mark.sagikazar@gmail.com",
  2733. "homepage": "https://sagikazarmark.hu"
  2734. }
  2735. ],
  2736. "description": "PSR-7 message implementation that also provides common utility methods",
  2737. "keywords": [
  2738. "http",
  2739. "message",
  2740. "psr-7",
  2741. "request",
  2742. "response",
  2743. "stream",
  2744. "uri",
  2745. "url"
  2746. ],
  2747. "support": {
  2748. "issues": "https://github.com/guzzle/psr7/issues",
  2749. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2750. },
  2751. "funding": [
  2752. {
  2753. "url": "https://github.com/GrahamCampbell",
  2754. "type": "github"
  2755. },
  2756. {
  2757. "url": "https://github.com/Nyholm",
  2758. "type": "github"
  2759. },
  2760. {
  2761. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2762. "type": "tidelift"
  2763. }
  2764. ],
  2765. "time": "2024-07-18T11:15:46+00:00"
  2766. },
  2767. {
  2768. "name": "guzzlehttp/uri-template",
  2769. "version": "v1.0.3",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/guzzle/uri-template.git",
  2773. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2778. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "php": "^7.2.5 || ^8.0",
  2783. "symfony/polyfill-php80": "^1.24"
  2784. },
  2785. "require-dev": {
  2786. "bamarni/composer-bin-plugin": "^1.8.2",
  2787. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2788. "uri-template/tests": "1.0.0"
  2789. },
  2790. "type": "library",
  2791. "extra": {
  2792. "bamarni-bin": {
  2793. "bin-links": true,
  2794. "forward-command": false
  2795. }
  2796. },
  2797. "autoload": {
  2798. "psr-4": {
  2799. "GuzzleHttp\\UriTemplate\\": "src"
  2800. }
  2801. },
  2802. "notification-url": "https://packagist.org/downloads/",
  2803. "license": [
  2804. "MIT"
  2805. ],
  2806. "authors": [
  2807. {
  2808. "name": "Graham Campbell",
  2809. "email": "hello@gjcampbell.co.uk",
  2810. "homepage": "https://github.com/GrahamCampbell"
  2811. },
  2812. {
  2813. "name": "Michael Dowling",
  2814. "email": "mtdowling@gmail.com",
  2815. "homepage": "https://github.com/mtdowling"
  2816. },
  2817. {
  2818. "name": "George Mponos",
  2819. "email": "gmponos@gmail.com",
  2820. "homepage": "https://github.com/gmponos"
  2821. },
  2822. {
  2823. "name": "Tobias Nyholm",
  2824. "email": "tobias.nyholm@gmail.com",
  2825. "homepage": "https://github.com/Nyholm"
  2826. }
  2827. ],
  2828. "description": "A polyfill class for uri_template of PHP",
  2829. "keywords": [
  2830. "guzzlehttp",
  2831. "uri-template"
  2832. ],
  2833. "support": {
  2834. "issues": "https://github.com/guzzle/uri-template/issues",
  2835. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2836. },
  2837. "funding": [
  2838. {
  2839. "url": "https://github.com/GrahamCampbell",
  2840. "type": "github"
  2841. },
  2842. {
  2843. "url": "https://github.com/Nyholm",
  2844. "type": "github"
  2845. },
  2846. {
  2847. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2848. "type": "tidelift"
  2849. }
  2850. ],
  2851. "time": "2023-12-03T19:50:20+00:00"
  2852. },
  2853. {
  2854. "name": "kirschbaum-development/eloquent-power-joins",
  2855. "version": "3.5.8",
  2856. "source": {
  2857. "type": "git",
  2858. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2859. "reference": "397ef08f15ceff48111fd7f57d9f1fd41bf1a453"
  2860. },
  2861. "dist": {
  2862. "type": "zip",
  2863. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/397ef08f15ceff48111fd7f57d9f1fd41bf1a453",
  2864. "reference": "397ef08f15ceff48111fd7f57d9f1fd41bf1a453",
  2865. "shasum": ""
  2866. },
  2867. "require": {
  2868. "illuminate/database": "^8.0|^9.0|^10.0|^11.0",
  2869. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2870. "php": "^8.0"
  2871. },
  2872. "require-dev": {
  2873. "laravel/legacy-factories": "^1.0@dev",
  2874. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2875. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  2876. },
  2877. "type": "library",
  2878. "extra": {
  2879. "laravel": {
  2880. "providers": [
  2881. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2882. ]
  2883. }
  2884. },
  2885. "autoload": {
  2886. "psr-4": {
  2887. "Kirschbaum\\PowerJoins\\": "src"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Luis Dalmolin",
  2897. "email": "luis.nh@gmail.com",
  2898. "role": "Developer"
  2899. }
  2900. ],
  2901. "description": "The Laravel magic applied to joins.",
  2902. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2903. "keywords": [
  2904. "eloquent",
  2905. "join",
  2906. "laravel",
  2907. "mysql"
  2908. ],
  2909. "support": {
  2910. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2911. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.8"
  2912. },
  2913. "time": "2024-09-10T10:28:05+00:00"
  2914. },
  2915. {
  2916. "name": "knplabs/knp-snappy",
  2917. "version": "v1.5.0",
  2918. "source": {
  2919. "type": "git",
  2920. "url": "https://github.com/KnpLabs/snappy.git",
  2921. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6"
  2922. },
  2923. "dist": {
  2924. "type": "zip",
  2925. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/98468898b50c09f26d56d905b79b0f52a2215da6",
  2926. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6",
  2927. "shasum": ""
  2928. },
  2929. "require": {
  2930. "php": ">=8.1",
  2931. "psr/log": "^2.0||^3.0",
  2932. "symfony/process": "^5.0||^6.0||^7.0"
  2933. },
  2934. "require-dev": {
  2935. "friendsofphp/php-cs-fixer": "^3.0",
  2936. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2937. "phpstan/phpstan": "^1.0.0",
  2938. "phpstan/phpstan-phpunit": "^1.0.0",
  2939. "phpunit/phpunit": "^8.5"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "branch-alias": {
  2944. "dev-master": "1.x-dev"
  2945. }
  2946. },
  2947. "autoload": {
  2948. "psr-4": {
  2949. "Knp\\Snappy\\": "src/Knp/Snappy"
  2950. }
  2951. },
  2952. "notification-url": "https://packagist.org/downloads/",
  2953. "license": [
  2954. "MIT"
  2955. ],
  2956. "authors": [
  2957. {
  2958. "name": "KNP Labs Team",
  2959. "homepage": "http://knplabs.com"
  2960. },
  2961. {
  2962. "name": "Symfony Community",
  2963. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2964. }
  2965. ],
  2966. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2967. "homepage": "http://github.com/KnpLabs/snappy",
  2968. "keywords": [
  2969. "knp",
  2970. "knplabs",
  2971. "pdf",
  2972. "snapshot",
  2973. "thumbnail",
  2974. "wkhtmltopdf"
  2975. ],
  2976. "support": {
  2977. "issues": "https://github.com/KnpLabs/snappy/issues",
  2978. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.0"
  2979. },
  2980. "time": "2023-12-18T09:12:11+00:00"
  2981. },
  2982. {
  2983. "name": "laravel/framework",
  2984. "version": "v11.22.0",
  2985. "source": {
  2986. "type": "git",
  2987. "url": "https://github.com/laravel/framework.git",
  2988. "reference": "868c75beacc47d0f361b919bbc155c0b619bf3d5"
  2989. },
  2990. "dist": {
  2991. "type": "zip",
  2992. "url": "https://api.github.com/repos/laravel/framework/zipball/868c75beacc47d0f361b919bbc155c0b619bf3d5",
  2993. "reference": "868c75beacc47d0f361b919bbc155c0b619bf3d5",
  2994. "shasum": ""
  2995. },
  2996. "require": {
  2997. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2998. "composer-runtime-api": "^2.2",
  2999. "doctrine/inflector": "^2.0.5",
  3000. "dragonmantank/cron-expression": "^3.3.2",
  3001. "egulias/email-validator": "^3.2.1|^4.0",
  3002. "ext-ctype": "*",
  3003. "ext-filter": "*",
  3004. "ext-hash": "*",
  3005. "ext-mbstring": "*",
  3006. "ext-openssl": "*",
  3007. "ext-session": "*",
  3008. "ext-tokenizer": "*",
  3009. "fruitcake/php-cors": "^1.3",
  3010. "guzzlehttp/guzzle": "^7.8",
  3011. "guzzlehttp/uri-template": "^1.0",
  3012. "laravel/prompts": "^0.1.18",
  3013. "laravel/serializable-closure": "^1.3",
  3014. "league/commonmark": "^2.2.1",
  3015. "league/flysystem": "^3.8.0",
  3016. "monolog/monolog": "^3.0",
  3017. "nesbot/carbon": "^2.72.2|^3.0",
  3018. "nunomaduro/termwind": "^2.0",
  3019. "php": "^8.2",
  3020. "psr/container": "^1.1.1|^2.0.1",
  3021. "psr/log": "^1.0|^2.0|^3.0",
  3022. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3023. "ramsey/uuid": "^4.7",
  3024. "symfony/console": "^7.0",
  3025. "symfony/error-handler": "^7.0",
  3026. "symfony/finder": "^7.0",
  3027. "symfony/http-foundation": "^7.0",
  3028. "symfony/http-kernel": "^7.0",
  3029. "symfony/mailer": "^7.0",
  3030. "symfony/mime": "^7.0",
  3031. "symfony/polyfill-php83": "^1.28",
  3032. "symfony/process": "^7.0",
  3033. "symfony/routing": "^7.0",
  3034. "symfony/uid": "^7.0",
  3035. "symfony/var-dumper": "^7.0",
  3036. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3037. "vlucas/phpdotenv": "^5.4.1",
  3038. "voku/portable-ascii": "^2.0"
  3039. },
  3040. "conflict": {
  3041. "mockery/mockery": "1.6.8",
  3042. "tightenco/collect": "<5.5.33"
  3043. },
  3044. "provide": {
  3045. "psr/container-implementation": "1.1|2.0",
  3046. "psr/log-implementation": "1.0|2.0|3.0",
  3047. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3048. },
  3049. "replace": {
  3050. "illuminate/auth": "self.version",
  3051. "illuminate/broadcasting": "self.version",
  3052. "illuminate/bus": "self.version",
  3053. "illuminate/cache": "self.version",
  3054. "illuminate/collections": "self.version",
  3055. "illuminate/conditionable": "self.version",
  3056. "illuminate/config": "self.version",
  3057. "illuminate/console": "self.version",
  3058. "illuminate/container": "self.version",
  3059. "illuminate/contracts": "self.version",
  3060. "illuminate/cookie": "self.version",
  3061. "illuminate/database": "self.version",
  3062. "illuminate/encryption": "self.version",
  3063. "illuminate/events": "self.version",
  3064. "illuminate/filesystem": "self.version",
  3065. "illuminate/hashing": "self.version",
  3066. "illuminate/http": "self.version",
  3067. "illuminate/log": "self.version",
  3068. "illuminate/macroable": "self.version",
  3069. "illuminate/mail": "self.version",
  3070. "illuminate/notifications": "self.version",
  3071. "illuminate/pagination": "self.version",
  3072. "illuminate/pipeline": "self.version",
  3073. "illuminate/process": "self.version",
  3074. "illuminate/queue": "self.version",
  3075. "illuminate/redis": "self.version",
  3076. "illuminate/routing": "self.version",
  3077. "illuminate/session": "self.version",
  3078. "illuminate/support": "self.version",
  3079. "illuminate/testing": "self.version",
  3080. "illuminate/translation": "self.version",
  3081. "illuminate/validation": "self.version",
  3082. "illuminate/view": "self.version",
  3083. "spatie/once": "*"
  3084. },
  3085. "require-dev": {
  3086. "ably/ably-php": "^1.0",
  3087. "aws/aws-sdk-php": "^3.235.5",
  3088. "ext-gmp": "*",
  3089. "fakerphp/faker": "^1.23",
  3090. "league/flysystem-aws-s3-v3": "^3.0",
  3091. "league/flysystem-ftp": "^3.0",
  3092. "league/flysystem-path-prefixing": "^3.3",
  3093. "league/flysystem-read-only": "^3.3",
  3094. "league/flysystem-sftp-v3": "^3.0",
  3095. "mockery/mockery": "^1.6",
  3096. "nyholm/psr7": "^1.2",
  3097. "orchestra/testbench-core": "^9.1.5",
  3098. "pda/pheanstalk": "^5.0",
  3099. "phpstan/phpstan": "^1.11.5",
  3100. "phpunit/phpunit": "^10.5|^11.0",
  3101. "predis/predis": "^2.0.2",
  3102. "resend/resend-php": "^0.10.0",
  3103. "symfony/cache": "^7.0",
  3104. "symfony/http-client": "^7.0",
  3105. "symfony/psr-http-message-bridge": "^7.0"
  3106. },
  3107. "suggest": {
  3108. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3109. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  3110. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3111. "ext-apcu": "Required to use the APC cache driver.",
  3112. "ext-fileinfo": "Required to use the Filesystem class.",
  3113. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3114. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3115. "ext-memcached": "Required to use the memcache cache driver.",
  3116. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3117. "ext-pdo": "Required to use all database features.",
  3118. "ext-posix": "Required to use all features of the queue worker.",
  3119. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3120. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3121. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3122. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3123. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  3124. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  3125. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  3126. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  3127. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  3128. "mockery/mockery": "Required to use mocking (^1.6).",
  3129. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3130. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3131. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3132. "predis/predis": "Required to use the predis connector (^2.0.2).",
  3133. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3134. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3135. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3136. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3137. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3138. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3139. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3140. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3141. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "branch-alias": {
  3146. "dev-master": "11.x-dev"
  3147. }
  3148. },
  3149. "autoload": {
  3150. "files": [
  3151. "src/Illuminate/Collections/helpers.php",
  3152. "src/Illuminate/Events/functions.php",
  3153. "src/Illuminate/Filesystem/functions.php",
  3154. "src/Illuminate/Foundation/helpers.php",
  3155. "src/Illuminate/Support/helpers.php"
  3156. ],
  3157. "psr-4": {
  3158. "Illuminate\\": "src/Illuminate/",
  3159. "Illuminate\\Support\\": [
  3160. "src/Illuminate/Macroable/",
  3161. "src/Illuminate/Collections/",
  3162. "src/Illuminate/Conditionable/"
  3163. ]
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Taylor Otwell",
  3173. "email": "taylor@laravel.com"
  3174. }
  3175. ],
  3176. "description": "The Laravel Framework.",
  3177. "homepage": "https://laravel.com",
  3178. "keywords": [
  3179. "framework",
  3180. "laravel"
  3181. ],
  3182. "support": {
  3183. "issues": "https://github.com/laravel/framework/issues",
  3184. "source": "https://github.com/laravel/framework"
  3185. },
  3186. "time": "2024-09-03T15:27:15+00:00"
  3187. },
  3188. {
  3189. "name": "laravel/prompts",
  3190. "version": "v0.1.25",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/laravel/prompts.git",
  3194. "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/laravel/prompts/zipball/7b4029a84c37cb2725fc7f011586e2997040bc95",
  3199. "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95",
  3200. "shasum": ""
  3201. },
  3202. "require": {
  3203. "ext-mbstring": "*",
  3204. "illuminate/collections": "^10.0|^11.0",
  3205. "php": "^8.1",
  3206. "symfony/console": "^6.2|^7.0"
  3207. },
  3208. "conflict": {
  3209. "illuminate/console": ">=10.17.0 <10.25.0",
  3210. "laravel/framework": ">=10.17.0 <10.25.0"
  3211. },
  3212. "require-dev": {
  3213. "mockery/mockery": "^1.5",
  3214. "pestphp/pest": "^2.3",
  3215. "phpstan/phpstan": "^1.11",
  3216. "phpstan/phpstan-mockery": "^1.1"
  3217. },
  3218. "suggest": {
  3219. "ext-pcntl": "Required for the spinner to be animated."
  3220. },
  3221. "type": "library",
  3222. "extra": {
  3223. "branch-alias": {
  3224. "dev-main": "0.1.x-dev"
  3225. }
  3226. },
  3227. "autoload": {
  3228. "files": [
  3229. "src/helpers.php"
  3230. ],
  3231. "psr-4": {
  3232. "Laravel\\Prompts\\": "src/"
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "MIT"
  3238. ],
  3239. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3240. "support": {
  3241. "issues": "https://github.com/laravel/prompts/issues",
  3242. "source": "https://github.com/laravel/prompts/tree/v0.1.25"
  3243. },
  3244. "time": "2024-08-12T22:06:33+00:00"
  3245. },
  3246. {
  3247. "name": "laravel/sanctum",
  3248. "version": "v4.0.2",
  3249. "source": {
  3250. "type": "git",
  3251. "url": "https://github.com/laravel/sanctum.git",
  3252. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1"
  3253. },
  3254. "dist": {
  3255. "type": "zip",
  3256. "url": "https://api.github.com/repos/laravel/sanctum/zipball/9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3257. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3258. "shasum": ""
  3259. },
  3260. "require": {
  3261. "ext-json": "*",
  3262. "illuminate/console": "^11.0",
  3263. "illuminate/contracts": "^11.0",
  3264. "illuminate/database": "^11.0",
  3265. "illuminate/support": "^11.0",
  3266. "php": "^8.2",
  3267. "symfony/console": "^7.0"
  3268. },
  3269. "require-dev": {
  3270. "mockery/mockery": "^1.6",
  3271. "orchestra/testbench": "^9.0",
  3272. "phpstan/phpstan": "^1.10",
  3273. "phpunit/phpunit": "^10.5"
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "laravel": {
  3278. "providers": [
  3279. "Laravel\\Sanctum\\SanctumServiceProvider"
  3280. ]
  3281. }
  3282. },
  3283. "autoload": {
  3284. "psr-4": {
  3285. "Laravel\\Sanctum\\": "src/"
  3286. }
  3287. },
  3288. "notification-url": "https://packagist.org/downloads/",
  3289. "license": [
  3290. "MIT"
  3291. ],
  3292. "authors": [
  3293. {
  3294. "name": "Taylor Otwell",
  3295. "email": "taylor@laravel.com"
  3296. }
  3297. ],
  3298. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3299. "keywords": [
  3300. "auth",
  3301. "laravel",
  3302. "sanctum"
  3303. ],
  3304. "support": {
  3305. "issues": "https://github.com/laravel/sanctum/issues",
  3306. "source": "https://github.com/laravel/sanctum"
  3307. },
  3308. "time": "2024-04-10T19:39:58+00:00"
  3309. },
  3310. {
  3311. "name": "laravel/serializable-closure",
  3312. "version": "v1.3.4",
  3313. "source": {
  3314. "type": "git",
  3315. "url": "https://github.com/laravel/serializable-closure.git",
  3316. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81"
  3317. },
  3318. "dist": {
  3319. "type": "zip",
  3320. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  3321. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  3322. "shasum": ""
  3323. },
  3324. "require": {
  3325. "php": "^7.3|^8.0"
  3326. },
  3327. "require-dev": {
  3328. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  3329. "nesbot/carbon": "^2.61|^3.0",
  3330. "pestphp/pest": "^1.21.3",
  3331. "phpstan/phpstan": "^1.8.2",
  3332. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  3333. },
  3334. "type": "library",
  3335. "extra": {
  3336. "branch-alias": {
  3337. "dev-master": "1.x-dev"
  3338. }
  3339. },
  3340. "autoload": {
  3341. "psr-4": {
  3342. "Laravel\\SerializableClosure\\": "src/"
  3343. }
  3344. },
  3345. "notification-url": "https://packagist.org/downloads/",
  3346. "license": [
  3347. "MIT"
  3348. ],
  3349. "authors": [
  3350. {
  3351. "name": "Taylor Otwell",
  3352. "email": "taylor@laravel.com"
  3353. },
  3354. {
  3355. "name": "Nuno Maduro",
  3356. "email": "nuno@laravel.com"
  3357. }
  3358. ],
  3359. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3360. "keywords": [
  3361. "closure",
  3362. "laravel",
  3363. "serializable"
  3364. ],
  3365. "support": {
  3366. "issues": "https://github.com/laravel/serializable-closure/issues",
  3367. "source": "https://github.com/laravel/serializable-closure"
  3368. },
  3369. "time": "2024-08-02T07:48:17+00:00"
  3370. },
  3371. {
  3372. "name": "laravel/socialite",
  3373. "version": "v5.16.0",
  3374. "source": {
  3375. "type": "git",
  3376. "url": "https://github.com/laravel/socialite.git",
  3377. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  3378. },
  3379. "dist": {
  3380. "type": "zip",
  3381. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  3382. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  3383. "shasum": ""
  3384. },
  3385. "require": {
  3386. "ext-json": "*",
  3387. "firebase/php-jwt": "^6.4",
  3388. "guzzlehttp/guzzle": "^6.0|^7.0",
  3389. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3390. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3391. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3392. "league/oauth1-client": "^1.10.1",
  3393. "php": "^7.2|^8.0",
  3394. "phpseclib/phpseclib": "^3.0"
  3395. },
  3396. "require-dev": {
  3397. "mockery/mockery": "^1.0",
  3398. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3399. "phpstan/phpstan": "^1.10",
  3400. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3401. },
  3402. "type": "library",
  3403. "extra": {
  3404. "branch-alias": {
  3405. "dev-master": "5.x-dev"
  3406. },
  3407. "laravel": {
  3408. "providers": [
  3409. "Laravel\\Socialite\\SocialiteServiceProvider"
  3410. ],
  3411. "aliases": {
  3412. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3413. }
  3414. }
  3415. },
  3416. "autoload": {
  3417. "psr-4": {
  3418. "Laravel\\Socialite\\": "src/"
  3419. }
  3420. },
  3421. "notification-url": "https://packagist.org/downloads/",
  3422. "license": [
  3423. "MIT"
  3424. ],
  3425. "authors": [
  3426. {
  3427. "name": "Taylor Otwell",
  3428. "email": "taylor@laravel.com"
  3429. }
  3430. ],
  3431. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3432. "homepage": "https://laravel.com",
  3433. "keywords": [
  3434. "laravel",
  3435. "oauth"
  3436. ],
  3437. "support": {
  3438. "issues": "https://github.com/laravel/socialite/issues",
  3439. "source": "https://github.com/laravel/socialite"
  3440. },
  3441. "time": "2024-09-03T09:46:57+00:00"
  3442. },
  3443. {
  3444. "name": "laravel/tinker",
  3445. "version": "v2.9.0",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/laravel/tinker.git",
  3449. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3454. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3459. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3460. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3461. "php": "^7.2.5|^8.0",
  3462. "psy/psysh": "^0.11.1|^0.12.0",
  3463. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3464. },
  3465. "require-dev": {
  3466. "mockery/mockery": "~1.3.3|^1.4.2",
  3467. "phpstan/phpstan": "^1.10",
  3468. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3469. },
  3470. "suggest": {
  3471. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3472. },
  3473. "type": "library",
  3474. "extra": {
  3475. "laravel": {
  3476. "providers": [
  3477. "Laravel\\Tinker\\TinkerServiceProvider"
  3478. ]
  3479. }
  3480. },
  3481. "autoload": {
  3482. "psr-4": {
  3483. "Laravel\\Tinker\\": "src/"
  3484. }
  3485. },
  3486. "notification-url": "https://packagist.org/downloads/",
  3487. "license": [
  3488. "MIT"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "Taylor Otwell",
  3493. "email": "taylor@laravel.com"
  3494. }
  3495. ],
  3496. "description": "Powerful REPL for the Laravel framework.",
  3497. "keywords": [
  3498. "REPL",
  3499. "Tinker",
  3500. "laravel",
  3501. "psysh"
  3502. ],
  3503. "support": {
  3504. "issues": "https://github.com/laravel/tinker/issues",
  3505. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  3506. },
  3507. "time": "2024-01-04T16:10:04+00:00"
  3508. },
  3509. {
  3510. "name": "league/commonmark",
  3511. "version": "2.5.3",
  3512. "source": {
  3513. "type": "git",
  3514. "url": "https://github.com/thephpleague/commonmark.git",
  3515. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  3516. },
  3517. "dist": {
  3518. "type": "zip",
  3519. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  3520. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  3521. "shasum": ""
  3522. },
  3523. "require": {
  3524. "ext-mbstring": "*",
  3525. "league/config": "^1.1.1",
  3526. "php": "^7.4 || ^8.0",
  3527. "psr/event-dispatcher": "^1.0",
  3528. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3529. "symfony/polyfill-php80": "^1.16"
  3530. },
  3531. "require-dev": {
  3532. "cebe/markdown": "^1.0",
  3533. "commonmark/cmark": "0.31.1",
  3534. "commonmark/commonmark.js": "0.31.1",
  3535. "composer/package-versions-deprecated": "^1.8",
  3536. "embed/embed": "^4.4",
  3537. "erusev/parsedown": "^1.0",
  3538. "ext-json": "*",
  3539. "github/gfm": "0.29.0",
  3540. "michelf/php-markdown": "^1.4 || ^2.0",
  3541. "nyholm/psr7": "^1.5",
  3542. "phpstan/phpstan": "^1.8.2",
  3543. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3544. "scrutinizer/ocular": "^1.8.1",
  3545. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  3546. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  3547. "unleashedtech/php-coding-standard": "^3.1.1",
  3548. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3549. },
  3550. "suggest": {
  3551. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3552. },
  3553. "type": "library",
  3554. "extra": {
  3555. "branch-alias": {
  3556. "dev-main": "2.6-dev"
  3557. }
  3558. },
  3559. "autoload": {
  3560. "psr-4": {
  3561. "League\\CommonMark\\": "src"
  3562. }
  3563. },
  3564. "notification-url": "https://packagist.org/downloads/",
  3565. "license": [
  3566. "BSD-3-Clause"
  3567. ],
  3568. "authors": [
  3569. {
  3570. "name": "Colin O'Dell",
  3571. "email": "colinodell@gmail.com",
  3572. "homepage": "https://www.colinodell.com",
  3573. "role": "Lead Developer"
  3574. }
  3575. ],
  3576. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3577. "homepage": "https://commonmark.thephpleague.com",
  3578. "keywords": [
  3579. "commonmark",
  3580. "flavored",
  3581. "gfm",
  3582. "github",
  3583. "github-flavored",
  3584. "markdown",
  3585. "md",
  3586. "parser"
  3587. ],
  3588. "support": {
  3589. "docs": "https://commonmark.thephpleague.com/",
  3590. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3591. "issues": "https://github.com/thephpleague/commonmark/issues",
  3592. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3593. "source": "https://github.com/thephpleague/commonmark"
  3594. },
  3595. "funding": [
  3596. {
  3597. "url": "https://www.colinodell.com/sponsor",
  3598. "type": "custom"
  3599. },
  3600. {
  3601. "url": "https://www.paypal.me/colinpodell/10.00",
  3602. "type": "custom"
  3603. },
  3604. {
  3605. "url": "https://github.com/colinodell",
  3606. "type": "github"
  3607. },
  3608. {
  3609. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3610. "type": "tidelift"
  3611. }
  3612. ],
  3613. "time": "2024-08-16T11:46:16+00:00"
  3614. },
  3615. {
  3616. "name": "league/config",
  3617. "version": "v1.2.0",
  3618. "source": {
  3619. "type": "git",
  3620. "url": "https://github.com/thephpleague/config.git",
  3621. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3622. },
  3623. "dist": {
  3624. "type": "zip",
  3625. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3626. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3627. "shasum": ""
  3628. },
  3629. "require": {
  3630. "dflydev/dot-access-data": "^3.0.1",
  3631. "nette/schema": "^1.2",
  3632. "php": "^7.4 || ^8.0"
  3633. },
  3634. "require-dev": {
  3635. "phpstan/phpstan": "^1.8.2",
  3636. "phpunit/phpunit": "^9.5.5",
  3637. "scrutinizer/ocular": "^1.8.1",
  3638. "unleashedtech/php-coding-standard": "^3.1",
  3639. "vimeo/psalm": "^4.7.3"
  3640. },
  3641. "type": "library",
  3642. "extra": {
  3643. "branch-alias": {
  3644. "dev-main": "1.2-dev"
  3645. }
  3646. },
  3647. "autoload": {
  3648. "psr-4": {
  3649. "League\\Config\\": "src"
  3650. }
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "BSD-3-Clause"
  3655. ],
  3656. "authors": [
  3657. {
  3658. "name": "Colin O'Dell",
  3659. "email": "colinodell@gmail.com",
  3660. "homepage": "https://www.colinodell.com",
  3661. "role": "Lead Developer"
  3662. }
  3663. ],
  3664. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3665. "homepage": "https://config.thephpleague.com",
  3666. "keywords": [
  3667. "array",
  3668. "config",
  3669. "configuration",
  3670. "dot",
  3671. "dot-access",
  3672. "nested",
  3673. "schema"
  3674. ],
  3675. "support": {
  3676. "docs": "https://config.thephpleague.com/",
  3677. "issues": "https://github.com/thephpleague/config/issues",
  3678. "rss": "https://github.com/thephpleague/config/releases.atom",
  3679. "source": "https://github.com/thephpleague/config"
  3680. },
  3681. "funding": [
  3682. {
  3683. "url": "https://www.colinodell.com/sponsor",
  3684. "type": "custom"
  3685. },
  3686. {
  3687. "url": "https://www.paypal.me/colinpodell/10.00",
  3688. "type": "custom"
  3689. },
  3690. {
  3691. "url": "https://github.com/colinodell",
  3692. "type": "github"
  3693. }
  3694. ],
  3695. "time": "2022-12-11T20:36:23+00:00"
  3696. },
  3697. {
  3698. "name": "league/csv",
  3699. "version": "9.16.0",
  3700. "source": {
  3701. "type": "git",
  3702. "url": "https://github.com/thephpleague/csv.git",
  3703. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440"
  3704. },
  3705. "dist": {
  3706. "type": "zip",
  3707. "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440",
  3708. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440",
  3709. "shasum": ""
  3710. },
  3711. "require": {
  3712. "ext-filter": "*",
  3713. "php": "^8.1.2"
  3714. },
  3715. "require-dev": {
  3716. "doctrine/collections": "^2.2.2",
  3717. "ext-dom": "*",
  3718. "ext-xdebug": "*",
  3719. "friendsofphp/php-cs-fixer": "^3.57.1",
  3720. "phpbench/phpbench": "^1.2.15",
  3721. "phpstan/phpstan": "^1.11.1",
  3722. "phpstan/phpstan-deprecation-rules": "^1.2.0",
  3723. "phpstan/phpstan-phpunit": "^1.4.0",
  3724. "phpstan/phpstan-strict-rules": "^1.6.0",
  3725. "phpunit/phpunit": "^10.5.16 || ^11.1.3",
  3726. "symfony/var-dumper": "^6.4.6 || ^7.0.7"
  3727. },
  3728. "suggest": {
  3729. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3730. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3731. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3732. },
  3733. "type": "library",
  3734. "extra": {
  3735. "branch-alias": {
  3736. "dev-master": "9.x-dev"
  3737. }
  3738. },
  3739. "autoload": {
  3740. "files": [
  3741. "src/functions_include.php"
  3742. ],
  3743. "psr-4": {
  3744. "League\\Csv\\": "src"
  3745. }
  3746. },
  3747. "notification-url": "https://packagist.org/downloads/",
  3748. "license": [
  3749. "MIT"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "Ignace Nyamagana Butera",
  3754. "email": "nyamsprod@gmail.com",
  3755. "homepage": "https://github.com/nyamsprod/",
  3756. "role": "Developer"
  3757. }
  3758. ],
  3759. "description": "CSV data manipulation made easy in PHP",
  3760. "homepage": "https://csv.thephpleague.com",
  3761. "keywords": [
  3762. "convert",
  3763. "csv",
  3764. "export",
  3765. "filter",
  3766. "import",
  3767. "read",
  3768. "transform",
  3769. "write"
  3770. ],
  3771. "support": {
  3772. "docs": "https://csv.thephpleague.com",
  3773. "issues": "https://github.com/thephpleague/csv/issues",
  3774. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3775. "source": "https://github.com/thephpleague/csv"
  3776. },
  3777. "funding": [
  3778. {
  3779. "url": "https://github.com/sponsors/nyamsprod",
  3780. "type": "github"
  3781. }
  3782. ],
  3783. "time": "2024-05-24T11:04:54+00:00"
  3784. },
  3785. {
  3786. "name": "league/flysystem",
  3787. "version": "3.28.0",
  3788. "source": {
  3789. "type": "git",
  3790. "url": "https://github.com/thephpleague/flysystem.git",
  3791. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c"
  3792. },
  3793. "dist": {
  3794. "type": "zip",
  3795. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  3796. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  3797. "shasum": ""
  3798. },
  3799. "require": {
  3800. "league/flysystem-local": "^3.0.0",
  3801. "league/mime-type-detection": "^1.0.0",
  3802. "php": "^8.0.2"
  3803. },
  3804. "conflict": {
  3805. "async-aws/core": "<1.19.0",
  3806. "async-aws/s3": "<1.14.0",
  3807. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3808. "guzzlehttp/guzzle": "<7.0",
  3809. "guzzlehttp/ringphp": "<1.1.1",
  3810. "phpseclib/phpseclib": "3.0.15",
  3811. "symfony/http-client": "<5.2"
  3812. },
  3813. "require-dev": {
  3814. "async-aws/s3": "^1.5 || ^2.0",
  3815. "async-aws/simple-s3": "^1.1 || ^2.0",
  3816. "aws/aws-sdk-php": "^3.295.10",
  3817. "composer/semver": "^3.0",
  3818. "ext-fileinfo": "*",
  3819. "ext-ftp": "*",
  3820. "ext-mongodb": "^1.3",
  3821. "ext-zip": "*",
  3822. "friendsofphp/php-cs-fixer": "^3.5",
  3823. "google/cloud-storage": "^1.23",
  3824. "guzzlehttp/psr7": "^2.6",
  3825. "microsoft/azure-storage-blob": "^1.1",
  3826. "mongodb/mongodb": "^1.2",
  3827. "phpseclib/phpseclib": "^3.0.36",
  3828. "phpstan/phpstan": "^1.10",
  3829. "phpunit/phpunit": "^9.5.11|^10.0",
  3830. "sabre/dav": "^4.6.0"
  3831. },
  3832. "type": "library",
  3833. "autoload": {
  3834. "psr-4": {
  3835. "League\\Flysystem\\": "src"
  3836. }
  3837. },
  3838. "notification-url": "https://packagist.org/downloads/",
  3839. "license": [
  3840. "MIT"
  3841. ],
  3842. "authors": [
  3843. {
  3844. "name": "Frank de Jonge",
  3845. "email": "info@frankdejonge.nl"
  3846. }
  3847. ],
  3848. "description": "File storage abstraction for PHP",
  3849. "keywords": [
  3850. "WebDAV",
  3851. "aws",
  3852. "cloud",
  3853. "file",
  3854. "files",
  3855. "filesystem",
  3856. "filesystems",
  3857. "ftp",
  3858. "s3",
  3859. "sftp",
  3860. "storage"
  3861. ],
  3862. "support": {
  3863. "issues": "https://github.com/thephpleague/flysystem/issues",
  3864. "source": "https://github.com/thephpleague/flysystem/tree/3.28.0"
  3865. },
  3866. "time": "2024-05-22T10:09:12+00:00"
  3867. },
  3868. {
  3869. "name": "league/flysystem-local",
  3870. "version": "3.28.0",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/thephpleague/flysystem-local.git",
  3874. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  3879. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  3880. "shasum": ""
  3881. },
  3882. "require": {
  3883. "ext-fileinfo": "*",
  3884. "league/flysystem": "^3.0.0",
  3885. "league/mime-type-detection": "^1.0.0",
  3886. "php": "^8.0.2"
  3887. },
  3888. "type": "library",
  3889. "autoload": {
  3890. "psr-4": {
  3891. "League\\Flysystem\\Local\\": ""
  3892. }
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Frank de Jonge",
  3901. "email": "info@frankdejonge.nl"
  3902. }
  3903. ],
  3904. "description": "Local filesystem adapter for Flysystem.",
  3905. "keywords": [
  3906. "Flysystem",
  3907. "file",
  3908. "files",
  3909. "filesystem",
  3910. "local"
  3911. ],
  3912. "support": {
  3913. "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0"
  3914. },
  3915. "time": "2024-05-06T20:05:52+00:00"
  3916. },
  3917. {
  3918. "name": "league/mime-type-detection",
  3919. "version": "1.15.0",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3923. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3928. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3929. "shasum": ""
  3930. },
  3931. "require": {
  3932. "ext-fileinfo": "*",
  3933. "php": "^7.4 || ^8.0"
  3934. },
  3935. "require-dev": {
  3936. "friendsofphp/php-cs-fixer": "^3.2",
  3937. "phpstan/phpstan": "^0.12.68",
  3938. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3939. },
  3940. "type": "library",
  3941. "autoload": {
  3942. "psr-4": {
  3943. "League\\MimeTypeDetection\\": "src"
  3944. }
  3945. },
  3946. "notification-url": "https://packagist.org/downloads/",
  3947. "license": [
  3948. "MIT"
  3949. ],
  3950. "authors": [
  3951. {
  3952. "name": "Frank de Jonge",
  3953. "email": "info@frankdejonge.nl"
  3954. }
  3955. ],
  3956. "description": "Mime-type detection for Flysystem",
  3957. "support": {
  3958. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3959. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  3960. },
  3961. "funding": [
  3962. {
  3963. "url": "https://github.com/frankdejonge",
  3964. "type": "github"
  3965. },
  3966. {
  3967. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3968. "type": "tidelift"
  3969. }
  3970. ],
  3971. "time": "2024-01-28T23:22:08+00:00"
  3972. },
  3973. {
  3974. "name": "league/oauth1-client",
  3975. "version": "v1.10.1",
  3976. "source": {
  3977. "type": "git",
  3978. "url": "https://github.com/thephpleague/oauth1-client.git",
  3979. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3980. },
  3981. "dist": {
  3982. "type": "zip",
  3983. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3984. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3985. "shasum": ""
  3986. },
  3987. "require": {
  3988. "ext-json": "*",
  3989. "ext-openssl": "*",
  3990. "guzzlehttp/guzzle": "^6.0|^7.0",
  3991. "guzzlehttp/psr7": "^1.7|^2.0",
  3992. "php": ">=7.1||>=8.0"
  3993. },
  3994. "require-dev": {
  3995. "ext-simplexml": "*",
  3996. "friendsofphp/php-cs-fixer": "^2.17",
  3997. "mockery/mockery": "^1.3.3",
  3998. "phpstan/phpstan": "^0.12.42",
  3999. "phpunit/phpunit": "^7.5||9.5"
  4000. },
  4001. "suggest": {
  4002. "ext-simplexml": "For decoding XML-based responses."
  4003. },
  4004. "type": "library",
  4005. "extra": {
  4006. "branch-alias": {
  4007. "dev-master": "1.0-dev",
  4008. "dev-develop": "2.0-dev"
  4009. }
  4010. },
  4011. "autoload": {
  4012. "psr-4": {
  4013. "League\\OAuth1\\Client\\": "src/"
  4014. }
  4015. },
  4016. "notification-url": "https://packagist.org/downloads/",
  4017. "license": [
  4018. "MIT"
  4019. ],
  4020. "authors": [
  4021. {
  4022. "name": "Ben Corlett",
  4023. "email": "bencorlett@me.com",
  4024. "homepage": "http://www.webcomm.com.au",
  4025. "role": "Developer"
  4026. }
  4027. ],
  4028. "description": "OAuth 1.0 Client Library",
  4029. "keywords": [
  4030. "Authentication",
  4031. "SSO",
  4032. "authorization",
  4033. "bitbucket",
  4034. "identity",
  4035. "idp",
  4036. "oauth",
  4037. "oauth1",
  4038. "single sign on",
  4039. "trello",
  4040. "tumblr",
  4041. "twitter"
  4042. ],
  4043. "support": {
  4044. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4045. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4046. },
  4047. "time": "2022-04-15T14:02:14+00:00"
  4048. },
  4049. {
  4050. "name": "league/uri",
  4051. "version": "7.4.1",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/thephpleague/uri.git",
  4055. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4060. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4061. "shasum": ""
  4062. },
  4063. "require": {
  4064. "league/uri-interfaces": "^7.3",
  4065. "php": "^8.1"
  4066. },
  4067. "conflict": {
  4068. "league/uri-schemes": "^1.0"
  4069. },
  4070. "suggest": {
  4071. "ext-bcmath": "to improve IPV4 host parsing",
  4072. "ext-fileinfo": "to create Data URI from file contennts",
  4073. "ext-gmp": "to improve IPV4 host parsing",
  4074. "ext-intl": "to handle IDN host with the best performance",
  4075. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4076. "league/uri-components": "Needed to easily manipulate URI objects components",
  4077. "php-64bit": "to improve IPV4 host parsing",
  4078. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4079. },
  4080. "type": "library",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-master": "7.x-dev"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "League\\Uri\\": ""
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "Ignace Nyamagana Butera",
  4098. "email": "nyamsprod@gmail.com",
  4099. "homepage": "https://nyamsprod.com"
  4100. }
  4101. ],
  4102. "description": "URI manipulation library",
  4103. "homepage": "https://uri.thephpleague.com",
  4104. "keywords": [
  4105. "data-uri",
  4106. "file-uri",
  4107. "ftp",
  4108. "hostname",
  4109. "http",
  4110. "https",
  4111. "middleware",
  4112. "parse_str",
  4113. "parse_url",
  4114. "psr-7",
  4115. "query-string",
  4116. "querystring",
  4117. "rfc3986",
  4118. "rfc3987",
  4119. "rfc6570",
  4120. "uri",
  4121. "uri-template",
  4122. "url",
  4123. "ws"
  4124. ],
  4125. "support": {
  4126. "docs": "https://uri.thephpleague.com",
  4127. "forum": "https://thephpleague.slack.com",
  4128. "issues": "https://github.com/thephpleague/uri-src/issues",
  4129. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  4130. },
  4131. "funding": [
  4132. {
  4133. "url": "https://github.com/sponsors/nyamsprod",
  4134. "type": "github"
  4135. }
  4136. ],
  4137. "time": "2024-03-23T07:42:40+00:00"
  4138. },
  4139. {
  4140. "name": "league/uri-interfaces",
  4141. "version": "7.4.1",
  4142. "source": {
  4143. "type": "git",
  4144. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4145. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  4146. },
  4147. "dist": {
  4148. "type": "zip",
  4149. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  4150. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  4151. "shasum": ""
  4152. },
  4153. "require": {
  4154. "ext-filter": "*",
  4155. "php": "^8.1",
  4156. "psr/http-factory": "^1",
  4157. "psr/http-message": "^1.1 || ^2.0"
  4158. },
  4159. "suggest": {
  4160. "ext-bcmath": "to improve IPV4 host parsing",
  4161. "ext-gmp": "to improve IPV4 host parsing",
  4162. "ext-intl": "to handle IDN host with the best performance",
  4163. "php-64bit": "to improve IPV4 host parsing",
  4164. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4165. },
  4166. "type": "library",
  4167. "extra": {
  4168. "branch-alias": {
  4169. "dev-master": "7.x-dev"
  4170. }
  4171. },
  4172. "autoload": {
  4173. "psr-4": {
  4174. "League\\Uri\\": ""
  4175. }
  4176. },
  4177. "notification-url": "https://packagist.org/downloads/",
  4178. "license": [
  4179. "MIT"
  4180. ],
  4181. "authors": [
  4182. {
  4183. "name": "Ignace Nyamagana Butera",
  4184. "email": "nyamsprod@gmail.com",
  4185. "homepage": "https://nyamsprod.com"
  4186. }
  4187. ],
  4188. "description": "Common interfaces and classes for URI representation and interaction",
  4189. "homepage": "https://uri.thephpleague.com",
  4190. "keywords": [
  4191. "data-uri",
  4192. "file-uri",
  4193. "ftp",
  4194. "hostname",
  4195. "http",
  4196. "https",
  4197. "parse_str",
  4198. "parse_url",
  4199. "psr-7",
  4200. "query-string",
  4201. "querystring",
  4202. "rfc3986",
  4203. "rfc3987",
  4204. "rfc6570",
  4205. "uri",
  4206. "url",
  4207. "ws"
  4208. ],
  4209. "support": {
  4210. "docs": "https://uri.thephpleague.com",
  4211. "forum": "https://thephpleague.slack.com",
  4212. "issues": "https://github.com/thephpleague/uri-src/issues",
  4213. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  4214. },
  4215. "funding": [
  4216. {
  4217. "url": "https://github.com/sponsors/nyamsprod",
  4218. "type": "github"
  4219. }
  4220. ],
  4221. "time": "2024-03-23T07:42:40+00:00"
  4222. },
  4223. {
  4224. "name": "livewire/livewire",
  4225. "version": "v3.5.6",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://github.com/livewire/livewire.git",
  4229. "reference": "597a2808d8d3001cc3ed5ce89a6ebab00f83b80f"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://api.github.com/repos/livewire/livewire/zipball/597a2808d8d3001cc3ed5ce89a6ebab00f83b80f",
  4234. "reference": "597a2808d8d3001cc3ed5ce89a6ebab00f83b80f",
  4235. "shasum": ""
  4236. },
  4237. "require": {
  4238. "illuminate/database": "^10.0|^11.0",
  4239. "illuminate/routing": "^10.0|^11.0",
  4240. "illuminate/support": "^10.0|^11.0",
  4241. "illuminate/validation": "^10.0|^11.0",
  4242. "laravel/prompts": "^0.1.24",
  4243. "league/mime-type-detection": "^1.9",
  4244. "php": "^8.1",
  4245. "symfony/console": "^6.0|^7.0",
  4246. "symfony/http-kernel": "^6.2|^7.0"
  4247. },
  4248. "require-dev": {
  4249. "calebporzio/sushi": "^2.1",
  4250. "laravel/framework": "^10.15.0|^11.0",
  4251. "mockery/mockery": "^1.3.1",
  4252. "orchestra/testbench": "^8.21.0|^9.0",
  4253. "orchestra/testbench-dusk": "^8.24|^9.1",
  4254. "phpunit/phpunit": "^10.4",
  4255. "psy/psysh": "^0.11.22|^0.12"
  4256. },
  4257. "type": "library",
  4258. "extra": {
  4259. "laravel": {
  4260. "providers": [
  4261. "Livewire\\LivewireServiceProvider"
  4262. ],
  4263. "aliases": {
  4264. "Livewire": "Livewire\\Livewire"
  4265. }
  4266. }
  4267. },
  4268. "autoload": {
  4269. "files": [
  4270. "src/helpers.php"
  4271. ],
  4272. "psr-4": {
  4273. "Livewire\\": "src/"
  4274. }
  4275. },
  4276. "notification-url": "https://packagist.org/downloads/",
  4277. "license": [
  4278. "MIT"
  4279. ],
  4280. "authors": [
  4281. {
  4282. "name": "Caleb Porzio",
  4283. "email": "calebporzio@gmail.com"
  4284. }
  4285. ],
  4286. "description": "A front-end framework for Laravel.",
  4287. "support": {
  4288. "issues": "https://github.com/livewire/livewire/issues",
  4289. "source": "https://github.com/livewire/livewire/tree/v3.5.6"
  4290. },
  4291. "funding": [
  4292. {
  4293. "url": "https://github.com/livewire",
  4294. "type": "github"
  4295. }
  4296. ],
  4297. "time": "2024-08-19T11:52:18+00:00"
  4298. },
  4299. {
  4300. "name": "masterminds/html5",
  4301. "version": "2.9.0",
  4302. "source": {
  4303. "type": "git",
  4304. "url": "https://github.com/Masterminds/html5-php.git",
  4305. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4306. },
  4307. "dist": {
  4308. "type": "zip",
  4309. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4310. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4311. "shasum": ""
  4312. },
  4313. "require": {
  4314. "ext-dom": "*",
  4315. "php": ">=5.3.0"
  4316. },
  4317. "require-dev": {
  4318. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4319. },
  4320. "type": "library",
  4321. "extra": {
  4322. "branch-alias": {
  4323. "dev-master": "2.7-dev"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "psr-4": {
  4328. "Masterminds\\": "src"
  4329. }
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Matt Butcher",
  4338. "email": "technosophos@gmail.com"
  4339. },
  4340. {
  4341. "name": "Matt Farina",
  4342. "email": "matt@mattfarina.com"
  4343. },
  4344. {
  4345. "name": "Asmir Mustafic",
  4346. "email": "goetas@gmail.com"
  4347. }
  4348. ],
  4349. "description": "An HTML5 parser and serializer.",
  4350. "homepage": "http://masterminds.github.io/html5-php",
  4351. "keywords": [
  4352. "HTML5",
  4353. "dom",
  4354. "html",
  4355. "parser",
  4356. "querypath",
  4357. "serializer",
  4358. "xml"
  4359. ],
  4360. "support": {
  4361. "issues": "https://github.com/Masterminds/html5-php/issues",
  4362. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4363. },
  4364. "time": "2024-03-31T07:05:07+00:00"
  4365. },
  4366. {
  4367. "name": "matomo/device-detector",
  4368. "version": "6.4.0",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://github.com/matomo-org/device-detector.git",
  4372. "reference": "05dca429cfe7b6a59947a0d449dbeb60cddc02f2"
  4373. },
  4374. "dist": {
  4375. "type": "zip",
  4376. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/05dca429cfe7b6a59947a0d449dbeb60cddc02f2",
  4377. "reference": "05dca429cfe7b6a59947a0d449dbeb60cddc02f2",
  4378. "shasum": ""
  4379. },
  4380. "require": {
  4381. "mustangostang/spyc": "*",
  4382. "php": "^7.2|^8.0"
  4383. },
  4384. "replace": {
  4385. "piwik/device-detector": "self.version"
  4386. },
  4387. "require-dev": {
  4388. "matthiasmullie/scrapbook": "^1.4.7",
  4389. "mayflower/mo4-coding-standard": "^v9.0.0",
  4390. "phpstan/phpstan": "^1.10.44",
  4391. "phpunit/phpunit": "^8.5.8",
  4392. "psr/cache": "^1.0.1",
  4393. "psr/simple-cache": "^1.0.1",
  4394. "symfony/yaml": "^5.1.7"
  4395. },
  4396. "suggest": {
  4397. "doctrine/cache": "Can directly be used for caching purpose",
  4398. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4399. },
  4400. "type": "library",
  4401. "autoload": {
  4402. "psr-4": {
  4403. "DeviceDetector\\": ""
  4404. },
  4405. "exclude-from-classmap": [
  4406. "Tests/"
  4407. ]
  4408. },
  4409. "notification-url": "https://packagist.org/downloads/",
  4410. "license": [
  4411. "LGPL-3.0-or-later"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "The Matomo Team",
  4416. "email": "hello@matomo.org",
  4417. "homepage": "https://matomo.org/team/"
  4418. }
  4419. ],
  4420. "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.",
  4421. "homepage": "https://matomo.org",
  4422. "keywords": [
  4423. "devicedetection",
  4424. "parser",
  4425. "useragent"
  4426. ],
  4427. "support": {
  4428. "forum": "https://forum.matomo.org/",
  4429. "issues": "https://github.com/matomo-org/device-detector/issues",
  4430. "source": "https://github.com/matomo-org/matomo",
  4431. "wiki": "https://dev.matomo.org/"
  4432. },
  4433. "time": "2024-09-10T08:27:24+00:00"
  4434. },
  4435. {
  4436. "name": "monolog/monolog",
  4437. "version": "3.7.0",
  4438. "source": {
  4439. "type": "git",
  4440. "url": "https://github.com/Seldaek/monolog.git",
  4441. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4442. },
  4443. "dist": {
  4444. "type": "zip",
  4445. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4446. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4447. "shasum": ""
  4448. },
  4449. "require": {
  4450. "php": ">=8.1",
  4451. "psr/log": "^2.0 || ^3.0"
  4452. },
  4453. "provide": {
  4454. "psr/log-implementation": "3.0.0"
  4455. },
  4456. "require-dev": {
  4457. "aws/aws-sdk-php": "^3.0",
  4458. "doctrine/couchdb": "~1.0@dev",
  4459. "elasticsearch/elasticsearch": "^7 || ^8",
  4460. "ext-json": "*",
  4461. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4462. "guzzlehttp/guzzle": "^7.4.5",
  4463. "guzzlehttp/psr7": "^2.2",
  4464. "mongodb/mongodb": "^1.8",
  4465. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4466. "phpstan/phpstan": "^1.9",
  4467. "phpstan/phpstan-deprecation-rules": "^1.0",
  4468. "phpstan/phpstan-strict-rules": "^1.4",
  4469. "phpunit/phpunit": "^10.5.17",
  4470. "predis/predis": "^1.1 || ^2",
  4471. "ruflin/elastica": "^7",
  4472. "symfony/mailer": "^5.4 || ^6",
  4473. "symfony/mime": "^5.4 || ^6"
  4474. },
  4475. "suggest": {
  4476. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4477. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4478. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4479. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4480. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4481. "ext-mbstring": "Allow to work properly with unicode symbols",
  4482. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4483. "ext-openssl": "Required to send log messages using SSL",
  4484. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4485. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4486. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4487. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4488. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4489. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4490. },
  4491. "type": "library",
  4492. "extra": {
  4493. "branch-alias": {
  4494. "dev-main": "3.x-dev"
  4495. }
  4496. },
  4497. "autoload": {
  4498. "psr-4": {
  4499. "Monolog\\": "src/Monolog"
  4500. }
  4501. },
  4502. "notification-url": "https://packagist.org/downloads/",
  4503. "license": [
  4504. "MIT"
  4505. ],
  4506. "authors": [
  4507. {
  4508. "name": "Jordi Boggiano",
  4509. "email": "j.boggiano@seld.be",
  4510. "homepage": "https://seld.be"
  4511. }
  4512. ],
  4513. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4514. "homepage": "https://github.com/Seldaek/monolog",
  4515. "keywords": [
  4516. "log",
  4517. "logging",
  4518. "psr-3"
  4519. ],
  4520. "support": {
  4521. "issues": "https://github.com/Seldaek/monolog/issues",
  4522. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4523. },
  4524. "funding": [
  4525. {
  4526. "url": "https://github.com/Seldaek",
  4527. "type": "github"
  4528. },
  4529. {
  4530. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4531. "type": "tidelift"
  4532. }
  4533. ],
  4534. "time": "2024-06-28T09:40:51+00:00"
  4535. },
  4536. {
  4537. "name": "mtdowling/jmespath.php",
  4538. "version": "2.8.0",
  4539. "source": {
  4540. "type": "git",
  4541. "url": "https://github.com/jmespath/jmespath.php.git",
  4542. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4543. },
  4544. "dist": {
  4545. "type": "zip",
  4546. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4547. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4548. "shasum": ""
  4549. },
  4550. "require": {
  4551. "php": "^7.2.5 || ^8.0",
  4552. "symfony/polyfill-mbstring": "^1.17"
  4553. },
  4554. "require-dev": {
  4555. "composer/xdebug-handler": "^3.0.3",
  4556. "phpunit/phpunit": "^8.5.33"
  4557. },
  4558. "bin": [
  4559. "bin/jp.php"
  4560. ],
  4561. "type": "library",
  4562. "extra": {
  4563. "branch-alias": {
  4564. "dev-master": "2.8-dev"
  4565. }
  4566. },
  4567. "autoload": {
  4568. "files": [
  4569. "src/JmesPath.php"
  4570. ],
  4571. "psr-4": {
  4572. "JmesPath\\": "src/"
  4573. }
  4574. },
  4575. "notification-url": "https://packagist.org/downloads/",
  4576. "license": [
  4577. "MIT"
  4578. ],
  4579. "authors": [
  4580. {
  4581. "name": "Graham Campbell",
  4582. "email": "hello@gjcampbell.co.uk",
  4583. "homepage": "https://github.com/GrahamCampbell"
  4584. },
  4585. {
  4586. "name": "Michael Dowling",
  4587. "email": "mtdowling@gmail.com",
  4588. "homepage": "https://github.com/mtdowling"
  4589. }
  4590. ],
  4591. "description": "Declaratively specify how to extract elements from a JSON document",
  4592. "keywords": [
  4593. "json",
  4594. "jsonpath"
  4595. ],
  4596. "support": {
  4597. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4598. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4599. },
  4600. "time": "2024-09-04T18:46:31+00:00"
  4601. },
  4602. {
  4603. "name": "mustangostang/spyc",
  4604. "version": "0.6.3",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://github.com/mustangostang/spyc.git",
  4608. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4613. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4614. "shasum": ""
  4615. },
  4616. "require": {
  4617. "php": ">=5.3.1"
  4618. },
  4619. "require-dev": {
  4620. "phpunit/phpunit": "4.3.*@dev"
  4621. },
  4622. "type": "library",
  4623. "extra": {
  4624. "branch-alias": {
  4625. "dev-master": "0.5.x-dev"
  4626. }
  4627. },
  4628. "autoload": {
  4629. "files": [
  4630. "Spyc.php"
  4631. ]
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "mustangostang",
  4640. "email": "vlad.andersen@gmail.com"
  4641. }
  4642. ],
  4643. "description": "A simple YAML loader/dumper class for PHP",
  4644. "homepage": "https://github.com/mustangostang/spyc/",
  4645. "keywords": [
  4646. "spyc",
  4647. "yaml",
  4648. "yml"
  4649. ],
  4650. "support": {
  4651. "issues": "https://github.com/mustangostang/spyc/issues",
  4652. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4653. },
  4654. "time": "2019-09-10T13:16:29+00:00"
  4655. },
  4656. {
  4657. "name": "nesbot/carbon",
  4658. "version": "3.8.0",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/briannesbitt/Carbon.git",
  4662. "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bbd3eef89af8ba66a3aa7952b5439168fbcc529f",
  4667. "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f",
  4668. "shasum": ""
  4669. },
  4670. "require": {
  4671. "carbonphp/carbon-doctrine-types": "*",
  4672. "ext-json": "*",
  4673. "php": "^8.1",
  4674. "psr/clock": "^1.0",
  4675. "symfony/clock": "^6.3 || ^7.0",
  4676. "symfony/polyfill-mbstring": "^1.0",
  4677. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4678. },
  4679. "provide": {
  4680. "psr/clock-implementation": "1.0"
  4681. },
  4682. "require-dev": {
  4683. "doctrine/dbal": "^3.6.3 || ^4.0",
  4684. "doctrine/orm": "^2.15.2 || ^3.0",
  4685. "friendsofphp/php-cs-fixer": "^3.57.2",
  4686. "kylekatarnls/multi-tester": "^2.5.3",
  4687. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4688. "phpmd/phpmd": "^2.15.0",
  4689. "phpstan/extension-installer": "^1.3.1",
  4690. "phpstan/phpstan": "^1.11.2",
  4691. "phpunit/phpunit": "^10.5.20",
  4692. "squizlabs/php_codesniffer": "^3.9.0"
  4693. },
  4694. "bin": [
  4695. "bin/carbon"
  4696. ],
  4697. "type": "library",
  4698. "extra": {
  4699. "branch-alias": {
  4700. "dev-master": "3.x-dev",
  4701. "dev-2.x": "2.x-dev"
  4702. },
  4703. "laravel": {
  4704. "providers": [
  4705. "Carbon\\Laravel\\ServiceProvider"
  4706. ]
  4707. },
  4708. "phpstan": {
  4709. "includes": [
  4710. "extension.neon"
  4711. ]
  4712. }
  4713. },
  4714. "autoload": {
  4715. "psr-4": {
  4716. "Carbon\\": "src/Carbon/"
  4717. }
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "MIT"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Brian Nesbitt",
  4726. "email": "brian@nesbot.com",
  4727. "homepage": "https://markido.com"
  4728. },
  4729. {
  4730. "name": "kylekatarnls",
  4731. "homepage": "https://github.com/kylekatarnls"
  4732. }
  4733. ],
  4734. "description": "An API extension for DateTime that supports 281 different languages.",
  4735. "homepage": "https://carbon.nesbot.com",
  4736. "keywords": [
  4737. "date",
  4738. "datetime",
  4739. "time"
  4740. ],
  4741. "support": {
  4742. "docs": "https://carbon.nesbot.com/docs",
  4743. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4744. "source": "https://github.com/briannesbitt/Carbon"
  4745. },
  4746. "funding": [
  4747. {
  4748. "url": "https://github.com/sponsors/kylekatarnls",
  4749. "type": "github"
  4750. },
  4751. {
  4752. "url": "https://opencollective.com/Carbon#sponsor",
  4753. "type": "opencollective"
  4754. },
  4755. {
  4756. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4757. "type": "tidelift"
  4758. }
  4759. ],
  4760. "time": "2024-08-19T06:22:39+00:00"
  4761. },
  4762. {
  4763. "name": "nette/schema",
  4764. "version": "v1.3.0",
  4765. "source": {
  4766. "type": "git",
  4767. "url": "https://github.com/nette/schema.git",
  4768. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  4769. },
  4770. "dist": {
  4771. "type": "zip",
  4772. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4773. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4774. "shasum": ""
  4775. },
  4776. "require": {
  4777. "nette/utils": "^4.0",
  4778. "php": "8.1 - 8.3"
  4779. },
  4780. "require-dev": {
  4781. "nette/tester": "^2.4",
  4782. "phpstan/phpstan-nette": "^1.0",
  4783. "tracy/tracy": "^2.8"
  4784. },
  4785. "type": "library",
  4786. "extra": {
  4787. "branch-alias": {
  4788. "dev-master": "1.3-dev"
  4789. }
  4790. },
  4791. "autoload": {
  4792. "classmap": [
  4793. "src/"
  4794. ]
  4795. },
  4796. "notification-url": "https://packagist.org/downloads/",
  4797. "license": [
  4798. "BSD-3-Clause",
  4799. "GPL-2.0-only",
  4800. "GPL-3.0-only"
  4801. ],
  4802. "authors": [
  4803. {
  4804. "name": "David Grudl",
  4805. "homepage": "https://davidgrudl.com"
  4806. },
  4807. {
  4808. "name": "Nette Community",
  4809. "homepage": "https://nette.org/contributors"
  4810. }
  4811. ],
  4812. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4813. "homepage": "https://nette.org",
  4814. "keywords": [
  4815. "config",
  4816. "nette"
  4817. ],
  4818. "support": {
  4819. "issues": "https://github.com/nette/schema/issues",
  4820. "source": "https://github.com/nette/schema/tree/v1.3.0"
  4821. },
  4822. "time": "2023-12-11T11:54:22+00:00"
  4823. },
  4824. {
  4825. "name": "nette/utils",
  4826. "version": "v4.0.5",
  4827. "source": {
  4828. "type": "git",
  4829. "url": "https://github.com/nette/utils.git",
  4830. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  4831. },
  4832. "dist": {
  4833. "type": "zip",
  4834. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4835. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4836. "shasum": ""
  4837. },
  4838. "require": {
  4839. "php": "8.0 - 8.4"
  4840. },
  4841. "conflict": {
  4842. "nette/finder": "<3",
  4843. "nette/schema": "<1.2.2"
  4844. },
  4845. "require-dev": {
  4846. "jetbrains/phpstorm-attributes": "dev-master",
  4847. "nette/tester": "^2.5",
  4848. "phpstan/phpstan": "^1.0",
  4849. "tracy/tracy": "^2.9"
  4850. },
  4851. "suggest": {
  4852. "ext-gd": "to use Image",
  4853. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4854. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4855. "ext-json": "to use Nette\\Utils\\Json",
  4856. "ext-mbstring": "to use Strings::lower() etc...",
  4857. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4858. },
  4859. "type": "library",
  4860. "extra": {
  4861. "branch-alias": {
  4862. "dev-master": "4.0-dev"
  4863. }
  4864. },
  4865. "autoload": {
  4866. "classmap": [
  4867. "src/"
  4868. ]
  4869. },
  4870. "notification-url": "https://packagist.org/downloads/",
  4871. "license": [
  4872. "BSD-3-Clause",
  4873. "GPL-2.0-only",
  4874. "GPL-3.0-only"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "David Grudl",
  4879. "homepage": "https://davidgrudl.com"
  4880. },
  4881. {
  4882. "name": "Nette Community",
  4883. "homepage": "https://nette.org/contributors"
  4884. }
  4885. ],
  4886. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4887. "homepage": "https://nette.org",
  4888. "keywords": [
  4889. "array",
  4890. "core",
  4891. "datetime",
  4892. "images",
  4893. "json",
  4894. "nette",
  4895. "paginator",
  4896. "password",
  4897. "slugify",
  4898. "string",
  4899. "unicode",
  4900. "utf-8",
  4901. "utility",
  4902. "validation"
  4903. ],
  4904. "support": {
  4905. "issues": "https://github.com/nette/utils/issues",
  4906. "source": "https://github.com/nette/utils/tree/v4.0.5"
  4907. },
  4908. "time": "2024-08-07T15:39:19+00:00"
  4909. },
  4910. {
  4911. "name": "nikic/php-parser",
  4912. "version": "v5.1.0",
  4913. "source": {
  4914. "type": "git",
  4915. "url": "https://github.com/nikic/PHP-Parser.git",
  4916. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  4917. },
  4918. "dist": {
  4919. "type": "zip",
  4920. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  4921. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  4922. "shasum": ""
  4923. },
  4924. "require": {
  4925. "ext-ctype": "*",
  4926. "ext-json": "*",
  4927. "ext-tokenizer": "*",
  4928. "php": ">=7.4"
  4929. },
  4930. "require-dev": {
  4931. "ircmaxell/php-yacc": "^0.0.7",
  4932. "phpunit/phpunit": "^9.0"
  4933. },
  4934. "bin": [
  4935. "bin/php-parse"
  4936. ],
  4937. "type": "library",
  4938. "extra": {
  4939. "branch-alias": {
  4940. "dev-master": "5.0-dev"
  4941. }
  4942. },
  4943. "autoload": {
  4944. "psr-4": {
  4945. "PhpParser\\": "lib/PhpParser"
  4946. }
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "BSD-3-Clause"
  4951. ],
  4952. "authors": [
  4953. {
  4954. "name": "Nikita Popov"
  4955. }
  4956. ],
  4957. "description": "A PHP parser written in PHP",
  4958. "keywords": [
  4959. "parser",
  4960. "php"
  4961. ],
  4962. "support": {
  4963. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4964. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  4965. },
  4966. "time": "2024-07-01T20:03:41+00:00"
  4967. },
  4968. {
  4969. "name": "nunomaduro/termwind",
  4970. "version": "v2.1.0",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://github.com/nunomaduro/termwind.git",
  4974. "reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/e5f21eade88689536c0cdad4c3cd75f3ed26e01a",
  4979. "reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a",
  4980. "shasum": ""
  4981. },
  4982. "require": {
  4983. "ext-mbstring": "*",
  4984. "php": "^8.2",
  4985. "symfony/console": "^7.0.4"
  4986. },
  4987. "require-dev": {
  4988. "ergebnis/phpstan-rules": "^2.2.0",
  4989. "illuminate/console": "^11.1.1",
  4990. "laravel/pint": "^1.15.0",
  4991. "mockery/mockery": "^1.6.11",
  4992. "pestphp/pest": "^2.34.6",
  4993. "phpstan/phpstan": "^1.10.66",
  4994. "phpstan/phpstan-strict-rules": "^1.5.2",
  4995. "symfony/var-dumper": "^7.0.4",
  4996. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4997. },
  4998. "type": "library",
  4999. "extra": {
  5000. "laravel": {
  5001. "providers": [
  5002. "Termwind\\Laravel\\TermwindServiceProvider"
  5003. ]
  5004. },
  5005. "branch-alias": {
  5006. "dev-2.x": "2.x-dev"
  5007. }
  5008. },
  5009. "autoload": {
  5010. "files": [
  5011. "src/Functions.php"
  5012. ],
  5013. "psr-4": {
  5014. "Termwind\\": "src/"
  5015. }
  5016. },
  5017. "notification-url": "https://packagist.org/downloads/",
  5018. "license": [
  5019. "MIT"
  5020. ],
  5021. "authors": [
  5022. {
  5023. "name": "Nuno Maduro",
  5024. "email": "enunomaduro@gmail.com"
  5025. }
  5026. ],
  5027. "description": "Its like Tailwind CSS, but for the console.",
  5028. "keywords": [
  5029. "cli",
  5030. "console",
  5031. "css",
  5032. "package",
  5033. "php",
  5034. "style"
  5035. ],
  5036. "support": {
  5037. "issues": "https://github.com/nunomaduro/termwind/issues",
  5038. "source": "https://github.com/nunomaduro/termwind/tree/v2.1.0"
  5039. },
  5040. "funding": [
  5041. {
  5042. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5043. "type": "custom"
  5044. },
  5045. {
  5046. "url": "https://github.com/nunomaduro",
  5047. "type": "github"
  5048. },
  5049. {
  5050. "url": "https://github.com/xiCO2k",
  5051. "type": "github"
  5052. }
  5053. ],
  5054. "time": "2024-09-05T15:25:50+00:00"
  5055. },
  5056. {
  5057. "name": "openspout/openspout",
  5058. "version": "v4.24.5",
  5059. "source": {
  5060. "type": "git",
  5061. "url": "https://github.com/openspout/openspout.git",
  5062. "reference": "393299ae21153f042f48b185f2adeb4b157d1d93"
  5063. },
  5064. "dist": {
  5065. "type": "zip",
  5066. "url": "https://api.github.com/repos/openspout/openspout/zipball/393299ae21153f042f48b185f2adeb4b157d1d93",
  5067. "reference": "393299ae21153f042f48b185f2adeb4b157d1d93",
  5068. "shasum": ""
  5069. },
  5070. "require": {
  5071. "ext-dom": "*",
  5072. "ext-fileinfo": "*",
  5073. "ext-filter": "*",
  5074. "ext-libxml": "*",
  5075. "ext-xmlreader": "*",
  5076. "ext-zip": "*",
  5077. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  5078. },
  5079. "require-dev": {
  5080. "ext-zlib": "*",
  5081. "friendsofphp/php-cs-fixer": "^3.60.0",
  5082. "infection/infection": "^0.29.6",
  5083. "phpbench/phpbench": "^1.3.1",
  5084. "phpstan/phpstan": "^1.11.8",
  5085. "phpstan/phpstan-phpunit": "^1.4.0",
  5086. "phpstan/phpstan-strict-rules": "^1.6.0",
  5087. "phpunit/phpunit": "^10.5.20 || ^11.2.8"
  5088. },
  5089. "suggest": {
  5090. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5091. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5092. },
  5093. "type": "library",
  5094. "extra": {
  5095. "branch-alias": {
  5096. "dev-master": "3.3.x-dev"
  5097. }
  5098. },
  5099. "autoload": {
  5100. "psr-4": {
  5101. "OpenSpout\\": "src/"
  5102. }
  5103. },
  5104. "notification-url": "https://packagist.org/downloads/",
  5105. "license": [
  5106. "MIT"
  5107. ],
  5108. "authors": [
  5109. {
  5110. "name": "Adrien Loison",
  5111. "email": "adrien@box.com"
  5112. }
  5113. ],
  5114. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5115. "homepage": "https://github.com/openspout/openspout",
  5116. "keywords": [
  5117. "OOXML",
  5118. "csv",
  5119. "excel",
  5120. "memory",
  5121. "odf",
  5122. "ods",
  5123. "office",
  5124. "open",
  5125. "php",
  5126. "read",
  5127. "scale",
  5128. "spreadsheet",
  5129. "stream",
  5130. "write",
  5131. "xlsx"
  5132. ],
  5133. "support": {
  5134. "issues": "https://github.com/openspout/openspout/issues",
  5135. "source": "https://github.com/openspout/openspout/tree/v4.24.5"
  5136. },
  5137. "funding": [
  5138. {
  5139. "url": "https://paypal.me/filippotessarotto",
  5140. "type": "custom"
  5141. },
  5142. {
  5143. "url": "https://github.com/Slamdunk",
  5144. "type": "github"
  5145. }
  5146. ],
  5147. "time": "2024-07-26T05:48:04+00:00"
  5148. },
  5149. {
  5150. "name": "paragonie/constant_time_encoding",
  5151. "version": "v3.0.0",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5155. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5156. },
  5157. "dist": {
  5158. "type": "zip",
  5159. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5160. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5161. "shasum": ""
  5162. },
  5163. "require": {
  5164. "php": "^8"
  5165. },
  5166. "require-dev": {
  5167. "phpunit/phpunit": "^9",
  5168. "vimeo/psalm": "^4|^5"
  5169. },
  5170. "type": "library",
  5171. "autoload": {
  5172. "psr-4": {
  5173. "ParagonIE\\ConstantTime\\": "src/"
  5174. }
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "license": [
  5178. "MIT"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Paragon Initiative Enterprises",
  5183. "email": "security@paragonie.com",
  5184. "homepage": "https://paragonie.com",
  5185. "role": "Maintainer"
  5186. },
  5187. {
  5188. "name": "Steve 'Sc00bz' Thomas",
  5189. "email": "steve@tobtu.com",
  5190. "homepage": "https://www.tobtu.com",
  5191. "role": "Original Developer"
  5192. }
  5193. ],
  5194. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5195. "keywords": [
  5196. "base16",
  5197. "base32",
  5198. "base32_decode",
  5199. "base32_encode",
  5200. "base64",
  5201. "base64_decode",
  5202. "base64_encode",
  5203. "bin2hex",
  5204. "encoding",
  5205. "hex",
  5206. "hex2bin",
  5207. "rfc4648"
  5208. ],
  5209. "support": {
  5210. "email": "info@paragonie.com",
  5211. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5212. "source": "https://github.com/paragonie/constant_time_encoding"
  5213. },
  5214. "time": "2024-05-08T12:36:18+00:00"
  5215. },
  5216. {
  5217. "name": "paragonie/random_compat",
  5218. "version": "v9.99.100",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/paragonie/random_compat.git",
  5222. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5227. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5228. "shasum": ""
  5229. },
  5230. "require": {
  5231. "php": ">= 7"
  5232. },
  5233. "require-dev": {
  5234. "phpunit/phpunit": "4.*|5.*",
  5235. "vimeo/psalm": "^1"
  5236. },
  5237. "suggest": {
  5238. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5239. },
  5240. "type": "library",
  5241. "notification-url": "https://packagist.org/downloads/",
  5242. "license": [
  5243. "MIT"
  5244. ],
  5245. "authors": [
  5246. {
  5247. "name": "Paragon Initiative Enterprises",
  5248. "email": "security@paragonie.com",
  5249. "homepage": "https://paragonie.com"
  5250. }
  5251. ],
  5252. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5253. "keywords": [
  5254. "csprng",
  5255. "polyfill",
  5256. "pseudorandom",
  5257. "random"
  5258. ],
  5259. "support": {
  5260. "email": "info@paragonie.com",
  5261. "issues": "https://github.com/paragonie/random_compat/issues",
  5262. "source": "https://github.com/paragonie/random_compat"
  5263. },
  5264. "time": "2020-10-15T08:29:30+00:00"
  5265. },
  5266. {
  5267. "name": "phpoption/phpoption",
  5268. "version": "1.9.3",
  5269. "source": {
  5270. "type": "git",
  5271. "url": "https://github.com/schmittjoh/php-option.git",
  5272. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5273. },
  5274. "dist": {
  5275. "type": "zip",
  5276. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5277. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5278. "shasum": ""
  5279. },
  5280. "require": {
  5281. "php": "^7.2.5 || ^8.0"
  5282. },
  5283. "require-dev": {
  5284. "bamarni/composer-bin-plugin": "^1.8.2",
  5285. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5286. },
  5287. "type": "library",
  5288. "extra": {
  5289. "bamarni-bin": {
  5290. "bin-links": true,
  5291. "forward-command": false
  5292. },
  5293. "branch-alias": {
  5294. "dev-master": "1.9-dev"
  5295. }
  5296. },
  5297. "autoload": {
  5298. "psr-4": {
  5299. "PhpOption\\": "src/PhpOption/"
  5300. }
  5301. },
  5302. "notification-url": "https://packagist.org/downloads/",
  5303. "license": [
  5304. "Apache-2.0"
  5305. ],
  5306. "authors": [
  5307. {
  5308. "name": "Johannes M. Schmitt",
  5309. "email": "schmittjoh@gmail.com",
  5310. "homepage": "https://github.com/schmittjoh"
  5311. },
  5312. {
  5313. "name": "Graham Campbell",
  5314. "email": "hello@gjcampbell.co.uk",
  5315. "homepage": "https://github.com/GrahamCampbell"
  5316. }
  5317. ],
  5318. "description": "Option Type for PHP",
  5319. "keywords": [
  5320. "language",
  5321. "option",
  5322. "php",
  5323. "type"
  5324. ],
  5325. "support": {
  5326. "issues": "https://github.com/schmittjoh/php-option/issues",
  5327. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5328. },
  5329. "funding": [
  5330. {
  5331. "url": "https://github.com/GrahamCampbell",
  5332. "type": "github"
  5333. },
  5334. {
  5335. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5336. "type": "tidelift"
  5337. }
  5338. ],
  5339. "time": "2024-07-20T21:41:07+00:00"
  5340. },
  5341. {
  5342. "name": "phpseclib/phpseclib",
  5343. "version": "3.0.41",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/phpseclib/phpseclib.git",
  5347. "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/621c73f7dcb310b61de34d1da4c4204e8ace6ceb",
  5352. "reference": "621c73f7dcb310b61de34d1da4c4204e8ace6ceb",
  5353. "shasum": ""
  5354. },
  5355. "require": {
  5356. "paragonie/constant_time_encoding": "^1|^2|^3",
  5357. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5358. "php": ">=5.6.1"
  5359. },
  5360. "require-dev": {
  5361. "phpunit/phpunit": "*"
  5362. },
  5363. "suggest": {
  5364. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5365. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5366. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5367. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5368. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5369. },
  5370. "type": "library",
  5371. "autoload": {
  5372. "files": [
  5373. "phpseclib/bootstrap.php"
  5374. ],
  5375. "psr-4": {
  5376. "phpseclib3\\": "phpseclib/"
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "MIT"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Jim Wigginton",
  5386. "email": "terrafrost@php.net",
  5387. "role": "Lead Developer"
  5388. },
  5389. {
  5390. "name": "Patrick Monnerat",
  5391. "email": "pm@datasphere.ch",
  5392. "role": "Developer"
  5393. },
  5394. {
  5395. "name": "Andreas Fischer",
  5396. "email": "bantu@phpbb.com",
  5397. "role": "Developer"
  5398. },
  5399. {
  5400. "name": "Hans-Jürgen Petrich",
  5401. "email": "petrich@tronic-media.com",
  5402. "role": "Developer"
  5403. },
  5404. {
  5405. "name": "Graham Campbell",
  5406. "email": "graham@alt-three.com",
  5407. "role": "Developer"
  5408. }
  5409. ],
  5410. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5411. "homepage": "http://phpseclib.sourceforge.net",
  5412. "keywords": [
  5413. "BigInteger",
  5414. "aes",
  5415. "asn.1",
  5416. "asn1",
  5417. "blowfish",
  5418. "crypto",
  5419. "cryptography",
  5420. "encryption",
  5421. "rsa",
  5422. "security",
  5423. "sftp",
  5424. "signature",
  5425. "signing",
  5426. "ssh",
  5427. "twofish",
  5428. "x.509",
  5429. "x509"
  5430. ],
  5431. "support": {
  5432. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5433. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.41"
  5434. },
  5435. "funding": [
  5436. {
  5437. "url": "https://github.com/terrafrost",
  5438. "type": "github"
  5439. },
  5440. {
  5441. "url": "https://www.patreon.com/phpseclib",
  5442. "type": "patreon"
  5443. },
  5444. {
  5445. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5446. "type": "tidelift"
  5447. }
  5448. ],
  5449. "time": "2024-08-12T00:13:54+00:00"
  5450. },
  5451. {
  5452. "name": "psr/cache",
  5453. "version": "3.0.0",
  5454. "source": {
  5455. "type": "git",
  5456. "url": "https://github.com/php-fig/cache.git",
  5457. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5458. },
  5459. "dist": {
  5460. "type": "zip",
  5461. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5462. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5463. "shasum": ""
  5464. },
  5465. "require": {
  5466. "php": ">=8.0.0"
  5467. },
  5468. "type": "library",
  5469. "extra": {
  5470. "branch-alias": {
  5471. "dev-master": "1.0.x-dev"
  5472. }
  5473. },
  5474. "autoload": {
  5475. "psr-4": {
  5476. "Psr\\Cache\\": "src/"
  5477. }
  5478. },
  5479. "notification-url": "https://packagist.org/downloads/",
  5480. "license": [
  5481. "MIT"
  5482. ],
  5483. "authors": [
  5484. {
  5485. "name": "PHP-FIG",
  5486. "homepage": "https://www.php-fig.org/"
  5487. }
  5488. ],
  5489. "description": "Common interface for caching libraries",
  5490. "keywords": [
  5491. "cache",
  5492. "psr",
  5493. "psr-6"
  5494. ],
  5495. "support": {
  5496. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5497. },
  5498. "time": "2021-02-03T23:26:27+00:00"
  5499. },
  5500. {
  5501. "name": "psr/clock",
  5502. "version": "1.0.0",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://github.com/php-fig/clock.git",
  5506. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5511. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5512. "shasum": ""
  5513. },
  5514. "require": {
  5515. "php": "^7.0 || ^8.0"
  5516. },
  5517. "type": "library",
  5518. "autoload": {
  5519. "psr-4": {
  5520. "Psr\\Clock\\": "src/"
  5521. }
  5522. },
  5523. "notification-url": "https://packagist.org/downloads/",
  5524. "license": [
  5525. "MIT"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "PHP-FIG",
  5530. "homepage": "https://www.php-fig.org/"
  5531. }
  5532. ],
  5533. "description": "Common interface for reading the clock.",
  5534. "homepage": "https://github.com/php-fig/clock",
  5535. "keywords": [
  5536. "clock",
  5537. "now",
  5538. "psr",
  5539. "psr-20",
  5540. "time"
  5541. ],
  5542. "support": {
  5543. "issues": "https://github.com/php-fig/clock/issues",
  5544. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5545. },
  5546. "time": "2022-11-25T14:36:26+00:00"
  5547. },
  5548. {
  5549. "name": "psr/container",
  5550. "version": "2.0.2",
  5551. "source": {
  5552. "type": "git",
  5553. "url": "https://github.com/php-fig/container.git",
  5554. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5555. },
  5556. "dist": {
  5557. "type": "zip",
  5558. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5559. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5560. "shasum": ""
  5561. },
  5562. "require": {
  5563. "php": ">=7.4.0"
  5564. },
  5565. "type": "library",
  5566. "extra": {
  5567. "branch-alias": {
  5568. "dev-master": "2.0.x-dev"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "psr-4": {
  5573. "Psr\\Container\\": "src/"
  5574. }
  5575. },
  5576. "notification-url": "https://packagist.org/downloads/",
  5577. "license": [
  5578. "MIT"
  5579. ],
  5580. "authors": [
  5581. {
  5582. "name": "PHP-FIG",
  5583. "homepage": "https://www.php-fig.org/"
  5584. }
  5585. ],
  5586. "description": "Common Container Interface (PHP FIG PSR-11)",
  5587. "homepage": "https://github.com/php-fig/container",
  5588. "keywords": [
  5589. "PSR-11",
  5590. "container",
  5591. "container-interface",
  5592. "container-interop",
  5593. "psr"
  5594. ],
  5595. "support": {
  5596. "issues": "https://github.com/php-fig/container/issues",
  5597. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5598. },
  5599. "time": "2021-11-05T16:47:00+00:00"
  5600. },
  5601. {
  5602. "name": "psr/event-dispatcher",
  5603. "version": "1.0.0",
  5604. "source": {
  5605. "type": "git",
  5606. "url": "https://github.com/php-fig/event-dispatcher.git",
  5607. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5608. },
  5609. "dist": {
  5610. "type": "zip",
  5611. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5612. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5613. "shasum": ""
  5614. },
  5615. "require": {
  5616. "php": ">=7.2.0"
  5617. },
  5618. "type": "library",
  5619. "extra": {
  5620. "branch-alias": {
  5621. "dev-master": "1.0.x-dev"
  5622. }
  5623. },
  5624. "autoload": {
  5625. "psr-4": {
  5626. "Psr\\EventDispatcher\\": "src/"
  5627. }
  5628. },
  5629. "notification-url": "https://packagist.org/downloads/",
  5630. "license": [
  5631. "MIT"
  5632. ],
  5633. "authors": [
  5634. {
  5635. "name": "PHP-FIG",
  5636. "homepage": "http://www.php-fig.org/"
  5637. }
  5638. ],
  5639. "description": "Standard interfaces for event handling.",
  5640. "keywords": [
  5641. "events",
  5642. "psr",
  5643. "psr-14"
  5644. ],
  5645. "support": {
  5646. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5647. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5648. },
  5649. "time": "2019-01-08T18:20:26+00:00"
  5650. },
  5651. {
  5652. "name": "psr/http-client",
  5653. "version": "1.0.3",
  5654. "source": {
  5655. "type": "git",
  5656. "url": "https://github.com/php-fig/http-client.git",
  5657. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5658. },
  5659. "dist": {
  5660. "type": "zip",
  5661. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5662. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5663. "shasum": ""
  5664. },
  5665. "require": {
  5666. "php": "^7.0 || ^8.0",
  5667. "psr/http-message": "^1.0 || ^2.0"
  5668. },
  5669. "type": "library",
  5670. "extra": {
  5671. "branch-alias": {
  5672. "dev-master": "1.0.x-dev"
  5673. }
  5674. },
  5675. "autoload": {
  5676. "psr-4": {
  5677. "Psr\\Http\\Client\\": "src/"
  5678. }
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "MIT"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "PHP-FIG",
  5687. "homepage": "https://www.php-fig.org/"
  5688. }
  5689. ],
  5690. "description": "Common interface for HTTP clients",
  5691. "homepage": "https://github.com/php-fig/http-client",
  5692. "keywords": [
  5693. "http",
  5694. "http-client",
  5695. "psr",
  5696. "psr-18"
  5697. ],
  5698. "support": {
  5699. "source": "https://github.com/php-fig/http-client"
  5700. },
  5701. "time": "2023-09-23T14:17:50+00:00"
  5702. },
  5703. {
  5704. "name": "psr/http-factory",
  5705. "version": "1.1.0",
  5706. "source": {
  5707. "type": "git",
  5708. "url": "https://github.com/php-fig/http-factory.git",
  5709. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5710. },
  5711. "dist": {
  5712. "type": "zip",
  5713. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5714. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5715. "shasum": ""
  5716. },
  5717. "require": {
  5718. "php": ">=7.1",
  5719. "psr/http-message": "^1.0 || ^2.0"
  5720. },
  5721. "type": "library",
  5722. "extra": {
  5723. "branch-alias": {
  5724. "dev-master": "1.0.x-dev"
  5725. }
  5726. },
  5727. "autoload": {
  5728. "psr-4": {
  5729. "Psr\\Http\\Message\\": "src/"
  5730. }
  5731. },
  5732. "notification-url": "https://packagist.org/downloads/",
  5733. "license": [
  5734. "MIT"
  5735. ],
  5736. "authors": [
  5737. {
  5738. "name": "PHP-FIG",
  5739. "homepage": "https://www.php-fig.org/"
  5740. }
  5741. ],
  5742. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5743. "keywords": [
  5744. "factory",
  5745. "http",
  5746. "message",
  5747. "psr",
  5748. "psr-17",
  5749. "psr-7",
  5750. "request",
  5751. "response"
  5752. ],
  5753. "support": {
  5754. "source": "https://github.com/php-fig/http-factory"
  5755. },
  5756. "time": "2024-04-15T12:06:14+00:00"
  5757. },
  5758. {
  5759. "name": "psr/http-message",
  5760. "version": "2.0",
  5761. "source": {
  5762. "type": "git",
  5763. "url": "https://github.com/php-fig/http-message.git",
  5764. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5765. },
  5766. "dist": {
  5767. "type": "zip",
  5768. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5769. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5770. "shasum": ""
  5771. },
  5772. "require": {
  5773. "php": "^7.2 || ^8.0"
  5774. },
  5775. "type": "library",
  5776. "extra": {
  5777. "branch-alias": {
  5778. "dev-master": "2.0.x-dev"
  5779. }
  5780. },
  5781. "autoload": {
  5782. "psr-4": {
  5783. "Psr\\Http\\Message\\": "src/"
  5784. }
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "PHP-FIG",
  5793. "homepage": "https://www.php-fig.org/"
  5794. }
  5795. ],
  5796. "description": "Common interface for HTTP messages",
  5797. "homepage": "https://github.com/php-fig/http-message",
  5798. "keywords": [
  5799. "http",
  5800. "http-message",
  5801. "psr",
  5802. "psr-7",
  5803. "request",
  5804. "response"
  5805. ],
  5806. "support": {
  5807. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5808. },
  5809. "time": "2023-04-04T09:54:51+00:00"
  5810. },
  5811. {
  5812. "name": "psr/log",
  5813. "version": "3.0.1",
  5814. "source": {
  5815. "type": "git",
  5816. "url": "https://github.com/php-fig/log.git",
  5817. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  5818. },
  5819. "dist": {
  5820. "type": "zip",
  5821. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  5822. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  5823. "shasum": ""
  5824. },
  5825. "require": {
  5826. "php": ">=8.0.0"
  5827. },
  5828. "type": "library",
  5829. "extra": {
  5830. "branch-alias": {
  5831. "dev-master": "3.x-dev"
  5832. }
  5833. },
  5834. "autoload": {
  5835. "psr-4": {
  5836. "Psr\\Log\\": "src"
  5837. }
  5838. },
  5839. "notification-url": "https://packagist.org/downloads/",
  5840. "license": [
  5841. "MIT"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "PHP-FIG",
  5846. "homepage": "https://www.php-fig.org/"
  5847. }
  5848. ],
  5849. "description": "Common interface for logging libraries",
  5850. "homepage": "https://github.com/php-fig/log",
  5851. "keywords": [
  5852. "log",
  5853. "psr",
  5854. "psr-3"
  5855. ],
  5856. "support": {
  5857. "source": "https://github.com/php-fig/log/tree/3.0.1"
  5858. },
  5859. "time": "2024-08-21T13:31:24+00:00"
  5860. },
  5861. {
  5862. "name": "psr/simple-cache",
  5863. "version": "3.0.0",
  5864. "source": {
  5865. "type": "git",
  5866. "url": "https://github.com/php-fig/simple-cache.git",
  5867. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5868. },
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5872. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5873. "shasum": ""
  5874. },
  5875. "require": {
  5876. "php": ">=8.0.0"
  5877. },
  5878. "type": "library",
  5879. "extra": {
  5880. "branch-alias": {
  5881. "dev-master": "3.0.x-dev"
  5882. }
  5883. },
  5884. "autoload": {
  5885. "psr-4": {
  5886. "Psr\\SimpleCache\\": "src/"
  5887. }
  5888. },
  5889. "notification-url": "https://packagist.org/downloads/",
  5890. "license": [
  5891. "MIT"
  5892. ],
  5893. "authors": [
  5894. {
  5895. "name": "PHP-FIG",
  5896. "homepage": "https://www.php-fig.org/"
  5897. }
  5898. ],
  5899. "description": "Common interfaces for simple caching",
  5900. "keywords": [
  5901. "cache",
  5902. "caching",
  5903. "psr",
  5904. "psr-16",
  5905. "simple-cache"
  5906. ],
  5907. "support": {
  5908. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5909. },
  5910. "time": "2021-10-29T13:26:27+00:00"
  5911. },
  5912. {
  5913. "name": "psy/psysh",
  5914. "version": "v0.12.4",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/bobthecow/psysh.git",
  5918. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  5923. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "ext-json": "*",
  5928. "ext-tokenizer": "*",
  5929. "nikic/php-parser": "^5.0 || ^4.0",
  5930. "php": "^8.0 || ^7.4",
  5931. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5932. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5933. },
  5934. "conflict": {
  5935. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5936. },
  5937. "require-dev": {
  5938. "bamarni/composer-bin-plugin": "^1.2"
  5939. },
  5940. "suggest": {
  5941. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5942. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5943. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5944. },
  5945. "bin": [
  5946. "bin/psysh"
  5947. ],
  5948. "type": "library",
  5949. "extra": {
  5950. "branch-alias": {
  5951. "dev-main": "0.12.x-dev"
  5952. },
  5953. "bamarni-bin": {
  5954. "bin-links": false,
  5955. "forward-command": false
  5956. }
  5957. },
  5958. "autoload": {
  5959. "files": [
  5960. "src/functions.php"
  5961. ],
  5962. "psr-4": {
  5963. "Psy\\": "src/"
  5964. }
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "MIT"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "Justin Hileman",
  5973. "email": "justin@justinhileman.info",
  5974. "homepage": "http://justinhileman.com"
  5975. }
  5976. ],
  5977. "description": "An interactive shell for modern PHP.",
  5978. "homepage": "http://psysh.org",
  5979. "keywords": [
  5980. "REPL",
  5981. "console",
  5982. "interactive",
  5983. "shell"
  5984. ],
  5985. "support": {
  5986. "issues": "https://github.com/bobthecow/psysh/issues",
  5987. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  5988. },
  5989. "time": "2024-06-10T01:18:23+00:00"
  5990. },
  5991. {
  5992. "name": "ralouphie/getallheaders",
  5993. "version": "3.0.3",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/ralouphie/getallheaders.git",
  5997. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6002. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "php": ">=5.6"
  6007. },
  6008. "require-dev": {
  6009. "php-coveralls/php-coveralls": "^2.1",
  6010. "phpunit/phpunit": "^5 || ^6.5"
  6011. },
  6012. "type": "library",
  6013. "autoload": {
  6014. "files": [
  6015. "src/getallheaders.php"
  6016. ]
  6017. },
  6018. "notification-url": "https://packagist.org/downloads/",
  6019. "license": [
  6020. "MIT"
  6021. ],
  6022. "authors": [
  6023. {
  6024. "name": "Ralph Khattar",
  6025. "email": "ralph.khattar@gmail.com"
  6026. }
  6027. ],
  6028. "description": "A polyfill for getallheaders.",
  6029. "support": {
  6030. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6031. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6032. },
  6033. "time": "2019-03-08T08:55:37+00:00"
  6034. },
  6035. {
  6036. "name": "ramsey/collection",
  6037. "version": "2.0.0",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/ramsey/collection.git",
  6041. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6046. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6047. "shasum": ""
  6048. },
  6049. "require": {
  6050. "php": "^8.1"
  6051. },
  6052. "require-dev": {
  6053. "captainhook/plugin-composer": "^5.3",
  6054. "ergebnis/composer-normalize": "^2.28.3",
  6055. "fakerphp/faker": "^1.21",
  6056. "hamcrest/hamcrest-php": "^2.0",
  6057. "jangregor/phpstan-prophecy": "^1.0",
  6058. "mockery/mockery": "^1.5",
  6059. "php-parallel-lint/php-console-highlighter": "^1.0",
  6060. "php-parallel-lint/php-parallel-lint": "^1.3",
  6061. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6062. "phpspec/prophecy-phpunit": "^2.0",
  6063. "phpstan/extension-installer": "^1.2",
  6064. "phpstan/phpstan": "^1.9",
  6065. "phpstan/phpstan-mockery": "^1.1",
  6066. "phpstan/phpstan-phpunit": "^1.3",
  6067. "phpunit/phpunit": "^9.5",
  6068. "psalm/plugin-mockery": "^1.1",
  6069. "psalm/plugin-phpunit": "^0.18.4",
  6070. "ramsey/coding-standard": "^2.0.3",
  6071. "ramsey/conventional-commits": "^1.3",
  6072. "vimeo/psalm": "^5.4"
  6073. },
  6074. "type": "library",
  6075. "extra": {
  6076. "captainhook": {
  6077. "force-install": true
  6078. },
  6079. "ramsey/conventional-commits": {
  6080. "configFile": "conventional-commits.json"
  6081. }
  6082. },
  6083. "autoload": {
  6084. "psr-4": {
  6085. "Ramsey\\Collection\\": "src/"
  6086. }
  6087. },
  6088. "notification-url": "https://packagist.org/downloads/",
  6089. "license": [
  6090. "MIT"
  6091. ],
  6092. "authors": [
  6093. {
  6094. "name": "Ben Ramsey",
  6095. "email": "ben@benramsey.com",
  6096. "homepage": "https://benramsey.com"
  6097. }
  6098. ],
  6099. "description": "A PHP library for representing and manipulating collections.",
  6100. "keywords": [
  6101. "array",
  6102. "collection",
  6103. "hash",
  6104. "map",
  6105. "queue",
  6106. "set"
  6107. ],
  6108. "support": {
  6109. "issues": "https://github.com/ramsey/collection/issues",
  6110. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6111. },
  6112. "funding": [
  6113. {
  6114. "url": "https://github.com/ramsey",
  6115. "type": "github"
  6116. },
  6117. {
  6118. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6119. "type": "tidelift"
  6120. }
  6121. ],
  6122. "time": "2022-12-31T21:50:55+00:00"
  6123. },
  6124. {
  6125. "name": "ramsey/uuid",
  6126. "version": "4.7.6",
  6127. "source": {
  6128. "type": "git",
  6129. "url": "https://github.com/ramsey/uuid.git",
  6130. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6131. },
  6132. "dist": {
  6133. "type": "zip",
  6134. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6135. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6136. "shasum": ""
  6137. },
  6138. "require": {
  6139. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6140. "ext-json": "*",
  6141. "php": "^8.0",
  6142. "ramsey/collection": "^1.2 || ^2.0"
  6143. },
  6144. "replace": {
  6145. "rhumsaa/uuid": "self.version"
  6146. },
  6147. "require-dev": {
  6148. "captainhook/captainhook": "^5.10",
  6149. "captainhook/plugin-composer": "^5.3",
  6150. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6151. "doctrine/annotations": "^1.8",
  6152. "ergebnis/composer-normalize": "^2.15",
  6153. "mockery/mockery": "^1.3",
  6154. "paragonie/random-lib": "^2",
  6155. "php-mock/php-mock": "^2.2",
  6156. "php-mock/php-mock-mockery": "^1.3",
  6157. "php-parallel-lint/php-parallel-lint": "^1.1",
  6158. "phpbench/phpbench": "^1.0",
  6159. "phpstan/extension-installer": "^1.1",
  6160. "phpstan/phpstan": "^1.8",
  6161. "phpstan/phpstan-mockery": "^1.1",
  6162. "phpstan/phpstan-phpunit": "^1.1",
  6163. "phpunit/phpunit": "^8.5 || ^9",
  6164. "ramsey/composer-repl": "^1.4",
  6165. "slevomat/coding-standard": "^8.4",
  6166. "squizlabs/php_codesniffer": "^3.5",
  6167. "vimeo/psalm": "^4.9"
  6168. },
  6169. "suggest": {
  6170. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6171. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6172. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6173. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6174. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6175. },
  6176. "type": "library",
  6177. "extra": {
  6178. "captainhook": {
  6179. "force-install": true
  6180. }
  6181. },
  6182. "autoload": {
  6183. "files": [
  6184. "src/functions.php"
  6185. ],
  6186. "psr-4": {
  6187. "Ramsey\\Uuid\\": "src/"
  6188. }
  6189. },
  6190. "notification-url": "https://packagist.org/downloads/",
  6191. "license": [
  6192. "MIT"
  6193. ],
  6194. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6195. "keywords": [
  6196. "guid",
  6197. "identifier",
  6198. "uuid"
  6199. ],
  6200. "support": {
  6201. "issues": "https://github.com/ramsey/uuid/issues",
  6202. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6203. },
  6204. "funding": [
  6205. {
  6206. "url": "https://github.com/ramsey",
  6207. "type": "github"
  6208. },
  6209. {
  6210. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6211. "type": "tidelift"
  6212. }
  6213. ],
  6214. "time": "2024-04-27T21:32:50+00:00"
  6215. },
  6216. {
  6217. "name": "ryangjchandler/blade-capture-directive",
  6218. "version": "v1.0.0",
  6219. "source": {
  6220. "type": "git",
  6221. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6222. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6223. },
  6224. "dist": {
  6225. "type": "zip",
  6226. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6227. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6228. "shasum": ""
  6229. },
  6230. "require": {
  6231. "illuminate/contracts": "^10.0|^11.0",
  6232. "php": "^8.1",
  6233. "spatie/laravel-package-tools": "^1.9.2"
  6234. },
  6235. "require-dev": {
  6236. "nunomaduro/collision": "^7.0|^8.0",
  6237. "nunomaduro/larastan": "^2.0",
  6238. "orchestra/testbench": "^8.0|^9.0",
  6239. "pestphp/pest": "^2.0",
  6240. "pestphp/pest-plugin-laravel": "^2.0",
  6241. "phpstan/extension-installer": "^1.1",
  6242. "phpstan/phpstan-deprecation-rules": "^1.0",
  6243. "phpstan/phpstan-phpunit": "^1.0",
  6244. "phpunit/phpunit": "^10.0",
  6245. "spatie/laravel-ray": "^1.26"
  6246. },
  6247. "type": "library",
  6248. "extra": {
  6249. "laravel": {
  6250. "providers": [
  6251. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6252. ],
  6253. "aliases": {
  6254. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6255. }
  6256. }
  6257. },
  6258. "autoload": {
  6259. "psr-4": {
  6260. "RyanChandler\\BladeCaptureDirective\\": "src",
  6261. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6262. }
  6263. },
  6264. "notification-url": "https://packagist.org/downloads/",
  6265. "license": [
  6266. "MIT"
  6267. ],
  6268. "authors": [
  6269. {
  6270. "name": "Ryan Chandler",
  6271. "email": "support@ryangjchandler.co.uk",
  6272. "role": "Developer"
  6273. }
  6274. ],
  6275. "description": "Create inline partials in your Blade templates with ease.",
  6276. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6277. "keywords": [
  6278. "blade-capture-directive",
  6279. "laravel",
  6280. "ryangjchandler"
  6281. ],
  6282. "support": {
  6283. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6284. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6285. },
  6286. "funding": [
  6287. {
  6288. "url": "https://github.com/ryangjchandler",
  6289. "type": "github"
  6290. }
  6291. ],
  6292. "time": "2024-02-26T18:08:49+00:00"
  6293. },
  6294. {
  6295. "name": "spatie/color",
  6296. "version": "1.5.3",
  6297. "source": {
  6298. "type": "git",
  6299. "url": "https://github.com/spatie/color.git",
  6300. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  6301. },
  6302. "dist": {
  6303. "type": "zip",
  6304. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  6305. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  6306. "shasum": ""
  6307. },
  6308. "require": {
  6309. "php": "^7.3|^8.0"
  6310. },
  6311. "require-dev": {
  6312. "pestphp/pest": "^1.22",
  6313. "phpunit/phpunit": "^6.5||^9.0"
  6314. },
  6315. "type": "library",
  6316. "autoload": {
  6317. "psr-4": {
  6318. "Spatie\\Color\\": "src"
  6319. }
  6320. },
  6321. "notification-url": "https://packagist.org/downloads/",
  6322. "license": [
  6323. "MIT"
  6324. ],
  6325. "authors": [
  6326. {
  6327. "name": "Sebastian De Deyne",
  6328. "email": "sebastian@spatie.be",
  6329. "homepage": "https://spatie.be",
  6330. "role": "Developer"
  6331. }
  6332. ],
  6333. "description": "A little library to handle color conversions",
  6334. "homepage": "https://github.com/spatie/color",
  6335. "keywords": [
  6336. "color",
  6337. "conversion",
  6338. "rgb",
  6339. "spatie"
  6340. ],
  6341. "support": {
  6342. "issues": "https://github.com/spatie/color/issues",
  6343. "source": "https://github.com/spatie/color/tree/1.5.3"
  6344. },
  6345. "funding": [
  6346. {
  6347. "url": "https://github.com/spatie",
  6348. "type": "github"
  6349. }
  6350. ],
  6351. "time": "2022-12-18T12:58:32+00:00"
  6352. },
  6353. {
  6354. "name": "spatie/invade",
  6355. "version": "2.1.0",
  6356. "source": {
  6357. "type": "git",
  6358. "url": "https://github.com/spatie/invade.git",
  6359. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6360. },
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6364. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6365. "shasum": ""
  6366. },
  6367. "require": {
  6368. "php": "^8.0"
  6369. },
  6370. "require-dev": {
  6371. "pestphp/pest": "^1.20",
  6372. "phpstan/phpstan": "^1.4",
  6373. "spatie/ray": "^1.28"
  6374. },
  6375. "type": "library",
  6376. "autoload": {
  6377. "files": [
  6378. "src/functions.php"
  6379. ],
  6380. "psr-4": {
  6381. "Spatie\\Invade\\": "src"
  6382. }
  6383. },
  6384. "notification-url": "https://packagist.org/downloads/",
  6385. "license": [
  6386. "MIT"
  6387. ],
  6388. "authors": [
  6389. {
  6390. "name": "Freek Van der Herten",
  6391. "email": "freek@spatie.be",
  6392. "role": "Developer"
  6393. }
  6394. ],
  6395. "description": "A PHP function to work with private properties and methods",
  6396. "homepage": "https://github.com/spatie/invade",
  6397. "keywords": [
  6398. "invade",
  6399. "spatie"
  6400. ],
  6401. "support": {
  6402. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6403. },
  6404. "funding": [
  6405. {
  6406. "url": "https://github.com/spatie",
  6407. "type": "github"
  6408. }
  6409. ],
  6410. "time": "2024-05-17T09:06:10+00:00"
  6411. },
  6412. {
  6413. "name": "spatie/laravel-package-tools",
  6414. "version": "1.16.5",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://github.com/spatie/laravel-package-tools.git",
  6418. "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/c7413972cf22ffdff97b68499c22baa04eddb6a2",
  6423. "reference": "c7413972cf22ffdff97b68499c22baa04eddb6a2",
  6424. "shasum": ""
  6425. },
  6426. "require": {
  6427. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6428. "php": "^8.0"
  6429. },
  6430. "require-dev": {
  6431. "mockery/mockery": "^1.5",
  6432. "orchestra/testbench": "^7.7|^8.0",
  6433. "pestphp/pest": "^1.22",
  6434. "phpunit/phpunit": "^9.5.24",
  6435. "spatie/pest-plugin-test-time": "^1.1"
  6436. },
  6437. "type": "library",
  6438. "autoload": {
  6439. "psr-4": {
  6440. "Spatie\\LaravelPackageTools\\": "src"
  6441. }
  6442. },
  6443. "notification-url": "https://packagist.org/downloads/",
  6444. "license": [
  6445. "MIT"
  6446. ],
  6447. "authors": [
  6448. {
  6449. "name": "Freek Van der Herten",
  6450. "email": "freek@spatie.be",
  6451. "role": "Developer"
  6452. }
  6453. ],
  6454. "description": "Tools for creating Laravel packages",
  6455. "homepage": "https://github.com/spatie/laravel-package-tools",
  6456. "keywords": [
  6457. "laravel-package-tools",
  6458. "spatie"
  6459. ],
  6460. "support": {
  6461. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6462. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.5"
  6463. },
  6464. "funding": [
  6465. {
  6466. "url": "https://github.com/spatie",
  6467. "type": "github"
  6468. }
  6469. ],
  6470. "time": "2024-08-27T18:56:10+00:00"
  6471. },
  6472. {
  6473. "name": "squirephp/model",
  6474. "version": "v3.6.0",
  6475. "source": {
  6476. "type": "git",
  6477. "url": "https://github.com/squirephp/model.git",
  6478. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6479. },
  6480. "dist": {
  6481. "type": "zip",
  6482. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6483. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6484. "shasum": ""
  6485. },
  6486. "require": {
  6487. "ext-pdo_sqlite": "*",
  6488. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6489. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6490. "php": "^8.0"
  6491. },
  6492. "type": "library",
  6493. "extra": {
  6494. "laravel": {
  6495. "providers": [
  6496. "Squire\\ModelServiceProvider"
  6497. ]
  6498. }
  6499. },
  6500. "autoload": {
  6501. "psr-4": {
  6502. "Squire\\": "src"
  6503. }
  6504. },
  6505. "notification-url": "https://packagist.org/downloads/",
  6506. "license": [
  6507. "MIT"
  6508. ],
  6509. "authors": [
  6510. {
  6511. "name": "Dan Harrin",
  6512. "email": "dan@danharrin.com"
  6513. }
  6514. ],
  6515. "description": "A library containing the base Squire model class.",
  6516. "homepage": "https://github.com/squirephp",
  6517. "keywords": [
  6518. "squire"
  6519. ],
  6520. "support": {
  6521. "issues": "https://github.com/squirephp/squire/issues",
  6522. "source": "https://github.com/squirephp/squire"
  6523. },
  6524. "time": "2024-03-11T11:06:10+00:00"
  6525. },
  6526. {
  6527. "name": "squirephp/repository",
  6528. "version": "v3.6.0",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://github.com/squirephp/repository.git",
  6532. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6537. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6538. "shasum": ""
  6539. },
  6540. "require": {
  6541. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6542. "php": "^8.0"
  6543. },
  6544. "type": "library",
  6545. "extra": {
  6546. "laravel": {
  6547. "providers": [
  6548. "Squire\\RepositoryServiceProvider"
  6549. ],
  6550. "aliases": {
  6551. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6552. }
  6553. }
  6554. },
  6555. "autoload": {
  6556. "psr-4": {
  6557. "Squire\\": "src"
  6558. }
  6559. },
  6560. "notification-url": "https://packagist.org/downloads/",
  6561. "license": [
  6562. "MIT"
  6563. ],
  6564. "authors": [
  6565. {
  6566. "name": "Dan Harrin",
  6567. "email": "dan@danharrin.com"
  6568. }
  6569. ],
  6570. "description": "A library containing the Squire repository.",
  6571. "homepage": "https://github.com/squirephp",
  6572. "keywords": [
  6573. "squire"
  6574. ],
  6575. "support": {
  6576. "issues": "https://github.com/squirephp/squire/issues",
  6577. "source": "https://github.com/squirephp/squire"
  6578. },
  6579. "time": "2024-03-11T11:06:10+00:00"
  6580. },
  6581. {
  6582. "name": "symfony/clock",
  6583. "version": "v7.1.1",
  6584. "source": {
  6585. "type": "git",
  6586. "url": "https://github.com/symfony/clock.git",
  6587. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  6588. },
  6589. "dist": {
  6590. "type": "zip",
  6591. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  6592. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  6593. "shasum": ""
  6594. },
  6595. "require": {
  6596. "php": ">=8.2",
  6597. "psr/clock": "^1.0",
  6598. "symfony/polyfill-php83": "^1.28"
  6599. },
  6600. "provide": {
  6601. "psr/clock-implementation": "1.0"
  6602. },
  6603. "type": "library",
  6604. "autoload": {
  6605. "files": [
  6606. "Resources/now.php"
  6607. ],
  6608. "psr-4": {
  6609. "Symfony\\Component\\Clock\\": ""
  6610. },
  6611. "exclude-from-classmap": [
  6612. "/Tests/"
  6613. ]
  6614. },
  6615. "notification-url": "https://packagist.org/downloads/",
  6616. "license": [
  6617. "MIT"
  6618. ],
  6619. "authors": [
  6620. {
  6621. "name": "Nicolas Grekas",
  6622. "email": "p@tchwork.com"
  6623. },
  6624. {
  6625. "name": "Symfony Community",
  6626. "homepage": "https://symfony.com/contributors"
  6627. }
  6628. ],
  6629. "description": "Decouples applications from the system clock",
  6630. "homepage": "https://symfony.com",
  6631. "keywords": [
  6632. "clock",
  6633. "psr20",
  6634. "time"
  6635. ],
  6636. "support": {
  6637. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  6638. },
  6639. "funding": [
  6640. {
  6641. "url": "https://symfony.com/sponsor",
  6642. "type": "custom"
  6643. },
  6644. {
  6645. "url": "https://github.com/fabpot",
  6646. "type": "github"
  6647. },
  6648. {
  6649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6650. "type": "tidelift"
  6651. }
  6652. ],
  6653. "time": "2024-05-31T14:57:53+00:00"
  6654. },
  6655. {
  6656. "name": "symfony/console",
  6657. "version": "v7.1.4",
  6658. "source": {
  6659. "type": "git",
  6660. "url": "https://github.com/symfony/console.git",
  6661. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111"
  6662. },
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://api.github.com/repos/symfony/console/zipball/1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  6666. "reference": "1eed7af6961d763e7832e874d7f9b21c3ea9c111",
  6667. "shasum": ""
  6668. },
  6669. "require": {
  6670. "php": ">=8.2",
  6671. "symfony/polyfill-mbstring": "~1.0",
  6672. "symfony/service-contracts": "^2.5|^3",
  6673. "symfony/string": "^6.4|^7.0"
  6674. },
  6675. "conflict": {
  6676. "symfony/dependency-injection": "<6.4",
  6677. "symfony/dotenv": "<6.4",
  6678. "symfony/event-dispatcher": "<6.4",
  6679. "symfony/lock": "<6.4",
  6680. "symfony/process": "<6.4"
  6681. },
  6682. "provide": {
  6683. "psr/log-implementation": "1.0|2.0|3.0"
  6684. },
  6685. "require-dev": {
  6686. "psr/log": "^1|^2|^3",
  6687. "symfony/config": "^6.4|^7.0",
  6688. "symfony/dependency-injection": "^6.4|^7.0",
  6689. "symfony/event-dispatcher": "^6.4|^7.0",
  6690. "symfony/http-foundation": "^6.4|^7.0",
  6691. "symfony/http-kernel": "^6.4|^7.0",
  6692. "symfony/lock": "^6.4|^7.0",
  6693. "symfony/messenger": "^6.4|^7.0",
  6694. "symfony/process": "^6.4|^7.0",
  6695. "symfony/stopwatch": "^6.4|^7.0",
  6696. "symfony/var-dumper": "^6.4|^7.0"
  6697. },
  6698. "type": "library",
  6699. "autoload": {
  6700. "psr-4": {
  6701. "Symfony\\Component\\Console\\": ""
  6702. },
  6703. "exclude-from-classmap": [
  6704. "/Tests/"
  6705. ]
  6706. },
  6707. "notification-url": "https://packagist.org/downloads/",
  6708. "license": [
  6709. "MIT"
  6710. ],
  6711. "authors": [
  6712. {
  6713. "name": "Fabien Potencier",
  6714. "email": "fabien@symfony.com"
  6715. },
  6716. {
  6717. "name": "Symfony Community",
  6718. "homepage": "https://symfony.com/contributors"
  6719. }
  6720. ],
  6721. "description": "Eases the creation of beautiful and testable command line interfaces",
  6722. "homepage": "https://symfony.com",
  6723. "keywords": [
  6724. "cli",
  6725. "command-line",
  6726. "console",
  6727. "terminal"
  6728. ],
  6729. "support": {
  6730. "source": "https://github.com/symfony/console/tree/v7.1.4"
  6731. },
  6732. "funding": [
  6733. {
  6734. "url": "https://symfony.com/sponsor",
  6735. "type": "custom"
  6736. },
  6737. {
  6738. "url": "https://github.com/fabpot",
  6739. "type": "github"
  6740. },
  6741. {
  6742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6743. "type": "tidelift"
  6744. }
  6745. ],
  6746. "time": "2024-08-15T22:48:53+00:00"
  6747. },
  6748. {
  6749. "name": "symfony/css-selector",
  6750. "version": "v7.1.1",
  6751. "source": {
  6752. "type": "git",
  6753. "url": "https://github.com/symfony/css-selector.git",
  6754. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  6755. },
  6756. "dist": {
  6757. "type": "zip",
  6758. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  6759. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  6760. "shasum": ""
  6761. },
  6762. "require": {
  6763. "php": ">=8.2"
  6764. },
  6765. "type": "library",
  6766. "autoload": {
  6767. "psr-4": {
  6768. "Symfony\\Component\\CssSelector\\": ""
  6769. },
  6770. "exclude-from-classmap": [
  6771. "/Tests/"
  6772. ]
  6773. },
  6774. "notification-url": "https://packagist.org/downloads/",
  6775. "license": [
  6776. "MIT"
  6777. ],
  6778. "authors": [
  6779. {
  6780. "name": "Fabien Potencier",
  6781. "email": "fabien@symfony.com"
  6782. },
  6783. {
  6784. "name": "Jean-François Simon",
  6785. "email": "jeanfrancois.simon@sensiolabs.com"
  6786. },
  6787. {
  6788. "name": "Symfony Community",
  6789. "homepage": "https://symfony.com/contributors"
  6790. }
  6791. ],
  6792. "description": "Converts CSS selectors to XPath expressions",
  6793. "homepage": "https://symfony.com",
  6794. "support": {
  6795. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  6796. },
  6797. "funding": [
  6798. {
  6799. "url": "https://symfony.com/sponsor",
  6800. "type": "custom"
  6801. },
  6802. {
  6803. "url": "https://github.com/fabpot",
  6804. "type": "github"
  6805. },
  6806. {
  6807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6808. "type": "tidelift"
  6809. }
  6810. ],
  6811. "time": "2024-05-31T14:57:53+00:00"
  6812. },
  6813. {
  6814. "name": "symfony/deprecation-contracts",
  6815. "version": "v3.5.0",
  6816. "source": {
  6817. "type": "git",
  6818. "url": "https://github.com/symfony/deprecation-contracts.git",
  6819. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6820. },
  6821. "dist": {
  6822. "type": "zip",
  6823. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6824. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6825. "shasum": ""
  6826. },
  6827. "require": {
  6828. "php": ">=8.1"
  6829. },
  6830. "type": "library",
  6831. "extra": {
  6832. "branch-alias": {
  6833. "dev-main": "3.5-dev"
  6834. },
  6835. "thanks": {
  6836. "name": "symfony/contracts",
  6837. "url": "https://github.com/symfony/contracts"
  6838. }
  6839. },
  6840. "autoload": {
  6841. "files": [
  6842. "function.php"
  6843. ]
  6844. },
  6845. "notification-url": "https://packagist.org/downloads/",
  6846. "license": [
  6847. "MIT"
  6848. ],
  6849. "authors": [
  6850. {
  6851. "name": "Nicolas Grekas",
  6852. "email": "p@tchwork.com"
  6853. },
  6854. {
  6855. "name": "Symfony Community",
  6856. "homepage": "https://symfony.com/contributors"
  6857. }
  6858. ],
  6859. "description": "A generic function and convention to trigger deprecation notices",
  6860. "homepage": "https://symfony.com",
  6861. "support": {
  6862. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6863. },
  6864. "funding": [
  6865. {
  6866. "url": "https://symfony.com/sponsor",
  6867. "type": "custom"
  6868. },
  6869. {
  6870. "url": "https://github.com/fabpot",
  6871. "type": "github"
  6872. },
  6873. {
  6874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6875. "type": "tidelift"
  6876. }
  6877. ],
  6878. "time": "2024-04-18T09:32:20+00:00"
  6879. },
  6880. {
  6881. "name": "symfony/error-handler",
  6882. "version": "v7.1.3",
  6883. "source": {
  6884. "type": "git",
  6885. "url": "https://github.com/symfony/error-handler.git",
  6886. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  6887. },
  6888. "dist": {
  6889. "type": "zip",
  6890. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  6891. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  6892. "shasum": ""
  6893. },
  6894. "require": {
  6895. "php": ">=8.2",
  6896. "psr/log": "^1|^2|^3",
  6897. "symfony/var-dumper": "^6.4|^7.0"
  6898. },
  6899. "conflict": {
  6900. "symfony/deprecation-contracts": "<2.5",
  6901. "symfony/http-kernel": "<6.4"
  6902. },
  6903. "require-dev": {
  6904. "symfony/deprecation-contracts": "^2.5|^3",
  6905. "symfony/http-kernel": "^6.4|^7.0",
  6906. "symfony/serializer": "^6.4|^7.0"
  6907. },
  6908. "bin": [
  6909. "Resources/bin/patch-type-declarations"
  6910. ],
  6911. "type": "library",
  6912. "autoload": {
  6913. "psr-4": {
  6914. "Symfony\\Component\\ErrorHandler\\": ""
  6915. },
  6916. "exclude-from-classmap": [
  6917. "/Tests/"
  6918. ]
  6919. },
  6920. "notification-url": "https://packagist.org/downloads/",
  6921. "license": [
  6922. "MIT"
  6923. ],
  6924. "authors": [
  6925. {
  6926. "name": "Fabien Potencier",
  6927. "email": "fabien@symfony.com"
  6928. },
  6929. {
  6930. "name": "Symfony Community",
  6931. "homepage": "https://symfony.com/contributors"
  6932. }
  6933. ],
  6934. "description": "Provides tools to manage errors and ease debugging PHP code",
  6935. "homepage": "https://symfony.com",
  6936. "support": {
  6937. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  6938. },
  6939. "funding": [
  6940. {
  6941. "url": "https://symfony.com/sponsor",
  6942. "type": "custom"
  6943. },
  6944. {
  6945. "url": "https://github.com/fabpot",
  6946. "type": "github"
  6947. },
  6948. {
  6949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6950. "type": "tidelift"
  6951. }
  6952. ],
  6953. "time": "2024-07-26T13:02:51+00:00"
  6954. },
  6955. {
  6956. "name": "symfony/event-dispatcher",
  6957. "version": "v7.1.1",
  6958. "source": {
  6959. "type": "git",
  6960. "url": "https://github.com/symfony/event-dispatcher.git",
  6961. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  6962. },
  6963. "dist": {
  6964. "type": "zip",
  6965. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  6966. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  6967. "shasum": ""
  6968. },
  6969. "require": {
  6970. "php": ">=8.2",
  6971. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6972. },
  6973. "conflict": {
  6974. "symfony/dependency-injection": "<6.4",
  6975. "symfony/service-contracts": "<2.5"
  6976. },
  6977. "provide": {
  6978. "psr/event-dispatcher-implementation": "1.0",
  6979. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6980. },
  6981. "require-dev": {
  6982. "psr/log": "^1|^2|^3",
  6983. "symfony/config": "^6.4|^7.0",
  6984. "symfony/dependency-injection": "^6.4|^7.0",
  6985. "symfony/error-handler": "^6.4|^7.0",
  6986. "symfony/expression-language": "^6.4|^7.0",
  6987. "symfony/http-foundation": "^6.4|^7.0",
  6988. "symfony/service-contracts": "^2.5|^3",
  6989. "symfony/stopwatch": "^6.4|^7.0"
  6990. },
  6991. "type": "library",
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Symfony\\Component\\EventDispatcher\\": ""
  6995. },
  6996. "exclude-from-classmap": [
  6997. "/Tests/"
  6998. ]
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "MIT"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Fabien Potencier",
  7007. "email": "fabien@symfony.com"
  7008. },
  7009. {
  7010. "name": "Symfony Community",
  7011. "homepage": "https://symfony.com/contributors"
  7012. }
  7013. ],
  7014. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7015. "homepage": "https://symfony.com",
  7016. "support": {
  7017. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  7018. },
  7019. "funding": [
  7020. {
  7021. "url": "https://symfony.com/sponsor",
  7022. "type": "custom"
  7023. },
  7024. {
  7025. "url": "https://github.com/fabpot",
  7026. "type": "github"
  7027. },
  7028. {
  7029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7030. "type": "tidelift"
  7031. }
  7032. ],
  7033. "time": "2024-05-31T14:57:53+00:00"
  7034. },
  7035. {
  7036. "name": "symfony/event-dispatcher-contracts",
  7037. "version": "v3.5.0",
  7038. "source": {
  7039. "type": "git",
  7040. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7041. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  7042. },
  7043. "dist": {
  7044. "type": "zip",
  7045. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  7046. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  7047. "shasum": ""
  7048. },
  7049. "require": {
  7050. "php": ">=8.1",
  7051. "psr/event-dispatcher": "^1"
  7052. },
  7053. "type": "library",
  7054. "extra": {
  7055. "branch-alias": {
  7056. "dev-main": "3.5-dev"
  7057. },
  7058. "thanks": {
  7059. "name": "symfony/contracts",
  7060. "url": "https://github.com/symfony/contracts"
  7061. }
  7062. },
  7063. "autoload": {
  7064. "psr-4": {
  7065. "Symfony\\Contracts\\EventDispatcher\\": ""
  7066. }
  7067. },
  7068. "notification-url": "https://packagist.org/downloads/",
  7069. "license": [
  7070. "MIT"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Nicolas Grekas",
  7075. "email": "p@tchwork.com"
  7076. },
  7077. {
  7078. "name": "Symfony Community",
  7079. "homepage": "https://symfony.com/contributors"
  7080. }
  7081. ],
  7082. "description": "Generic abstractions related to dispatching event",
  7083. "homepage": "https://symfony.com",
  7084. "keywords": [
  7085. "abstractions",
  7086. "contracts",
  7087. "decoupling",
  7088. "interfaces",
  7089. "interoperability",
  7090. "standards"
  7091. ],
  7092. "support": {
  7093. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  7094. },
  7095. "funding": [
  7096. {
  7097. "url": "https://symfony.com/sponsor",
  7098. "type": "custom"
  7099. },
  7100. {
  7101. "url": "https://github.com/fabpot",
  7102. "type": "github"
  7103. },
  7104. {
  7105. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7106. "type": "tidelift"
  7107. }
  7108. ],
  7109. "time": "2024-04-18T09:32:20+00:00"
  7110. },
  7111. {
  7112. "name": "symfony/finder",
  7113. "version": "v7.1.4",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/symfony/finder.git",
  7117. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  7122. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  7123. "shasum": ""
  7124. },
  7125. "require": {
  7126. "php": ">=8.2"
  7127. },
  7128. "require-dev": {
  7129. "symfony/filesystem": "^6.4|^7.0"
  7130. },
  7131. "type": "library",
  7132. "autoload": {
  7133. "psr-4": {
  7134. "Symfony\\Component\\Finder\\": ""
  7135. },
  7136. "exclude-from-classmap": [
  7137. "/Tests/"
  7138. ]
  7139. },
  7140. "notification-url": "https://packagist.org/downloads/",
  7141. "license": [
  7142. "MIT"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Fabien Potencier",
  7147. "email": "fabien@symfony.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Finds files and directories via an intuitive fluent interface",
  7155. "homepage": "https://symfony.com",
  7156. "support": {
  7157. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://symfony.com/sponsor",
  7162. "type": "custom"
  7163. },
  7164. {
  7165. "url": "https://github.com/fabpot",
  7166. "type": "github"
  7167. },
  7168. {
  7169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7170. "type": "tidelift"
  7171. }
  7172. ],
  7173. "time": "2024-08-13T14:28:19+00:00"
  7174. },
  7175. {
  7176. "name": "symfony/html-sanitizer",
  7177. "version": "v7.1.1",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/symfony/html-sanitizer.git",
  7181. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/737cbaa8082b696d0574afd91b9f471eca67fc65",
  7186. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65",
  7187. "shasum": ""
  7188. },
  7189. "require": {
  7190. "ext-dom": "*",
  7191. "league/uri": "^6.5|^7.0",
  7192. "masterminds/html5": "^2.7.2",
  7193. "php": ">=8.2"
  7194. },
  7195. "type": "library",
  7196. "autoload": {
  7197. "psr-4": {
  7198. "Symfony\\Component\\HtmlSanitizer\\": ""
  7199. },
  7200. "exclude-from-classmap": [
  7201. "/Tests/"
  7202. ]
  7203. },
  7204. "notification-url": "https://packagist.org/downloads/",
  7205. "license": [
  7206. "MIT"
  7207. ],
  7208. "authors": [
  7209. {
  7210. "name": "Titouan Galopin",
  7211. "email": "galopintitouan@gmail.com"
  7212. },
  7213. {
  7214. "name": "Symfony Community",
  7215. "homepage": "https://symfony.com/contributors"
  7216. }
  7217. ],
  7218. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7219. "homepage": "https://symfony.com",
  7220. "keywords": [
  7221. "Purifier",
  7222. "html",
  7223. "sanitizer"
  7224. ],
  7225. "support": {
  7226. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.1"
  7227. },
  7228. "funding": [
  7229. {
  7230. "url": "https://symfony.com/sponsor",
  7231. "type": "custom"
  7232. },
  7233. {
  7234. "url": "https://github.com/fabpot",
  7235. "type": "github"
  7236. },
  7237. {
  7238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7239. "type": "tidelift"
  7240. }
  7241. ],
  7242. "time": "2024-05-31T14:55:39+00:00"
  7243. },
  7244. {
  7245. "name": "symfony/http-foundation",
  7246. "version": "v7.1.3",
  7247. "source": {
  7248. "type": "git",
  7249. "url": "https://github.com/symfony/http-foundation.git",
  7250. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  7251. },
  7252. "dist": {
  7253. "type": "zip",
  7254. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  7255. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  7256. "shasum": ""
  7257. },
  7258. "require": {
  7259. "php": ">=8.2",
  7260. "symfony/polyfill-mbstring": "~1.1",
  7261. "symfony/polyfill-php83": "^1.27"
  7262. },
  7263. "conflict": {
  7264. "doctrine/dbal": "<3.6",
  7265. "symfony/cache": "<6.4"
  7266. },
  7267. "require-dev": {
  7268. "doctrine/dbal": "^3.6|^4",
  7269. "predis/predis": "^1.1|^2.0",
  7270. "symfony/cache": "^6.4|^7.0",
  7271. "symfony/dependency-injection": "^6.4|^7.0",
  7272. "symfony/expression-language": "^6.4|^7.0",
  7273. "symfony/http-kernel": "^6.4|^7.0",
  7274. "symfony/mime": "^6.4|^7.0",
  7275. "symfony/rate-limiter": "^6.4|^7.0"
  7276. },
  7277. "type": "library",
  7278. "autoload": {
  7279. "psr-4": {
  7280. "Symfony\\Component\\HttpFoundation\\": ""
  7281. },
  7282. "exclude-from-classmap": [
  7283. "/Tests/"
  7284. ]
  7285. },
  7286. "notification-url": "https://packagist.org/downloads/",
  7287. "license": [
  7288. "MIT"
  7289. ],
  7290. "authors": [
  7291. {
  7292. "name": "Fabien Potencier",
  7293. "email": "fabien@symfony.com"
  7294. },
  7295. {
  7296. "name": "Symfony Community",
  7297. "homepage": "https://symfony.com/contributors"
  7298. }
  7299. ],
  7300. "description": "Defines an object-oriented layer for the HTTP specification",
  7301. "homepage": "https://symfony.com",
  7302. "support": {
  7303. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  7304. },
  7305. "funding": [
  7306. {
  7307. "url": "https://symfony.com/sponsor",
  7308. "type": "custom"
  7309. },
  7310. {
  7311. "url": "https://github.com/fabpot",
  7312. "type": "github"
  7313. },
  7314. {
  7315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7316. "type": "tidelift"
  7317. }
  7318. ],
  7319. "time": "2024-07-26T12:41:01+00:00"
  7320. },
  7321. {
  7322. "name": "symfony/http-kernel",
  7323. "version": "v7.1.4",
  7324. "source": {
  7325. "type": "git",
  7326. "url": "https://github.com/symfony/http-kernel.git",
  7327. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747"
  7328. },
  7329. "dist": {
  7330. "type": "zip",
  7331. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6efcbd1b3f444f631c386504fc83eeca25963747",
  7332. "reference": "6efcbd1b3f444f631c386504fc83eeca25963747",
  7333. "shasum": ""
  7334. },
  7335. "require": {
  7336. "php": ">=8.2",
  7337. "psr/log": "^1|^2|^3",
  7338. "symfony/deprecation-contracts": "^2.5|^3",
  7339. "symfony/error-handler": "^6.4|^7.0",
  7340. "symfony/event-dispatcher": "^6.4|^7.0",
  7341. "symfony/http-foundation": "^6.4|^7.0",
  7342. "symfony/polyfill-ctype": "^1.8"
  7343. },
  7344. "conflict": {
  7345. "symfony/browser-kit": "<6.4",
  7346. "symfony/cache": "<6.4",
  7347. "symfony/config": "<6.4",
  7348. "symfony/console": "<6.4",
  7349. "symfony/dependency-injection": "<6.4",
  7350. "symfony/doctrine-bridge": "<6.4",
  7351. "symfony/form": "<6.4",
  7352. "symfony/http-client": "<6.4",
  7353. "symfony/http-client-contracts": "<2.5",
  7354. "symfony/mailer": "<6.4",
  7355. "symfony/messenger": "<6.4",
  7356. "symfony/translation": "<6.4",
  7357. "symfony/translation-contracts": "<2.5",
  7358. "symfony/twig-bridge": "<6.4",
  7359. "symfony/validator": "<6.4",
  7360. "symfony/var-dumper": "<6.4",
  7361. "twig/twig": "<3.0.4"
  7362. },
  7363. "provide": {
  7364. "psr/log-implementation": "1.0|2.0|3.0"
  7365. },
  7366. "require-dev": {
  7367. "psr/cache": "^1.0|^2.0|^3.0",
  7368. "symfony/browser-kit": "^6.4|^7.0",
  7369. "symfony/clock": "^6.4|^7.0",
  7370. "symfony/config": "^6.4|^7.0",
  7371. "symfony/console": "^6.4|^7.0",
  7372. "symfony/css-selector": "^6.4|^7.0",
  7373. "symfony/dependency-injection": "^6.4|^7.0",
  7374. "symfony/dom-crawler": "^6.4|^7.0",
  7375. "symfony/expression-language": "^6.4|^7.0",
  7376. "symfony/finder": "^6.4|^7.0",
  7377. "symfony/http-client-contracts": "^2.5|^3",
  7378. "symfony/process": "^6.4|^7.0",
  7379. "symfony/property-access": "^7.1",
  7380. "symfony/routing": "^6.4|^7.0",
  7381. "symfony/serializer": "^7.1",
  7382. "symfony/stopwatch": "^6.4|^7.0",
  7383. "symfony/translation": "^6.4|^7.0",
  7384. "symfony/translation-contracts": "^2.5|^3",
  7385. "symfony/uid": "^6.4|^7.0",
  7386. "symfony/validator": "^6.4|^7.0",
  7387. "symfony/var-dumper": "^6.4|^7.0",
  7388. "symfony/var-exporter": "^6.4|^7.0",
  7389. "twig/twig": "^3.0.4"
  7390. },
  7391. "type": "library",
  7392. "autoload": {
  7393. "psr-4": {
  7394. "Symfony\\Component\\HttpKernel\\": ""
  7395. },
  7396. "exclude-from-classmap": [
  7397. "/Tests/"
  7398. ]
  7399. },
  7400. "notification-url": "https://packagist.org/downloads/",
  7401. "license": [
  7402. "MIT"
  7403. ],
  7404. "authors": [
  7405. {
  7406. "name": "Fabien Potencier",
  7407. "email": "fabien@symfony.com"
  7408. },
  7409. {
  7410. "name": "Symfony Community",
  7411. "homepage": "https://symfony.com/contributors"
  7412. }
  7413. ],
  7414. "description": "Provides a structured process for converting a Request into a Response",
  7415. "homepage": "https://symfony.com",
  7416. "support": {
  7417. "source": "https://github.com/symfony/http-kernel/tree/v7.1.4"
  7418. },
  7419. "funding": [
  7420. {
  7421. "url": "https://symfony.com/sponsor",
  7422. "type": "custom"
  7423. },
  7424. {
  7425. "url": "https://github.com/fabpot",
  7426. "type": "github"
  7427. },
  7428. {
  7429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7430. "type": "tidelift"
  7431. }
  7432. ],
  7433. "time": "2024-08-30T17:02:28+00:00"
  7434. },
  7435. {
  7436. "name": "symfony/intl",
  7437. "version": "v6.4.8",
  7438. "source": {
  7439. "type": "git",
  7440. "url": "https://github.com/symfony/intl.git",
  7441. "reference": "50265cdcf5a44bec3fcf487b5d0015aece91d1eb"
  7442. },
  7443. "dist": {
  7444. "type": "zip",
  7445. "url": "https://api.github.com/repos/symfony/intl/zipball/50265cdcf5a44bec3fcf487b5d0015aece91d1eb",
  7446. "reference": "50265cdcf5a44bec3fcf487b5d0015aece91d1eb",
  7447. "shasum": ""
  7448. },
  7449. "require": {
  7450. "php": ">=8.1"
  7451. },
  7452. "require-dev": {
  7453. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7454. "symfony/finder": "^5.4|^6.0|^7.0",
  7455. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7456. },
  7457. "type": "library",
  7458. "autoload": {
  7459. "psr-4": {
  7460. "Symfony\\Component\\Intl\\": ""
  7461. },
  7462. "exclude-from-classmap": [
  7463. "/Tests/",
  7464. "/Resources/data/"
  7465. ]
  7466. },
  7467. "notification-url": "https://packagist.org/downloads/",
  7468. "license": [
  7469. "MIT"
  7470. ],
  7471. "authors": [
  7472. {
  7473. "name": "Bernhard Schussek",
  7474. "email": "bschussek@gmail.com"
  7475. },
  7476. {
  7477. "name": "Eriksen Costa",
  7478. "email": "eriksen.costa@infranology.com.br"
  7479. },
  7480. {
  7481. "name": "Igor Wiedler",
  7482. "email": "igor@wiedler.ch"
  7483. },
  7484. {
  7485. "name": "Symfony Community",
  7486. "homepage": "https://symfony.com/contributors"
  7487. }
  7488. ],
  7489. "description": "Provides access to the localization data of the ICU library",
  7490. "homepage": "https://symfony.com",
  7491. "keywords": [
  7492. "i18n",
  7493. "icu",
  7494. "internationalization",
  7495. "intl",
  7496. "l10n",
  7497. "localization"
  7498. ],
  7499. "support": {
  7500. "source": "https://github.com/symfony/intl/tree/v6.4.8"
  7501. },
  7502. "funding": [
  7503. {
  7504. "url": "https://symfony.com/sponsor",
  7505. "type": "custom"
  7506. },
  7507. {
  7508. "url": "https://github.com/fabpot",
  7509. "type": "github"
  7510. },
  7511. {
  7512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7513. "type": "tidelift"
  7514. }
  7515. ],
  7516. "time": "2024-05-31T14:49:08+00:00"
  7517. },
  7518. {
  7519. "name": "symfony/mailer",
  7520. "version": "v7.1.2",
  7521. "source": {
  7522. "type": "git",
  7523. "url": "https://github.com/symfony/mailer.git",
  7524. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  7525. },
  7526. "dist": {
  7527. "type": "zip",
  7528. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  7529. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  7530. "shasum": ""
  7531. },
  7532. "require": {
  7533. "egulias/email-validator": "^2.1.10|^3|^4",
  7534. "php": ">=8.2",
  7535. "psr/event-dispatcher": "^1",
  7536. "psr/log": "^1|^2|^3",
  7537. "symfony/event-dispatcher": "^6.4|^7.0",
  7538. "symfony/mime": "^6.4|^7.0",
  7539. "symfony/service-contracts": "^2.5|^3"
  7540. },
  7541. "conflict": {
  7542. "symfony/http-client-contracts": "<2.5",
  7543. "symfony/http-kernel": "<6.4",
  7544. "symfony/messenger": "<6.4",
  7545. "symfony/mime": "<6.4",
  7546. "symfony/twig-bridge": "<6.4"
  7547. },
  7548. "require-dev": {
  7549. "symfony/console": "^6.4|^7.0",
  7550. "symfony/http-client": "^6.4|^7.0",
  7551. "symfony/messenger": "^6.4|^7.0",
  7552. "symfony/twig-bridge": "^6.4|^7.0"
  7553. },
  7554. "type": "library",
  7555. "autoload": {
  7556. "psr-4": {
  7557. "Symfony\\Component\\Mailer\\": ""
  7558. },
  7559. "exclude-from-classmap": [
  7560. "/Tests/"
  7561. ]
  7562. },
  7563. "notification-url": "https://packagist.org/downloads/",
  7564. "license": [
  7565. "MIT"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "Fabien Potencier",
  7570. "email": "fabien@symfony.com"
  7571. },
  7572. {
  7573. "name": "Symfony Community",
  7574. "homepage": "https://symfony.com/contributors"
  7575. }
  7576. ],
  7577. "description": "Helps sending emails",
  7578. "homepage": "https://symfony.com",
  7579. "support": {
  7580. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2024-06-28T08:00:31+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/mime",
  7600. "version": "v7.1.4",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/mime.git",
  7604. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/mime/zipball/ccaa6c2503db867f472a587291e764d6a1e58758",
  7609. "reference": "ccaa6c2503db867f472a587291e764d6a1e58758",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "php": ">=8.2",
  7614. "symfony/polyfill-intl-idn": "^1.10",
  7615. "symfony/polyfill-mbstring": "^1.0"
  7616. },
  7617. "conflict": {
  7618. "egulias/email-validator": "~3.0.0",
  7619. "phpdocumentor/reflection-docblock": "<3.2.2",
  7620. "phpdocumentor/type-resolver": "<1.4.0",
  7621. "symfony/mailer": "<6.4",
  7622. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7623. },
  7624. "require-dev": {
  7625. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7626. "league/html-to-markdown": "^5.0",
  7627. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7628. "symfony/dependency-injection": "^6.4|^7.0",
  7629. "symfony/process": "^6.4|^7.0",
  7630. "symfony/property-access": "^6.4|^7.0",
  7631. "symfony/property-info": "^6.4|^7.0",
  7632. "symfony/serializer": "^6.4.3|^7.0.3"
  7633. },
  7634. "type": "library",
  7635. "autoload": {
  7636. "psr-4": {
  7637. "Symfony\\Component\\Mime\\": ""
  7638. },
  7639. "exclude-from-classmap": [
  7640. "/Tests/"
  7641. ]
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Fabien Potencier",
  7650. "email": "fabien@symfony.com"
  7651. },
  7652. {
  7653. "name": "Symfony Community",
  7654. "homepage": "https://symfony.com/contributors"
  7655. }
  7656. ],
  7657. "description": "Allows manipulating MIME messages",
  7658. "homepage": "https://symfony.com",
  7659. "keywords": [
  7660. "mime",
  7661. "mime-type"
  7662. ],
  7663. "support": {
  7664. "source": "https://github.com/symfony/mime/tree/v7.1.4"
  7665. },
  7666. "funding": [
  7667. {
  7668. "url": "https://symfony.com/sponsor",
  7669. "type": "custom"
  7670. },
  7671. {
  7672. "url": "https://github.com/fabpot",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7677. "type": "tidelift"
  7678. }
  7679. ],
  7680. "time": "2024-08-13T14:28:19+00:00"
  7681. },
  7682. {
  7683. "name": "symfony/polyfill-ctype",
  7684. "version": "v1.31.0",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/symfony/polyfill-ctype.git",
  7688. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7693. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": ">=7.2"
  7698. },
  7699. "provide": {
  7700. "ext-ctype": "*"
  7701. },
  7702. "suggest": {
  7703. "ext-ctype": "For best performance"
  7704. },
  7705. "type": "library",
  7706. "extra": {
  7707. "thanks": {
  7708. "name": "symfony/polyfill",
  7709. "url": "https://github.com/symfony/polyfill"
  7710. }
  7711. },
  7712. "autoload": {
  7713. "files": [
  7714. "bootstrap.php"
  7715. ],
  7716. "psr-4": {
  7717. "Symfony\\Polyfill\\Ctype\\": ""
  7718. }
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "MIT"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Gert de Pagter",
  7727. "email": "BackEndTea@gmail.com"
  7728. },
  7729. {
  7730. "name": "Symfony Community",
  7731. "homepage": "https://symfony.com/contributors"
  7732. }
  7733. ],
  7734. "description": "Symfony polyfill for ctype functions",
  7735. "homepage": "https://symfony.com",
  7736. "keywords": [
  7737. "compatibility",
  7738. "ctype",
  7739. "polyfill",
  7740. "portable"
  7741. ],
  7742. "support": {
  7743. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7744. },
  7745. "funding": [
  7746. {
  7747. "url": "https://symfony.com/sponsor",
  7748. "type": "custom"
  7749. },
  7750. {
  7751. "url": "https://github.com/fabpot",
  7752. "type": "github"
  7753. },
  7754. {
  7755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7756. "type": "tidelift"
  7757. }
  7758. ],
  7759. "time": "2024-09-09T11:45:10+00:00"
  7760. },
  7761. {
  7762. "name": "symfony/polyfill-intl-grapheme",
  7763. "version": "v1.31.0",
  7764. "source": {
  7765. "type": "git",
  7766. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7767. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7768. },
  7769. "dist": {
  7770. "type": "zip",
  7771. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7772. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7773. "shasum": ""
  7774. },
  7775. "require": {
  7776. "php": ">=7.2"
  7777. },
  7778. "suggest": {
  7779. "ext-intl": "For best performance"
  7780. },
  7781. "type": "library",
  7782. "extra": {
  7783. "thanks": {
  7784. "name": "symfony/polyfill",
  7785. "url": "https://github.com/symfony/polyfill"
  7786. }
  7787. },
  7788. "autoload": {
  7789. "files": [
  7790. "bootstrap.php"
  7791. ],
  7792. "psr-4": {
  7793. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7794. }
  7795. },
  7796. "notification-url": "https://packagist.org/downloads/",
  7797. "license": [
  7798. "MIT"
  7799. ],
  7800. "authors": [
  7801. {
  7802. "name": "Nicolas Grekas",
  7803. "email": "p@tchwork.com"
  7804. },
  7805. {
  7806. "name": "Symfony Community",
  7807. "homepage": "https://symfony.com/contributors"
  7808. }
  7809. ],
  7810. "description": "Symfony polyfill for intl's grapheme_* functions",
  7811. "homepage": "https://symfony.com",
  7812. "keywords": [
  7813. "compatibility",
  7814. "grapheme",
  7815. "intl",
  7816. "polyfill",
  7817. "portable",
  7818. "shim"
  7819. ],
  7820. "support": {
  7821. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7822. },
  7823. "funding": [
  7824. {
  7825. "url": "https://symfony.com/sponsor",
  7826. "type": "custom"
  7827. },
  7828. {
  7829. "url": "https://github.com/fabpot",
  7830. "type": "github"
  7831. },
  7832. {
  7833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7834. "type": "tidelift"
  7835. }
  7836. ],
  7837. "time": "2024-09-09T11:45:10+00:00"
  7838. },
  7839. {
  7840. "name": "symfony/polyfill-intl-idn",
  7841. "version": "v1.31.0",
  7842. "source": {
  7843. "type": "git",
  7844. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7845. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7846. },
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7850. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7851. "shasum": ""
  7852. },
  7853. "require": {
  7854. "php": ">=7.2",
  7855. "symfony/polyfill-intl-normalizer": "^1.10"
  7856. },
  7857. "suggest": {
  7858. "ext-intl": "For best performance"
  7859. },
  7860. "type": "library",
  7861. "extra": {
  7862. "thanks": {
  7863. "name": "symfony/polyfill",
  7864. "url": "https://github.com/symfony/polyfill"
  7865. }
  7866. },
  7867. "autoload": {
  7868. "files": [
  7869. "bootstrap.php"
  7870. ],
  7871. "psr-4": {
  7872. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7873. }
  7874. },
  7875. "notification-url": "https://packagist.org/downloads/",
  7876. "license": [
  7877. "MIT"
  7878. ],
  7879. "authors": [
  7880. {
  7881. "name": "Laurent Bassin",
  7882. "email": "laurent@bassin.info"
  7883. },
  7884. {
  7885. "name": "Trevor Rowbotham",
  7886. "email": "trevor.rowbotham@pm.me"
  7887. },
  7888. {
  7889. "name": "Symfony Community",
  7890. "homepage": "https://symfony.com/contributors"
  7891. }
  7892. ],
  7893. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7894. "homepage": "https://symfony.com",
  7895. "keywords": [
  7896. "compatibility",
  7897. "idn",
  7898. "intl",
  7899. "polyfill",
  7900. "portable",
  7901. "shim"
  7902. ],
  7903. "support": {
  7904. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7905. },
  7906. "funding": [
  7907. {
  7908. "url": "https://symfony.com/sponsor",
  7909. "type": "custom"
  7910. },
  7911. {
  7912. "url": "https://github.com/fabpot",
  7913. "type": "github"
  7914. },
  7915. {
  7916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7917. "type": "tidelift"
  7918. }
  7919. ],
  7920. "time": "2024-09-09T11:45:10+00:00"
  7921. },
  7922. {
  7923. "name": "symfony/polyfill-intl-normalizer",
  7924. "version": "v1.31.0",
  7925. "source": {
  7926. "type": "git",
  7927. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7928. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7929. },
  7930. "dist": {
  7931. "type": "zip",
  7932. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7933. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7934. "shasum": ""
  7935. },
  7936. "require": {
  7937. "php": ">=7.2"
  7938. },
  7939. "suggest": {
  7940. "ext-intl": "For best performance"
  7941. },
  7942. "type": "library",
  7943. "extra": {
  7944. "thanks": {
  7945. "name": "symfony/polyfill",
  7946. "url": "https://github.com/symfony/polyfill"
  7947. }
  7948. },
  7949. "autoload": {
  7950. "files": [
  7951. "bootstrap.php"
  7952. ],
  7953. "psr-4": {
  7954. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7955. },
  7956. "classmap": [
  7957. "Resources/stubs"
  7958. ]
  7959. },
  7960. "notification-url": "https://packagist.org/downloads/",
  7961. "license": [
  7962. "MIT"
  7963. ],
  7964. "authors": [
  7965. {
  7966. "name": "Nicolas Grekas",
  7967. "email": "p@tchwork.com"
  7968. },
  7969. {
  7970. "name": "Symfony Community",
  7971. "homepage": "https://symfony.com/contributors"
  7972. }
  7973. ],
  7974. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7975. "homepage": "https://symfony.com",
  7976. "keywords": [
  7977. "compatibility",
  7978. "intl",
  7979. "normalizer",
  7980. "polyfill",
  7981. "portable",
  7982. "shim"
  7983. ],
  7984. "support": {
  7985. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7986. },
  7987. "funding": [
  7988. {
  7989. "url": "https://symfony.com/sponsor",
  7990. "type": "custom"
  7991. },
  7992. {
  7993. "url": "https://github.com/fabpot",
  7994. "type": "github"
  7995. },
  7996. {
  7997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7998. "type": "tidelift"
  7999. }
  8000. ],
  8001. "time": "2024-09-09T11:45:10+00:00"
  8002. },
  8003. {
  8004. "name": "symfony/polyfill-mbstring",
  8005. "version": "v1.31.0",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8009. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8014. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "php": ">=7.2"
  8019. },
  8020. "provide": {
  8021. "ext-mbstring": "*"
  8022. },
  8023. "suggest": {
  8024. "ext-mbstring": "For best performance"
  8025. },
  8026. "type": "library",
  8027. "extra": {
  8028. "thanks": {
  8029. "name": "symfony/polyfill",
  8030. "url": "https://github.com/symfony/polyfill"
  8031. }
  8032. },
  8033. "autoload": {
  8034. "files": [
  8035. "bootstrap.php"
  8036. ],
  8037. "psr-4": {
  8038. "Symfony\\Polyfill\\Mbstring\\": ""
  8039. }
  8040. },
  8041. "notification-url": "https://packagist.org/downloads/",
  8042. "license": [
  8043. "MIT"
  8044. ],
  8045. "authors": [
  8046. {
  8047. "name": "Nicolas Grekas",
  8048. "email": "p@tchwork.com"
  8049. },
  8050. {
  8051. "name": "Symfony Community",
  8052. "homepage": "https://symfony.com/contributors"
  8053. }
  8054. ],
  8055. "description": "Symfony polyfill for the Mbstring extension",
  8056. "homepage": "https://symfony.com",
  8057. "keywords": [
  8058. "compatibility",
  8059. "mbstring",
  8060. "polyfill",
  8061. "portable",
  8062. "shim"
  8063. ],
  8064. "support": {
  8065. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8066. },
  8067. "funding": [
  8068. {
  8069. "url": "https://symfony.com/sponsor",
  8070. "type": "custom"
  8071. },
  8072. {
  8073. "url": "https://github.com/fabpot",
  8074. "type": "github"
  8075. },
  8076. {
  8077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8078. "type": "tidelift"
  8079. }
  8080. ],
  8081. "time": "2024-09-09T11:45:10+00:00"
  8082. },
  8083. {
  8084. "name": "symfony/polyfill-php80",
  8085. "version": "v1.31.0",
  8086. "source": {
  8087. "type": "git",
  8088. "url": "https://github.com/symfony/polyfill-php80.git",
  8089. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8090. },
  8091. "dist": {
  8092. "type": "zip",
  8093. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8094. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8095. "shasum": ""
  8096. },
  8097. "require": {
  8098. "php": ">=7.2"
  8099. },
  8100. "type": "library",
  8101. "extra": {
  8102. "thanks": {
  8103. "name": "symfony/polyfill",
  8104. "url": "https://github.com/symfony/polyfill"
  8105. }
  8106. },
  8107. "autoload": {
  8108. "files": [
  8109. "bootstrap.php"
  8110. ],
  8111. "psr-4": {
  8112. "Symfony\\Polyfill\\Php80\\": ""
  8113. },
  8114. "classmap": [
  8115. "Resources/stubs"
  8116. ]
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "Ion Bazan",
  8125. "email": "ion.bazan@gmail.com"
  8126. },
  8127. {
  8128. "name": "Nicolas Grekas",
  8129. "email": "p@tchwork.com"
  8130. },
  8131. {
  8132. "name": "Symfony Community",
  8133. "homepage": "https://symfony.com/contributors"
  8134. }
  8135. ],
  8136. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8137. "homepage": "https://symfony.com",
  8138. "keywords": [
  8139. "compatibility",
  8140. "polyfill",
  8141. "portable",
  8142. "shim"
  8143. ],
  8144. "support": {
  8145. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8146. },
  8147. "funding": [
  8148. {
  8149. "url": "https://symfony.com/sponsor",
  8150. "type": "custom"
  8151. },
  8152. {
  8153. "url": "https://github.com/fabpot",
  8154. "type": "github"
  8155. },
  8156. {
  8157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8158. "type": "tidelift"
  8159. }
  8160. ],
  8161. "time": "2024-09-09T11:45:10+00:00"
  8162. },
  8163. {
  8164. "name": "symfony/polyfill-php83",
  8165. "version": "v1.31.0",
  8166. "source": {
  8167. "type": "git",
  8168. "url": "https://github.com/symfony/polyfill-php83.git",
  8169. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8170. },
  8171. "dist": {
  8172. "type": "zip",
  8173. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8174. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8175. "shasum": ""
  8176. },
  8177. "require": {
  8178. "php": ">=7.2"
  8179. },
  8180. "type": "library",
  8181. "extra": {
  8182. "thanks": {
  8183. "name": "symfony/polyfill",
  8184. "url": "https://github.com/symfony/polyfill"
  8185. }
  8186. },
  8187. "autoload": {
  8188. "files": [
  8189. "bootstrap.php"
  8190. ],
  8191. "psr-4": {
  8192. "Symfony\\Polyfill\\Php83\\": ""
  8193. },
  8194. "classmap": [
  8195. "Resources/stubs"
  8196. ]
  8197. },
  8198. "notification-url": "https://packagist.org/downloads/",
  8199. "license": [
  8200. "MIT"
  8201. ],
  8202. "authors": [
  8203. {
  8204. "name": "Nicolas Grekas",
  8205. "email": "p@tchwork.com"
  8206. },
  8207. {
  8208. "name": "Symfony Community",
  8209. "homepage": "https://symfony.com/contributors"
  8210. }
  8211. ],
  8212. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8213. "homepage": "https://symfony.com",
  8214. "keywords": [
  8215. "compatibility",
  8216. "polyfill",
  8217. "portable",
  8218. "shim"
  8219. ],
  8220. "support": {
  8221. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  8222. },
  8223. "funding": [
  8224. {
  8225. "url": "https://symfony.com/sponsor",
  8226. "type": "custom"
  8227. },
  8228. {
  8229. "url": "https://github.com/fabpot",
  8230. "type": "github"
  8231. },
  8232. {
  8233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8234. "type": "tidelift"
  8235. }
  8236. ],
  8237. "time": "2024-09-09T11:45:10+00:00"
  8238. },
  8239. {
  8240. "name": "symfony/polyfill-uuid",
  8241. "version": "v1.31.0",
  8242. "source": {
  8243. "type": "git",
  8244. "url": "https://github.com/symfony/polyfill-uuid.git",
  8245. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8246. },
  8247. "dist": {
  8248. "type": "zip",
  8249. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8250. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8251. "shasum": ""
  8252. },
  8253. "require": {
  8254. "php": ">=7.2"
  8255. },
  8256. "provide": {
  8257. "ext-uuid": "*"
  8258. },
  8259. "suggest": {
  8260. "ext-uuid": "For best performance"
  8261. },
  8262. "type": "library",
  8263. "extra": {
  8264. "thanks": {
  8265. "name": "symfony/polyfill",
  8266. "url": "https://github.com/symfony/polyfill"
  8267. }
  8268. },
  8269. "autoload": {
  8270. "files": [
  8271. "bootstrap.php"
  8272. ],
  8273. "psr-4": {
  8274. "Symfony\\Polyfill\\Uuid\\": ""
  8275. }
  8276. },
  8277. "notification-url": "https://packagist.org/downloads/",
  8278. "license": [
  8279. "MIT"
  8280. ],
  8281. "authors": [
  8282. {
  8283. "name": "Grégoire Pineau",
  8284. "email": "lyrixx@lyrixx.info"
  8285. },
  8286. {
  8287. "name": "Symfony Community",
  8288. "homepage": "https://symfony.com/contributors"
  8289. }
  8290. ],
  8291. "description": "Symfony polyfill for uuid functions",
  8292. "homepage": "https://symfony.com",
  8293. "keywords": [
  8294. "compatibility",
  8295. "polyfill",
  8296. "portable",
  8297. "uuid"
  8298. ],
  8299. "support": {
  8300. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  8301. },
  8302. "funding": [
  8303. {
  8304. "url": "https://symfony.com/sponsor",
  8305. "type": "custom"
  8306. },
  8307. {
  8308. "url": "https://github.com/fabpot",
  8309. "type": "github"
  8310. },
  8311. {
  8312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8313. "type": "tidelift"
  8314. }
  8315. ],
  8316. "time": "2024-09-09T11:45:10+00:00"
  8317. },
  8318. {
  8319. "name": "symfony/process",
  8320. "version": "v7.1.3",
  8321. "source": {
  8322. "type": "git",
  8323. "url": "https://github.com/symfony/process.git",
  8324. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca"
  8325. },
  8326. "dist": {
  8327. "type": "zip",
  8328. "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  8329. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  8330. "shasum": ""
  8331. },
  8332. "require": {
  8333. "php": ">=8.2"
  8334. },
  8335. "type": "library",
  8336. "autoload": {
  8337. "psr-4": {
  8338. "Symfony\\Component\\Process\\": ""
  8339. },
  8340. "exclude-from-classmap": [
  8341. "/Tests/"
  8342. ]
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "authors": [
  8349. {
  8350. "name": "Fabien Potencier",
  8351. "email": "fabien@symfony.com"
  8352. },
  8353. {
  8354. "name": "Symfony Community",
  8355. "homepage": "https://symfony.com/contributors"
  8356. }
  8357. ],
  8358. "description": "Executes commands in sub-processes",
  8359. "homepage": "https://symfony.com",
  8360. "support": {
  8361. "source": "https://github.com/symfony/process/tree/v7.1.3"
  8362. },
  8363. "funding": [
  8364. {
  8365. "url": "https://symfony.com/sponsor",
  8366. "type": "custom"
  8367. },
  8368. {
  8369. "url": "https://github.com/fabpot",
  8370. "type": "github"
  8371. },
  8372. {
  8373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8374. "type": "tidelift"
  8375. }
  8376. ],
  8377. "time": "2024-07-26T12:44:47+00:00"
  8378. },
  8379. {
  8380. "name": "symfony/routing",
  8381. "version": "v7.1.4",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/symfony/routing.git",
  8385. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  8390. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  8391. "shasum": ""
  8392. },
  8393. "require": {
  8394. "php": ">=8.2",
  8395. "symfony/deprecation-contracts": "^2.5|^3"
  8396. },
  8397. "conflict": {
  8398. "symfony/config": "<6.4",
  8399. "symfony/dependency-injection": "<6.4",
  8400. "symfony/yaml": "<6.4"
  8401. },
  8402. "require-dev": {
  8403. "psr/log": "^1|^2|^3",
  8404. "symfony/config": "^6.4|^7.0",
  8405. "symfony/dependency-injection": "^6.4|^7.0",
  8406. "symfony/expression-language": "^6.4|^7.0",
  8407. "symfony/http-foundation": "^6.4|^7.0",
  8408. "symfony/yaml": "^6.4|^7.0"
  8409. },
  8410. "type": "library",
  8411. "autoload": {
  8412. "psr-4": {
  8413. "Symfony\\Component\\Routing\\": ""
  8414. },
  8415. "exclude-from-classmap": [
  8416. "/Tests/"
  8417. ]
  8418. },
  8419. "notification-url": "https://packagist.org/downloads/",
  8420. "license": [
  8421. "MIT"
  8422. ],
  8423. "authors": [
  8424. {
  8425. "name": "Fabien Potencier",
  8426. "email": "fabien@symfony.com"
  8427. },
  8428. {
  8429. "name": "Symfony Community",
  8430. "homepage": "https://symfony.com/contributors"
  8431. }
  8432. ],
  8433. "description": "Maps an HTTP request to a set of configuration variables",
  8434. "homepage": "https://symfony.com",
  8435. "keywords": [
  8436. "router",
  8437. "routing",
  8438. "uri",
  8439. "url"
  8440. ],
  8441. "support": {
  8442. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  8443. },
  8444. "funding": [
  8445. {
  8446. "url": "https://symfony.com/sponsor",
  8447. "type": "custom"
  8448. },
  8449. {
  8450. "url": "https://github.com/fabpot",
  8451. "type": "github"
  8452. },
  8453. {
  8454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8455. "type": "tidelift"
  8456. }
  8457. ],
  8458. "time": "2024-08-29T08:16:25+00:00"
  8459. },
  8460. {
  8461. "name": "symfony/service-contracts",
  8462. "version": "v3.5.0",
  8463. "source": {
  8464. "type": "git",
  8465. "url": "https://github.com/symfony/service-contracts.git",
  8466. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  8467. },
  8468. "dist": {
  8469. "type": "zip",
  8470. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  8471. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  8472. "shasum": ""
  8473. },
  8474. "require": {
  8475. "php": ">=8.1",
  8476. "psr/container": "^1.1|^2.0",
  8477. "symfony/deprecation-contracts": "^2.5|^3"
  8478. },
  8479. "conflict": {
  8480. "ext-psr": "<1.1|>=2"
  8481. },
  8482. "type": "library",
  8483. "extra": {
  8484. "branch-alias": {
  8485. "dev-main": "3.5-dev"
  8486. },
  8487. "thanks": {
  8488. "name": "symfony/contracts",
  8489. "url": "https://github.com/symfony/contracts"
  8490. }
  8491. },
  8492. "autoload": {
  8493. "psr-4": {
  8494. "Symfony\\Contracts\\Service\\": ""
  8495. },
  8496. "exclude-from-classmap": [
  8497. "/Test/"
  8498. ]
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "MIT"
  8503. ],
  8504. "authors": [
  8505. {
  8506. "name": "Nicolas Grekas",
  8507. "email": "p@tchwork.com"
  8508. },
  8509. {
  8510. "name": "Symfony Community",
  8511. "homepage": "https://symfony.com/contributors"
  8512. }
  8513. ],
  8514. "description": "Generic abstractions related to writing services",
  8515. "homepage": "https://symfony.com",
  8516. "keywords": [
  8517. "abstractions",
  8518. "contracts",
  8519. "decoupling",
  8520. "interfaces",
  8521. "interoperability",
  8522. "standards"
  8523. ],
  8524. "support": {
  8525. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  8526. },
  8527. "funding": [
  8528. {
  8529. "url": "https://symfony.com/sponsor",
  8530. "type": "custom"
  8531. },
  8532. {
  8533. "url": "https://github.com/fabpot",
  8534. "type": "github"
  8535. },
  8536. {
  8537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8538. "type": "tidelift"
  8539. }
  8540. ],
  8541. "time": "2024-04-18T09:32:20+00:00"
  8542. },
  8543. {
  8544. "name": "symfony/string",
  8545. "version": "v7.1.4",
  8546. "source": {
  8547. "type": "git",
  8548. "url": "https://github.com/symfony/string.git",
  8549. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b"
  8550. },
  8551. "dist": {
  8552. "type": "zip",
  8553. "url": "https://api.github.com/repos/symfony/string/zipball/6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  8554. "reference": "6cd670a6d968eaeb1c77c2e76091c45c56bc367b",
  8555. "shasum": ""
  8556. },
  8557. "require": {
  8558. "php": ">=8.2",
  8559. "symfony/polyfill-ctype": "~1.8",
  8560. "symfony/polyfill-intl-grapheme": "~1.0",
  8561. "symfony/polyfill-intl-normalizer": "~1.0",
  8562. "symfony/polyfill-mbstring": "~1.0"
  8563. },
  8564. "conflict": {
  8565. "symfony/translation-contracts": "<2.5"
  8566. },
  8567. "require-dev": {
  8568. "symfony/emoji": "^7.1",
  8569. "symfony/error-handler": "^6.4|^7.0",
  8570. "symfony/http-client": "^6.4|^7.0",
  8571. "symfony/intl": "^6.4|^7.0",
  8572. "symfony/translation-contracts": "^2.5|^3.0",
  8573. "symfony/var-exporter": "^6.4|^7.0"
  8574. },
  8575. "type": "library",
  8576. "autoload": {
  8577. "files": [
  8578. "Resources/functions.php"
  8579. ],
  8580. "psr-4": {
  8581. "Symfony\\Component\\String\\": ""
  8582. },
  8583. "exclude-from-classmap": [
  8584. "/Tests/"
  8585. ]
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "MIT"
  8590. ],
  8591. "authors": [
  8592. {
  8593. "name": "Nicolas Grekas",
  8594. "email": "p@tchwork.com"
  8595. },
  8596. {
  8597. "name": "Symfony Community",
  8598. "homepage": "https://symfony.com/contributors"
  8599. }
  8600. ],
  8601. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8602. "homepage": "https://symfony.com",
  8603. "keywords": [
  8604. "grapheme",
  8605. "i18n",
  8606. "string",
  8607. "unicode",
  8608. "utf-8",
  8609. "utf8"
  8610. ],
  8611. "support": {
  8612. "source": "https://github.com/symfony/string/tree/v7.1.4"
  8613. },
  8614. "funding": [
  8615. {
  8616. "url": "https://symfony.com/sponsor",
  8617. "type": "custom"
  8618. },
  8619. {
  8620. "url": "https://github.com/fabpot",
  8621. "type": "github"
  8622. },
  8623. {
  8624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8625. "type": "tidelift"
  8626. }
  8627. ],
  8628. "time": "2024-08-12T09:59:40+00:00"
  8629. },
  8630. {
  8631. "name": "symfony/translation",
  8632. "version": "v7.1.3",
  8633. "source": {
  8634. "type": "git",
  8635. "url": "https://github.com/symfony/translation.git",
  8636. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1"
  8637. },
  8638. "dist": {
  8639. "type": "zip",
  8640. "url": "https://api.github.com/repos/symfony/translation/zipball/8d5e50c813ba2859a6dfc99a0765c550507934a1",
  8641. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1",
  8642. "shasum": ""
  8643. },
  8644. "require": {
  8645. "php": ">=8.2",
  8646. "symfony/polyfill-mbstring": "~1.0",
  8647. "symfony/translation-contracts": "^2.5|^3.0"
  8648. },
  8649. "conflict": {
  8650. "symfony/config": "<6.4",
  8651. "symfony/console": "<6.4",
  8652. "symfony/dependency-injection": "<6.4",
  8653. "symfony/http-client-contracts": "<2.5",
  8654. "symfony/http-kernel": "<6.4",
  8655. "symfony/service-contracts": "<2.5",
  8656. "symfony/twig-bundle": "<6.4",
  8657. "symfony/yaml": "<6.4"
  8658. },
  8659. "provide": {
  8660. "symfony/translation-implementation": "2.3|3.0"
  8661. },
  8662. "require-dev": {
  8663. "nikic/php-parser": "^4.18|^5.0",
  8664. "psr/log": "^1|^2|^3",
  8665. "symfony/config": "^6.4|^7.0",
  8666. "symfony/console": "^6.4|^7.0",
  8667. "symfony/dependency-injection": "^6.4|^7.0",
  8668. "symfony/finder": "^6.4|^7.0",
  8669. "symfony/http-client-contracts": "^2.5|^3.0",
  8670. "symfony/http-kernel": "^6.4|^7.0",
  8671. "symfony/intl": "^6.4|^7.0",
  8672. "symfony/polyfill-intl-icu": "^1.21",
  8673. "symfony/routing": "^6.4|^7.0",
  8674. "symfony/service-contracts": "^2.5|^3",
  8675. "symfony/yaml": "^6.4|^7.0"
  8676. },
  8677. "type": "library",
  8678. "autoload": {
  8679. "files": [
  8680. "Resources/functions.php"
  8681. ],
  8682. "psr-4": {
  8683. "Symfony\\Component\\Translation\\": ""
  8684. },
  8685. "exclude-from-classmap": [
  8686. "/Tests/"
  8687. ]
  8688. },
  8689. "notification-url": "https://packagist.org/downloads/",
  8690. "license": [
  8691. "MIT"
  8692. ],
  8693. "authors": [
  8694. {
  8695. "name": "Fabien Potencier",
  8696. "email": "fabien@symfony.com"
  8697. },
  8698. {
  8699. "name": "Symfony Community",
  8700. "homepage": "https://symfony.com/contributors"
  8701. }
  8702. ],
  8703. "description": "Provides tools to internationalize your application",
  8704. "homepage": "https://symfony.com",
  8705. "support": {
  8706. "source": "https://github.com/symfony/translation/tree/v7.1.3"
  8707. },
  8708. "funding": [
  8709. {
  8710. "url": "https://symfony.com/sponsor",
  8711. "type": "custom"
  8712. },
  8713. {
  8714. "url": "https://github.com/fabpot",
  8715. "type": "github"
  8716. },
  8717. {
  8718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8719. "type": "tidelift"
  8720. }
  8721. ],
  8722. "time": "2024-07-26T12:41:01+00:00"
  8723. },
  8724. {
  8725. "name": "symfony/translation-contracts",
  8726. "version": "v3.5.0",
  8727. "source": {
  8728. "type": "git",
  8729. "url": "https://github.com/symfony/translation-contracts.git",
  8730. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  8731. },
  8732. "dist": {
  8733. "type": "zip",
  8734. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8735. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8736. "shasum": ""
  8737. },
  8738. "require": {
  8739. "php": ">=8.1"
  8740. },
  8741. "type": "library",
  8742. "extra": {
  8743. "branch-alias": {
  8744. "dev-main": "3.5-dev"
  8745. },
  8746. "thanks": {
  8747. "name": "symfony/contracts",
  8748. "url": "https://github.com/symfony/contracts"
  8749. }
  8750. },
  8751. "autoload": {
  8752. "psr-4": {
  8753. "Symfony\\Contracts\\Translation\\": ""
  8754. },
  8755. "exclude-from-classmap": [
  8756. "/Test/"
  8757. ]
  8758. },
  8759. "notification-url": "https://packagist.org/downloads/",
  8760. "license": [
  8761. "MIT"
  8762. ],
  8763. "authors": [
  8764. {
  8765. "name": "Nicolas Grekas",
  8766. "email": "p@tchwork.com"
  8767. },
  8768. {
  8769. "name": "Symfony Community",
  8770. "homepage": "https://symfony.com/contributors"
  8771. }
  8772. ],
  8773. "description": "Generic abstractions related to translation",
  8774. "homepage": "https://symfony.com",
  8775. "keywords": [
  8776. "abstractions",
  8777. "contracts",
  8778. "decoupling",
  8779. "interfaces",
  8780. "interoperability",
  8781. "standards"
  8782. ],
  8783. "support": {
  8784. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  8785. },
  8786. "funding": [
  8787. {
  8788. "url": "https://symfony.com/sponsor",
  8789. "type": "custom"
  8790. },
  8791. {
  8792. "url": "https://github.com/fabpot",
  8793. "type": "github"
  8794. },
  8795. {
  8796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8797. "type": "tidelift"
  8798. }
  8799. ],
  8800. "time": "2024-04-18T09:32:20+00:00"
  8801. },
  8802. {
  8803. "name": "symfony/uid",
  8804. "version": "v7.1.4",
  8805. "source": {
  8806. "type": "git",
  8807. "url": "https://github.com/symfony/uid.git",
  8808. "reference": "82177535395109075cdb45a70533aa3d7a521cdf"
  8809. },
  8810. "dist": {
  8811. "type": "zip",
  8812. "url": "https://api.github.com/repos/symfony/uid/zipball/82177535395109075cdb45a70533aa3d7a521cdf",
  8813. "reference": "82177535395109075cdb45a70533aa3d7a521cdf",
  8814. "shasum": ""
  8815. },
  8816. "require": {
  8817. "php": ">=8.2",
  8818. "symfony/polyfill-uuid": "^1.15"
  8819. },
  8820. "require-dev": {
  8821. "symfony/console": "^6.4|^7.0"
  8822. },
  8823. "type": "library",
  8824. "autoload": {
  8825. "psr-4": {
  8826. "Symfony\\Component\\Uid\\": ""
  8827. },
  8828. "exclude-from-classmap": [
  8829. "/Tests/"
  8830. ]
  8831. },
  8832. "notification-url": "https://packagist.org/downloads/",
  8833. "license": [
  8834. "MIT"
  8835. ],
  8836. "authors": [
  8837. {
  8838. "name": "Grégoire Pineau",
  8839. "email": "lyrixx@lyrixx.info"
  8840. },
  8841. {
  8842. "name": "Nicolas Grekas",
  8843. "email": "p@tchwork.com"
  8844. },
  8845. {
  8846. "name": "Symfony Community",
  8847. "homepage": "https://symfony.com/contributors"
  8848. }
  8849. ],
  8850. "description": "Provides an object-oriented API to generate and represent UIDs",
  8851. "homepage": "https://symfony.com",
  8852. "keywords": [
  8853. "UID",
  8854. "ulid",
  8855. "uuid"
  8856. ],
  8857. "support": {
  8858. "source": "https://github.com/symfony/uid/tree/v7.1.4"
  8859. },
  8860. "funding": [
  8861. {
  8862. "url": "https://symfony.com/sponsor",
  8863. "type": "custom"
  8864. },
  8865. {
  8866. "url": "https://github.com/fabpot",
  8867. "type": "github"
  8868. },
  8869. {
  8870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8871. "type": "tidelift"
  8872. }
  8873. ],
  8874. "time": "2024-08-12T09:59:40+00:00"
  8875. },
  8876. {
  8877. "name": "symfony/var-dumper",
  8878. "version": "v7.1.4",
  8879. "source": {
  8880. "type": "git",
  8881. "url": "https://github.com/symfony/var-dumper.git",
  8882. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa"
  8883. },
  8884. "dist": {
  8885. "type": "zip",
  8886. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  8887. "reference": "a5fa7481b199090964d6fd5dab6294d5a870c7aa",
  8888. "shasum": ""
  8889. },
  8890. "require": {
  8891. "php": ">=8.2",
  8892. "symfony/polyfill-mbstring": "~1.0"
  8893. },
  8894. "conflict": {
  8895. "symfony/console": "<6.4"
  8896. },
  8897. "require-dev": {
  8898. "ext-iconv": "*",
  8899. "symfony/console": "^6.4|^7.0",
  8900. "symfony/http-kernel": "^6.4|^7.0",
  8901. "symfony/process": "^6.4|^7.0",
  8902. "symfony/uid": "^6.4|^7.0",
  8903. "twig/twig": "^3.0.4"
  8904. },
  8905. "bin": [
  8906. "Resources/bin/var-dump-server"
  8907. ],
  8908. "type": "library",
  8909. "autoload": {
  8910. "files": [
  8911. "Resources/functions/dump.php"
  8912. ],
  8913. "psr-4": {
  8914. "Symfony\\Component\\VarDumper\\": ""
  8915. },
  8916. "exclude-from-classmap": [
  8917. "/Tests/"
  8918. ]
  8919. },
  8920. "notification-url": "https://packagist.org/downloads/",
  8921. "license": [
  8922. "MIT"
  8923. ],
  8924. "authors": [
  8925. {
  8926. "name": "Nicolas Grekas",
  8927. "email": "p@tchwork.com"
  8928. },
  8929. {
  8930. "name": "Symfony Community",
  8931. "homepage": "https://symfony.com/contributors"
  8932. }
  8933. ],
  8934. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8935. "homepage": "https://symfony.com",
  8936. "keywords": [
  8937. "debug",
  8938. "dump"
  8939. ],
  8940. "support": {
  8941. "source": "https://github.com/symfony/var-dumper/tree/v7.1.4"
  8942. },
  8943. "funding": [
  8944. {
  8945. "url": "https://symfony.com/sponsor",
  8946. "type": "custom"
  8947. },
  8948. {
  8949. "url": "https://github.com/fabpot",
  8950. "type": "github"
  8951. },
  8952. {
  8953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8954. "type": "tidelift"
  8955. }
  8956. ],
  8957. "time": "2024-08-30T16:12:47+00:00"
  8958. },
  8959. {
  8960. "name": "tijsverkoyen/css-to-inline-styles",
  8961. "version": "v2.2.7",
  8962. "source": {
  8963. "type": "git",
  8964. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8965. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8966. },
  8967. "dist": {
  8968. "type": "zip",
  8969. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8970. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8971. "shasum": ""
  8972. },
  8973. "require": {
  8974. "ext-dom": "*",
  8975. "ext-libxml": "*",
  8976. "php": "^5.5 || ^7.0 || ^8.0",
  8977. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8978. },
  8979. "require-dev": {
  8980. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8981. },
  8982. "type": "library",
  8983. "extra": {
  8984. "branch-alias": {
  8985. "dev-master": "2.2.x-dev"
  8986. }
  8987. },
  8988. "autoload": {
  8989. "psr-4": {
  8990. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8991. }
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "BSD-3-Clause"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Tijs Verkoyen",
  9000. "email": "css_to_inline_styles@verkoyen.eu",
  9001. "role": "Developer"
  9002. }
  9003. ],
  9004. "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.",
  9005. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9006. "support": {
  9007. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9008. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9009. },
  9010. "time": "2023-12-08T13:03:43+00:00"
  9011. },
  9012. {
  9013. "name": "vlucas/phpdotenv",
  9014. "version": "v5.6.1",
  9015. "source": {
  9016. "type": "git",
  9017. "url": "https://github.com/vlucas/phpdotenv.git",
  9018. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9019. },
  9020. "dist": {
  9021. "type": "zip",
  9022. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9023. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9024. "shasum": ""
  9025. },
  9026. "require": {
  9027. "ext-pcre": "*",
  9028. "graham-campbell/result-type": "^1.1.3",
  9029. "php": "^7.2.5 || ^8.0",
  9030. "phpoption/phpoption": "^1.9.3",
  9031. "symfony/polyfill-ctype": "^1.24",
  9032. "symfony/polyfill-mbstring": "^1.24",
  9033. "symfony/polyfill-php80": "^1.24"
  9034. },
  9035. "require-dev": {
  9036. "bamarni/composer-bin-plugin": "^1.8.2",
  9037. "ext-filter": "*",
  9038. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9039. },
  9040. "suggest": {
  9041. "ext-filter": "Required to use the boolean validator."
  9042. },
  9043. "type": "library",
  9044. "extra": {
  9045. "bamarni-bin": {
  9046. "bin-links": true,
  9047. "forward-command": false
  9048. },
  9049. "branch-alias": {
  9050. "dev-master": "5.6-dev"
  9051. }
  9052. },
  9053. "autoload": {
  9054. "psr-4": {
  9055. "Dotenv\\": "src/"
  9056. }
  9057. },
  9058. "notification-url": "https://packagist.org/downloads/",
  9059. "license": [
  9060. "BSD-3-Clause"
  9061. ],
  9062. "authors": [
  9063. {
  9064. "name": "Graham Campbell",
  9065. "email": "hello@gjcampbell.co.uk",
  9066. "homepage": "https://github.com/GrahamCampbell"
  9067. },
  9068. {
  9069. "name": "Vance Lucas",
  9070. "email": "vance@vancelucas.com",
  9071. "homepage": "https://github.com/vlucas"
  9072. }
  9073. ],
  9074. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9075. "keywords": [
  9076. "dotenv",
  9077. "env",
  9078. "environment"
  9079. ],
  9080. "support": {
  9081. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9082. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9083. },
  9084. "funding": [
  9085. {
  9086. "url": "https://github.com/GrahamCampbell",
  9087. "type": "github"
  9088. },
  9089. {
  9090. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9091. "type": "tidelift"
  9092. }
  9093. ],
  9094. "time": "2024-07-20T21:52:34+00:00"
  9095. },
  9096. {
  9097. "name": "voku/portable-ascii",
  9098. "version": "2.0.1",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/voku/portable-ascii.git",
  9102. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  9107. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  9108. "shasum": ""
  9109. },
  9110. "require": {
  9111. "php": ">=7.0.0"
  9112. },
  9113. "require-dev": {
  9114. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9115. },
  9116. "suggest": {
  9117. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9118. },
  9119. "type": "library",
  9120. "autoload": {
  9121. "psr-4": {
  9122. "voku\\": "src/voku/"
  9123. }
  9124. },
  9125. "notification-url": "https://packagist.org/downloads/",
  9126. "license": [
  9127. "MIT"
  9128. ],
  9129. "authors": [
  9130. {
  9131. "name": "Lars Moelleken",
  9132. "homepage": "http://www.moelleken.org/"
  9133. }
  9134. ],
  9135. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9136. "homepage": "https://github.com/voku/portable-ascii",
  9137. "keywords": [
  9138. "ascii",
  9139. "clean",
  9140. "php"
  9141. ],
  9142. "support": {
  9143. "issues": "https://github.com/voku/portable-ascii/issues",
  9144. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  9145. },
  9146. "funding": [
  9147. {
  9148. "url": "https://www.paypal.me/moelleken",
  9149. "type": "custom"
  9150. },
  9151. {
  9152. "url": "https://github.com/voku",
  9153. "type": "github"
  9154. },
  9155. {
  9156. "url": "https://opencollective.com/portable-ascii",
  9157. "type": "open_collective"
  9158. },
  9159. {
  9160. "url": "https://www.patreon.com/voku",
  9161. "type": "patreon"
  9162. },
  9163. {
  9164. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9165. "type": "tidelift"
  9166. }
  9167. ],
  9168. "time": "2022-03-08T17:03:00+00:00"
  9169. },
  9170. {
  9171. "name": "webmozart/assert",
  9172. "version": "1.11.0",
  9173. "source": {
  9174. "type": "git",
  9175. "url": "https://github.com/webmozarts/assert.git",
  9176. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9177. },
  9178. "dist": {
  9179. "type": "zip",
  9180. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9181. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9182. "shasum": ""
  9183. },
  9184. "require": {
  9185. "ext-ctype": "*",
  9186. "php": "^7.2 || ^8.0"
  9187. },
  9188. "conflict": {
  9189. "phpstan/phpstan": "<0.12.20",
  9190. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9191. },
  9192. "require-dev": {
  9193. "phpunit/phpunit": "^8.5.13"
  9194. },
  9195. "type": "library",
  9196. "extra": {
  9197. "branch-alias": {
  9198. "dev-master": "1.10-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "psr-4": {
  9203. "Webmozart\\Assert\\": "src/"
  9204. }
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "MIT"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Bernhard Schussek",
  9213. "email": "bschussek@gmail.com"
  9214. }
  9215. ],
  9216. "description": "Assertions to validate method input/output with nice error messages.",
  9217. "keywords": [
  9218. "assert",
  9219. "check",
  9220. "validate"
  9221. ],
  9222. "support": {
  9223. "issues": "https://github.com/webmozarts/assert/issues",
  9224. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9225. },
  9226. "time": "2022-06-03T18:03:27+00:00"
  9227. }
  9228. ],
  9229. "packages-dev": [
  9230. {
  9231. "name": "fakerphp/faker",
  9232. "version": "v1.23.1",
  9233. "source": {
  9234. "type": "git",
  9235. "url": "https://github.com/FakerPHP/Faker.git",
  9236. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  9237. },
  9238. "dist": {
  9239. "type": "zip",
  9240. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  9241. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  9242. "shasum": ""
  9243. },
  9244. "require": {
  9245. "php": "^7.4 || ^8.0",
  9246. "psr/container": "^1.0 || ^2.0",
  9247. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9248. },
  9249. "conflict": {
  9250. "fzaninotto/faker": "*"
  9251. },
  9252. "require-dev": {
  9253. "bamarni/composer-bin-plugin": "^1.4.1",
  9254. "doctrine/persistence": "^1.3 || ^2.0",
  9255. "ext-intl": "*",
  9256. "phpunit/phpunit": "^9.5.26",
  9257. "symfony/phpunit-bridge": "^5.4.16"
  9258. },
  9259. "suggest": {
  9260. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9261. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9262. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9263. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9264. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9265. },
  9266. "type": "library",
  9267. "autoload": {
  9268. "psr-4": {
  9269. "Faker\\": "src/Faker/"
  9270. }
  9271. },
  9272. "notification-url": "https://packagist.org/downloads/",
  9273. "license": [
  9274. "MIT"
  9275. ],
  9276. "authors": [
  9277. {
  9278. "name": "François Zaninotto"
  9279. }
  9280. ],
  9281. "description": "Faker is a PHP library that generates fake data for you.",
  9282. "keywords": [
  9283. "data",
  9284. "faker",
  9285. "fixtures"
  9286. ],
  9287. "support": {
  9288. "issues": "https://github.com/FakerPHP/Faker/issues",
  9289. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  9290. },
  9291. "time": "2024-01-02T13:46:09+00:00"
  9292. },
  9293. {
  9294. "name": "filp/whoops",
  9295. "version": "2.15.4",
  9296. "source": {
  9297. "type": "git",
  9298. "url": "https://github.com/filp/whoops.git",
  9299. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9300. },
  9301. "dist": {
  9302. "type": "zip",
  9303. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9304. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9305. "shasum": ""
  9306. },
  9307. "require": {
  9308. "php": "^5.5.9 || ^7.0 || ^8.0",
  9309. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9310. },
  9311. "require-dev": {
  9312. "mockery/mockery": "^0.9 || ^1.0",
  9313. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9314. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9315. },
  9316. "suggest": {
  9317. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9318. "whoops/soap": "Formats errors as SOAP responses"
  9319. },
  9320. "type": "library",
  9321. "extra": {
  9322. "branch-alias": {
  9323. "dev-master": "2.7-dev"
  9324. }
  9325. },
  9326. "autoload": {
  9327. "psr-4": {
  9328. "Whoops\\": "src/Whoops/"
  9329. }
  9330. },
  9331. "notification-url": "https://packagist.org/downloads/",
  9332. "license": [
  9333. "MIT"
  9334. ],
  9335. "authors": [
  9336. {
  9337. "name": "Filipe Dobreira",
  9338. "homepage": "https://github.com/filp",
  9339. "role": "Developer"
  9340. }
  9341. ],
  9342. "description": "php error handling for cool kids",
  9343. "homepage": "https://filp.github.io/whoops/",
  9344. "keywords": [
  9345. "error",
  9346. "exception",
  9347. "handling",
  9348. "library",
  9349. "throwable",
  9350. "whoops"
  9351. ],
  9352. "support": {
  9353. "issues": "https://github.com/filp/whoops/issues",
  9354. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9355. },
  9356. "funding": [
  9357. {
  9358. "url": "https://github.com/denis-sokolov",
  9359. "type": "github"
  9360. }
  9361. ],
  9362. "time": "2023-11-03T12:00:00+00:00"
  9363. },
  9364. {
  9365. "name": "hamcrest/hamcrest-php",
  9366. "version": "v2.0.1",
  9367. "source": {
  9368. "type": "git",
  9369. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9370. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9371. },
  9372. "dist": {
  9373. "type": "zip",
  9374. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9375. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9376. "shasum": ""
  9377. },
  9378. "require": {
  9379. "php": "^5.3|^7.0|^8.0"
  9380. },
  9381. "replace": {
  9382. "cordoval/hamcrest-php": "*",
  9383. "davedevelopment/hamcrest-php": "*",
  9384. "kodova/hamcrest-php": "*"
  9385. },
  9386. "require-dev": {
  9387. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9388. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9389. },
  9390. "type": "library",
  9391. "extra": {
  9392. "branch-alias": {
  9393. "dev-master": "2.1-dev"
  9394. }
  9395. },
  9396. "autoload": {
  9397. "classmap": [
  9398. "hamcrest"
  9399. ]
  9400. },
  9401. "notification-url": "https://packagist.org/downloads/",
  9402. "license": [
  9403. "BSD-3-Clause"
  9404. ],
  9405. "description": "This is the PHP port of Hamcrest Matchers",
  9406. "keywords": [
  9407. "test"
  9408. ],
  9409. "support": {
  9410. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9411. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9412. },
  9413. "time": "2020-07-09T08:09:16+00:00"
  9414. },
  9415. {
  9416. "name": "laravel/pint",
  9417. "version": "v1.17.3",
  9418. "source": {
  9419. "type": "git",
  9420. "url": "https://github.com/laravel/pint.git",
  9421. "reference": "9d77be916e145864f10788bb94531d03e1f7b482"
  9422. },
  9423. "dist": {
  9424. "type": "zip",
  9425. "url": "https://api.github.com/repos/laravel/pint/zipball/9d77be916e145864f10788bb94531d03e1f7b482",
  9426. "reference": "9d77be916e145864f10788bb94531d03e1f7b482",
  9427. "shasum": ""
  9428. },
  9429. "require": {
  9430. "ext-json": "*",
  9431. "ext-mbstring": "*",
  9432. "ext-tokenizer": "*",
  9433. "ext-xml": "*",
  9434. "php": "^8.1.0"
  9435. },
  9436. "require-dev": {
  9437. "friendsofphp/php-cs-fixer": "^3.64.0",
  9438. "illuminate/view": "^10.48.20",
  9439. "larastan/larastan": "^2.9.8",
  9440. "laravel-zero/framework": "^10.4.0",
  9441. "mockery/mockery": "^1.6.12",
  9442. "nunomaduro/termwind": "^1.15.1",
  9443. "pestphp/pest": "^2.35.1"
  9444. },
  9445. "bin": [
  9446. "builds/pint"
  9447. ],
  9448. "type": "project",
  9449. "autoload": {
  9450. "psr-4": {
  9451. "App\\": "app/",
  9452. "Database\\Seeders\\": "database/seeders/",
  9453. "Database\\Factories\\": "database/factories/"
  9454. }
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "license": [
  9458. "MIT"
  9459. ],
  9460. "authors": [
  9461. {
  9462. "name": "Nuno Maduro",
  9463. "email": "enunomaduro@gmail.com"
  9464. }
  9465. ],
  9466. "description": "An opinionated code formatter for PHP.",
  9467. "homepage": "https://laravel.com",
  9468. "keywords": [
  9469. "format",
  9470. "formatter",
  9471. "lint",
  9472. "linter",
  9473. "php"
  9474. ],
  9475. "support": {
  9476. "issues": "https://github.com/laravel/pint/issues",
  9477. "source": "https://github.com/laravel/pint"
  9478. },
  9479. "time": "2024-09-03T15:00:28+00:00"
  9480. },
  9481. {
  9482. "name": "laravel/sail",
  9483. "version": "v1.31.3",
  9484. "source": {
  9485. "type": "git",
  9486. "url": "https://github.com/laravel/sail.git",
  9487. "reference": "0a7e2891a85eba2d448a9ffc6fc5ce367e924bc1"
  9488. },
  9489. "dist": {
  9490. "type": "zip",
  9491. "url": "https://api.github.com/repos/laravel/sail/zipball/0a7e2891a85eba2d448a9ffc6fc5ce367e924bc1",
  9492. "reference": "0a7e2891a85eba2d448a9ffc6fc5ce367e924bc1",
  9493. "shasum": ""
  9494. },
  9495. "require": {
  9496. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9497. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9498. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9499. "php": "^8.0",
  9500. "symfony/console": "^6.0|^7.0",
  9501. "symfony/yaml": "^6.0|^7.0"
  9502. },
  9503. "require-dev": {
  9504. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9505. "phpstan/phpstan": "^1.10"
  9506. },
  9507. "bin": [
  9508. "bin/sail"
  9509. ],
  9510. "type": "library",
  9511. "extra": {
  9512. "laravel": {
  9513. "providers": [
  9514. "Laravel\\Sail\\SailServiceProvider"
  9515. ]
  9516. }
  9517. },
  9518. "autoload": {
  9519. "psr-4": {
  9520. "Laravel\\Sail\\": "src/"
  9521. }
  9522. },
  9523. "notification-url": "https://packagist.org/downloads/",
  9524. "license": [
  9525. "MIT"
  9526. ],
  9527. "authors": [
  9528. {
  9529. "name": "Taylor Otwell",
  9530. "email": "taylor@laravel.com"
  9531. }
  9532. ],
  9533. "description": "Docker files for running a basic Laravel application.",
  9534. "keywords": [
  9535. "docker",
  9536. "laravel"
  9537. ],
  9538. "support": {
  9539. "issues": "https://github.com/laravel/sail/issues",
  9540. "source": "https://github.com/laravel/sail"
  9541. },
  9542. "time": "2024-09-03T20:05:33+00:00"
  9543. },
  9544. {
  9545. "name": "mockery/mockery",
  9546. "version": "1.6.12",
  9547. "source": {
  9548. "type": "git",
  9549. "url": "https://github.com/mockery/mockery.git",
  9550. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9551. },
  9552. "dist": {
  9553. "type": "zip",
  9554. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9555. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9556. "shasum": ""
  9557. },
  9558. "require": {
  9559. "hamcrest/hamcrest-php": "^2.0.1",
  9560. "lib-pcre": ">=7.0",
  9561. "php": ">=7.3"
  9562. },
  9563. "conflict": {
  9564. "phpunit/phpunit": "<8.0"
  9565. },
  9566. "require-dev": {
  9567. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9568. "symplify/easy-coding-standard": "^12.1.14"
  9569. },
  9570. "type": "library",
  9571. "autoload": {
  9572. "files": [
  9573. "library/helpers.php",
  9574. "library/Mockery.php"
  9575. ],
  9576. "psr-4": {
  9577. "Mockery\\": "library/Mockery"
  9578. }
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "BSD-3-Clause"
  9583. ],
  9584. "authors": [
  9585. {
  9586. "name": "Pádraic Brady",
  9587. "email": "padraic.brady@gmail.com",
  9588. "homepage": "https://github.com/padraic",
  9589. "role": "Author"
  9590. },
  9591. {
  9592. "name": "Dave Marshall",
  9593. "email": "dave.marshall@atstsolutions.co.uk",
  9594. "homepage": "https://davedevelopment.co.uk",
  9595. "role": "Developer"
  9596. },
  9597. {
  9598. "name": "Nathanael Esayeas",
  9599. "email": "nathanael.esayeas@protonmail.com",
  9600. "homepage": "https://github.com/ghostwriter",
  9601. "role": "Lead Developer"
  9602. }
  9603. ],
  9604. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9605. "homepage": "https://github.com/mockery/mockery",
  9606. "keywords": [
  9607. "BDD",
  9608. "TDD",
  9609. "library",
  9610. "mock",
  9611. "mock objects",
  9612. "mockery",
  9613. "stub",
  9614. "test",
  9615. "test double",
  9616. "testing"
  9617. ],
  9618. "support": {
  9619. "docs": "https://docs.mockery.io/",
  9620. "issues": "https://github.com/mockery/mockery/issues",
  9621. "rss": "https://github.com/mockery/mockery/releases.atom",
  9622. "security": "https://github.com/mockery/mockery/security/advisories",
  9623. "source": "https://github.com/mockery/mockery"
  9624. },
  9625. "time": "2024-05-16T03:13:13+00:00"
  9626. },
  9627. {
  9628. "name": "myclabs/deep-copy",
  9629. "version": "1.12.0",
  9630. "source": {
  9631. "type": "git",
  9632. "url": "https://github.com/myclabs/DeepCopy.git",
  9633. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  9634. },
  9635. "dist": {
  9636. "type": "zip",
  9637. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9638. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9639. "shasum": ""
  9640. },
  9641. "require": {
  9642. "php": "^7.1 || ^8.0"
  9643. },
  9644. "conflict": {
  9645. "doctrine/collections": "<1.6.8",
  9646. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9647. },
  9648. "require-dev": {
  9649. "doctrine/collections": "^1.6.8",
  9650. "doctrine/common": "^2.13.3 || ^3.2.2",
  9651. "phpspec/prophecy": "^1.10",
  9652. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9653. },
  9654. "type": "library",
  9655. "autoload": {
  9656. "files": [
  9657. "src/DeepCopy/deep_copy.php"
  9658. ],
  9659. "psr-4": {
  9660. "DeepCopy\\": "src/DeepCopy/"
  9661. }
  9662. },
  9663. "notification-url": "https://packagist.org/downloads/",
  9664. "license": [
  9665. "MIT"
  9666. ],
  9667. "description": "Create deep copies (clones) of your objects",
  9668. "keywords": [
  9669. "clone",
  9670. "copy",
  9671. "duplicate",
  9672. "object",
  9673. "object graph"
  9674. ],
  9675. "support": {
  9676. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9677. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  9678. },
  9679. "funding": [
  9680. {
  9681. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9682. "type": "tidelift"
  9683. }
  9684. ],
  9685. "time": "2024-06-12T14:39:25+00:00"
  9686. },
  9687. {
  9688. "name": "nunomaduro/collision",
  9689. "version": "v8.4.0",
  9690. "source": {
  9691. "type": "git",
  9692. "url": "https://github.com/nunomaduro/collision.git",
  9693. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a"
  9694. },
  9695. "dist": {
  9696. "type": "zip",
  9697. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/e7d1aa8ed753f63fa816932bbc89678238843b4a",
  9698. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a",
  9699. "shasum": ""
  9700. },
  9701. "require": {
  9702. "filp/whoops": "^2.15.4",
  9703. "nunomaduro/termwind": "^2.0.1",
  9704. "php": "^8.2.0",
  9705. "symfony/console": "^7.1.3"
  9706. },
  9707. "conflict": {
  9708. "laravel/framework": "<11.0.0 || >=12.0.0",
  9709. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  9710. },
  9711. "require-dev": {
  9712. "larastan/larastan": "^2.9.8",
  9713. "laravel/framework": "^11.19.0",
  9714. "laravel/pint": "^1.17.1",
  9715. "laravel/sail": "^1.31.0",
  9716. "laravel/sanctum": "^4.0.2",
  9717. "laravel/tinker": "^2.9.0",
  9718. "orchestra/testbench-core": "^9.2.3",
  9719. "pestphp/pest": "^2.35.0 || ^3.0.0",
  9720. "sebastian/environment": "^6.1.0 || ^7.0.0"
  9721. },
  9722. "type": "library",
  9723. "extra": {
  9724. "laravel": {
  9725. "providers": [
  9726. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9727. ]
  9728. },
  9729. "branch-alias": {
  9730. "dev-8.x": "8.x-dev"
  9731. }
  9732. },
  9733. "autoload": {
  9734. "files": [
  9735. "./src/Adapters/Phpunit/Autoload.php"
  9736. ],
  9737. "psr-4": {
  9738. "NunoMaduro\\Collision\\": "src/"
  9739. }
  9740. },
  9741. "notification-url": "https://packagist.org/downloads/",
  9742. "license": [
  9743. "MIT"
  9744. ],
  9745. "authors": [
  9746. {
  9747. "name": "Nuno Maduro",
  9748. "email": "enunomaduro@gmail.com"
  9749. }
  9750. ],
  9751. "description": "Cli error handling for console/command-line PHP applications.",
  9752. "keywords": [
  9753. "artisan",
  9754. "cli",
  9755. "command-line",
  9756. "console",
  9757. "error",
  9758. "handling",
  9759. "laravel",
  9760. "laravel-zero",
  9761. "php",
  9762. "symfony"
  9763. ],
  9764. "support": {
  9765. "issues": "https://github.com/nunomaduro/collision/issues",
  9766. "source": "https://github.com/nunomaduro/collision"
  9767. },
  9768. "funding": [
  9769. {
  9770. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9771. "type": "custom"
  9772. },
  9773. {
  9774. "url": "https://github.com/nunomaduro",
  9775. "type": "github"
  9776. },
  9777. {
  9778. "url": "https://www.patreon.com/nunomaduro",
  9779. "type": "patreon"
  9780. }
  9781. ],
  9782. "time": "2024-08-03T15:32:23+00:00"
  9783. },
  9784. {
  9785. "name": "phar-io/manifest",
  9786. "version": "2.0.4",
  9787. "source": {
  9788. "type": "git",
  9789. "url": "https://github.com/phar-io/manifest.git",
  9790. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9791. },
  9792. "dist": {
  9793. "type": "zip",
  9794. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9795. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9796. "shasum": ""
  9797. },
  9798. "require": {
  9799. "ext-dom": "*",
  9800. "ext-libxml": "*",
  9801. "ext-phar": "*",
  9802. "ext-xmlwriter": "*",
  9803. "phar-io/version": "^3.0.1",
  9804. "php": "^7.2 || ^8.0"
  9805. },
  9806. "type": "library",
  9807. "extra": {
  9808. "branch-alias": {
  9809. "dev-master": "2.0.x-dev"
  9810. }
  9811. },
  9812. "autoload": {
  9813. "classmap": [
  9814. "src/"
  9815. ]
  9816. },
  9817. "notification-url": "https://packagist.org/downloads/",
  9818. "license": [
  9819. "BSD-3-Clause"
  9820. ],
  9821. "authors": [
  9822. {
  9823. "name": "Arne Blankerts",
  9824. "email": "arne@blankerts.de",
  9825. "role": "Developer"
  9826. },
  9827. {
  9828. "name": "Sebastian Heuer",
  9829. "email": "sebastian@phpeople.de",
  9830. "role": "Developer"
  9831. },
  9832. {
  9833. "name": "Sebastian Bergmann",
  9834. "email": "sebastian@phpunit.de",
  9835. "role": "Developer"
  9836. }
  9837. ],
  9838. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9839. "support": {
  9840. "issues": "https://github.com/phar-io/manifest/issues",
  9841. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9842. },
  9843. "funding": [
  9844. {
  9845. "url": "https://github.com/theseer",
  9846. "type": "github"
  9847. }
  9848. ],
  9849. "time": "2024-03-03T12:33:53+00:00"
  9850. },
  9851. {
  9852. "name": "phar-io/version",
  9853. "version": "3.2.1",
  9854. "source": {
  9855. "type": "git",
  9856. "url": "https://github.com/phar-io/version.git",
  9857. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9858. },
  9859. "dist": {
  9860. "type": "zip",
  9861. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9862. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9863. "shasum": ""
  9864. },
  9865. "require": {
  9866. "php": "^7.2 || ^8.0"
  9867. },
  9868. "type": "library",
  9869. "autoload": {
  9870. "classmap": [
  9871. "src/"
  9872. ]
  9873. },
  9874. "notification-url": "https://packagist.org/downloads/",
  9875. "license": [
  9876. "BSD-3-Clause"
  9877. ],
  9878. "authors": [
  9879. {
  9880. "name": "Arne Blankerts",
  9881. "email": "arne@blankerts.de",
  9882. "role": "Developer"
  9883. },
  9884. {
  9885. "name": "Sebastian Heuer",
  9886. "email": "sebastian@phpeople.de",
  9887. "role": "Developer"
  9888. },
  9889. {
  9890. "name": "Sebastian Bergmann",
  9891. "email": "sebastian@phpunit.de",
  9892. "role": "Developer"
  9893. }
  9894. ],
  9895. "description": "Library for handling version information and constraints",
  9896. "support": {
  9897. "issues": "https://github.com/phar-io/version/issues",
  9898. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9899. },
  9900. "time": "2022-02-21T01:04:05+00:00"
  9901. },
  9902. {
  9903. "name": "php-di/invoker",
  9904. "version": "2.3.4",
  9905. "source": {
  9906. "type": "git",
  9907. "url": "https://github.com/PHP-DI/Invoker.git",
  9908. "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86"
  9909. },
  9910. "dist": {
  9911. "type": "zip",
  9912. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/33234b32dafa8eb69202f950a1fc92055ed76a86",
  9913. "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86",
  9914. "shasum": ""
  9915. },
  9916. "require": {
  9917. "php": ">=7.3",
  9918. "psr/container": "^1.0|^2.0"
  9919. },
  9920. "require-dev": {
  9921. "athletic/athletic": "~0.1.8",
  9922. "mnapoli/hard-mode": "~0.3.0",
  9923. "phpunit/phpunit": "^9.0"
  9924. },
  9925. "type": "library",
  9926. "autoload": {
  9927. "psr-4": {
  9928. "Invoker\\": "src/"
  9929. }
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "MIT"
  9934. ],
  9935. "description": "Generic and extensible callable invoker",
  9936. "homepage": "https://github.com/PHP-DI/Invoker",
  9937. "keywords": [
  9938. "callable",
  9939. "dependency",
  9940. "dependency-injection",
  9941. "injection",
  9942. "invoke",
  9943. "invoker"
  9944. ],
  9945. "support": {
  9946. "issues": "https://github.com/PHP-DI/Invoker/issues",
  9947. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.4"
  9948. },
  9949. "funding": [
  9950. {
  9951. "url": "https://github.com/mnapoli",
  9952. "type": "github"
  9953. }
  9954. ],
  9955. "time": "2023-09-08T09:24:21+00:00"
  9956. },
  9957. {
  9958. "name": "php-di/php-di",
  9959. "version": "7.0.7",
  9960. "source": {
  9961. "type": "git",
  9962. "url": "https://github.com/PHP-DI/PHP-DI.git",
  9963. "reference": "e87435e3c0e8f22977adc5af0d5cdcc467e15cf1"
  9964. },
  9965. "dist": {
  9966. "type": "zip",
  9967. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/e87435e3c0e8f22977adc5af0d5cdcc467e15cf1",
  9968. "reference": "e87435e3c0e8f22977adc5af0d5cdcc467e15cf1",
  9969. "shasum": ""
  9970. },
  9971. "require": {
  9972. "laravel/serializable-closure": "^1.0",
  9973. "php": ">=8.0",
  9974. "php-di/invoker": "^2.0",
  9975. "psr/container": "^1.1 || ^2.0"
  9976. },
  9977. "provide": {
  9978. "psr/container-implementation": "^1.0"
  9979. },
  9980. "require-dev": {
  9981. "friendsofphp/php-cs-fixer": "^3",
  9982. "friendsofphp/proxy-manager-lts": "^1",
  9983. "mnapoli/phpunit-easymock": "^1.3",
  9984. "phpunit/phpunit": "^9.5",
  9985. "vimeo/psalm": "^4.6"
  9986. },
  9987. "suggest": {
  9988. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  9989. },
  9990. "type": "library",
  9991. "autoload": {
  9992. "files": [
  9993. "src/functions.php"
  9994. ],
  9995. "psr-4": {
  9996. "DI\\": "src/"
  9997. }
  9998. },
  9999. "notification-url": "https://packagist.org/downloads/",
  10000. "license": [
  10001. "MIT"
  10002. ],
  10003. "description": "The dependency injection container for humans",
  10004. "homepage": "https://php-di.org/",
  10005. "keywords": [
  10006. "PSR-11",
  10007. "container",
  10008. "container-interop",
  10009. "dependency injection",
  10010. "di",
  10011. "ioc",
  10012. "psr11"
  10013. ],
  10014. "support": {
  10015. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10016. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.7"
  10017. },
  10018. "funding": [
  10019. {
  10020. "url": "https://github.com/mnapoli",
  10021. "type": "github"
  10022. },
  10023. {
  10024. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10025. "type": "tidelift"
  10026. }
  10027. ],
  10028. "time": "2024-07-21T15:55:45+00:00"
  10029. },
  10030. {
  10031. "name": "phpstan/phpstan",
  10032. "version": "1.12.3",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/phpstan/phpstan.git",
  10036. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  10041. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "php": "^7.2|^8.0"
  10046. },
  10047. "conflict": {
  10048. "phpstan/phpstan-shim": "*"
  10049. },
  10050. "bin": [
  10051. "phpstan",
  10052. "phpstan.phar"
  10053. ],
  10054. "type": "library",
  10055. "autoload": {
  10056. "files": [
  10057. "bootstrap.php"
  10058. ]
  10059. },
  10060. "notification-url": "https://packagist.org/downloads/",
  10061. "license": [
  10062. "MIT"
  10063. ],
  10064. "description": "PHPStan - PHP Static Analysis Tool",
  10065. "keywords": [
  10066. "dev",
  10067. "static analysis"
  10068. ],
  10069. "support": {
  10070. "docs": "https://phpstan.org/user-guide/getting-started",
  10071. "forum": "https://github.com/phpstan/phpstan/discussions",
  10072. "issues": "https://github.com/phpstan/phpstan/issues",
  10073. "security": "https://github.com/phpstan/phpstan/security/policy",
  10074. "source": "https://github.com/phpstan/phpstan-src"
  10075. },
  10076. "funding": [
  10077. {
  10078. "url": "https://github.com/ondrejmirtes",
  10079. "type": "github"
  10080. },
  10081. {
  10082. "url": "https://github.com/phpstan",
  10083. "type": "github"
  10084. }
  10085. ],
  10086. "time": "2024-09-09T08:10:35+00:00"
  10087. },
  10088. {
  10089. "name": "phpunit/php-code-coverage",
  10090. "version": "10.1.16",
  10091. "source": {
  10092. "type": "git",
  10093. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10094. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  10095. },
  10096. "dist": {
  10097. "type": "zip",
  10098. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  10099. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  10100. "shasum": ""
  10101. },
  10102. "require": {
  10103. "ext-dom": "*",
  10104. "ext-libxml": "*",
  10105. "ext-xmlwriter": "*",
  10106. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  10107. "php": ">=8.1",
  10108. "phpunit/php-file-iterator": "^4.1.0",
  10109. "phpunit/php-text-template": "^3.0.1",
  10110. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  10111. "sebastian/complexity": "^3.2.0",
  10112. "sebastian/environment": "^6.1.0",
  10113. "sebastian/lines-of-code": "^2.0.2",
  10114. "sebastian/version": "^4.0.1",
  10115. "theseer/tokenizer": "^1.2.3"
  10116. },
  10117. "require-dev": {
  10118. "phpunit/phpunit": "^10.1"
  10119. },
  10120. "suggest": {
  10121. "ext-pcov": "PHP extension that provides line coverage",
  10122. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10123. },
  10124. "type": "library",
  10125. "extra": {
  10126. "branch-alias": {
  10127. "dev-main": "10.1.x-dev"
  10128. }
  10129. },
  10130. "autoload": {
  10131. "classmap": [
  10132. "src/"
  10133. ]
  10134. },
  10135. "notification-url": "https://packagist.org/downloads/",
  10136. "license": [
  10137. "BSD-3-Clause"
  10138. ],
  10139. "authors": [
  10140. {
  10141. "name": "Sebastian Bergmann",
  10142. "email": "sebastian@phpunit.de",
  10143. "role": "lead"
  10144. }
  10145. ],
  10146. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10147. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10148. "keywords": [
  10149. "coverage",
  10150. "testing",
  10151. "xunit"
  10152. ],
  10153. "support": {
  10154. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10155. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10156. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  10157. },
  10158. "funding": [
  10159. {
  10160. "url": "https://github.com/sebastianbergmann",
  10161. "type": "github"
  10162. }
  10163. ],
  10164. "time": "2024-08-22T04:31:57+00:00"
  10165. },
  10166. {
  10167. "name": "phpunit/php-file-iterator",
  10168. "version": "4.1.0",
  10169. "source": {
  10170. "type": "git",
  10171. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10172. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  10173. },
  10174. "dist": {
  10175. "type": "zip",
  10176. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10177. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10178. "shasum": ""
  10179. },
  10180. "require": {
  10181. "php": ">=8.1"
  10182. },
  10183. "require-dev": {
  10184. "phpunit/phpunit": "^10.0"
  10185. },
  10186. "type": "library",
  10187. "extra": {
  10188. "branch-alias": {
  10189. "dev-main": "4.0-dev"
  10190. }
  10191. },
  10192. "autoload": {
  10193. "classmap": [
  10194. "src/"
  10195. ]
  10196. },
  10197. "notification-url": "https://packagist.org/downloads/",
  10198. "license": [
  10199. "BSD-3-Clause"
  10200. ],
  10201. "authors": [
  10202. {
  10203. "name": "Sebastian Bergmann",
  10204. "email": "sebastian@phpunit.de",
  10205. "role": "lead"
  10206. }
  10207. ],
  10208. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10209. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10210. "keywords": [
  10211. "filesystem",
  10212. "iterator"
  10213. ],
  10214. "support": {
  10215. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10216. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10217. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  10218. },
  10219. "funding": [
  10220. {
  10221. "url": "https://github.com/sebastianbergmann",
  10222. "type": "github"
  10223. }
  10224. ],
  10225. "time": "2023-08-31T06:24:48+00:00"
  10226. },
  10227. {
  10228. "name": "phpunit/php-invoker",
  10229. "version": "4.0.0",
  10230. "source": {
  10231. "type": "git",
  10232. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10233. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  10234. },
  10235. "dist": {
  10236. "type": "zip",
  10237. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10238. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10239. "shasum": ""
  10240. },
  10241. "require": {
  10242. "php": ">=8.1"
  10243. },
  10244. "require-dev": {
  10245. "ext-pcntl": "*",
  10246. "phpunit/phpunit": "^10.0"
  10247. },
  10248. "suggest": {
  10249. "ext-pcntl": "*"
  10250. },
  10251. "type": "library",
  10252. "extra": {
  10253. "branch-alias": {
  10254. "dev-main": "4.0-dev"
  10255. }
  10256. },
  10257. "autoload": {
  10258. "classmap": [
  10259. "src/"
  10260. ]
  10261. },
  10262. "notification-url": "https://packagist.org/downloads/",
  10263. "license": [
  10264. "BSD-3-Clause"
  10265. ],
  10266. "authors": [
  10267. {
  10268. "name": "Sebastian Bergmann",
  10269. "email": "sebastian@phpunit.de",
  10270. "role": "lead"
  10271. }
  10272. ],
  10273. "description": "Invoke callables with a timeout",
  10274. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10275. "keywords": [
  10276. "process"
  10277. ],
  10278. "support": {
  10279. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10280. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  10281. },
  10282. "funding": [
  10283. {
  10284. "url": "https://github.com/sebastianbergmann",
  10285. "type": "github"
  10286. }
  10287. ],
  10288. "time": "2023-02-03T06:56:09+00:00"
  10289. },
  10290. {
  10291. "name": "phpunit/php-text-template",
  10292. "version": "3.0.1",
  10293. "source": {
  10294. "type": "git",
  10295. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10296. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  10297. },
  10298. "dist": {
  10299. "type": "zip",
  10300. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10301. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10302. "shasum": ""
  10303. },
  10304. "require": {
  10305. "php": ">=8.1"
  10306. },
  10307. "require-dev": {
  10308. "phpunit/phpunit": "^10.0"
  10309. },
  10310. "type": "library",
  10311. "extra": {
  10312. "branch-alias": {
  10313. "dev-main": "3.0-dev"
  10314. }
  10315. },
  10316. "autoload": {
  10317. "classmap": [
  10318. "src/"
  10319. ]
  10320. },
  10321. "notification-url": "https://packagist.org/downloads/",
  10322. "license": [
  10323. "BSD-3-Clause"
  10324. ],
  10325. "authors": [
  10326. {
  10327. "name": "Sebastian Bergmann",
  10328. "email": "sebastian@phpunit.de",
  10329. "role": "lead"
  10330. }
  10331. ],
  10332. "description": "Simple template engine.",
  10333. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10334. "keywords": [
  10335. "template"
  10336. ],
  10337. "support": {
  10338. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10339. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10340. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  10341. },
  10342. "funding": [
  10343. {
  10344. "url": "https://github.com/sebastianbergmann",
  10345. "type": "github"
  10346. }
  10347. ],
  10348. "time": "2023-08-31T14:07:24+00:00"
  10349. },
  10350. {
  10351. "name": "phpunit/php-timer",
  10352. "version": "6.0.0",
  10353. "source": {
  10354. "type": "git",
  10355. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10356. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  10357. },
  10358. "dist": {
  10359. "type": "zip",
  10360. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10361. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10362. "shasum": ""
  10363. },
  10364. "require": {
  10365. "php": ">=8.1"
  10366. },
  10367. "require-dev": {
  10368. "phpunit/phpunit": "^10.0"
  10369. },
  10370. "type": "library",
  10371. "extra": {
  10372. "branch-alias": {
  10373. "dev-main": "6.0-dev"
  10374. }
  10375. },
  10376. "autoload": {
  10377. "classmap": [
  10378. "src/"
  10379. ]
  10380. },
  10381. "notification-url": "https://packagist.org/downloads/",
  10382. "license": [
  10383. "BSD-3-Clause"
  10384. ],
  10385. "authors": [
  10386. {
  10387. "name": "Sebastian Bergmann",
  10388. "email": "sebastian@phpunit.de",
  10389. "role": "lead"
  10390. }
  10391. ],
  10392. "description": "Utility class for timing",
  10393. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10394. "keywords": [
  10395. "timer"
  10396. ],
  10397. "support": {
  10398. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10399. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10400. },
  10401. "funding": [
  10402. {
  10403. "url": "https://github.com/sebastianbergmann",
  10404. "type": "github"
  10405. }
  10406. ],
  10407. "time": "2023-02-03T06:57:52+00:00"
  10408. },
  10409. {
  10410. "name": "phpunit/phpunit",
  10411. "version": "10.5.33",
  10412. "source": {
  10413. "type": "git",
  10414. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10415. "reference": "4def7a9cda75af9c2bc179ed53a8e41313e7f7cf"
  10416. },
  10417. "dist": {
  10418. "type": "zip",
  10419. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4def7a9cda75af9c2bc179ed53a8e41313e7f7cf",
  10420. "reference": "4def7a9cda75af9c2bc179ed53a8e41313e7f7cf",
  10421. "shasum": ""
  10422. },
  10423. "require": {
  10424. "ext-dom": "*",
  10425. "ext-json": "*",
  10426. "ext-libxml": "*",
  10427. "ext-mbstring": "*",
  10428. "ext-xml": "*",
  10429. "ext-xmlwriter": "*",
  10430. "myclabs/deep-copy": "^1.12.0",
  10431. "phar-io/manifest": "^2.0.4",
  10432. "phar-io/version": "^3.2.1",
  10433. "php": ">=8.1",
  10434. "phpunit/php-code-coverage": "^10.1.16",
  10435. "phpunit/php-file-iterator": "^4.1.0",
  10436. "phpunit/php-invoker": "^4.0.0",
  10437. "phpunit/php-text-template": "^3.0.1",
  10438. "phpunit/php-timer": "^6.0.0",
  10439. "sebastian/cli-parser": "^2.0.1",
  10440. "sebastian/code-unit": "^2.0.0",
  10441. "sebastian/comparator": "^5.0.2",
  10442. "sebastian/diff": "^5.1.1",
  10443. "sebastian/environment": "^6.1.0",
  10444. "sebastian/exporter": "^5.1.2",
  10445. "sebastian/global-state": "^6.0.2",
  10446. "sebastian/object-enumerator": "^5.0.0",
  10447. "sebastian/recursion-context": "^5.0.0",
  10448. "sebastian/type": "^4.0.0",
  10449. "sebastian/version": "^4.0.1"
  10450. },
  10451. "suggest": {
  10452. "ext-soap": "To be able to generate mocks based on WSDL files"
  10453. },
  10454. "bin": [
  10455. "phpunit"
  10456. ],
  10457. "type": "library",
  10458. "extra": {
  10459. "branch-alias": {
  10460. "dev-main": "10.5-dev"
  10461. }
  10462. },
  10463. "autoload": {
  10464. "files": [
  10465. "src/Framework/Assert/Functions.php"
  10466. ],
  10467. "classmap": [
  10468. "src/"
  10469. ]
  10470. },
  10471. "notification-url": "https://packagist.org/downloads/",
  10472. "license": [
  10473. "BSD-3-Clause"
  10474. ],
  10475. "authors": [
  10476. {
  10477. "name": "Sebastian Bergmann",
  10478. "email": "sebastian@phpunit.de",
  10479. "role": "lead"
  10480. }
  10481. ],
  10482. "description": "The PHP Unit Testing framework.",
  10483. "homepage": "https://phpunit.de/",
  10484. "keywords": [
  10485. "phpunit",
  10486. "testing",
  10487. "xunit"
  10488. ],
  10489. "support": {
  10490. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10491. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10492. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.33"
  10493. },
  10494. "funding": [
  10495. {
  10496. "url": "https://phpunit.de/sponsors.html",
  10497. "type": "custom"
  10498. },
  10499. {
  10500. "url": "https://github.com/sebastianbergmann",
  10501. "type": "github"
  10502. },
  10503. {
  10504. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10505. "type": "tidelift"
  10506. }
  10507. ],
  10508. "time": "2024-09-09T06:06:56+00:00"
  10509. },
  10510. {
  10511. "name": "rector/rector",
  10512. "version": "1.2.5",
  10513. "source": {
  10514. "type": "git",
  10515. "url": "https://github.com/rectorphp/rector.git",
  10516. "reference": "e98aa793ca3fcd17e893cfaf9103ac049775d339"
  10517. },
  10518. "dist": {
  10519. "type": "zip",
  10520. "url": "https://api.github.com/repos/rectorphp/rector/zipball/e98aa793ca3fcd17e893cfaf9103ac049775d339",
  10521. "reference": "e98aa793ca3fcd17e893cfaf9103ac049775d339",
  10522. "shasum": ""
  10523. },
  10524. "require": {
  10525. "php": "^7.2|^8.0",
  10526. "phpstan/phpstan": "^1.12.2"
  10527. },
  10528. "conflict": {
  10529. "rector/rector-doctrine": "*",
  10530. "rector/rector-downgrade-php": "*",
  10531. "rector/rector-phpunit": "*",
  10532. "rector/rector-symfony": "*"
  10533. },
  10534. "suggest": {
  10535. "ext-dom": "To manipulate phpunit.xml via the custom-rule command"
  10536. },
  10537. "bin": [
  10538. "bin/rector"
  10539. ],
  10540. "type": "library",
  10541. "autoload": {
  10542. "files": [
  10543. "bootstrap.php"
  10544. ]
  10545. },
  10546. "notification-url": "https://packagist.org/downloads/",
  10547. "license": [
  10548. "MIT"
  10549. ],
  10550. "description": "Instant Upgrade and Automated Refactoring of any PHP code",
  10551. "keywords": [
  10552. "automation",
  10553. "dev",
  10554. "migration",
  10555. "refactoring"
  10556. ],
  10557. "support": {
  10558. "issues": "https://github.com/rectorphp/rector/issues",
  10559. "source": "https://github.com/rectorphp/rector/tree/1.2.5"
  10560. },
  10561. "funding": [
  10562. {
  10563. "url": "https://github.com/tomasvotruba",
  10564. "type": "github"
  10565. }
  10566. ],
  10567. "time": "2024-09-08T17:43:24+00:00"
  10568. },
  10569. {
  10570. "name": "sebastian/cli-parser",
  10571. "version": "2.0.1",
  10572. "source": {
  10573. "type": "git",
  10574. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10575. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10576. },
  10577. "dist": {
  10578. "type": "zip",
  10579. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10580. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10581. "shasum": ""
  10582. },
  10583. "require": {
  10584. "php": ">=8.1"
  10585. },
  10586. "require-dev": {
  10587. "phpunit/phpunit": "^10.0"
  10588. },
  10589. "type": "library",
  10590. "extra": {
  10591. "branch-alias": {
  10592. "dev-main": "2.0-dev"
  10593. }
  10594. },
  10595. "autoload": {
  10596. "classmap": [
  10597. "src/"
  10598. ]
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "BSD-3-Clause"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Sebastian Bergmann",
  10607. "email": "sebastian@phpunit.de",
  10608. "role": "lead"
  10609. }
  10610. ],
  10611. "description": "Library for parsing CLI options",
  10612. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10613. "support": {
  10614. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10615. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10616. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10617. },
  10618. "funding": [
  10619. {
  10620. "url": "https://github.com/sebastianbergmann",
  10621. "type": "github"
  10622. }
  10623. ],
  10624. "time": "2024-03-02T07:12:49+00:00"
  10625. },
  10626. {
  10627. "name": "sebastian/code-unit",
  10628. "version": "2.0.0",
  10629. "source": {
  10630. "type": "git",
  10631. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10632. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10633. },
  10634. "dist": {
  10635. "type": "zip",
  10636. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10637. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10638. "shasum": ""
  10639. },
  10640. "require": {
  10641. "php": ">=8.1"
  10642. },
  10643. "require-dev": {
  10644. "phpunit/phpunit": "^10.0"
  10645. },
  10646. "type": "library",
  10647. "extra": {
  10648. "branch-alias": {
  10649. "dev-main": "2.0-dev"
  10650. }
  10651. },
  10652. "autoload": {
  10653. "classmap": [
  10654. "src/"
  10655. ]
  10656. },
  10657. "notification-url": "https://packagist.org/downloads/",
  10658. "license": [
  10659. "BSD-3-Clause"
  10660. ],
  10661. "authors": [
  10662. {
  10663. "name": "Sebastian Bergmann",
  10664. "email": "sebastian@phpunit.de",
  10665. "role": "lead"
  10666. }
  10667. ],
  10668. "description": "Collection of value objects that represent the PHP code units",
  10669. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10670. "support": {
  10671. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10672. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10673. },
  10674. "funding": [
  10675. {
  10676. "url": "https://github.com/sebastianbergmann",
  10677. "type": "github"
  10678. }
  10679. ],
  10680. "time": "2023-02-03T06:58:43+00:00"
  10681. },
  10682. {
  10683. "name": "sebastian/code-unit-reverse-lookup",
  10684. "version": "3.0.0",
  10685. "source": {
  10686. "type": "git",
  10687. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10688. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10689. },
  10690. "dist": {
  10691. "type": "zip",
  10692. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10693. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10694. "shasum": ""
  10695. },
  10696. "require": {
  10697. "php": ">=8.1"
  10698. },
  10699. "require-dev": {
  10700. "phpunit/phpunit": "^10.0"
  10701. },
  10702. "type": "library",
  10703. "extra": {
  10704. "branch-alias": {
  10705. "dev-main": "3.0-dev"
  10706. }
  10707. },
  10708. "autoload": {
  10709. "classmap": [
  10710. "src/"
  10711. ]
  10712. },
  10713. "notification-url": "https://packagist.org/downloads/",
  10714. "license": [
  10715. "BSD-3-Clause"
  10716. ],
  10717. "authors": [
  10718. {
  10719. "name": "Sebastian Bergmann",
  10720. "email": "sebastian@phpunit.de"
  10721. }
  10722. ],
  10723. "description": "Looks up which function or method a line of code belongs to",
  10724. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10725. "support": {
  10726. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10727. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10728. },
  10729. "funding": [
  10730. {
  10731. "url": "https://github.com/sebastianbergmann",
  10732. "type": "github"
  10733. }
  10734. ],
  10735. "time": "2023-02-03T06:59:15+00:00"
  10736. },
  10737. {
  10738. "name": "sebastian/comparator",
  10739. "version": "5.0.2",
  10740. "source": {
  10741. "type": "git",
  10742. "url": "https://github.com/sebastianbergmann/comparator.git",
  10743. "reference": "2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53"
  10744. },
  10745. "dist": {
  10746. "type": "zip",
  10747. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53",
  10748. "reference": "2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53",
  10749. "shasum": ""
  10750. },
  10751. "require": {
  10752. "ext-dom": "*",
  10753. "ext-mbstring": "*",
  10754. "php": ">=8.1",
  10755. "sebastian/diff": "^5.0",
  10756. "sebastian/exporter": "^5.0"
  10757. },
  10758. "require-dev": {
  10759. "phpunit/phpunit": "^10.4"
  10760. },
  10761. "type": "library",
  10762. "extra": {
  10763. "branch-alias": {
  10764. "dev-main": "5.0-dev"
  10765. }
  10766. },
  10767. "autoload": {
  10768. "classmap": [
  10769. "src/"
  10770. ]
  10771. },
  10772. "notification-url": "https://packagist.org/downloads/",
  10773. "license": [
  10774. "BSD-3-Clause"
  10775. ],
  10776. "authors": [
  10777. {
  10778. "name": "Sebastian Bergmann",
  10779. "email": "sebastian@phpunit.de"
  10780. },
  10781. {
  10782. "name": "Jeff Welch",
  10783. "email": "whatthejeff@gmail.com"
  10784. },
  10785. {
  10786. "name": "Volker Dusch",
  10787. "email": "github@wallbash.com"
  10788. },
  10789. {
  10790. "name": "Bernhard Schussek",
  10791. "email": "bschussek@2bepublished.at"
  10792. }
  10793. ],
  10794. "description": "Provides the functionality to compare PHP values for equality",
  10795. "homepage": "https://github.com/sebastianbergmann/comparator",
  10796. "keywords": [
  10797. "comparator",
  10798. "compare",
  10799. "equality"
  10800. ],
  10801. "support": {
  10802. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10803. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10804. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.2"
  10805. },
  10806. "funding": [
  10807. {
  10808. "url": "https://github.com/sebastianbergmann",
  10809. "type": "github"
  10810. }
  10811. ],
  10812. "time": "2024-08-12T06:03:08+00:00"
  10813. },
  10814. {
  10815. "name": "sebastian/complexity",
  10816. "version": "3.2.0",
  10817. "source": {
  10818. "type": "git",
  10819. "url": "https://github.com/sebastianbergmann/complexity.git",
  10820. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10821. },
  10822. "dist": {
  10823. "type": "zip",
  10824. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10825. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10826. "shasum": ""
  10827. },
  10828. "require": {
  10829. "nikic/php-parser": "^4.18 || ^5.0",
  10830. "php": ">=8.1"
  10831. },
  10832. "require-dev": {
  10833. "phpunit/phpunit": "^10.0"
  10834. },
  10835. "type": "library",
  10836. "extra": {
  10837. "branch-alias": {
  10838. "dev-main": "3.2-dev"
  10839. }
  10840. },
  10841. "autoload": {
  10842. "classmap": [
  10843. "src/"
  10844. ]
  10845. },
  10846. "notification-url": "https://packagist.org/downloads/",
  10847. "license": [
  10848. "BSD-3-Clause"
  10849. ],
  10850. "authors": [
  10851. {
  10852. "name": "Sebastian Bergmann",
  10853. "email": "sebastian@phpunit.de",
  10854. "role": "lead"
  10855. }
  10856. ],
  10857. "description": "Library for calculating the complexity of PHP code units",
  10858. "homepage": "https://github.com/sebastianbergmann/complexity",
  10859. "support": {
  10860. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10861. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10862. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10863. },
  10864. "funding": [
  10865. {
  10866. "url": "https://github.com/sebastianbergmann",
  10867. "type": "github"
  10868. }
  10869. ],
  10870. "time": "2023-12-21T08:37:17+00:00"
  10871. },
  10872. {
  10873. "name": "sebastian/diff",
  10874. "version": "5.1.1",
  10875. "source": {
  10876. "type": "git",
  10877. "url": "https://github.com/sebastianbergmann/diff.git",
  10878. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10879. },
  10880. "dist": {
  10881. "type": "zip",
  10882. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10883. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10884. "shasum": ""
  10885. },
  10886. "require": {
  10887. "php": ">=8.1"
  10888. },
  10889. "require-dev": {
  10890. "phpunit/phpunit": "^10.0",
  10891. "symfony/process": "^6.4"
  10892. },
  10893. "type": "library",
  10894. "extra": {
  10895. "branch-alias": {
  10896. "dev-main": "5.1-dev"
  10897. }
  10898. },
  10899. "autoload": {
  10900. "classmap": [
  10901. "src/"
  10902. ]
  10903. },
  10904. "notification-url": "https://packagist.org/downloads/",
  10905. "license": [
  10906. "BSD-3-Clause"
  10907. ],
  10908. "authors": [
  10909. {
  10910. "name": "Sebastian Bergmann",
  10911. "email": "sebastian@phpunit.de"
  10912. },
  10913. {
  10914. "name": "Kore Nordmann",
  10915. "email": "mail@kore-nordmann.de"
  10916. }
  10917. ],
  10918. "description": "Diff implementation",
  10919. "homepage": "https://github.com/sebastianbergmann/diff",
  10920. "keywords": [
  10921. "diff",
  10922. "udiff",
  10923. "unidiff",
  10924. "unified diff"
  10925. ],
  10926. "support": {
  10927. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10928. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10929. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10930. },
  10931. "funding": [
  10932. {
  10933. "url": "https://github.com/sebastianbergmann",
  10934. "type": "github"
  10935. }
  10936. ],
  10937. "time": "2024-03-02T07:15:17+00:00"
  10938. },
  10939. {
  10940. "name": "sebastian/environment",
  10941. "version": "6.1.0",
  10942. "source": {
  10943. "type": "git",
  10944. "url": "https://github.com/sebastianbergmann/environment.git",
  10945. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10946. },
  10947. "dist": {
  10948. "type": "zip",
  10949. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10950. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10951. "shasum": ""
  10952. },
  10953. "require": {
  10954. "php": ">=8.1"
  10955. },
  10956. "require-dev": {
  10957. "phpunit/phpunit": "^10.0"
  10958. },
  10959. "suggest": {
  10960. "ext-posix": "*"
  10961. },
  10962. "type": "library",
  10963. "extra": {
  10964. "branch-alias": {
  10965. "dev-main": "6.1-dev"
  10966. }
  10967. },
  10968. "autoload": {
  10969. "classmap": [
  10970. "src/"
  10971. ]
  10972. },
  10973. "notification-url": "https://packagist.org/downloads/",
  10974. "license": [
  10975. "BSD-3-Clause"
  10976. ],
  10977. "authors": [
  10978. {
  10979. "name": "Sebastian Bergmann",
  10980. "email": "sebastian@phpunit.de"
  10981. }
  10982. ],
  10983. "description": "Provides functionality to handle HHVM/PHP environments",
  10984. "homepage": "https://github.com/sebastianbergmann/environment",
  10985. "keywords": [
  10986. "Xdebug",
  10987. "environment",
  10988. "hhvm"
  10989. ],
  10990. "support": {
  10991. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10992. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10993. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10994. },
  10995. "funding": [
  10996. {
  10997. "url": "https://github.com/sebastianbergmann",
  10998. "type": "github"
  10999. }
  11000. ],
  11001. "time": "2024-03-23T08:47:14+00:00"
  11002. },
  11003. {
  11004. "name": "sebastian/exporter",
  11005. "version": "5.1.2",
  11006. "source": {
  11007. "type": "git",
  11008. "url": "https://github.com/sebastianbergmann/exporter.git",
  11009. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  11010. },
  11011. "dist": {
  11012. "type": "zip",
  11013. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  11014. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  11015. "shasum": ""
  11016. },
  11017. "require": {
  11018. "ext-mbstring": "*",
  11019. "php": ">=8.1",
  11020. "sebastian/recursion-context": "^5.0"
  11021. },
  11022. "require-dev": {
  11023. "phpunit/phpunit": "^10.0"
  11024. },
  11025. "type": "library",
  11026. "extra": {
  11027. "branch-alias": {
  11028. "dev-main": "5.1-dev"
  11029. }
  11030. },
  11031. "autoload": {
  11032. "classmap": [
  11033. "src/"
  11034. ]
  11035. },
  11036. "notification-url": "https://packagist.org/downloads/",
  11037. "license": [
  11038. "BSD-3-Clause"
  11039. ],
  11040. "authors": [
  11041. {
  11042. "name": "Sebastian Bergmann",
  11043. "email": "sebastian@phpunit.de"
  11044. },
  11045. {
  11046. "name": "Jeff Welch",
  11047. "email": "whatthejeff@gmail.com"
  11048. },
  11049. {
  11050. "name": "Volker Dusch",
  11051. "email": "github@wallbash.com"
  11052. },
  11053. {
  11054. "name": "Adam Harvey",
  11055. "email": "aharvey@php.net"
  11056. },
  11057. {
  11058. "name": "Bernhard Schussek",
  11059. "email": "bschussek@gmail.com"
  11060. }
  11061. ],
  11062. "description": "Provides the functionality to export PHP variables for visualization",
  11063. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11064. "keywords": [
  11065. "export",
  11066. "exporter"
  11067. ],
  11068. "support": {
  11069. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11070. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11071. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  11072. },
  11073. "funding": [
  11074. {
  11075. "url": "https://github.com/sebastianbergmann",
  11076. "type": "github"
  11077. }
  11078. ],
  11079. "time": "2024-03-02T07:17:12+00:00"
  11080. },
  11081. {
  11082. "name": "sebastian/global-state",
  11083. "version": "6.0.2",
  11084. "source": {
  11085. "type": "git",
  11086. "url": "https://github.com/sebastianbergmann/global-state.git",
  11087. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  11088. },
  11089. "dist": {
  11090. "type": "zip",
  11091. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11092. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11093. "shasum": ""
  11094. },
  11095. "require": {
  11096. "php": ">=8.1",
  11097. "sebastian/object-reflector": "^3.0",
  11098. "sebastian/recursion-context": "^5.0"
  11099. },
  11100. "require-dev": {
  11101. "ext-dom": "*",
  11102. "phpunit/phpunit": "^10.0"
  11103. },
  11104. "type": "library",
  11105. "extra": {
  11106. "branch-alias": {
  11107. "dev-main": "6.0-dev"
  11108. }
  11109. },
  11110. "autoload": {
  11111. "classmap": [
  11112. "src/"
  11113. ]
  11114. },
  11115. "notification-url": "https://packagist.org/downloads/",
  11116. "license": [
  11117. "BSD-3-Clause"
  11118. ],
  11119. "authors": [
  11120. {
  11121. "name": "Sebastian Bergmann",
  11122. "email": "sebastian@phpunit.de"
  11123. }
  11124. ],
  11125. "description": "Snapshotting of global state",
  11126. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11127. "keywords": [
  11128. "global state"
  11129. ],
  11130. "support": {
  11131. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11132. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11133. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  11134. },
  11135. "funding": [
  11136. {
  11137. "url": "https://github.com/sebastianbergmann",
  11138. "type": "github"
  11139. }
  11140. ],
  11141. "time": "2024-03-02T07:19:19+00:00"
  11142. },
  11143. {
  11144. "name": "sebastian/lines-of-code",
  11145. "version": "2.0.2",
  11146. "source": {
  11147. "type": "git",
  11148. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11149. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  11150. },
  11151. "dist": {
  11152. "type": "zip",
  11153. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11154. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11155. "shasum": ""
  11156. },
  11157. "require": {
  11158. "nikic/php-parser": "^4.18 || ^5.0",
  11159. "php": ">=8.1"
  11160. },
  11161. "require-dev": {
  11162. "phpunit/phpunit": "^10.0"
  11163. },
  11164. "type": "library",
  11165. "extra": {
  11166. "branch-alias": {
  11167. "dev-main": "2.0-dev"
  11168. }
  11169. },
  11170. "autoload": {
  11171. "classmap": [
  11172. "src/"
  11173. ]
  11174. },
  11175. "notification-url": "https://packagist.org/downloads/",
  11176. "license": [
  11177. "BSD-3-Clause"
  11178. ],
  11179. "authors": [
  11180. {
  11181. "name": "Sebastian Bergmann",
  11182. "email": "sebastian@phpunit.de",
  11183. "role": "lead"
  11184. }
  11185. ],
  11186. "description": "Library for counting the lines of code in PHP source code",
  11187. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11188. "support": {
  11189. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11190. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11191. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11192. },
  11193. "funding": [
  11194. {
  11195. "url": "https://github.com/sebastianbergmann",
  11196. "type": "github"
  11197. }
  11198. ],
  11199. "time": "2023-12-21T08:38:20+00:00"
  11200. },
  11201. {
  11202. "name": "sebastian/object-enumerator",
  11203. "version": "5.0.0",
  11204. "source": {
  11205. "type": "git",
  11206. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11207. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11208. },
  11209. "dist": {
  11210. "type": "zip",
  11211. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11212. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11213. "shasum": ""
  11214. },
  11215. "require": {
  11216. "php": ">=8.1",
  11217. "sebastian/object-reflector": "^3.0",
  11218. "sebastian/recursion-context": "^5.0"
  11219. },
  11220. "require-dev": {
  11221. "phpunit/phpunit": "^10.0"
  11222. },
  11223. "type": "library",
  11224. "extra": {
  11225. "branch-alias": {
  11226. "dev-main": "5.0-dev"
  11227. }
  11228. },
  11229. "autoload": {
  11230. "classmap": [
  11231. "src/"
  11232. ]
  11233. },
  11234. "notification-url": "https://packagist.org/downloads/",
  11235. "license": [
  11236. "BSD-3-Clause"
  11237. ],
  11238. "authors": [
  11239. {
  11240. "name": "Sebastian Bergmann",
  11241. "email": "sebastian@phpunit.de"
  11242. }
  11243. ],
  11244. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11245. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11246. "support": {
  11247. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11248. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11249. },
  11250. "funding": [
  11251. {
  11252. "url": "https://github.com/sebastianbergmann",
  11253. "type": "github"
  11254. }
  11255. ],
  11256. "time": "2023-02-03T07:08:32+00:00"
  11257. },
  11258. {
  11259. "name": "sebastian/object-reflector",
  11260. "version": "3.0.0",
  11261. "source": {
  11262. "type": "git",
  11263. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11264. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11265. },
  11266. "dist": {
  11267. "type": "zip",
  11268. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11269. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11270. "shasum": ""
  11271. },
  11272. "require": {
  11273. "php": ">=8.1"
  11274. },
  11275. "require-dev": {
  11276. "phpunit/phpunit": "^10.0"
  11277. },
  11278. "type": "library",
  11279. "extra": {
  11280. "branch-alias": {
  11281. "dev-main": "3.0-dev"
  11282. }
  11283. },
  11284. "autoload": {
  11285. "classmap": [
  11286. "src/"
  11287. ]
  11288. },
  11289. "notification-url": "https://packagist.org/downloads/",
  11290. "license": [
  11291. "BSD-3-Clause"
  11292. ],
  11293. "authors": [
  11294. {
  11295. "name": "Sebastian Bergmann",
  11296. "email": "sebastian@phpunit.de"
  11297. }
  11298. ],
  11299. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11300. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11301. "support": {
  11302. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11303. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11304. },
  11305. "funding": [
  11306. {
  11307. "url": "https://github.com/sebastianbergmann",
  11308. "type": "github"
  11309. }
  11310. ],
  11311. "time": "2023-02-03T07:06:18+00:00"
  11312. },
  11313. {
  11314. "name": "sebastian/recursion-context",
  11315. "version": "5.0.0",
  11316. "source": {
  11317. "type": "git",
  11318. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11319. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11320. },
  11321. "dist": {
  11322. "type": "zip",
  11323. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11324. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11325. "shasum": ""
  11326. },
  11327. "require": {
  11328. "php": ">=8.1"
  11329. },
  11330. "require-dev": {
  11331. "phpunit/phpunit": "^10.0"
  11332. },
  11333. "type": "library",
  11334. "extra": {
  11335. "branch-alias": {
  11336. "dev-main": "5.0-dev"
  11337. }
  11338. },
  11339. "autoload": {
  11340. "classmap": [
  11341. "src/"
  11342. ]
  11343. },
  11344. "notification-url": "https://packagist.org/downloads/",
  11345. "license": [
  11346. "BSD-3-Clause"
  11347. ],
  11348. "authors": [
  11349. {
  11350. "name": "Sebastian Bergmann",
  11351. "email": "sebastian@phpunit.de"
  11352. },
  11353. {
  11354. "name": "Jeff Welch",
  11355. "email": "whatthejeff@gmail.com"
  11356. },
  11357. {
  11358. "name": "Adam Harvey",
  11359. "email": "aharvey@php.net"
  11360. }
  11361. ],
  11362. "description": "Provides functionality to recursively process PHP variables",
  11363. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11364. "support": {
  11365. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11366. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11367. },
  11368. "funding": [
  11369. {
  11370. "url": "https://github.com/sebastianbergmann",
  11371. "type": "github"
  11372. }
  11373. ],
  11374. "time": "2023-02-03T07:05:40+00:00"
  11375. },
  11376. {
  11377. "name": "sebastian/type",
  11378. "version": "4.0.0",
  11379. "source": {
  11380. "type": "git",
  11381. "url": "https://github.com/sebastianbergmann/type.git",
  11382. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11383. },
  11384. "dist": {
  11385. "type": "zip",
  11386. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11387. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11388. "shasum": ""
  11389. },
  11390. "require": {
  11391. "php": ">=8.1"
  11392. },
  11393. "require-dev": {
  11394. "phpunit/phpunit": "^10.0"
  11395. },
  11396. "type": "library",
  11397. "extra": {
  11398. "branch-alias": {
  11399. "dev-main": "4.0-dev"
  11400. }
  11401. },
  11402. "autoload": {
  11403. "classmap": [
  11404. "src/"
  11405. ]
  11406. },
  11407. "notification-url": "https://packagist.org/downloads/",
  11408. "license": [
  11409. "BSD-3-Clause"
  11410. ],
  11411. "authors": [
  11412. {
  11413. "name": "Sebastian Bergmann",
  11414. "email": "sebastian@phpunit.de",
  11415. "role": "lead"
  11416. }
  11417. ],
  11418. "description": "Collection of value objects that represent the types of the PHP type system",
  11419. "homepage": "https://github.com/sebastianbergmann/type",
  11420. "support": {
  11421. "issues": "https://github.com/sebastianbergmann/type/issues",
  11422. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11423. },
  11424. "funding": [
  11425. {
  11426. "url": "https://github.com/sebastianbergmann",
  11427. "type": "github"
  11428. }
  11429. ],
  11430. "time": "2023-02-03T07:10:45+00:00"
  11431. },
  11432. {
  11433. "name": "sebastian/version",
  11434. "version": "4.0.1",
  11435. "source": {
  11436. "type": "git",
  11437. "url": "https://github.com/sebastianbergmann/version.git",
  11438. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11439. },
  11440. "dist": {
  11441. "type": "zip",
  11442. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11443. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11444. "shasum": ""
  11445. },
  11446. "require": {
  11447. "php": ">=8.1"
  11448. },
  11449. "type": "library",
  11450. "extra": {
  11451. "branch-alias": {
  11452. "dev-main": "4.0-dev"
  11453. }
  11454. },
  11455. "autoload": {
  11456. "classmap": [
  11457. "src/"
  11458. ]
  11459. },
  11460. "notification-url": "https://packagist.org/downloads/",
  11461. "license": [
  11462. "BSD-3-Clause"
  11463. ],
  11464. "authors": [
  11465. {
  11466. "name": "Sebastian Bergmann",
  11467. "email": "sebastian@phpunit.de",
  11468. "role": "lead"
  11469. }
  11470. ],
  11471. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11472. "homepage": "https://github.com/sebastianbergmann/version",
  11473. "support": {
  11474. "issues": "https://github.com/sebastianbergmann/version/issues",
  11475. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11476. },
  11477. "funding": [
  11478. {
  11479. "url": "https://github.com/sebastianbergmann",
  11480. "type": "github"
  11481. }
  11482. ],
  11483. "time": "2023-02-07T11:34:05+00:00"
  11484. },
  11485. {
  11486. "name": "spatie/backtrace",
  11487. "version": "1.6.2",
  11488. "source": {
  11489. "type": "git",
  11490. "url": "https://github.com/spatie/backtrace.git",
  11491. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9"
  11492. },
  11493. "dist": {
  11494. "type": "zip",
  11495. "url": "https://api.github.com/repos/spatie/backtrace/zipball/1a9a145b044677ae3424693f7b06479fc8c137a9",
  11496. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9",
  11497. "shasum": ""
  11498. },
  11499. "require": {
  11500. "php": "^7.3|^8.0"
  11501. },
  11502. "require-dev": {
  11503. "ext-json": "*",
  11504. "laravel/serializable-closure": "^1.3",
  11505. "phpunit/phpunit": "^9.3",
  11506. "spatie/phpunit-snapshot-assertions": "^4.2",
  11507. "symfony/var-dumper": "^5.1"
  11508. },
  11509. "type": "library",
  11510. "autoload": {
  11511. "psr-4": {
  11512. "Spatie\\Backtrace\\": "src"
  11513. }
  11514. },
  11515. "notification-url": "https://packagist.org/downloads/",
  11516. "license": [
  11517. "MIT"
  11518. ],
  11519. "authors": [
  11520. {
  11521. "name": "Freek Van de Herten",
  11522. "email": "freek@spatie.be",
  11523. "homepage": "https://spatie.be",
  11524. "role": "Developer"
  11525. }
  11526. ],
  11527. "description": "A better backtrace",
  11528. "homepage": "https://github.com/spatie/backtrace",
  11529. "keywords": [
  11530. "Backtrace",
  11531. "spatie"
  11532. ],
  11533. "support": {
  11534. "source": "https://github.com/spatie/backtrace/tree/1.6.2"
  11535. },
  11536. "funding": [
  11537. {
  11538. "url": "https://github.com/sponsors/spatie",
  11539. "type": "github"
  11540. },
  11541. {
  11542. "url": "https://spatie.be/open-source/support-us",
  11543. "type": "other"
  11544. }
  11545. ],
  11546. "time": "2024-07-22T08:21:24+00:00"
  11547. },
  11548. {
  11549. "name": "spatie/error-solutions",
  11550. "version": "1.1.1",
  11551. "source": {
  11552. "type": "git",
  11553. "url": "https://github.com/spatie/error-solutions.git",
  11554. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67"
  11555. },
  11556. "dist": {
  11557. "type": "zip",
  11558. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  11559. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  11560. "shasum": ""
  11561. },
  11562. "require": {
  11563. "php": "^8.0"
  11564. },
  11565. "require-dev": {
  11566. "illuminate/broadcasting": "^10.0|^11.0",
  11567. "illuminate/cache": "^10.0|^11.0",
  11568. "illuminate/support": "^10.0|^11.0",
  11569. "livewire/livewire": "^2.11|^3.3.5",
  11570. "openai-php/client": "^0.10.1",
  11571. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  11572. "pestphp/pest": "^2.20",
  11573. "phpstan/phpstan": "^1.11",
  11574. "psr/simple-cache": "^3.0",
  11575. "psr/simple-cache-implementation": "^3.0",
  11576. "spatie/ray": "^1.28",
  11577. "symfony/cache": "^5.4|^6.0|^7.0",
  11578. "symfony/process": "^5.4|^6.0|^7.0",
  11579. "vlucas/phpdotenv": "^5.5"
  11580. },
  11581. "suggest": {
  11582. "openai-php/client": "Require get solutions from OpenAI",
  11583. "simple-cache-implementation": "To cache solutions from OpenAI"
  11584. },
  11585. "type": "library",
  11586. "autoload": {
  11587. "psr-4": {
  11588. "Spatie\\Ignition\\": "legacy/ignition",
  11589. "Spatie\\ErrorSolutions\\": "src",
  11590. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  11591. }
  11592. },
  11593. "notification-url": "https://packagist.org/downloads/",
  11594. "license": [
  11595. "MIT"
  11596. ],
  11597. "authors": [
  11598. {
  11599. "name": "Ruben Van Assche",
  11600. "email": "ruben@spatie.be",
  11601. "role": "Developer"
  11602. }
  11603. ],
  11604. "description": "This is my package error-solutions",
  11605. "homepage": "https://github.com/spatie/error-solutions",
  11606. "keywords": [
  11607. "error-solutions",
  11608. "spatie"
  11609. ],
  11610. "support": {
  11611. "issues": "https://github.com/spatie/error-solutions/issues",
  11612. "source": "https://github.com/spatie/error-solutions/tree/1.1.1"
  11613. },
  11614. "funding": [
  11615. {
  11616. "url": "https://github.com/Spatie",
  11617. "type": "github"
  11618. }
  11619. ],
  11620. "time": "2024-07-25T11:06:04+00:00"
  11621. },
  11622. {
  11623. "name": "spatie/flare-client-php",
  11624. "version": "1.8.0",
  11625. "source": {
  11626. "type": "git",
  11627. "url": "https://github.com/spatie/flare-client-php.git",
  11628. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122"
  11629. },
  11630. "dist": {
  11631. "type": "zip",
  11632. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  11633. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  11634. "shasum": ""
  11635. },
  11636. "require": {
  11637. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  11638. "php": "^8.0",
  11639. "spatie/backtrace": "^1.6.1",
  11640. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  11641. "symfony/mime": "^5.2|^6.0|^7.0",
  11642. "symfony/process": "^5.2|^6.0|^7.0",
  11643. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  11644. },
  11645. "require-dev": {
  11646. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  11647. "pestphp/pest": "^1.20|^2.0",
  11648. "phpstan/extension-installer": "^1.1",
  11649. "phpstan/phpstan-deprecation-rules": "^1.0",
  11650. "phpstan/phpstan-phpunit": "^1.0",
  11651. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  11652. },
  11653. "type": "library",
  11654. "extra": {
  11655. "branch-alias": {
  11656. "dev-main": "1.3.x-dev"
  11657. }
  11658. },
  11659. "autoload": {
  11660. "files": [
  11661. "src/helpers.php"
  11662. ],
  11663. "psr-4": {
  11664. "Spatie\\FlareClient\\": "src"
  11665. }
  11666. },
  11667. "notification-url": "https://packagist.org/downloads/",
  11668. "license": [
  11669. "MIT"
  11670. ],
  11671. "description": "Send PHP errors to Flare",
  11672. "homepage": "https://github.com/spatie/flare-client-php",
  11673. "keywords": [
  11674. "exception",
  11675. "flare",
  11676. "reporting",
  11677. "spatie"
  11678. ],
  11679. "support": {
  11680. "issues": "https://github.com/spatie/flare-client-php/issues",
  11681. "source": "https://github.com/spatie/flare-client-php/tree/1.8.0"
  11682. },
  11683. "funding": [
  11684. {
  11685. "url": "https://github.com/spatie",
  11686. "type": "github"
  11687. }
  11688. ],
  11689. "time": "2024-08-01T08:27:26+00:00"
  11690. },
  11691. {
  11692. "name": "spatie/ignition",
  11693. "version": "1.15.0",
  11694. "source": {
  11695. "type": "git",
  11696. "url": "https://github.com/spatie/ignition.git",
  11697. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  11698. },
  11699. "dist": {
  11700. "type": "zip",
  11701. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  11702. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  11703. "shasum": ""
  11704. },
  11705. "require": {
  11706. "ext-json": "*",
  11707. "ext-mbstring": "*",
  11708. "php": "^8.0",
  11709. "spatie/error-solutions": "^1.0",
  11710. "spatie/flare-client-php": "^1.7",
  11711. "symfony/console": "^5.4|^6.0|^7.0",
  11712. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11713. },
  11714. "require-dev": {
  11715. "illuminate/cache": "^9.52|^10.0|^11.0",
  11716. "mockery/mockery": "^1.4",
  11717. "pestphp/pest": "^1.20|^2.0",
  11718. "phpstan/extension-installer": "^1.1",
  11719. "phpstan/phpstan-deprecation-rules": "^1.0",
  11720. "phpstan/phpstan-phpunit": "^1.0",
  11721. "psr/simple-cache-implementation": "*",
  11722. "symfony/cache": "^5.4|^6.0|^7.0",
  11723. "symfony/process": "^5.4|^6.0|^7.0",
  11724. "vlucas/phpdotenv": "^5.5"
  11725. },
  11726. "suggest": {
  11727. "openai-php/client": "Require get solutions from OpenAI",
  11728. "simple-cache-implementation": "To cache solutions from OpenAI"
  11729. },
  11730. "type": "library",
  11731. "extra": {
  11732. "branch-alias": {
  11733. "dev-main": "1.5.x-dev"
  11734. }
  11735. },
  11736. "autoload": {
  11737. "psr-4": {
  11738. "Spatie\\Ignition\\": "src"
  11739. }
  11740. },
  11741. "notification-url": "https://packagist.org/downloads/",
  11742. "license": [
  11743. "MIT"
  11744. ],
  11745. "authors": [
  11746. {
  11747. "name": "Spatie",
  11748. "email": "info@spatie.be",
  11749. "role": "Developer"
  11750. }
  11751. ],
  11752. "description": "A beautiful error page for PHP applications.",
  11753. "homepage": "https://flareapp.io/ignition",
  11754. "keywords": [
  11755. "error",
  11756. "flare",
  11757. "laravel",
  11758. "page"
  11759. ],
  11760. "support": {
  11761. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11762. "forum": "https://twitter.com/flareappio",
  11763. "issues": "https://github.com/spatie/ignition/issues",
  11764. "source": "https://github.com/spatie/ignition"
  11765. },
  11766. "funding": [
  11767. {
  11768. "url": "https://github.com/spatie",
  11769. "type": "github"
  11770. }
  11771. ],
  11772. "time": "2024-06-12T14:55:22+00:00"
  11773. },
  11774. {
  11775. "name": "spatie/laravel-ignition",
  11776. "version": "2.8.0",
  11777. "source": {
  11778. "type": "git",
  11779. "url": "https://github.com/spatie/laravel-ignition.git",
  11780. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c"
  11781. },
  11782. "dist": {
  11783. "type": "zip",
  11784. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c",
  11785. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c",
  11786. "shasum": ""
  11787. },
  11788. "require": {
  11789. "ext-curl": "*",
  11790. "ext-json": "*",
  11791. "ext-mbstring": "*",
  11792. "illuminate/support": "^10.0|^11.0",
  11793. "php": "^8.1",
  11794. "spatie/ignition": "^1.15",
  11795. "symfony/console": "^6.2.3|^7.0",
  11796. "symfony/var-dumper": "^6.2.3|^7.0"
  11797. },
  11798. "require-dev": {
  11799. "livewire/livewire": "^2.11|^3.3.5",
  11800. "mockery/mockery": "^1.5.1",
  11801. "openai-php/client": "^0.8.1",
  11802. "orchestra/testbench": "8.22.3|^9.0",
  11803. "pestphp/pest": "^2.34",
  11804. "phpstan/extension-installer": "^1.3.1",
  11805. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  11806. "phpstan/phpstan-phpunit": "^1.3.16",
  11807. "vlucas/phpdotenv": "^5.5"
  11808. },
  11809. "suggest": {
  11810. "openai-php/client": "Require get solutions from OpenAI",
  11811. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  11812. },
  11813. "type": "library",
  11814. "extra": {
  11815. "laravel": {
  11816. "providers": [
  11817. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  11818. ],
  11819. "aliases": {
  11820. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  11821. }
  11822. }
  11823. },
  11824. "autoload": {
  11825. "files": [
  11826. "src/helpers.php"
  11827. ],
  11828. "psr-4": {
  11829. "Spatie\\LaravelIgnition\\": "src"
  11830. }
  11831. },
  11832. "notification-url": "https://packagist.org/downloads/",
  11833. "license": [
  11834. "MIT"
  11835. ],
  11836. "authors": [
  11837. {
  11838. "name": "Spatie",
  11839. "email": "info@spatie.be",
  11840. "role": "Developer"
  11841. }
  11842. ],
  11843. "description": "A beautiful error page for Laravel applications.",
  11844. "homepage": "https://flareapp.io/ignition",
  11845. "keywords": [
  11846. "error",
  11847. "flare",
  11848. "laravel",
  11849. "page"
  11850. ],
  11851. "support": {
  11852. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  11853. "forum": "https://twitter.com/flareappio",
  11854. "issues": "https://github.com/spatie/laravel-ignition/issues",
  11855. "source": "https://github.com/spatie/laravel-ignition"
  11856. },
  11857. "funding": [
  11858. {
  11859. "url": "https://github.com/spatie",
  11860. "type": "github"
  11861. }
  11862. ],
  11863. "time": "2024-06-12T15:01:18+00:00"
  11864. },
  11865. {
  11866. "name": "spatie/laravel-ray",
  11867. "version": "1.37.1",
  11868. "source": {
  11869. "type": "git",
  11870. "url": "https://github.com/spatie/laravel-ray.git",
  11871. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9"
  11872. },
  11873. "dist": {
  11874. "type": "zip",
  11875. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  11876. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  11877. "shasum": ""
  11878. },
  11879. "require": {
  11880. "ext-json": "*",
  11881. "illuminate/contracts": "^7.20|^8.19|^9.0|^10.0|^11.0",
  11882. "illuminate/database": "^7.20|^8.19|^9.0|^10.0|^11.0",
  11883. "illuminate/queue": "^7.20|^8.19|^9.0|^10.0|^11.0",
  11884. "illuminate/support": "^7.20|^8.19|^9.0|^10.0|^11.0",
  11885. "php": "^7.4|^8.0",
  11886. "rector/rector": "^0.19.2|^1.0",
  11887. "spatie/backtrace": "^1.0",
  11888. "spatie/ray": "^1.41.1",
  11889. "symfony/stopwatch": "4.2|^5.1|^6.0|^7.0",
  11890. "zbateson/mail-mime-parser": "^1.3.1|^2.0|^3.0"
  11891. },
  11892. "require-dev": {
  11893. "guzzlehttp/guzzle": "^7.3",
  11894. "laravel/framework": "^7.20|^8.19|^9.0|^10.0|^11.0",
  11895. "orchestra/testbench-core": "^5.0|^6.0|^7.0|^8.0|^9.0",
  11896. "pestphp/pest": "^1.22|^2.0",
  11897. "phpstan/phpstan": "^1.10.57",
  11898. "phpunit/phpunit": "^9.3|^10.1",
  11899. "spatie/pest-plugin-snapshots": "^1.1|^2.0",
  11900. "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3"
  11901. },
  11902. "type": "library",
  11903. "extra": {
  11904. "branch-alias": {
  11905. "dev-main": "1.x-dev"
  11906. },
  11907. "laravel": {
  11908. "providers": [
  11909. "Spatie\\LaravelRay\\RayServiceProvider"
  11910. ]
  11911. }
  11912. },
  11913. "autoload": {
  11914. "psr-4": {
  11915. "Spatie\\LaravelRay\\": "src"
  11916. }
  11917. },
  11918. "notification-url": "https://packagist.org/downloads/",
  11919. "license": [
  11920. "MIT"
  11921. ],
  11922. "authors": [
  11923. {
  11924. "name": "Freek Van der Herten",
  11925. "email": "freek@spatie.be",
  11926. "homepage": "https://spatie.be",
  11927. "role": "Developer"
  11928. }
  11929. ],
  11930. "description": "Easily debug Laravel apps",
  11931. "homepage": "https://github.com/spatie/laravel-ray",
  11932. "keywords": [
  11933. "laravel-ray",
  11934. "spatie"
  11935. ],
  11936. "support": {
  11937. "issues": "https://github.com/spatie/laravel-ray/issues",
  11938. "source": "https://github.com/spatie/laravel-ray/tree/1.37.1"
  11939. },
  11940. "funding": [
  11941. {
  11942. "url": "https://github.com/sponsors/spatie",
  11943. "type": "github"
  11944. },
  11945. {
  11946. "url": "https://spatie.be/open-source/support-us",
  11947. "type": "other"
  11948. }
  11949. ],
  11950. "time": "2024-07-12T12:35:17+00:00"
  11951. },
  11952. {
  11953. "name": "spatie/macroable",
  11954. "version": "2.0.0",
  11955. "source": {
  11956. "type": "git",
  11957. "url": "https://github.com/spatie/macroable.git",
  11958. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  11959. },
  11960. "dist": {
  11961. "type": "zip",
  11962. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  11963. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  11964. "shasum": ""
  11965. },
  11966. "require": {
  11967. "php": "^8.0"
  11968. },
  11969. "require-dev": {
  11970. "phpunit/phpunit": "^8.0|^9.3"
  11971. },
  11972. "type": "library",
  11973. "autoload": {
  11974. "psr-4": {
  11975. "Spatie\\Macroable\\": "src"
  11976. }
  11977. },
  11978. "notification-url": "https://packagist.org/downloads/",
  11979. "license": [
  11980. "MIT"
  11981. ],
  11982. "authors": [
  11983. {
  11984. "name": "Freek Van der Herten",
  11985. "email": "freek@spatie.be",
  11986. "homepage": "https://spatie.be",
  11987. "role": "Developer"
  11988. }
  11989. ],
  11990. "description": "A trait to dynamically add methods to a class",
  11991. "homepage": "https://github.com/spatie/macroable",
  11992. "keywords": [
  11993. "macroable",
  11994. "spatie"
  11995. ],
  11996. "support": {
  11997. "issues": "https://github.com/spatie/macroable/issues",
  11998. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  11999. },
  12000. "time": "2021-03-26T22:39:02+00:00"
  12001. },
  12002. {
  12003. "name": "spatie/ray",
  12004. "version": "1.41.2",
  12005. "source": {
  12006. "type": "git",
  12007. "url": "https://github.com/spatie/ray.git",
  12008. "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc"
  12009. },
  12010. "dist": {
  12011. "type": "zip",
  12012. "url": "https://api.github.com/repos/spatie/ray/zipball/c44f8cfbf82c69909b505de61d8d3f2d324e93fc",
  12013. "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc",
  12014. "shasum": ""
  12015. },
  12016. "require": {
  12017. "ext-curl": "*",
  12018. "ext-json": "*",
  12019. "php": "^7.3|^8.0",
  12020. "ramsey/uuid": "^3.0|^4.1",
  12021. "spatie/backtrace": "^1.1",
  12022. "spatie/macroable": "^1.0|^2.0",
  12023. "symfony/stopwatch": "^4.0|^5.1|^6.0|^7.0",
  12024. "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3"
  12025. },
  12026. "require-dev": {
  12027. "illuminate/support": "6.x|^8.18|^9.0",
  12028. "nesbot/carbon": "^2.63",
  12029. "pestphp/pest": "^1.22",
  12030. "phpstan/phpstan": "^1.10",
  12031. "phpunit/phpunit": "^9.5",
  12032. "rector/rector": "^0.19.2",
  12033. "spatie/phpunit-snapshot-assertions": "^4.2",
  12034. "spatie/test-time": "^1.2"
  12035. },
  12036. "bin": [
  12037. "bin/remove-ray.sh"
  12038. ],
  12039. "type": "library",
  12040. "extra": {
  12041. "branch-alias": {
  12042. "dev-main": "1.x-dev"
  12043. }
  12044. },
  12045. "autoload": {
  12046. "files": [
  12047. "src/helpers.php"
  12048. ],
  12049. "psr-4": {
  12050. "Spatie\\Ray\\": "src"
  12051. }
  12052. },
  12053. "notification-url": "https://packagist.org/downloads/",
  12054. "license": [
  12055. "MIT"
  12056. ],
  12057. "authors": [
  12058. {
  12059. "name": "Freek Van der Herten",
  12060. "email": "freek@spatie.be",
  12061. "homepage": "https://spatie.be",
  12062. "role": "Developer"
  12063. }
  12064. ],
  12065. "description": "Debug with Ray to fix problems faster",
  12066. "homepage": "https://github.com/spatie/ray",
  12067. "keywords": [
  12068. "ray",
  12069. "spatie"
  12070. ],
  12071. "support": {
  12072. "issues": "https://github.com/spatie/ray/issues",
  12073. "source": "https://github.com/spatie/ray/tree/1.41.2"
  12074. },
  12075. "funding": [
  12076. {
  12077. "url": "https://github.com/sponsors/spatie",
  12078. "type": "github"
  12079. },
  12080. {
  12081. "url": "https://spatie.be/open-source/support-us",
  12082. "type": "other"
  12083. }
  12084. ],
  12085. "time": "2024-04-24T14:21:46+00:00"
  12086. },
  12087. {
  12088. "name": "symfony/polyfill-iconv",
  12089. "version": "v1.31.0",
  12090. "source": {
  12091. "type": "git",
  12092. "url": "https://github.com/symfony/polyfill-iconv.git",
  12093. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  12094. },
  12095. "dist": {
  12096. "type": "zip",
  12097. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  12098. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  12099. "shasum": ""
  12100. },
  12101. "require": {
  12102. "php": ">=7.2"
  12103. },
  12104. "provide": {
  12105. "ext-iconv": "*"
  12106. },
  12107. "suggest": {
  12108. "ext-iconv": "For best performance"
  12109. },
  12110. "type": "library",
  12111. "extra": {
  12112. "thanks": {
  12113. "name": "symfony/polyfill",
  12114. "url": "https://github.com/symfony/polyfill"
  12115. }
  12116. },
  12117. "autoload": {
  12118. "files": [
  12119. "bootstrap.php"
  12120. ],
  12121. "psr-4": {
  12122. "Symfony\\Polyfill\\Iconv\\": ""
  12123. }
  12124. },
  12125. "notification-url": "https://packagist.org/downloads/",
  12126. "license": [
  12127. "MIT"
  12128. ],
  12129. "authors": [
  12130. {
  12131. "name": "Nicolas Grekas",
  12132. "email": "p@tchwork.com"
  12133. },
  12134. {
  12135. "name": "Symfony Community",
  12136. "homepage": "https://symfony.com/contributors"
  12137. }
  12138. ],
  12139. "description": "Symfony polyfill for the Iconv extension",
  12140. "homepage": "https://symfony.com",
  12141. "keywords": [
  12142. "compatibility",
  12143. "iconv",
  12144. "polyfill",
  12145. "portable",
  12146. "shim"
  12147. ],
  12148. "support": {
  12149. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  12150. },
  12151. "funding": [
  12152. {
  12153. "url": "https://symfony.com/sponsor",
  12154. "type": "custom"
  12155. },
  12156. {
  12157. "url": "https://github.com/fabpot",
  12158. "type": "github"
  12159. },
  12160. {
  12161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12162. "type": "tidelift"
  12163. }
  12164. ],
  12165. "time": "2024-09-09T11:45:10+00:00"
  12166. },
  12167. {
  12168. "name": "symfony/stopwatch",
  12169. "version": "v7.1.1",
  12170. "source": {
  12171. "type": "git",
  12172. "url": "https://github.com/symfony/stopwatch.git",
  12173. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  12174. },
  12175. "dist": {
  12176. "type": "zip",
  12177. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  12178. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  12179. "shasum": ""
  12180. },
  12181. "require": {
  12182. "php": ">=8.2",
  12183. "symfony/service-contracts": "^2.5|^3"
  12184. },
  12185. "type": "library",
  12186. "autoload": {
  12187. "psr-4": {
  12188. "Symfony\\Component\\Stopwatch\\": ""
  12189. },
  12190. "exclude-from-classmap": [
  12191. "/Tests/"
  12192. ]
  12193. },
  12194. "notification-url": "https://packagist.org/downloads/",
  12195. "license": [
  12196. "MIT"
  12197. ],
  12198. "authors": [
  12199. {
  12200. "name": "Fabien Potencier",
  12201. "email": "fabien@symfony.com"
  12202. },
  12203. {
  12204. "name": "Symfony Community",
  12205. "homepage": "https://symfony.com/contributors"
  12206. }
  12207. ],
  12208. "description": "Provides a way to profile code",
  12209. "homepage": "https://symfony.com",
  12210. "support": {
  12211. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  12212. },
  12213. "funding": [
  12214. {
  12215. "url": "https://symfony.com/sponsor",
  12216. "type": "custom"
  12217. },
  12218. {
  12219. "url": "https://github.com/fabpot",
  12220. "type": "github"
  12221. },
  12222. {
  12223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12224. "type": "tidelift"
  12225. }
  12226. ],
  12227. "time": "2024-05-31T14:57:53+00:00"
  12228. },
  12229. {
  12230. "name": "symfony/yaml",
  12231. "version": "v7.1.4",
  12232. "source": {
  12233. "type": "git",
  12234. "url": "https://github.com/symfony/yaml.git",
  12235. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b"
  12236. },
  12237. "dist": {
  12238. "type": "zip",
  12239. "url": "https://api.github.com/repos/symfony/yaml/zipball/92e080b851c1c655c786a2da77f188f2dccd0f4b",
  12240. "reference": "92e080b851c1c655c786a2da77f188f2dccd0f4b",
  12241. "shasum": ""
  12242. },
  12243. "require": {
  12244. "php": ">=8.2",
  12245. "symfony/polyfill-ctype": "^1.8"
  12246. },
  12247. "conflict": {
  12248. "symfony/console": "<6.4"
  12249. },
  12250. "require-dev": {
  12251. "symfony/console": "^6.4|^7.0"
  12252. },
  12253. "bin": [
  12254. "Resources/bin/yaml-lint"
  12255. ],
  12256. "type": "library",
  12257. "autoload": {
  12258. "psr-4": {
  12259. "Symfony\\Component\\Yaml\\": ""
  12260. },
  12261. "exclude-from-classmap": [
  12262. "/Tests/"
  12263. ]
  12264. },
  12265. "notification-url": "https://packagist.org/downloads/",
  12266. "license": [
  12267. "MIT"
  12268. ],
  12269. "authors": [
  12270. {
  12271. "name": "Fabien Potencier",
  12272. "email": "fabien@symfony.com"
  12273. },
  12274. {
  12275. "name": "Symfony Community",
  12276. "homepage": "https://symfony.com/contributors"
  12277. }
  12278. ],
  12279. "description": "Loads and dumps YAML files",
  12280. "homepage": "https://symfony.com",
  12281. "support": {
  12282. "source": "https://github.com/symfony/yaml/tree/v7.1.4"
  12283. },
  12284. "funding": [
  12285. {
  12286. "url": "https://symfony.com/sponsor",
  12287. "type": "custom"
  12288. },
  12289. {
  12290. "url": "https://github.com/fabpot",
  12291. "type": "github"
  12292. },
  12293. {
  12294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12295. "type": "tidelift"
  12296. }
  12297. ],
  12298. "time": "2024-08-12T09:59:40+00:00"
  12299. },
  12300. {
  12301. "name": "theseer/tokenizer",
  12302. "version": "1.2.3",
  12303. "source": {
  12304. "type": "git",
  12305. "url": "https://github.com/theseer/tokenizer.git",
  12306. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12307. },
  12308. "dist": {
  12309. "type": "zip",
  12310. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12311. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12312. "shasum": ""
  12313. },
  12314. "require": {
  12315. "ext-dom": "*",
  12316. "ext-tokenizer": "*",
  12317. "ext-xmlwriter": "*",
  12318. "php": "^7.2 || ^8.0"
  12319. },
  12320. "type": "library",
  12321. "autoload": {
  12322. "classmap": [
  12323. "src/"
  12324. ]
  12325. },
  12326. "notification-url": "https://packagist.org/downloads/",
  12327. "license": [
  12328. "BSD-3-Clause"
  12329. ],
  12330. "authors": [
  12331. {
  12332. "name": "Arne Blankerts",
  12333. "email": "arne@blankerts.de",
  12334. "role": "Developer"
  12335. }
  12336. ],
  12337. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12338. "support": {
  12339. "issues": "https://github.com/theseer/tokenizer/issues",
  12340. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12341. },
  12342. "funding": [
  12343. {
  12344. "url": "https://github.com/theseer",
  12345. "type": "github"
  12346. }
  12347. ],
  12348. "time": "2024-03-03T12:36:25+00:00"
  12349. },
  12350. {
  12351. "name": "zbateson/mail-mime-parser",
  12352. "version": "3.0.3",
  12353. "source": {
  12354. "type": "git",
  12355. "url": "https://github.com/zbateson/mail-mime-parser.git",
  12356. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  12357. },
  12358. "dist": {
  12359. "type": "zip",
  12360. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  12361. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  12362. "shasum": ""
  12363. },
  12364. "require": {
  12365. "guzzlehttp/psr7": "^2.5",
  12366. "php": ">=8.0",
  12367. "php-di/php-di": "^6.0|^7.0",
  12368. "psr/log": "^1|^2|^3",
  12369. "zbateson/mb-wrapper": "^2.0",
  12370. "zbateson/stream-decorators": "^2.1"
  12371. },
  12372. "require-dev": {
  12373. "friendsofphp/php-cs-fixer": "*",
  12374. "monolog/monolog": "^2|^3",
  12375. "phpstan/phpstan": "*",
  12376. "phpunit/phpunit": "^9.6"
  12377. },
  12378. "suggest": {
  12379. "ext-iconv": "For best support/performance",
  12380. "ext-mbstring": "For best support/performance"
  12381. },
  12382. "type": "library",
  12383. "autoload": {
  12384. "psr-4": {
  12385. "ZBateson\\MailMimeParser\\": "src/"
  12386. }
  12387. },
  12388. "notification-url": "https://packagist.org/downloads/",
  12389. "license": [
  12390. "BSD-2-Clause"
  12391. ],
  12392. "authors": [
  12393. {
  12394. "name": "Zaahid Bateson"
  12395. },
  12396. {
  12397. "name": "Contributors",
  12398. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  12399. }
  12400. ],
  12401. "description": "MIME email message parser",
  12402. "homepage": "https://mail-mime-parser.org",
  12403. "keywords": [
  12404. "MimeMailParser",
  12405. "email",
  12406. "mail",
  12407. "mailparse",
  12408. "mime",
  12409. "mimeparse",
  12410. "parser",
  12411. "php-imap"
  12412. ],
  12413. "support": {
  12414. "docs": "https://mail-mime-parser.org/#usage-guide",
  12415. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  12416. "source": "https://github.com/zbateson/mail-mime-parser"
  12417. },
  12418. "funding": [
  12419. {
  12420. "url": "https://github.com/zbateson",
  12421. "type": "github"
  12422. }
  12423. ],
  12424. "time": "2024-08-10T18:44:09+00:00"
  12425. },
  12426. {
  12427. "name": "zbateson/mb-wrapper",
  12428. "version": "2.0.0",
  12429. "source": {
  12430. "type": "git",
  12431. "url": "https://github.com/zbateson/mb-wrapper.git",
  12432. "reference": "9e4373a153585d12b6c621ac4a6bb143264d4619"
  12433. },
  12434. "dist": {
  12435. "type": "zip",
  12436. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/9e4373a153585d12b6c621ac4a6bb143264d4619",
  12437. "reference": "9e4373a153585d12b6c621ac4a6bb143264d4619",
  12438. "shasum": ""
  12439. },
  12440. "require": {
  12441. "php": ">=8.0",
  12442. "symfony/polyfill-iconv": "^1.9",
  12443. "symfony/polyfill-mbstring": "^1.9"
  12444. },
  12445. "require-dev": {
  12446. "friendsofphp/php-cs-fixer": "*",
  12447. "phpstan/phpstan": "*",
  12448. "phpunit/phpunit": "<10.0"
  12449. },
  12450. "suggest": {
  12451. "ext-iconv": "For best support/performance",
  12452. "ext-mbstring": "For best support/performance"
  12453. },
  12454. "type": "library",
  12455. "autoload": {
  12456. "psr-4": {
  12457. "ZBateson\\MbWrapper\\": "src/"
  12458. }
  12459. },
  12460. "notification-url": "https://packagist.org/downloads/",
  12461. "license": [
  12462. "BSD-2-Clause"
  12463. ],
  12464. "authors": [
  12465. {
  12466. "name": "Zaahid Bateson"
  12467. }
  12468. ],
  12469. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  12470. "keywords": [
  12471. "charset",
  12472. "encoding",
  12473. "http",
  12474. "iconv",
  12475. "mail",
  12476. "mb",
  12477. "mb_convert_encoding",
  12478. "mbstring",
  12479. "mime",
  12480. "multibyte",
  12481. "string"
  12482. ],
  12483. "support": {
  12484. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  12485. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.0"
  12486. },
  12487. "funding": [
  12488. {
  12489. "url": "https://github.com/zbateson",
  12490. "type": "github"
  12491. }
  12492. ],
  12493. "time": "2024-03-20T01:38:07+00:00"
  12494. },
  12495. {
  12496. "name": "zbateson/stream-decorators",
  12497. "version": "2.1.1",
  12498. "source": {
  12499. "type": "git",
  12500. "url": "https://github.com/zbateson/stream-decorators.git",
  12501. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  12502. },
  12503. "dist": {
  12504. "type": "zip",
  12505. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  12506. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  12507. "shasum": ""
  12508. },
  12509. "require": {
  12510. "guzzlehttp/psr7": "^2.5",
  12511. "php": ">=8.0",
  12512. "zbateson/mb-wrapper": "^2.0"
  12513. },
  12514. "require-dev": {
  12515. "friendsofphp/php-cs-fixer": "*",
  12516. "phpstan/phpstan": "*",
  12517. "phpunit/phpunit": "^9.6|^10.0"
  12518. },
  12519. "type": "library",
  12520. "autoload": {
  12521. "psr-4": {
  12522. "ZBateson\\StreamDecorators\\": "src/"
  12523. }
  12524. },
  12525. "notification-url": "https://packagist.org/downloads/",
  12526. "license": [
  12527. "BSD-2-Clause"
  12528. ],
  12529. "authors": [
  12530. {
  12531. "name": "Zaahid Bateson"
  12532. }
  12533. ],
  12534. "description": "PHP psr7 stream decorators for mime message part streams",
  12535. "keywords": [
  12536. "base64",
  12537. "charset",
  12538. "decorators",
  12539. "mail",
  12540. "mime",
  12541. "psr7",
  12542. "quoted-printable",
  12543. "stream",
  12544. "uuencode"
  12545. ],
  12546. "support": {
  12547. "issues": "https://github.com/zbateson/stream-decorators/issues",
  12548. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  12549. },
  12550. "funding": [
  12551. {
  12552. "url": "https://github.com/zbateson",
  12553. "type": "github"
  12554. }
  12555. ],
  12556. "time": "2024-04-29T21:42:39+00:00"
  12557. }
  12558. ],
  12559. "aliases": [],
  12560. "minimum-stability": "stable",
  12561. "stability-flags": [],
  12562. "prefer-stable": true,
  12563. "prefer-lowest": false,
  12564. "platform": {
  12565. "php": "^8.2",
  12566. "ext-bcmath": "*",
  12567. "ext-intl": "*"
  12568. },
  12569. "platform-dev": [],
  12570. "plugin-api-version": "2.6.0"
  12571. }