composer.lock 324 KB

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