composer.lock 325 KB

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