composer.lock 285 KB

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