composer.lock 324 KB

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