composer.lock 339 KB

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