composer.lock 292 KB

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