composer.lock 397 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038
  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": "320f59e9a21e1e21120a39076a4f693a",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.10.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/459f2781e1a08d52ee56b0b1444086e038561e3f",
  20. "reference": "459f2781e1a08d52ee56b0b1444086e038561e3f",
  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. "ext-json": "*",
  31. "php": "^7.4 || ^8.0"
  32. },
  33. "require-dev": {
  34. "php-coveralls/php-coveralls": "^2.2",
  35. "phpunit/phpunit": "^9.0",
  36. "vimeo/psalm": "4.25.0"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "Brick\\Math\\": "src/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "description": "Arbitrary-precision arithmetic library",
  49. "keywords": [
  50. "Arbitrary-precision",
  51. "BigInteger",
  52. "BigRational",
  53. "arithmetic",
  54. "bigdecimal",
  55. "bignum",
  56. "brick",
  57. "math"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/brick/math/issues",
  61. "source": "https://github.com/brick/math/tree/0.10.2"
  62. },
  63. "funding": [
  64. {
  65. "url": "https://github.com/BenMorel",
  66. "type": "github"
  67. }
  68. ],
  69. "time": "2022-08-10T22:54:19+00:00"
  70. },
  71. {
  72. "name": "dflydev/dot-access-data",
  73. "version": "v3.0.1",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  77. "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
  82. "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "php": "^7.1 || ^8.0"
  93. },
  94. "require-dev": {
  95. "phpstan/phpstan": "^0.12.42",
  96. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  97. "scrutinizer/ocular": "1.6.0",
  98. "squizlabs/php_codesniffer": "^3.5",
  99. "vimeo/psalm": "^3.14"
  100. },
  101. "type": "library",
  102. "extra": {
  103. "branch-alias": {
  104. "dev-main": "3.x-dev"
  105. }
  106. },
  107. "autoload": {
  108. "psr-4": {
  109. "Dflydev\\DotAccessData\\": "src/"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "MIT"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Dragonfly Development Inc.",
  119. "email": "info@dflydev.com",
  120. "homepage": "http://dflydev.com"
  121. },
  122. {
  123. "name": "Beau Simensen",
  124. "email": "beau@dflydev.com",
  125. "homepage": "http://beausimensen.com"
  126. },
  127. {
  128. "name": "Carlos Frutos",
  129. "email": "carlos@kiwing.it",
  130. "homepage": "https://github.com/cfrutos"
  131. },
  132. {
  133. "name": "Colin O'Dell",
  134. "email": "colinodell@gmail.com",
  135. "homepage": "https://www.colinodell.com"
  136. }
  137. ],
  138. "description": "Given a deep data structure, access data by dot notation.",
  139. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  140. "keywords": [
  141. "access",
  142. "data",
  143. "dot",
  144. "notation"
  145. ],
  146. "support": {
  147. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  148. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
  149. },
  150. "time": "2021-08-13T13:06:58+00:00"
  151. },
  152. {
  153. "name": "doctrine/deprecations",
  154. "version": "v1.0.0",
  155. "source": {
  156. "type": "git",
  157. "url": "https://github.com/doctrine/deprecations.git",
  158. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de"
  159. },
  160. "dist": {
  161. "type": "zip",
  162. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  163. "reference": "0e2a4f1f8cdfc7a92ec3b01c9334898c806b30de",
  164. "shasum": "",
  165. "mirrors": [
  166. {
  167. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  168. "preferred": true
  169. }
  170. ]
  171. },
  172. "require": {
  173. "php": "^7.1|^8.0"
  174. },
  175. "require-dev": {
  176. "doctrine/coding-standard": "^9",
  177. "phpunit/phpunit": "^7.5|^8.5|^9.5",
  178. "psr/log": "^1|^2|^3"
  179. },
  180. "suggest": {
  181. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  182. },
  183. "type": "library",
  184. "autoload": {
  185. "psr-4": {
  186. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "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.",
  194. "homepage": "https://www.doctrine-project.org/",
  195. "support": {
  196. "issues": "https://github.com/doctrine/deprecations/issues",
  197. "source": "https://github.com/doctrine/deprecations/tree/v1.0.0"
  198. },
  199. "time": "2022-05-02T15:47:09+00:00"
  200. },
  201. {
  202. "name": "doctrine/inflector",
  203. "version": "2.0.4",
  204. "source": {
  205. "type": "git",
  206. "url": "https://github.com/doctrine/inflector.git",
  207. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
  208. },
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  212. "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
  213. "shasum": "",
  214. "mirrors": [
  215. {
  216. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  217. "preferred": true
  218. }
  219. ]
  220. },
  221. "require": {
  222. "php": "^7.2 || ^8.0"
  223. },
  224. "require-dev": {
  225. "doctrine/coding-standard": "^8.2",
  226. "phpstan/phpstan": "^0.12",
  227. "phpstan/phpstan-phpunit": "^0.12",
  228. "phpstan/phpstan-strict-rules": "^0.12",
  229. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  230. "vimeo/psalm": "^4.10"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Guilherme Blanco",
  245. "email": "guilhermeblanco@gmail.com"
  246. },
  247. {
  248. "name": "Roman Borschel",
  249. "email": "roman@code-factory.org"
  250. },
  251. {
  252. "name": "Benjamin Eberlei",
  253. "email": "kontakt@beberlei.de"
  254. },
  255. {
  256. "name": "Jonathan Wage",
  257. "email": "jonwage@gmail.com"
  258. },
  259. {
  260. "name": "Johannes Schmitt",
  261. "email": "schmittjoh@gmail.com"
  262. }
  263. ],
  264. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  265. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  266. "keywords": [
  267. "inflection",
  268. "inflector",
  269. "lowercase",
  270. "manipulation",
  271. "php",
  272. "plural",
  273. "singular",
  274. "strings",
  275. "uppercase",
  276. "words"
  277. ],
  278. "support": {
  279. "issues": "https://github.com/doctrine/inflector/issues",
  280. "source": "https://github.com/doctrine/inflector/tree/2.0.4"
  281. },
  282. "funding": [
  283. {
  284. "url": "https://www.doctrine-project.org/sponsorship.html",
  285. "type": "custom"
  286. },
  287. {
  288. "url": "https://www.patreon.com/phpdoctrine",
  289. "type": "patreon"
  290. },
  291. {
  292. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  293. "type": "tidelift"
  294. }
  295. ],
  296. "time": "2021-10-22T20:16:43+00:00"
  297. },
  298. {
  299. "name": "doctrine/lexer",
  300. "version": "2.1.0",
  301. "source": {
  302. "type": "git",
  303. "url": "https://github.com/doctrine/lexer.git",
  304. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  305. },
  306. "dist": {
  307. "type": "zip",
  308. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  309. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  310. "shasum": "",
  311. "mirrors": [
  312. {
  313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  314. "preferred": true
  315. }
  316. ]
  317. },
  318. "require": {
  319. "doctrine/deprecations": "^1.0",
  320. "php": "^7.1 || ^8.0"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^9 || ^10",
  324. "phpstan/phpstan": "^1.3",
  325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  326. "psalm/plugin-phpunit": "^0.18.3",
  327. "vimeo/psalm": "^4.11 || ^5.0"
  328. },
  329. "type": "library",
  330. "autoload": {
  331. "psr-4": {
  332. "Doctrine\\Common\\Lexer\\": "src"
  333. }
  334. },
  335. "notification-url": "https://packagist.org/downloads/",
  336. "license": [
  337. "MIT"
  338. ],
  339. "authors": [
  340. {
  341. "name": "Guilherme Blanco",
  342. "email": "guilhermeblanco@gmail.com"
  343. },
  344. {
  345. "name": "Roman Borschel",
  346. "email": "roman@code-factory.org"
  347. },
  348. {
  349. "name": "Johannes Schmitt",
  350. "email": "schmittjoh@gmail.com"
  351. }
  352. ],
  353. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  354. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  355. "keywords": [
  356. "annotations",
  357. "docblock",
  358. "lexer",
  359. "parser",
  360. "php"
  361. ],
  362. "support": {
  363. "issues": "https://github.com/doctrine/lexer/issues",
  364. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  365. },
  366. "funding": [
  367. {
  368. "url": "https://www.doctrine-project.org/sponsorship.html",
  369. "type": "custom"
  370. },
  371. {
  372. "url": "https://www.patreon.com/phpdoctrine",
  373. "type": "patreon"
  374. },
  375. {
  376. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  377. "type": "tidelift"
  378. }
  379. ],
  380. "time": "2022-12-14T08:49:07+00:00"
  381. },
  382. {
  383. "name": "dragonmantank/cron-expression",
  384. "version": "v3.3.1",
  385. "source": {
  386. "type": "git",
  387. "url": "https://github.com/dragonmantank/cron-expression.git",
  388. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa"
  389. },
  390. "dist": {
  391. "type": "zip",
  392. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  393. "reference": "be85b3f05b46c39bbc0d95f6c071ddff669510fa",
  394. "shasum": "",
  395. "mirrors": [
  396. {
  397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  398. "preferred": true
  399. }
  400. ]
  401. },
  402. "require": {
  403. "php": "^7.2|^8.0",
  404. "webmozart/assert": "^1.0"
  405. },
  406. "replace": {
  407. "mtdowling/cron-expression": "^1.0"
  408. },
  409. "require-dev": {
  410. "phpstan/extension-installer": "^1.0",
  411. "phpstan/phpstan": "^1.0",
  412. "phpstan/phpstan-webmozart-assert": "^1.0",
  413. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  414. },
  415. "type": "library",
  416. "autoload": {
  417. "psr-4": {
  418. "Cron\\": "src/Cron/"
  419. }
  420. },
  421. "notification-url": "https://packagist.org/downloads/",
  422. "license": [
  423. "MIT"
  424. ],
  425. "authors": [
  426. {
  427. "name": "Chris Tankersley",
  428. "email": "chris@ctankersley.com",
  429. "homepage": "https://github.com/dragonmantank"
  430. }
  431. ],
  432. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  433. "keywords": [
  434. "cron",
  435. "schedule"
  436. ],
  437. "support": {
  438. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  439. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.1"
  440. },
  441. "funding": [
  442. {
  443. "url": "https://github.com/dragonmantank",
  444. "type": "github"
  445. }
  446. ],
  447. "time": "2022-01-18T15:43:28+00:00"
  448. },
  449. {
  450. "name": "egulias/email-validator",
  451. "version": "3.2.5",
  452. "source": {
  453. "type": "git",
  454. "url": "https://github.com/egulias/EmailValidator.git",
  455. "reference": "b531a2311709443320c786feb4519cfaf94af796"
  456. },
  457. "dist": {
  458. "type": "zip",
  459. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b531a2311709443320c786feb4519cfaf94af796",
  460. "reference": "b531a2311709443320c786feb4519cfaf94af796",
  461. "shasum": "",
  462. "mirrors": [
  463. {
  464. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  465. "preferred": true
  466. }
  467. ]
  468. },
  469. "require": {
  470. "doctrine/lexer": "^1.2|^2",
  471. "php": ">=7.2",
  472. "symfony/polyfill-intl-idn": "^1.15"
  473. },
  474. "require-dev": {
  475. "phpunit/phpunit": "^8.5.8|^9.3.3",
  476. "vimeo/psalm": "^4"
  477. },
  478. "suggest": {
  479. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  480. },
  481. "type": "library",
  482. "extra": {
  483. "branch-alias": {
  484. "dev-master": "3.0.x-dev"
  485. }
  486. },
  487. "autoload": {
  488. "psr-4": {
  489. "Egulias\\EmailValidator\\": "src"
  490. }
  491. },
  492. "notification-url": "https://packagist.org/downloads/",
  493. "license": [
  494. "MIT"
  495. ],
  496. "authors": [
  497. {
  498. "name": "Eduardo Gulias Davis"
  499. }
  500. ],
  501. "description": "A library for validating emails against several RFCs",
  502. "homepage": "https://github.com/egulias/EmailValidator",
  503. "keywords": [
  504. "email",
  505. "emailvalidation",
  506. "emailvalidator",
  507. "validation",
  508. "validator"
  509. ],
  510. "support": {
  511. "issues": "https://github.com/egulias/EmailValidator/issues",
  512. "source": "https://github.com/egulias/EmailValidator/tree/3.2.5"
  513. },
  514. "funding": [
  515. {
  516. "url": "https://github.com/egulias",
  517. "type": "github"
  518. }
  519. ],
  520. "time": "2023-01-02T17:26:14+00:00"
  521. },
  522. {
  523. "name": "elfsundae/laravel-hashid",
  524. "version": "1.7.1",
  525. "source": {
  526. "type": "git",
  527. "url": "https://github.com/ElfSundae/laravel-hashid.git",
  528. "reference": "86df3130db08bfd9954daed64e1db7ceba8270e3"
  529. },
  530. "dist": {
  531. "type": "zip",
  532. "url": "https://api.github.com/repos/ElfSundae/laravel-hashid/zipball/86df3130db08bfd9954daed64e1db7ceba8270e3",
  533. "reference": "86df3130db08bfd9954daed64e1db7ceba8270e3",
  534. "shasum": "",
  535. "mirrors": [
  536. {
  537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  538. "preferred": true
  539. }
  540. ]
  541. },
  542. "require": {
  543. "elfsundae/urlsafe-base64": "^1.1",
  544. "hashids/hashids": "^2.0.4|^3.0|^4.0",
  545. "illuminate/console": "^5.0|^6.0|^7.0|^8.0|^9.0",
  546. "illuminate/support": "^5.0|^6.0|^7.0|^8.0|^9.0",
  547. "jenssegers/optimus": "^1.0",
  548. "php": "^7.1|^8.0",
  549. "tuupola/base62": "^2.0"
  550. },
  551. "require-dev": {
  552. "mockery/mockery": "^1.0",
  553. "orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0",
  554. "phpunit/phpunit": "^5.7|^6.0|^7.0|^8.0|^9.0"
  555. },
  556. "suggest": {
  557. "elfsundae/laravel-hashid-uuid": "Shorten UUID encoding"
  558. },
  559. "type": "library",
  560. "extra": {
  561. "branch-alias": {
  562. "dev-master": "1.7-dev"
  563. },
  564. "laravel": {
  565. "providers": [
  566. "ElfSundae\\Laravel\\Hashid\\HashidServiceProvider"
  567. ],
  568. "aliases": {
  569. "Hashid": "ElfSundae\\Laravel\\Hashid\\Facades\\Hashid"
  570. }
  571. }
  572. },
  573. "autoload": {
  574. "files": [
  575. "src/helpers.php"
  576. ],
  577. "psr-4": {
  578. "ElfSundae\\Laravel\\Hashid\\": "src/"
  579. }
  580. },
  581. "notification-url": "https://packagist.org/downloads/",
  582. "license": [
  583. "MIT"
  584. ],
  585. "authors": [
  586. {
  587. "name": "Elf Sundae",
  588. "email": "elf.sundae@gmail.com",
  589. "homepage": "https://0x123.com"
  590. }
  591. ],
  592. "description": "A simple, elegant way to obfuscate your data by generating reversible, non-sequential, URL-safe identifiers.",
  593. "homepage": "https://github.com/ElfSundae/laravel-hashid",
  594. "keywords": [
  595. "URL safe",
  596. "base62",
  597. "base64",
  598. "hashid",
  599. "hashids",
  600. "obfuscate",
  601. "optimus"
  602. ],
  603. "support": {
  604. "issues": "https://github.com/ElfSundae/laravel-hashid/issues",
  605. "source": "https://github.com/ElfSundae/laravel-hashid/tree/1.7.1"
  606. },
  607. "time": "2022-05-01T19:52:44+00:00"
  608. },
  609. {
  610. "name": "elfsundae/urlsafe-base64",
  611. "version": "1.1.1",
  612. "source": {
  613. "type": "git",
  614. "url": "https://github.com/ElfSundae/urlsafe-base64.git",
  615. "reference": "fffdc235475308068e92c8bb1dec6b4bc7b95e73"
  616. },
  617. "dist": {
  618. "type": "zip",
  619. "url": "https://api.github.com/repos/ElfSundae/urlsafe-base64/zipball/fffdc235475308068e92c8bb1dec6b4bc7b95e73",
  620. "reference": "fffdc235475308068e92c8bb1dec6b4bc7b95e73",
  621. "shasum": "",
  622. "mirrors": [
  623. {
  624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  625. "preferred": true
  626. }
  627. ]
  628. },
  629. "require-dev": {
  630. "paragonie/random_compat": "~2.0",
  631. "phpunit/phpunit": "~5.4"
  632. },
  633. "type": "library",
  634. "autoload": {
  635. "files": [
  636. "src/helpers.php"
  637. ]
  638. },
  639. "notification-url": "https://packagist.org/downloads/",
  640. "license": [
  641. "MIT"
  642. ],
  643. "authors": [
  644. {
  645. "name": "Elf Sundae",
  646. "email": "elf.sundae@gmail.com",
  647. "homepage": "https://0x123.com"
  648. }
  649. ],
  650. "description": "URL safe base64 encoding for PHP",
  651. "homepage": "https://github.com/ElfSundae/urlsafe-base64",
  652. "keywords": [
  653. "base64",
  654. "urlsafe"
  655. ],
  656. "support": {
  657. "issues": "https://github.com/ElfSundae/urlsafe-base64/issues",
  658. "source": "https://github.com/ElfSundae/urlsafe-base64/tree/master"
  659. },
  660. "time": "2017-12-11T14:50:59+00:00"
  661. },
  662. {
  663. "name": "fruitcake/php-cors",
  664. "version": "v1.2.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/fruitcake/php-cors.git",
  668. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/58571acbaa5f9f462c9c77e911700ac66f446d4e",
  673. "reference": "58571acbaa5f9f462c9c77e911700ac66f446d4e",
  674. "shasum": "",
  675. "mirrors": [
  676. {
  677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  678. "preferred": true
  679. }
  680. ]
  681. },
  682. "require": {
  683. "php": "^7.4|^8.0",
  684. "symfony/http-foundation": "^4.4|^5.4|^6"
  685. },
  686. "require-dev": {
  687. "phpstan/phpstan": "^1.4",
  688. "phpunit/phpunit": "^9",
  689. "squizlabs/php_codesniffer": "^3.5"
  690. },
  691. "type": "library",
  692. "extra": {
  693. "branch-alias": {
  694. "dev-main": "1.1-dev"
  695. }
  696. },
  697. "autoload": {
  698. "psr-4": {
  699. "Fruitcake\\Cors\\": "src/"
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "Fruitcake",
  709. "homepage": "https://fruitcake.nl"
  710. },
  711. {
  712. "name": "Barryvdh",
  713. "email": "barryvdh@gmail.com"
  714. }
  715. ],
  716. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  717. "homepage": "https://github.com/fruitcake/php-cors",
  718. "keywords": [
  719. "cors",
  720. "laravel",
  721. "symfony"
  722. ],
  723. "support": {
  724. "issues": "https://github.com/fruitcake/php-cors/issues",
  725. "source": "https://github.com/fruitcake/php-cors/tree/v1.2.0"
  726. },
  727. "funding": [
  728. {
  729. "url": "https://fruitcake.nl",
  730. "type": "custom"
  731. },
  732. {
  733. "url": "https://github.com/barryvdh",
  734. "type": "github"
  735. }
  736. ],
  737. "time": "2022-02-20T15:07:15+00:00"
  738. },
  739. {
  740. "name": "graham-campbell/result-type",
  741. "version": "v1.1.0",
  742. "source": {
  743. "type": "git",
  744. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  745. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
  746. },
  747. "dist": {
  748. "type": "zip",
  749. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
  750. "reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
  751. "shasum": "",
  752. "mirrors": [
  753. {
  754. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  755. "preferred": true
  756. }
  757. ]
  758. },
  759. "require": {
  760. "php": "^7.2.5 || ^8.0",
  761. "phpoption/phpoption": "^1.9"
  762. },
  763. "require-dev": {
  764. "phpunit/phpunit": "^8.5.28 || ^9.5.21"
  765. },
  766. "type": "library",
  767. "autoload": {
  768. "psr-4": {
  769. "GrahamCampbell\\ResultType\\": "src/"
  770. }
  771. },
  772. "notification-url": "https://packagist.org/downloads/",
  773. "license": [
  774. "MIT"
  775. ],
  776. "authors": [
  777. {
  778. "name": "Graham Campbell",
  779. "email": "hello@gjcampbell.co.uk",
  780. "homepage": "https://github.com/GrahamCampbell"
  781. }
  782. ],
  783. "description": "An Implementation Of The Result Type",
  784. "keywords": [
  785. "Graham Campbell",
  786. "GrahamCampbell",
  787. "Result Type",
  788. "Result-Type",
  789. "result"
  790. ],
  791. "support": {
  792. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  793. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
  794. },
  795. "funding": [
  796. {
  797. "url": "https://github.com/GrahamCampbell",
  798. "type": "github"
  799. },
  800. {
  801. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  802. "type": "tidelift"
  803. }
  804. ],
  805. "time": "2022-07-30T15:56:11+00:00"
  806. },
  807. {
  808. "name": "guzzlehttp/guzzle",
  809. "version": "7.5.1",
  810. "source": {
  811. "type": "git",
  812. "url": "https://github.com/guzzle/guzzle.git",
  813. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9"
  814. },
  815. "dist": {
  816. "type": "zip",
  817. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  818. "reference": "b964ca597e86b752cd994f27293e9fa6b6a95ed9",
  819. "shasum": "",
  820. "mirrors": [
  821. {
  822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  823. "preferred": true
  824. }
  825. ]
  826. },
  827. "require": {
  828. "ext-json": "*",
  829. "guzzlehttp/promises": "^1.5",
  830. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  831. "php": "^7.2.5 || ^8.0",
  832. "psr/http-client": "^1.0",
  833. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  834. },
  835. "provide": {
  836. "psr/http-client-implementation": "1.0"
  837. },
  838. "require-dev": {
  839. "bamarni/composer-bin-plugin": "^1.8.1",
  840. "ext-curl": "*",
  841. "php-http/client-integration-tests": "^3.0",
  842. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  843. "psr/log": "^1.1 || ^2.0 || ^3.0"
  844. },
  845. "suggest": {
  846. "ext-curl": "Required for CURL handler support",
  847. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  848. "psr/log": "Required for using the Log middleware"
  849. },
  850. "type": "library",
  851. "extra": {
  852. "bamarni-bin": {
  853. "bin-links": true,
  854. "forward-command": false
  855. },
  856. "branch-alias": {
  857. "dev-master": "7.5-dev"
  858. }
  859. },
  860. "autoload": {
  861. "files": [
  862. "src/functions_include.php"
  863. ],
  864. "psr-4": {
  865. "GuzzleHttp\\": "src/"
  866. }
  867. },
  868. "notification-url": "https://packagist.org/downloads/",
  869. "license": [
  870. "MIT"
  871. ],
  872. "authors": [
  873. {
  874. "name": "Graham Campbell",
  875. "email": "hello@gjcampbell.co.uk",
  876. "homepage": "https://github.com/GrahamCampbell"
  877. },
  878. {
  879. "name": "Michael Dowling",
  880. "email": "mtdowling@gmail.com",
  881. "homepage": "https://github.com/mtdowling"
  882. },
  883. {
  884. "name": "Jeremy Lindblom",
  885. "email": "jeremeamia@gmail.com",
  886. "homepage": "https://github.com/jeremeamia"
  887. },
  888. {
  889. "name": "George Mponos",
  890. "email": "gmponos@gmail.com",
  891. "homepage": "https://github.com/gmponos"
  892. },
  893. {
  894. "name": "Tobias Nyholm",
  895. "email": "tobias.nyholm@gmail.com",
  896. "homepage": "https://github.com/Nyholm"
  897. },
  898. {
  899. "name": "Márk Sági-Kazár",
  900. "email": "mark.sagikazar@gmail.com",
  901. "homepage": "https://github.com/sagikazarmark"
  902. },
  903. {
  904. "name": "Tobias Schultze",
  905. "email": "webmaster@tubo-world.de",
  906. "homepage": "https://github.com/Tobion"
  907. }
  908. ],
  909. "description": "Guzzle is a PHP HTTP client library",
  910. "keywords": [
  911. "client",
  912. "curl",
  913. "framework",
  914. "http",
  915. "http client",
  916. "psr-18",
  917. "psr-7",
  918. "rest",
  919. "web service"
  920. ],
  921. "support": {
  922. "issues": "https://github.com/guzzle/guzzle/issues",
  923. "source": "https://github.com/guzzle/guzzle/tree/7.5.1"
  924. },
  925. "funding": [
  926. {
  927. "url": "https://github.com/GrahamCampbell",
  928. "type": "github"
  929. },
  930. {
  931. "url": "https://github.com/Nyholm",
  932. "type": "github"
  933. },
  934. {
  935. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  936. "type": "tidelift"
  937. }
  938. ],
  939. "time": "2023-04-17T16:30:08+00:00"
  940. },
  941. {
  942. "name": "guzzlehttp/promises",
  943. "version": "1.5.2",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/guzzle/promises.git",
  947. "reference": "b94b2807d85443f9719887892882d0329d1e2598"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/guzzle/promises/zipball/b94b2807d85443f9719887892882d0329d1e2598",
  952. "reference": "b94b2807d85443f9719887892882d0329d1e2598",
  953. "shasum": "",
  954. "mirrors": [
  955. {
  956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  957. "preferred": true
  958. }
  959. ]
  960. },
  961. "require": {
  962. "php": ">=5.5"
  963. },
  964. "require-dev": {
  965. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  966. },
  967. "type": "library",
  968. "extra": {
  969. "branch-alias": {
  970. "dev-master": "1.5-dev"
  971. }
  972. },
  973. "autoload": {
  974. "files": [
  975. "src/functions_include.php"
  976. ],
  977. "psr-4": {
  978. "GuzzleHttp\\Promise\\": "src/"
  979. }
  980. },
  981. "notification-url": "https://packagist.org/downloads/",
  982. "license": [
  983. "MIT"
  984. ],
  985. "authors": [
  986. {
  987. "name": "Graham Campbell",
  988. "email": "hello@gjcampbell.co.uk",
  989. "homepage": "https://github.com/GrahamCampbell"
  990. },
  991. {
  992. "name": "Michael Dowling",
  993. "email": "mtdowling@gmail.com",
  994. "homepage": "https://github.com/mtdowling"
  995. },
  996. {
  997. "name": "Tobias Nyholm",
  998. "email": "tobias.nyholm@gmail.com",
  999. "homepage": "https://github.com/Nyholm"
  1000. },
  1001. {
  1002. "name": "Tobias Schultze",
  1003. "email": "webmaster@tubo-world.de",
  1004. "homepage": "https://github.com/Tobion"
  1005. }
  1006. ],
  1007. "description": "Guzzle promises library",
  1008. "keywords": [
  1009. "promise"
  1010. ],
  1011. "support": {
  1012. "issues": "https://github.com/guzzle/promises/issues",
  1013. "source": "https://github.com/guzzle/promises/tree/1.5.2"
  1014. },
  1015. "funding": [
  1016. {
  1017. "url": "https://github.com/GrahamCampbell",
  1018. "type": "github"
  1019. },
  1020. {
  1021. "url": "https://github.com/Nyholm",
  1022. "type": "github"
  1023. },
  1024. {
  1025. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1026. "type": "tidelift"
  1027. }
  1028. ],
  1029. "time": "2022-08-28T14:55:35+00:00"
  1030. },
  1031. {
  1032. "name": "guzzlehttp/psr7",
  1033. "version": "2.5.0",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/guzzle/psr7.git",
  1037. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  1042. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  1043. "shasum": "",
  1044. "mirrors": [
  1045. {
  1046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1047. "preferred": true
  1048. }
  1049. ]
  1050. },
  1051. "require": {
  1052. "php": "^7.2.5 || ^8.0",
  1053. "psr/http-factory": "^1.0",
  1054. "psr/http-message": "^1.1 || ^2.0",
  1055. "ralouphie/getallheaders": "^3.0"
  1056. },
  1057. "provide": {
  1058. "psr/http-factory-implementation": "1.0",
  1059. "psr/http-message-implementation": "1.0"
  1060. },
  1061. "require-dev": {
  1062. "bamarni/composer-bin-plugin": "^1.8.1",
  1063. "http-interop/http-factory-tests": "^0.9",
  1064. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1065. },
  1066. "suggest": {
  1067. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1068. },
  1069. "type": "library",
  1070. "extra": {
  1071. "bamarni-bin": {
  1072. "bin-links": true,
  1073. "forward-command": false
  1074. }
  1075. },
  1076. "autoload": {
  1077. "psr-4": {
  1078. "GuzzleHttp\\Psr7\\": "src/"
  1079. }
  1080. },
  1081. "notification-url": "https://packagist.org/downloads/",
  1082. "license": [
  1083. "MIT"
  1084. ],
  1085. "authors": [
  1086. {
  1087. "name": "Graham Campbell",
  1088. "email": "hello@gjcampbell.co.uk",
  1089. "homepage": "https://github.com/GrahamCampbell"
  1090. },
  1091. {
  1092. "name": "Michael Dowling",
  1093. "email": "mtdowling@gmail.com",
  1094. "homepage": "https://github.com/mtdowling"
  1095. },
  1096. {
  1097. "name": "George Mponos",
  1098. "email": "gmponos@gmail.com",
  1099. "homepage": "https://github.com/gmponos"
  1100. },
  1101. {
  1102. "name": "Tobias Nyholm",
  1103. "email": "tobias.nyholm@gmail.com",
  1104. "homepage": "https://github.com/Nyholm"
  1105. },
  1106. {
  1107. "name": "Márk Sági-Kazár",
  1108. "email": "mark.sagikazar@gmail.com",
  1109. "homepage": "https://github.com/sagikazarmark"
  1110. },
  1111. {
  1112. "name": "Tobias Schultze",
  1113. "email": "webmaster@tubo-world.de",
  1114. "homepage": "https://github.com/Tobion"
  1115. },
  1116. {
  1117. "name": "Márk Sági-Kazár",
  1118. "email": "mark.sagikazar@gmail.com",
  1119. "homepage": "https://sagikazarmark.hu"
  1120. }
  1121. ],
  1122. "description": "PSR-7 message implementation that also provides common utility methods",
  1123. "keywords": [
  1124. "http",
  1125. "message",
  1126. "psr-7",
  1127. "request",
  1128. "response",
  1129. "stream",
  1130. "uri",
  1131. "url"
  1132. ],
  1133. "support": {
  1134. "issues": "https://github.com/guzzle/psr7/issues",
  1135. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  1136. },
  1137. "funding": [
  1138. {
  1139. "url": "https://github.com/GrahamCampbell",
  1140. "type": "github"
  1141. },
  1142. {
  1143. "url": "https://github.com/Nyholm",
  1144. "type": "github"
  1145. },
  1146. {
  1147. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1148. "type": "tidelift"
  1149. }
  1150. ],
  1151. "time": "2023-04-17T16:11:26+00:00"
  1152. },
  1153. {
  1154. "name": "hashids/hashids",
  1155. "version": "4.1.0",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/vinkla/hashids.git",
  1159. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1164. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1165. "shasum": "",
  1166. "mirrors": [
  1167. {
  1168. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1169. "preferred": true
  1170. }
  1171. ]
  1172. },
  1173. "require": {
  1174. "ext-mbstring": "*",
  1175. "php": "^7.2 || ^8.0"
  1176. },
  1177. "require-dev": {
  1178. "phpunit/phpunit": "^8.0 || ^9.4",
  1179. "squizlabs/php_codesniffer": "^3.5"
  1180. },
  1181. "suggest": {
  1182. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1183. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1184. },
  1185. "type": "library",
  1186. "extra": {
  1187. "branch-alias": {
  1188. "dev-master": "4.1-dev"
  1189. }
  1190. },
  1191. "autoload": {
  1192. "psr-4": {
  1193. "Hashids\\": "src/"
  1194. }
  1195. },
  1196. "notification-url": "https://packagist.org/downloads/",
  1197. "license": [
  1198. "MIT"
  1199. ],
  1200. "authors": [
  1201. {
  1202. "name": "Ivan Akimov",
  1203. "email": "ivan@barreleye.com"
  1204. },
  1205. {
  1206. "name": "Vincent Klaiber",
  1207. "email": "hello@doubledip.se"
  1208. }
  1209. ],
  1210. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1211. "homepage": "https://hashids.org/php",
  1212. "keywords": [
  1213. "bitly",
  1214. "decode",
  1215. "encode",
  1216. "hash",
  1217. "hashid",
  1218. "hashids",
  1219. "ids",
  1220. "obfuscate",
  1221. "youtube"
  1222. ],
  1223. "support": {
  1224. "issues": "https://github.com/vinkla/hashids/issues",
  1225. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1226. },
  1227. "time": "2020-11-26T19:24:33+00:00"
  1228. },
  1229. {
  1230. "name": "jenssegers/optimus",
  1231. "version": "v1.1.1",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/jenssegers/optimus.git",
  1235. "reference": "a062ac06598e72a25a17ea6cba87f9e02d07b1bc"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/jenssegers/optimus/zipball/a062ac06598e72a25a17ea6cba87f9e02d07b1bc",
  1240. "reference": "a062ac06598e72a25a17ea6cba87f9e02d07b1bc",
  1241. "shasum": "",
  1242. "mirrors": [
  1243. {
  1244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1245. "preferred": true
  1246. }
  1247. ]
  1248. },
  1249. "require": {
  1250. "php": "^7.4||^8.0",
  1251. "phpseclib/phpseclib": "^3.0",
  1252. "symfony/console": "^5.0||^6.0"
  1253. },
  1254. "require-dev": {
  1255. "phpunit/phpunit": "^9.5.10"
  1256. },
  1257. "suggest": {
  1258. "ext-gmp": "Required for 32bit systems"
  1259. },
  1260. "bin": [
  1261. "bin/optimus"
  1262. ],
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Jenssegers\\Optimus\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Jens Segers",
  1276. "homepage": "https://jenssegers.com"
  1277. }
  1278. ],
  1279. "description": "Id obfuscation based on Knuth's integer hash method",
  1280. "homepage": "https://github.com/jenssegers/optimus",
  1281. "keywords": [
  1282. "hashids",
  1283. "id obfuscation",
  1284. "ids",
  1285. "obfuscation",
  1286. "optimus"
  1287. ],
  1288. "support": {
  1289. "issues": "https://github.com/jenssegers/optimus/issues",
  1290. "source": "https://github.com/jenssegers/optimus/tree/v1.1.1"
  1291. },
  1292. "funding": [
  1293. {
  1294. "url": "https://github.com/jenssegers",
  1295. "type": "github"
  1296. },
  1297. {
  1298. "url": "https://tidelift.com/funding/github/packagist/jenssegers/optimus",
  1299. "type": "tidelift"
  1300. }
  1301. ],
  1302. "time": "2021-12-21T16:15:54+00:00"
  1303. },
  1304. {
  1305. "name": "laravel/framework",
  1306. "version": "v9.33.0",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/laravel/framework.git",
  1310. "reference": "13665b7e15dbcbecb3651acc19ba8818da6fa0a9"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/laravel/framework/zipball/13665b7e15dbcbecb3651acc19ba8818da6fa0a9",
  1315. "reference": "13665b7e15dbcbecb3651acc19ba8818da6fa0a9",
  1316. "shasum": "",
  1317. "mirrors": [
  1318. {
  1319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1320. "preferred": true
  1321. }
  1322. ]
  1323. },
  1324. "require": {
  1325. "doctrine/inflector": "^2.0",
  1326. "dragonmantank/cron-expression": "^3.1",
  1327. "egulias/email-validator": "^3.1",
  1328. "ext-mbstring": "*",
  1329. "ext-openssl": "*",
  1330. "fruitcake/php-cors": "^1.2",
  1331. "laravel/serializable-closure": "^1.0",
  1332. "league/commonmark": "^2.2",
  1333. "league/flysystem": "^3.0.16",
  1334. "monolog/monolog": "^2.0",
  1335. "nesbot/carbon": "^2.62.1",
  1336. "nunomaduro/termwind": "^1.13",
  1337. "php": "^8.0.2",
  1338. "psr/container": "^1.1.1|^2.0.1",
  1339. "psr/log": "^1.0|^2.0|^3.0",
  1340. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1341. "ramsey/uuid": "^4.2.2",
  1342. "symfony/console": "^6.0.3",
  1343. "symfony/error-handler": "^6.0",
  1344. "symfony/finder": "^6.0",
  1345. "symfony/http-foundation": "^6.0",
  1346. "symfony/http-kernel": "^6.0",
  1347. "symfony/mailer": "^6.0",
  1348. "symfony/mime": "^6.0",
  1349. "symfony/process": "^6.0",
  1350. "symfony/routing": "^6.0",
  1351. "symfony/uid": "^6.0",
  1352. "symfony/var-dumper": "^6.0",
  1353. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1354. "vlucas/phpdotenv": "^5.4.1",
  1355. "voku/portable-ascii": "^2.0"
  1356. },
  1357. "conflict": {
  1358. "tightenco/collect": "<5.5.33"
  1359. },
  1360. "provide": {
  1361. "psr/container-implementation": "1.1|2.0",
  1362. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1363. },
  1364. "replace": {
  1365. "illuminate/auth": "self.version",
  1366. "illuminate/broadcasting": "self.version",
  1367. "illuminate/bus": "self.version",
  1368. "illuminate/cache": "self.version",
  1369. "illuminate/collections": "self.version",
  1370. "illuminate/conditionable": "self.version",
  1371. "illuminate/config": "self.version",
  1372. "illuminate/console": "self.version",
  1373. "illuminate/container": "self.version",
  1374. "illuminate/contracts": "self.version",
  1375. "illuminate/cookie": "self.version",
  1376. "illuminate/database": "self.version",
  1377. "illuminate/encryption": "self.version",
  1378. "illuminate/events": "self.version",
  1379. "illuminate/filesystem": "self.version",
  1380. "illuminate/hashing": "self.version",
  1381. "illuminate/http": "self.version",
  1382. "illuminate/log": "self.version",
  1383. "illuminate/macroable": "self.version",
  1384. "illuminate/mail": "self.version",
  1385. "illuminate/notifications": "self.version",
  1386. "illuminate/pagination": "self.version",
  1387. "illuminate/pipeline": "self.version",
  1388. "illuminate/queue": "self.version",
  1389. "illuminate/redis": "self.version",
  1390. "illuminate/routing": "self.version",
  1391. "illuminate/session": "self.version",
  1392. "illuminate/support": "self.version",
  1393. "illuminate/testing": "self.version",
  1394. "illuminate/translation": "self.version",
  1395. "illuminate/validation": "self.version",
  1396. "illuminate/view": "self.version"
  1397. },
  1398. "require-dev": {
  1399. "ably/ably-php": "^1.0",
  1400. "aws/aws-sdk-php": "^3.198.1",
  1401. "doctrine/dbal": "^2.13.3|^3.1.4",
  1402. "fakerphp/faker": "^1.9.2",
  1403. "guzzlehttp/guzzle": "^7.2",
  1404. "league/flysystem-aws-s3-v3": "^3.0",
  1405. "league/flysystem-ftp": "^3.0",
  1406. "league/flysystem-path-prefixing": "^3.3",
  1407. "league/flysystem-read-only": "^3.3",
  1408. "league/flysystem-sftp-v3": "^3.0",
  1409. "mockery/mockery": "^1.4.4",
  1410. "orchestra/testbench-core": "^7.8",
  1411. "pda/pheanstalk": "^4.0",
  1412. "phpstan/phpstan": "^1.4.7",
  1413. "phpunit/phpunit": "^9.5.8",
  1414. "predis/predis": "^1.1.9|^2.0",
  1415. "symfony/cache": "^6.0"
  1416. },
  1417. "suggest": {
  1418. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1419. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.198.1).",
  1420. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1421. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1422. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1423. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1424. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1425. "ext-memcached": "Required to use the memcache cache driver.",
  1426. "ext-pcntl": "Required to use all features of the queue worker.",
  1427. "ext-posix": "Required to use all features of the queue worker.",
  1428. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1429. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1430. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1431. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.2).",
  1432. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1433. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1434. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1435. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1436. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1437. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1438. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1439. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1440. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1441. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  1442. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0).",
  1443. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1444. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1445. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  1446. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  1447. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  1448. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  1449. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  1450. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "9.x-dev"
  1456. }
  1457. },
  1458. "autoload": {
  1459. "files": [
  1460. "src/Illuminate/Collections/helpers.php",
  1461. "src/Illuminate/Events/functions.php",
  1462. "src/Illuminate/Foundation/helpers.php",
  1463. "src/Illuminate/Support/helpers.php"
  1464. ],
  1465. "psr-4": {
  1466. "Illuminate\\": "src/Illuminate/",
  1467. "Illuminate\\Support\\": [
  1468. "src/Illuminate/Macroable/",
  1469. "src/Illuminate/Collections/",
  1470. "src/Illuminate/Conditionable/"
  1471. ]
  1472. }
  1473. },
  1474. "notification-url": "https://packagist.org/downloads/",
  1475. "license": [
  1476. "MIT"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "Taylor Otwell",
  1481. "email": "taylor@laravel.com"
  1482. }
  1483. ],
  1484. "description": "The Laravel Framework.",
  1485. "homepage": "https://laravel.com",
  1486. "keywords": [
  1487. "framework",
  1488. "laravel"
  1489. ],
  1490. "support": {
  1491. "issues": "https://github.com/laravel/framework/issues",
  1492. "source": "https://github.com/laravel/framework"
  1493. },
  1494. "time": "2022-09-30T12:59:55+00:00"
  1495. },
  1496. {
  1497. "name": "laravel/serializable-closure",
  1498. "version": "v1.2.2",
  1499. "source": {
  1500. "type": "git",
  1501. "url": "https://github.com/laravel/serializable-closure.git",
  1502. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae"
  1503. },
  1504. "dist": {
  1505. "type": "zip",
  1506. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1507. "reference": "47afb7fae28ed29057fdca37e16a84f90cc62fae",
  1508. "shasum": "",
  1509. "mirrors": [
  1510. {
  1511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1512. "preferred": true
  1513. }
  1514. ]
  1515. },
  1516. "require": {
  1517. "php": "^7.3|^8.0"
  1518. },
  1519. "require-dev": {
  1520. "nesbot/carbon": "^2.61",
  1521. "pestphp/pest": "^1.21.3",
  1522. "phpstan/phpstan": "^1.8.2",
  1523. "symfony/var-dumper": "^5.4.11"
  1524. },
  1525. "type": "library",
  1526. "extra": {
  1527. "branch-alias": {
  1528. "dev-master": "1.x-dev"
  1529. }
  1530. },
  1531. "autoload": {
  1532. "psr-4": {
  1533. "Laravel\\SerializableClosure\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Taylor Otwell",
  1543. "email": "taylor@laravel.com"
  1544. },
  1545. {
  1546. "name": "Nuno Maduro",
  1547. "email": "nuno@laravel.com"
  1548. }
  1549. ],
  1550. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1551. "keywords": [
  1552. "closure",
  1553. "laravel",
  1554. "serializable"
  1555. ],
  1556. "support": {
  1557. "issues": "https://github.com/laravel/serializable-closure/issues",
  1558. "source": "https://github.com/laravel/serializable-closure"
  1559. },
  1560. "time": "2022-09-08T13:45:54+00:00"
  1561. },
  1562. {
  1563. "name": "laravel/tinker",
  1564. "version": "v2.8.1",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://github.com/laravel/tinker.git",
  1568. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://api.github.com/repos/laravel/tinker/zipball/04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1573. "reference": "04a2d3bd0d650c0764f70bf49d1ee39393e4eb10",
  1574. "shasum": "",
  1575. "mirrors": [
  1576. {
  1577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1578. "preferred": true
  1579. }
  1580. ]
  1581. },
  1582. "require": {
  1583. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1584. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1585. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1586. "php": "^7.2.5|^8.0",
  1587. "psy/psysh": "^0.10.4|^0.11.1",
  1588. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1589. },
  1590. "require-dev": {
  1591. "mockery/mockery": "~1.3.3|^1.4.2",
  1592. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1593. },
  1594. "suggest": {
  1595. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "2.x-dev"
  1601. },
  1602. "laravel": {
  1603. "providers": [
  1604. "Laravel\\Tinker\\TinkerServiceProvider"
  1605. ]
  1606. }
  1607. },
  1608. "autoload": {
  1609. "psr-4": {
  1610. "Laravel\\Tinker\\": "src/"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "Taylor Otwell",
  1620. "email": "taylor@laravel.com"
  1621. }
  1622. ],
  1623. "description": "Powerful REPL for the Laravel framework.",
  1624. "keywords": [
  1625. "REPL",
  1626. "Tinker",
  1627. "laravel",
  1628. "psysh"
  1629. ],
  1630. "support": {
  1631. "issues": "https://github.com/laravel/tinker/issues",
  1632. "source": "https://github.com/laravel/tinker/tree/v2.8.1"
  1633. },
  1634. "time": "2023-02-15T16:40:09+00:00"
  1635. },
  1636. {
  1637. "name": "league/commonmark",
  1638. "version": "2.3.9",
  1639. "source": {
  1640. "type": "git",
  1641. "url": "https://github.com/thephpleague/commonmark.git",
  1642. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5"
  1643. },
  1644. "dist": {
  1645. "type": "zip",
  1646. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1647. "reference": "c1e114f74e518daca2729ea8c4bf1167038fa4b5",
  1648. "shasum": "",
  1649. "mirrors": [
  1650. {
  1651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1652. "preferred": true
  1653. }
  1654. ]
  1655. },
  1656. "require": {
  1657. "ext-mbstring": "*",
  1658. "league/config": "^1.1.1",
  1659. "php": "^7.4 || ^8.0",
  1660. "psr/event-dispatcher": "^1.0",
  1661. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1662. "symfony/polyfill-php80": "^1.16"
  1663. },
  1664. "require-dev": {
  1665. "cebe/markdown": "^1.0",
  1666. "commonmark/cmark": "0.30.0",
  1667. "commonmark/commonmark.js": "0.30.0",
  1668. "composer/package-versions-deprecated": "^1.8",
  1669. "embed/embed": "^4.4",
  1670. "erusev/parsedown": "^1.0",
  1671. "ext-json": "*",
  1672. "github/gfm": "0.29.0",
  1673. "michelf/php-markdown": "^1.4 || ^2.0",
  1674. "nyholm/psr7": "^1.5",
  1675. "phpstan/phpstan": "^1.8.2",
  1676. "phpunit/phpunit": "^9.5.21",
  1677. "scrutinizer/ocular": "^1.8.1",
  1678. "symfony/finder": "^5.3 | ^6.0",
  1679. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1680. "unleashedtech/php-coding-standard": "^3.1.1",
  1681. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1682. },
  1683. "suggest": {
  1684. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1685. },
  1686. "type": "library",
  1687. "extra": {
  1688. "branch-alias": {
  1689. "dev-main": "2.4-dev"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "psr-4": {
  1694. "League\\CommonMark\\": "src"
  1695. }
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "BSD-3-Clause"
  1700. ],
  1701. "authors": [
  1702. {
  1703. "name": "Colin O'Dell",
  1704. "email": "colinodell@gmail.com",
  1705. "homepage": "https://www.colinodell.com",
  1706. "role": "Lead Developer"
  1707. }
  1708. ],
  1709. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1710. "homepage": "https://commonmark.thephpleague.com",
  1711. "keywords": [
  1712. "commonmark",
  1713. "flavored",
  1714. "gfm",
  1715. "github",
  1716. "github-flavored",
  1717. "markdown",
  1718. "md",
  1719. "parser"
  1720. ],
  1721. "support": {
  1722. "docs": "https://commonmark.thephpleague.com/",
  1723. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1724. "issues": "https://github.com/thephpleague/commonmark/issues",
  1725. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1726. "source": "https://github.com/thephpleague/commonmark"
  1727. },
  1728. "funding": [
  1729. {
  1730. "url": "https://www.colinodell.com/sponsor",
  1731. "type": "custom"
  1732. },
  1733. {
  1734. "url": "https://www.paypal.me/colinpodell/10.00",
  1735. "type": "custom"
  1736. },
  1737. {
  1738. "url": "https://github.com/colinodell",
  1739. "type": "github"
  1740. },
  1741. {
  1742. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1743. "type": "tidelift"
  1744. }
  1745. ],
  1746. "time": "2023-02-15T14:07:24+00:00"
  1747. },
  1748. {
  1749. "name": "league/config",
  1750. "version": "v1.2.0",
  1751. "source": {
  1752. "type": "git",
  1753. "url": "https://github.com/thephpleague/config.git",
  1754. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1755. },
  1756. "dist": {
  1757. "type": "zip",
  1758. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1759. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1760. "shasum": "",
  1761. "mirrors": [
  1762. {
  1763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1764. "preferred": true
  1765. }
  1766. ]
  1767. },
  1768. "require": {
  1769. "dflydev/dot-access-data": "^3.0.1",
  1770. "nette/schema": "^1.2",
  1771. "php": "^7.4 || ^8.0"
  1772. },
  1773. "require-dev": {
  1774. "phpstan/phpstan": "^1.8.2",
  1775. "phpunit/phpunit": "^9.5.5",
  1776. "scrutinizer/ocular": "^1.8.1",
  1777. "unleashedtech/php-coding-standard": "^3.1",
  1778. "vimeo/psalm": "^4.7.3"
  1779. },
  1780. "type": "library",
  1781. "extra": {
  1782. "branch-alias": {
  1783. "dev-main": "1.2-dev"
  1784. }
  1785. },
  1786. "autoload": {
  1787. "psr-4": {
  1788. "League\\Config\\": "src"
  1789. }
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "BSD-3-Clause"
  1794. ],
  1795. "authors": [
  1796. {
  1797. "name": "Colin O'Dell",
  1798. "email": "colinodell@gmail.com",
  1799. "homepage": "https://www.colinodell.com",
  1800. "role": "Lead Developer"
  1801. }
  1802. ],
  1803. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1804. "homepage": "https://config.thephpleague.com",
  1805. "keywords": [
  1806. "array",
  1807. "config",
  1808. "configuration",
  1809. "dot",
  1810. "dot-access",
  1811. "nested",
  1812. "schema"
  1813. ],
  1814. "support": {
  1815. "docs": "https://config.thephpleague.com/",
  1816. "issues": "https://github.com/thephpleague/config/issues",
  1817. "rss": "https://github.com/thephpleague/config/releases.atom",
  1818. "source": "https://github.com/thephpleague/config"
  1819. },
  1820. "funding": [
  1821. {
  1822. "url": "https://www.colinodell.com/sponsor",
  1823. "type": "custom"
  1824. },
  1825. {
  1826. "url": "https://www.paypal.me/colinpodell/10.00",
  1827. "type": "custom"
  1828. },
  1829. {
  1830. "url": "https://github.com/colinodell",
  1831. "type": "github"
  1832. }
  1833. ],
  1834. "time": "2022-12-11T20:36:23+00:00"
  1835. },
  1836. {
  1837. "name": "league/flysystem",
  1838. "version": "3.15.1",
  1839. "source": {
  1840. "type": "git",
  1841. "url": "https://github.com/thephpleague/flysystem.git",
  1842. "reference": "a141d430414fcb8bf797a18716b09f759a385bed"
  1843. },
  1844. "dist": {
  1845. "type": "zip",
  1846. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/a141d430414fcb8bf797a18716b09f759a385bed",
  1847. "reference": "a141d430414fcb8bf797a18716b09f759a385bed",
  1848. "shasum": "",
  1849. "mirrors": [
  1850. {
  1851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1852. "preferred": true
  1853. }
  1854. ]
  1855. },
  1856. "require": {
  1857. "league/flysystem-local": "^3.0.0",
  1858. "league/mime-type-detection": "^1.0.0",
  1859. "php": "^8.0.2"
  1860. },
  1861. "conflict": {
  1862. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1863. "guzzlehttp/guzzle": "<7.0",
  1864. "guzzlehttp/ringphp": "<1.1.1",
  1865. "phpseclib/phpseclib": "3.0.15",
  1866. "symfony/http-client": "<5.2"
  1867. },
  1868. "require-dev": {
  1869. "async-aws/s3": "^1.5",
  1870. "async-aws/simple-s3": "^1.1",
  1871. "aws/aws-sdk-php": "^3.220.0",
  1872. "composer/semver": "^3.0",
  1873. "ext-fileinfo": "*",
  1874. "ext-ftp": "*",
  1875. "ext-zip": "*",
  1876. "friendsofphp/php-cs-fixer": "^3.5",
  1877. "google/cloud-storage": "^1.23",
  1878. "microsoft/azure-storage-blob": "^1.1",
  1879. "phpseclib/phpseclib": "^3.0.14",
  1880. "phpstan/phpstan": "^0.12.26",
  1881. "phpunit/phpunit": "^9.5.11",
  1882. "sabre/dav": "^4.3.1"
  1883. },
  1884. "type": "library",
  1885. "autoload": {
  1886. "psr-4": {
  1887. "League\\Flysystem\\": "src"
  1888. }
  1889. },
  1890. "notification-url": "https://packagist.org/downloads/",
  1891. "license": [
  1892. "MIT"
  1893. ],
  1894. "authors": [
  1895. {
  1896. "name": "Frank de Jonge",
  1897. "email": "info@frankdejonge.nl"
  1898. }
  1899. ],
  1900. "description": "File storage abstraction for PHP",
  1901. "keywords": [
  1902. "WebDAV",
  1903. "aws",
  1904. "cloud",
  1905. "file",
  1906. "files",
  1907. "filesystem",
  1908. "filesystems",
  1909. "ftp",
  1910. "s3",
  1911. "sftp",
  1912. "storage"
  1913. ],
  1914. "support": {
  1915. "issues": "https://github.com/thephpleague/flysystem/issues",
  1916. "source": "https://github.com/thephpleague/flysystem/tree/3.15.1"
  1917. },
  1918. "funding": [
  1919. {
  1920. "url": "https://ecologi.com/frankdejonge",
  1921. "type": "custom"
  1922. },
  1923. {
  1924. "url": "https://github.com/frankdejonge",
  1925. "type": "github"
  1926. }
  1927. ],
  1928. "time": "2023-05-04T09:04:26+00:00"
  1929. },
  1930. {
  1931. "name": "league/flysystem-local",
  1932. "version": "3.15.0",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/thephpleague/flysystem-local.git",
  1936. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/543f64c397fefdf9cfeac443ffb6beff602796b3",
  1941. "reference": "543f64c397fefdf9cfeac443ffb6beff602796b3",
  1942. "shasum": "",
  1943. "mirrors": [
  1944. {
  1945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1946. "preferred": true
  1947. }
  1948. ]
  1949. },
  1950. "require": {
  1951. "ext-fileinfo": "*",
  1952. "league/flysystem": "^3.0.0",
  1953. "league/mime-type-detection": "^1.0.0",
  1954. "php": "^8.0.2"
  1955. },
  1956. "type": "library",
  1957. "autoload": {
  1958. "psr-4": {
  1959. "League\\Flysystem\\Local\\": ""
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "authors": [
  1967. {
  1968. "name": "Frank de Jonge",
  1969. "email": "info@frankdejonge.nl"
  1970. }
  1971. ],
  1972. "description": "Local filesystem adapter for Flysystem.",
  1973. "keywords": [
  1974. "Flysystem",
  1975. "file",
  1976. "files",
  1977. "filesystem",
  1978. "local"
  1979. ],
  1980. "support": {
  1981. "issues": "https://github.com/thephpleague/flysystem-local/issues",
  1982. "source": "https://github.com/thephpleague/flysystem-local/tree/3.15.0"
  1983. },
  1984. "funding": [
  1985. {
  1986. "url": "https://ecologi.com/frankdejonge",
  1987. "type": "custom"
  1988. },
  1989. {
  1990. "url": "https://github.com/frankdejonge",
  1991. "type": "github"
  1992. }
  1993. ],
  1994. "time": "2023-05-02T20:02:14+00:00"
  1995. },
  1996. {
  1997. "name": "league/mime-type-detection",
  1998. "version": "1.11.0",
  1999. "source": {
  2000. "type": "git",
  2001. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2002. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
  2003. },
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2007. "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
  2008. "shasum": "",
  2009. "mirrors": [
  2010. {
  2011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2012. "preferred": true
  2013. }
  2014. ]
  2015. },
  2016. "require": {
  2017. "ext-fileinfo": "*",
  2018. "php": "^7.2 || ^8.0"
  2019. },
  2020. "require-dev": {
  2021. "friendsofphp/php-cs-fixer": "^3.2",
  2022. "phpstan/phpstan": "^0.12.68",
  2023. "phpunit/phpunit": "^8.5.8 || ^9.3"
  2024. },
  2025. "type": "library",
  2026. "autoload": {
  2027. "psr-4": {
  2028. "League\\MimeTypeDetection\\": "src"
  2029. }
  2030. },
  2031. "notification-url": "https://packagist.org/downloads/",
  2032. "license": [
  2033. "MIT"
  2034. ],
  2035. "authors": [
  2036. {
  2037. "name": "Frank de Jonge",
  2038. "email": "info@frankdejonge.nl"
  2039. }
  2040. ],
  2041. "description": "Mime-type detection for Flysystem",
  2042. "support": {
  2043. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2044. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
  2045. },
  2046. "funding": [
  2047. {
  2048. "url": "https://github.com/frankdejonge",
  2049. "type": "github"
  2050. },
  2051. {
  2052. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2053. "type": "tidelift"
  2054. }
  2055. ],
  2056. "time": "2022-04-17T13:12:02+00:00"
  2057. },
  2058. {
  2059. "name": "monolog/monolog",
  2060. "version": "2.9.0",
  2061. "source": {
  2062. "type": "git",
  2063. "url": "https://github.com/Seldaek/monolog.git",
  2064. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb"
  2065. },
  2066. "dist": {
  2067. "type": "zip",
  2068. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2069. "reference": "e1c0ae1528ce313a450e5e1ad782765c4a8dd3cb",
  2070. "shasum": "",
  2071. "mirrors": [
  2072. {
  2073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2074. "preferred": true
  2075. }
  2076. ]
  2077. },
  2078. "require": {
  2079. "php": ">=7.2",
  2080. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2081. },
  2082. "provide": {
  2083. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2084. },
  2085. "require-dev": {
  2086. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2087. "doctrine/couchdb": "~1.0@dev",
  2088. "elasticsearch/elasticsearch": "^7 || ^8",
  2089. "ext-json": "*",
  2090. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2091. "guzzlehttp/guzzle": "^7.4",
  2092. "guzzlehttp/psr7": "^2.2",
  2093. "mongodb/mongodb": "^1.8",
  2094. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2095. "phpspec/prophecy": "^1.15",
  2096. "phpstan/phpstan": "^0.12.91",
  2097. "phpunit/phpunit": "^8.5.14",
  2098. "predis/predis": "^1.1 || ^2.0",
  2099. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2100. "ruflin/elastica": "^7",
  2101. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2102. "symfony/mailer": "^5.4 || ^6",
  2103. "symfony/mime": "^5.4 || ^6"
  2104. },
  2105. "suggest": {
  2106. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2107. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2108. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2109. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2110. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2111. "ext-mbstring": "Allow to work properly with unicode symbols",
  2112. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2113. "ext-openssl": "Required to send log messages using SSL",
  2114. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2115. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2116. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2117. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2118. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2119. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2120. },
  2121. "type": "library",
  2122. "extra": {
  2123. "branch-alias": {
  2124. "dev-main": "2.x-dev"
  2125. }
  2126. },
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Monolog\\": "src/Monolog"
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "MIT"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "Jordi Boggiano",
  2139. "email": "j.boggiano@seld.be",
  2140. "homepage": "https://seld.be"
  2141. }
  2142. ],
  2143. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2144. "homepage": "https://github.com/Seldaek/monolog",
  2145. "keywords": [
  2146. "log",
  2147. "logging",
  2148. "psr-3"
  2149. ],
  2150. "support": {
  2151. "issues": "https://github.com/Seldaek/monolog/issues",
  2152. "source": "https://github.com/Seldaek/monolog/tree/2.9.0"
  2153. },
  2154. "funding": [
  2155. {
  2156. "url": "https://github.com/Seldaek",
  2157. "type": "github"
  2158. },
  2159. {
  2160. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2161. "type": "tidelift"
  2162. }
  2163. ],
  2164. "time": "2023-02-05T13:07:32+00:00"
  2165. },
  2166. {
  2167. "name": "nesbot/carbon",
  2168. "version": "2.66.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/briannesbitt/Carbon.git",
  2172. "reference": "496712849902241f04902033b0441b269effe001"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/496712849902241f04902033b0441b269effe001",
  2177. "reference": "496712849902241f04902033b0441b269effe001",
  2178. "shasum": "",
  2179. "mirrors": [
  2180. {
  2181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2182. "preferred": true
  2183. }
  2184. ]
  2185. },
  2186. "require": {
  2187. "ext-json": "*",
  2188. "php": "^7.1.8 || ^8.0",
  2189. "symfony/polyfill-mbstring": "^1.0",
  2190. "symfony/polyfill-php80": "^1.16",
  2191. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2192. },
  2193. "require-dev": {
  2194. "doctrine/dbal": "^2.0 || ^3.1.4",
  2195. "doctrine/orm": "^2.7",
  2196. "friendsofphp/php-cs-fixer": "^3.0",
  2197. "kylekatarnls/multi-tester": "^2.0",
  2198. "ondrejmirtes/better-reflection": "*",
  2199. "phpmd/phpmd": "^2.9",
  2200. "phpstan/extension-installer": "^1.0",
  2201. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2202. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2203. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2204. "squizlabs/php_codesniffer": "^3.4"
  2205. },
  2206. "bin": [
  2207. "bin/carbon"
  2208. ],
  2209. "type": "library",
  2210. "extra": {
  2211. "branch-alias": {
  2212. "dev-3.x": "3.x-dev",
  2213. "dev-master": "2.x-dev"
  2214. },
  2215. "laravel": {
  2216. "providers": [
  2217. "Carbon\\Laravel\\ServiceProvider"
  2218. ]
  2219. },
  2220. "phpstan": {
  2221. "includes": [
  2222. "extension.neon"
  2223. ]
  2224. }
  2225. },
  2226. "autoload": {
  2227. "psr-4": {
  2228. "Carbon\\": "src/Carbon/"
  2229. }
  2230. },
  2231. "notification-url": "https://packagist.org/downloads/",
  2232. "license": [
  2233. "MIT"
  2234. ],
  2235. "authors": [
  2236. {
  2237. "name": "Brian Nesbitt",
  2238. "email": "brian@nesbot.com",
  2239. "homepage": "https://markido.com"
  2240. },
  2241. {
  2242. "name": "kylekatarnls",
  2243. "homepage": "https://github.com/kylekatarnls"
  2244. }
  2245. ],
  2246. "description": "An API extension for DateTime that supports 281 different languages.",
  2247. "homepage": "https://carbon.nesbot.com",
  2248. "keywords": [
  2249. "date",
  2250. "datetime",
  2251. "time"
  2252. ],
  2253. "support": {
  2254. "docs": "https://carbon.nesbot.com/docs",
  2255. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2256. "source": "https://github.com/briannesbitt/Carbon"
  2257. },
  2258. "funding": [
  2259. {
  2260. "url": "https://github.com/sponsors/kylekatarnls",
  2261. "type": "github"
  2262. },
  2263. {
  2264. "url": "https://opencollective.com/Carbon#sponsor",
  2265. "type": "opencollective"
  2266. },
  2267. {
  2268. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2269. "type": "tidelift"
  2270. }
  2271. ],
  2272. "time": "2023-01-29T18:53:47+00:00"
  2273. },
  2274. {
  2275. "name": "nette/schema",
  2276. "version": "v1.2.3",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://github.com/nette/schema.git",
  2280. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://api.github.com/repos/nette/schema/zipball/abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2285. "reference": "abbdbb70e0245d5f3bf77874cea1dfb0c930d06f",
  2286. "shasum": "",
  2287. "mirrors": [
  2288. {
  2289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2290. "preferred": true
  2291. }
  2292. ]
  2293. },
  2294. "require": {
  2295. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2296. "php": ">=7.1 <8.3"
  2297. },
  2298. "require-dev": {
  2299. "nette/tester": "^2.3 || ^2.4",
  2300. "phpstan/phpstan-nette": "^1.0",
  2301. "tracy/tracy": "^2.7"
  2302. },
  2303. "type": "library",
  2304. "extra": {
  2305. "branch-alias": {
  2306. "dev-master": "1.2-dev"
  2307. }
  2308. },
  2309. "autoload": {
  2310. "classmap": [
  2311. "src/"
  2312. ]
  2313. },
  2314. "notification-url": "https://packagist.org/downloads/",
  2315. "license": [
  2316. "BSD-3-Clause",
  2317. "GPL-2.0-only",
  2318. "GPL-3.0-only"
  2319. ],
  2320. "authors": [
  2321. {
  2322. "name": "David Grudl",
  2323. "homepage": "https://davidgrudl.com"
  2324. },
  2325. {
  2326. "name": "Nette Community",
  2327. "homepage": "https://nette.org/contributors"
  2328. }
  2329. ],
  2330. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2331. "homepage": "https://nette.org",
  2332. "keywords": [
  2333. "config",
  2334. "nette"
  2335. ],
  2336. "support": {
  2337. "issues": "https://github.com/nette/schema/issues",
  2338. "source": "https://github.com/nette/schema/tree/v1.2.3"
  2339. },
  2340. "time": "2022-10-13T01:24:26+00:00"
  2341. },
  2342. {
  2343. "name": "nette/utils",
  2344. "version": "v4.0.0",
  2345. "source": {
  2346. "type": "git",
  2347. "url": "https://github.com/nette/utils.git",
  2348. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e"
  2349. },
  2350. "dist": {
  2351. "type": "zip",
  2352. "url": "https://api.github.com/repos/nette/utils/zipball/cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2353. "reference": "cacdbf5a91a657ede665c541eda28941d4b09c1e",
  2354. "shasum": "",
  2355. "mirrors": [
  2356. {
  2357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2358. "preferred": true
  2359. }
  2360. ]
  2361. },
  2362. "require": {
  2363. "php": ">=8.0 <8.3"
  2364. },
  2365. "conflict": {
  2366. "nette/finder": "<3",
  2367. "nette/schema": "<1.2.2"
  2368. },
  2369. "require-dev": {
  2370. "jetbrains/phpstorm-attributes": "dev-master",
  2371. "nette/tester": "^2.4",
  2372. "phpstan/phpstan": "^1.0",
  2373. "tracy/tracy": "^2.9"
  2374. },
  2375. "suggest": {
  2376. "ext-gd": "to use Image",
  2377. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2378. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2379. "ext-json": "to use Nette\\Utils\\Json",
  2380. "ext-mbstring": "to use Strings::lower() etc...",
  2381. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2382. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2383. },
  2384. "type": "library",
  2385. "extra": {
  2386. "branch-alias": {
  2387. "dev-master": "4.0-dev"
  2388. }
  2389. },
  2390. "autoload": {
  2391. "classmap": [
  2392. "src/"
  2393. ]
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "BSD-3-Clause",
  2398. "GPL-2.0-only",
  2399. "GPL-3.0-only"
  2400. ],
  2401. "authors": [
  2402. {
  2403. "name": "David Grudl",
  2404. "homepage": "https://davidgrudl.com"
  2405. },
  2406. {
  2407. "name": "Nette Community",
  2408. "homepage": "https://nette.org/contributors"
  2409. }
  2410. ],
  2411. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2412. "homepage": "https://nette.org",
  2413. "keywords": [
  2414. "array",
  2415. "core",
  2416. "datetime",
  2417. "images",
  2418. "json",
  2419. "nette",
  2420. "paginator",
  2421. "password",
  2422. "slugify",
  2423. "string",
  2424. "unicode",
  2425. "utf-8",
  2426. "utility",
  2427. "validation"
  2428. ],
  2429. "support": {
  2430. "issues": "https://github.com/nette/utils/issues",
  2431. "source": "https://github.com/nette/utils/tree/v4.0.0"
  2432. },
  2433. "time": "2023-02-02T10:41:53+00:00"
  2434. },
  2435. {
  2436. "name": "nikic/php-parser",
  2437. "version": "v4.15.4",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/nikic/PHP-Parser.git",
  2441. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2446. "reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
  2447. "shasum": "",
  2448. "mirrors": [
  2449. {
  2450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2451. "preferred": true
  2452. }
  2453. ]
  2454. },
  2455. "require": {
  2456. "ext-tokenizer": "*",
  2457. "php": ">=7.0"
  2458. },
  2459. "require-dev": {
  2460. "ircmaxell/php-yacc": "^0.0.7",
  2461. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2462. },
  2463. "bin": [
  2464. "bin/php-parse"
  2465. ],
  2466. "type": "library",
  2467. "extra": {
  2468. "branch-alias": {
  2469. "dev-master": "4.9-dev"
  2470. }
  2471. },
  2472. "autoload": {
  2473. "psr-4": {
  2474. "PhpParser\\": "lib/PhpParser"
  2475. }
  2476. },
  2477. "notification-url": "https://packagist.org/downloads/",
  2478. "license": [
  2479. "BSD-3-Clause"
  2480. ],
  2481. "authors": [
  2482. {
  2483. "name": "Nikita Popov"
  2484. }
  2485. ],
  2486. "description": "A PHP parser written in PHP",
  2487. "keywords": [
  2488. "parser",
  2489. "php"
  2490. ],
  2491. "support": {
  2492. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2493. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
  2494. },
  2495. "time": "2023-03-05T19:49:14+00:00"
  2496. },
  2497. {
  2498. "name": "nunomaduro/termwind",
  2499. "version": "v1.15.1",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/nunomaduro/termwind.git",
  2503. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2508. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "ext-mbstring": "*",
  2519. "php": "^8.0",
  2520. "symfony/console": "^5.3.0|^6.0.0"
  2521. },
  2522. "require-dev": {
  2523. "ergebnis/phpstan-rules": "^1.0.",
  2524. "illuminate/console": "^8.0|^9.0",
  2525. "illuminate/support": "^8.0|^9.0",
  2526. "laravel/pint": "^1.0.0",
  2527. "pestphp/pest": "^1.21.0",
  2528. "pestphp/pest-plugin-mock": "^1.0",
  2529. "phpstan/phpstan": "^1.4.6",
  2530. "phpstan/phpstan-strict-rules": "^1.1.0",
  2531. "symfony/var-dumper": "^5.2.7|^6.0.0",
  2532. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "laravel": {
  2537. "providers": [
  2538. "Termwind\\Laravel\\TermwindServiceProvider"
  2539. ]
  2540. }
  2541. },
  2542. "autoload": {
  2543. "files": [
  2544. "src/Functions.php"
  2545. ],
  2546. "psr-4": {
  2547. "Termwind\\": "src/"
  2548. }
  2549. },
  2550. "notification-url": "https://packagist.org/downloads/",
  2551. "license": [
  2552. "MIT"
  2553. ],
  2554. "authors": [
  2555. {
  2556. "name": "Nuno Maduro",
  2557. "email": "enunomaduro@gmail.com"
  2558. }
  2559. ],
  2560. "description": "Its like Tailwind CSS, but for the console.",
  2561. "keywords": [
  2562. "cli",
  2563. "console",
  2564. "css",
  2565. "package",
  2566. "php",
  2567. "style"
  2568. ],
  2569. "support": {
  2570. "issues": "https://github.com/nunomaduro/termwind/issues",
  2571. "source": "https://github.com/nunomaduro/termwind/tree/v1.15.1"
  2572. },
  2573. "funding": [
  2574. {
  2575. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2576. "type": "custom"
  2577. },
  2578. {
  2579. "url": "https://github.com/nunomaduro",
  2580. "type": "github"
  2581. },
  2582. {
  2583. "url": "https://github.com/xiCO2k",
  2584. "type": "github"
  2585. }
  2586. ],
  2587. "time": "2023-02-08T01:06:31+00:00"
  2588. },
  2589. {
  2590. "name": "nyholm/psr7",
  2591. "version": "1.8.0",
  2592. "source": {
  2593. "type": "git",
  2594. "url": "https://github.com/Nyholm/psr7.git",
  2595. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be"
  2596. },
  2597. "dist": {
  2598. "type": "zip",
  2599. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  2600. "reference": "3cb4d163b58589e47b35103e8e5e6a6a475b47be",
  2601. "shasum": "",
  2602. "mirrors": [
  2603. {
  2604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2605. "preferred": true
  2606. }
  2607. ]
  2608. },
  2609. "require": {
  2610. "php": ">=7.2",
  2611. "psr/http-factory": "^1.0",
  2612. "psr/http-message": "^1.1 || ^2.0"
  2613. },
  2614. "provide": {
  2615. "php-http/message-factory-implementation": "1.0",
  2616. "psr/http-factory-implementation": "1.0",
  2617. "psr/http-message-implementation": "1.0"
  2618. },
  2619. "require-dev": {
  2620. "http-interop/http-factory-tests": "^0.9",
  2621. "php-http/message-factory": "^1.0",
  2622. "php-http/psr7-integration-tests": "^1.0",
  2623. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  2624. "symfony/error-handler": "^4.4"
  2625. },
  2626. "type": "library",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "1.8-dev"
  2630. }
  2631. },
  2632. "autoload": {
  2633. "psr-4": {
  2634. "Nyholm\\Psr7\\": "src/"
  2635. }
  2636. },
  2637. "notification-url": "https://packagist.org/downloads/",
  2638. "license": [
  2639. "MIT"
  2640. ],
  2641. "authors": [
  2642. {
  2643. "name": "Tobias Nyholm",
  2644. "email": "tobias.nyholm@gmail.com"
  2645. },
  2646. {
  2647. "name": "Martijn van der Ven",
  2648. "email": "martijn@vanderven.se"
  2649. }
  2650. ],
  2651. "description": "A fast PHP7 implementation of PSR-7",
  2652. "homepage": "https://tnyholm.se",
  2653. "keywords": [
  2654. "psr-17",
  2655. "psr-7"
  2656. ],
  2657. "support": {
  2658. "issues": "https://github.com/Nyholm/psr7/issues",
  2659. "source": "https://github.com/Nyholm/psr7/tree/1.8.0"
  2660. },
  2661. "funding": [
  2662. {
  2663. "url": "https://github.com/Zegnat",
  2664. "type": "github"
  2665. },
  2666. {
  2667. "url": "https://github.com/nyholm",
  2668. "type": "github"
  2669. }
  2670. ],
  2671. "time": "2023-05-02T11:26:24+00:00"
  2672. },
  2673. {
  2674. "name": "nyholm/psr7-server",
  2675. "version": "1.0.2",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/Nyholm/psr7-server.git",
  2679. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/b846a689844cef114e8079d8c80f0afd96745ae3",
  2684. "reference": "b846a689844cef114e8079d8c80f0afd96745ae3",
  2685. "shasum": "",
  2686. "mirrors": [
  2687. {
  2688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2689. "preferred": true
  2690. }
  2691. ]
  2692. },
  2693. "require": {
  2694. "php": "^7.1 || ^8.0",
  2695. "psr/http-factory": "^1.0",
  2696. "psr/http-message": "^1.0"
  2697. },
  2698. "require-dev": {
  2699. "nyholm/nsa": "^1.1",
  2700. "nyholm/psr7": "^1.3",
  2701. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  2702. },
  2703. "type": "library",
  2704. "autoload": {
  2705. "psr-4": {
  2706. "Nyholm\\Psr7Server\\": "src/"
  2707. }
  2708. },
  2709. "notification-url": "https://packagist.org/downloads/",
  2710. "license": [
  2711. "MIT"
  2712. ],
  2713. "authors": [
  2714. {
  2715. "name": "Tobias Nyholm",
  2716. "email": "tobias.nyholm@gmail.com"
  2717. },
  2718. {
  2719. "name": "Martijn van der Ven",
  2720. "email": "martijn@vanderven.se"
  2721. }
  2722. ],
  2723. "description": "Helper classes to handle PSR-7 server requests",
  2724. "homepage": "http://tnyholm.se",
  2725. "keywords": [
  2726. "psr-17",
  2727. "psr-7"
  2728. ],
  2729. "support": {
  2730. "issues": "https://github.com/Nyholm/psr7-server/issues",
  2731. "source": "https://github.com/Nyholm/psr7-server/tree/1.0.2"
  2732. },
  2733. "funding": [
  2734. {
  2735. "url": "https://github.com/Zegnat",
  2736. "type": "github"
  2737. },
  2738. {
  2739. "url": "https://github.com/nyholm",
  2740. "type": "github"
  2741. }
  2742. ],
  2743. "time": "2021-05-12T11:11:27+00:00"
  2744. },
  2745. {
  2746. "name": "overtrue/socialite",
  2747. "version": "4.8.0",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/overtrue/socialite.git",
  2751. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/overtrue/socialite/zipball/e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  2756. "reference": "e55fdf50f8003be8f03a85a7e5a5b7c5716f4c9a",
  2757. "shasum": "",
  2758. "mirrors": [
  2759. {
  2760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2761. "preferred": true
  2762. }
  2763. ]
  2764. },
  2765. "require": {
  2766. "ext-json": "*",
  2767. "ext-openssl": "*",
  2768. "guzzlehttp/guzzle": "^7.0",
  2769. "php": ">=8.0.2",
  2770. "symfony/http-foundation": "^6.0",
  2771. "symfony/psr-http-message-bridge": "^2.1"
  2772. },
  2773. "require-dev": {
  2774. "jetbrains/phpstorm-attributes": "^1.0",
  2775. "laravel/pint": "^1.2",
  2776. "mockery/mockery": "^1.3",
  2777. "phpstan/phpstan": "^1.7",
  2778. "phpunit/phpunit": "^9.0"
  2779. },
  2780. "type": "library",
  2781. "autoload": {
  2782. "files": [
  2783. "src/Contracts/FactoryInterface.php",
  2784. "src/Contracts/UserInterface.php",
  2785. "src/Contracts/ProviderInterface.php"
  2786. ],
  2787. "psr-4": {
  2788. "Overtrue\\Socialite\\": "src/"
  2789. }
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "authors": [
  2796. {
  2797. "name": "overtrue",
  2798. "email": "anzhengchao@gmail.com"
  2799. }
  2800. ],
  2801. "description": "A collection of OAuth 2 packages.",
  2802. "keywords": [
  2803. "Feishu",
  2804. "login",
  2805. "oauth",
  2806. "qcloud",
  2807. "qq",
  2808. "social",
  2809. "wechat",
  2810. "weibo"
  2811. ],
  2812. "support": {
  2813. "issues": "https://github.com/overtrue/socialite/issues",
  2814. "source": "https://github.com/overtrue/socialite/tree/4.8.0"
  2815. },
  2816. "funding": [
  2817. {
  2818. "url": "https://github.com/overtrue",
  2819. "type": "github"
  2820. }
  2821. ],
  2822. "time": "2023-01-10T14:29:55+00:00"
  2823. },
  2824. {
  2825. "name": "paragonie/constant_time_encoding",
  2826. "version": "v2.6.3",
  2827. "source": {
  2828. "type": "git",
  2829. "url": "https://github.com/paragonie/constant_time_encoding.git",
  2830. "reference": "58c3f47f650c94ec05a151692652a868995d2938"
  2831. },
  2832. "dist": {
  2833. "type": "zip",
  2834. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/58c3f47f650c94ec05a151692652a868995d2938",
  2835. "reference": "58c3f47f650c94ec05a151692652a868995d2938",
  2836. "shasum": "",
  2837. "mirrors": [
  2838. {
  2839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2840. "preferred": true
  2841. }
  2842. ]
  2843. },
  2844. "require": {
  2845. "php": "^7|^8"
  2846. },
  2847. "require-dev": {
  2848. "phpunit/phpunit": "^6|^7|^8|^9",
  2849. "vimeo/psalm": "^1|^2|^3|^4"
  2850. },
  2851. "type": "library",
  2852. "autoload": {
  2853. "psr-4": {
  2854. "ParagonIE\\ConstantTime\\": "src/"
  2855. }
  2856. },
  2857. "notification-url": "https://packagist.org/downloads/",
  2858. "license": [
  2859. "MIT"
  2860. ],
  2861. "authors": [
  2862. {
  2863. "name": "Paragon Initiative Enterprises",
  2864. "email": "security@paragonie.com",
  2865. "homepage": "https://paragonie.com",
  2866. "role": "Maintainer"
  2867. },
  2868. {
  2869. "name": "Steve 'Sc00bz' Thomas",
  2870. "email": "steve@tobtu.com",
  2871. "homepage": "https://www.tobtu.com",
  2872. "role": "Original Developer"
  2873. }
  2874. ],
  2875. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  2876. "keywords": [
  2877. "base16",
  2878. "base32",
  2879. "base32_decode",
  2880. "base32_encode",
  2881. "base64",
  2882. "base64_decode",
  2883. "base64_encode",
  2884. "bin2hex",
  2885. "encoding",
  2886. "hex",
  2887. "hex2bin",
  2888. "rfc4648"
  2889. ],
  2890. "support": {
  2891. "email": "info@paragonie.com",
  2892. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  2893. "source": "https://github.com/paragonie/constant_time_encoding"
  2894. },
  2895. "time": "2022-06-14T06:56:20+00:00"
  2896. },
  2897. {
  2898. "name": "paragonie/random_compat",
  2899. "version": "v9.99.100",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/paragonie/random_compat.git",
  2903. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2908. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2909. "shasum": "",
  2910. "mirrors": [
  2911. {
  2912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2913. "preferred": true
  2914. }
  2915. ]
  2916. },
  2917. "require": {
  2918. "php": ">= 7"
  2919. },
  2920. "require-dev": {
  2921. "phpunit/phpunit": "4.*|5.*",
  2922. "vimeo/psalm": "^1"
  2923. },
  2924. "suggest": {
  2925. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2926. },
  2927. "type": "library",
  2928. "notification-url": "https://packagist.org/downloads/",
  2929. "license": [
  2930. "MIT"
  2931. ],
  2932. "authors": [
  2933. {
  2934. "name": "Paragon Initiative Enterprises",
  2935. "email": "security@paragonie.com",
  2936. "homepage": "https://paragonie.com"
  2937. }
  2938. ],
  2939. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2940. "keywords": [
  2941. "csprng",
  2942. "polyfill",
  2943. "pseudorandom",
  2944. "random"
  2945. ],
  2946. "support": {
  2947. "email": "info@paragonie.com",
  2948. "issues": "https://github.com/paragonie/random_compat/issues",
  2949. "source": "https://github.com/paragonie/random_compat"
  2950. },
  2951. "time": "2020-10-15T08:29:30+00:00"
  2952. },
  2953. {
  2954. "name": "phpoption/phpoption",
  2955. "version": "1.9.1",
  2956. "source": {
  2957. "type": "git",
  2958. "url": "https://github.com/schmittjoh/php-option.git",
  2959. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  2960. },
  2961. "dist": {
  2962. "type": "zip",
  2963. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  2964. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  2965. "shasum": "",
  2966. "mirrors": [
  2967. {
  2968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2969. "preferred": true
  2970. }
  2971. ]
  2972. },
  2973. "require": {
  2974. "php": "^7.2.5 || ^8.0"
  2975. },
  2976. "require-dev": {
  2977. "bamarni/composer-bin-plugin": "^1.8.2",
  2978. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  2979. },
  2980. "type": "library",
  2981. "extra": {
  2982. "bamarni-bin": {
  2983. "bin-links": true,
  2984. "forward-command": true
  2985. },
  2986. "branch-alias": {
  2987. "dev-master": "1.9-dev"
  2988. }
  2989. },
  2990. "autoload": {
  2991. "psr-4": {
  2992. "PhpOption\\": "src/PhpOption/"
  2993. }
  2994. },
  2995. "notification-url": "https://packagist.org/downloads/",
  2996. "license": [
  2997. "Apache-2.0"
  2998. ],
  2999. "authors": [
  3000. {
  3001. "name": "Johannes M. Schmitt",
  3002. "email": "schmittjoh@gmail.com",
  3003. "homepage": "https://github.com/schmittjoh"
  3004. },
  3005. {
  3006. "name": "Graham Campbell",
  3007. "email": "hello@gjcampbell.co.uk",
  3008. "homepage": "https://github.com/GrahamCampbell"
  3009. }
  3010. ],
  3011. "description": "Option Type for PHP",
  3012. "keywords": [
  3013. "language",
  3014. "option",
  3015. "php",
  3016. "type"
  3017. ],
  3018. "support": {
  3019. "issues": "https://github.com/schmittjoh/php-option/issues",
  3020. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3021. },
  3022. "funding": [
  3023. {
  3024. "url": "https://github.com/GrahamCampbell",
  3025. "type": "github"
  3026. },
  3027. {
  3028. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3029. "type": "tidelift"
  3030. }
  3031. ],
  3032. "time": "2023-02-25T19:38:58+00:00"
  3033. },
  3034. {
  3035. "name": "phpseclib/phpseclib",
  3036. "version": "3.0.19",
  3037. "source": {
  3038. "type": "git",
  3039. "url": "https://github.com/phpseclib/phpseclib.git",
  3040. "reference": "cc181005cf548bfd8a4896383bb825d859259f95"
  3041. },
  3042. "dist": {
  3043. "type": "zip",
  3044. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cc181005cf548bfd8a4896383bb825d859259f95",
  3045. "reference": "cc181005cf548bfd8a4896383bb825d859259f95",
  3046. "shasum": "",
  3047. "mirrors": [
  3048. {
  3049. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3050. "preferred": true
  3051. }
  3052. ]
  3053. },
  3054. "require": {
  3055. "paragonie/constant_time_encoding": "^1|^2",
  3056. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3057. "php": ">=5.6.1"
  3058. },
  3059. "require-dev": {
  3060. "phpunit/phpunit": "*"
  3061. },
  3062. "suggest": {
  3063. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3064. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3065. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3066. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3067. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3068. },
  3069. "type": "library",
  3070. "autoload": {
  3071. "files": [
  3072. "phpseclib/bootstrap.php"
  3073. ],
  3074. "psr-4": {
  3075. "phpseclib3\\": "phpseclib/"
  3076. }
  3077. },
  3078. "notification-url": "https://packagist.org/downloads/",
  3079. "license": [
  3080. "MIT"
  3081. ],
  3082. "authors": [
  3083. {
  3084. "name": "Jim Wigginton",
  3085. "email": "terrafrost@php.net",
  3086. "role": "Lead Developer"
  3087. },
  3088. {
  3089. "name": "Patrick Monnerat",
  3090. "email": "pm@datasphere.ch",
  3091. "role": "Developer"
  3092. },
  3093. {
  3094. "name": "Andreas Fischer",
  3095. "email": "bantu@phpbb.com",
  3096. "role": "Developer"
  3097. },
  3098. {
  3099. "name": "Hans-Jürgen Petrich",
  3100. "email": "petrich@tronic-media.com",
  3101. "role": "Developer"
  3102. },
  3103. {
  3104. "name": "Graham Campbell",
  3105. "email": "graham@alt-three.com",
  3106. "role": "Developer"
  3107. }
  3108. ],
  3109. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3110. "homepage": "http://phpseclib.sourceforge.net",
  3111. "keywords": [
  3112. "BigInteger",
  3113. "aes",
  3114. "asn.1",
  3115. "asn1",
  3116. "blowfish",
  3117. "crypto",
  3118. "cryptography",
  3119. "encryption",
  3120. "rsa",
  3121. "security",
  3122. "sftp",
  3123. "signature",
  3124. "signing",
  3125. "ssh",
  3126. "twofish",
  3127. "x.509",
  3128. "x509"
  3129. ],
  3130. "support": {
  3131. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3132. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.19"
  3133. },
  3134. "funding": [
  3135. {
  3136. "url": "https://github.com/terrafrost",
  3137. "type": "github"
  3138. },
  3139. {
  3140. "url": "https://www.patreon.com/phpseclib",
  3141. "type": "patreon"
  3142. },
  3143. {
  3144. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3145. "type": "tidelift"
  3146. }
  3147. ],
  3148. "time": "2023-03-05T17:13:09+00:00"
  3149. },
  3150. {
  3151. "name": "psr/cache",
  3152. "version": "3.0.0",
  3153. "source": {
  3154. "type": "git",
  3155. "url": "https://github.com/php-fig/cache.git",
  3156. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3157. },
  3158. "dist": {
  3159. "type": "zip",
  3160. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3161. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3162. "shasum": "",
  3163. "mirrors": [
  3164. {
  3165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3166. "preferred": true
  3167. }
  3168. ]
  3169. },
  3170. "require": {
  3171. "php": ">=8.0.0"
  3172. },
  3173. "type": "library",
  3174. "extra": {
  3175. "branch-alias": {
  3176. "dev-master": "1.0.x-dev"
  3177. }
  3178. },
  3179. "autoload": {
  3180. "psr-4": {
  3181. "Psr\\Cache\\": "src/"
  3182. }
  3183. },
  3184. "notification-url": "https://packagist.org/downloads/",
  3185. "license": [
  3186. "MIT"
  3187. ],
  3188. "authors": [
  3189. {
  3190. "name": "PHP-FIG",
  3191. "homepage": "https://www.php-fig.org/"
  3192. }
  3193. ],
  3194. "description": "Common interface for caching libraries",
  3195. "keywords": [
  3196. "cache",
  3197. "psr",
  3198. "psr-6"
  3199. ],
  3200. "support": {
  3201. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3202. },
  3203. "time": "2021-02-03T23:26:27+00:00"
  3204. },
  3205. {
  3206. "name": "psr/container",
  3207. "version": "2.0.2",
  3208. "source": {
  3209. "type": "git",
  3210. "url": "https://github.com/php-fig/container.git",
  3211. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3212. },
  3213. "dist": {
  3214. "type": "zip",
  3215. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3216. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3217. "shasum": "",
  3218. "mirrors": [
  3219. {
  3220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3221. "preferred": true
  3222. }
  3223. ]
  3224. },
  3225. "require": {
  3226. "php": ">=7.4.0"
  3227. },
  3228. "type": "library",
  3229. "extra": {
  3230. "branch-alias": {
  3231. "dev-master": "2.0.x-dev"
  3232. }
  3233. },
  3234. "autoload": {
  3235. "psr-4": {
  3236. "Psr\\Container\\": "src/"
  3237. }
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "MIT"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "PHP-FIG",
  3246. "homepage": "https://www.php-fig.org/"
  3247. }
  3248. ],
  3249. "description": "Common Container Interface (PHP FIG PSR-11)",
  3250. "homepage": "https://github.com/php-fig/container",
  3251. "keywords": [
  3252. "PSR-11",
  3253. "container",
  3254. "container-interface",
  3255. "container-interop",
  3256. "psr"
  3257. ],
  3258. "support": {
  3259. "issues": "https://github.com/php-fig/container/issues",
  3260. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3261. },
  3262. "time": "2021-11-05T16:47:00+00:00"
  3263. },
  3264. {
  3265. "name": "psr/event-dispatcher",
  3266. "version": "1.0.0",
  3267. "source": {
  3268. "type": "git",
  3269. "url": "https://github.com/php-fig/event-dispatcher.git",
  3270. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3271. },
  3272. "dist": {
  3273. "type": "zip",
  3274. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3275. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3276. "shasum": "",
  3277. "mirrors": [
  3278. {
  3279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3280. "preferred": true
  3281. }
  3282. ]
  3283. },
  3284. "require": {
  3285. "php": ">=7.2.0"
  3286. },
  3287. "type": "library",
  3288. "extra": {
  3289. "branch-alias": {
  3290. "dev-master": "1.0.x-dev"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Psr\\EventDispatcher\\": "src/"
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "PHP-FIG",
  3305. "homepage": "http://www.php-fig.org/"
  3306. }
  3307. ],
  3308. "description": "Standard interfaces for event handling.",
  3309. "keywords": [
  3310. "events",
  3311. "psr",
  3312. "psr-14"
  3313. ],
  3314. "support": {
  3315. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3316. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3317. },
  3318. "time": "2019-01-08T18:20:26+00:00"
  3319. },
  3320. {
  3321. "name": "psr/http-client",
  3322. "version": "1.0.1",
  3323. "source": {
  3324. "type": "git",
  3325. "url": "https://github.com/php-fig/http-client.git",
  3326. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3327. },
  3328. "dist": {
  3329. "type": "zip",
  3330. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3331. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3332. "shasum": "",
  3333. "mirrors": [
  3334. {
  3335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3336. "preferred": true
  3337. }
  3338. ]
  3339. },
  3340. "require": {
  3341. "php": "^7.0 || ^8.0",
  3342. "psr/http-message": "^1.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": "http://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/tree/master"
  3375. },
  3376. "time": "2020-06-29T06:28:15+00:00"
  3377. },
  3378. {
  3379. "name": "psr/http-factory",
  3380. "version": "1.0.2",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://github.com/php-fig/http-factory.git",
  3384. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3389. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3390. "shasum": "",
  3391. "mirrors": [
  3392. {
  3393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3394. "preferred": true
  3395. }
  3396. ]
  3397. },
  3398. "require": {
  3399. "php": ">=7.0.0",
  3400. "psr/http-message": "^1.0 || ^2.0"
  3401. },
  3402. "type": "library",
  3403. "extra": {
  3404. "branch-alias": {
  3405. "dev-master": "1.0.x-dev"
  3406. }
  3407. },
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Psr\\Http\\Message\\": "src/"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "PHP-FIG",
  3420. "homepage": "https://www.php-fig.org/"
  3421. }
  3422. ],
  3423. "description": "Common interfaces for PSR-7 HTTP message factories",
  3424. "keywords": [
  3425. "factory",
  3426. "http",
  3427. "message",
  3428. "psr",
  3429. "psr-17",
  3430. "psr-7",
  3431. "request",
  3432. "response"
  3433. ],
  3434. "support": {
  3435. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3436. },
  3437. "time": "2023-04-10T20:10:41+00:00"
  3438. },
  3439. {
  3440. "name": "psr/http-message",
  3441. "version": "1.1",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://github.com/php-fig/http-message.git",
  3445. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3450. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3451. "shasum": "",
  3452. "mirrors": [
  3453. {
  3454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3455. "preferred": true
  3456. }
  3457. ]
  3458. },
  3459. "require": {
  3460. "php": "^7.2 || ^8.0"
  3461. },
  3462. "type": "library",
  3463. "extra": {
  3464. "branch-alias": {
  3465. "dev-master": "1.1.x-dev"
  3466. }
  3467. },
  3468. "autoload": {
  3469. "psr-4": {
  3470. "Psr\\Http\\Message\\": "src/"
  3471. }
  3472. },
  3473. "notification-url": "https://packagist.org/downloads/",
  3474. "license": [
  3475. "MIT"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "PHP-FIG",
  3480. "homepage": "http://www.php-fig.org/"
  3481. }
  3482. ],
  3483. "description": "Common interface for HTTP messages",
  3484. "homepage": "https://github.com/php-fig/http-message",
  3485. "keywords": [
  3486. "http",
  3487. "http-message",
  3488. "psr",
  3489. "psr-7",
  3490. "request",
  3491. "response"
  3492. ],
  3493. "support": {
  3494. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3495. },
  3496. "time": "2023-04-04T09:50:52+00:00"
  3497. },
  3498. {
  3499. "name": "psr/log",
  3500. "version": "3.0.0",
  3501. "source": {
  3502. "type": "git",
  3503. "url": "https://github.com/php-fig/log.git",
  3504. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3505. },
  3506. "dist": {
  3507. "type": "zip",
  3508. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3509. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3510. "shasum": "",
  3511. "mirrors": [
  3512. {
  3513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3514. "preferred": true
  3515. }
  3516. ]
  3517. },
  3518. "require": {
  3519. "php": ">=8.0.0"
  3520. },
  3521. "type": "library",
  3522. "extra": {
  3523. "branch-alias": {
  3524. "dev-master": "3.x-dev"
  3525. }
  3526. },
  3527. "autoload": {
  3528. "psr-4": {
  3529. "Psr\\Log\\": "src"
  3530. }
  3531. },
  3532. "notification-url": "https://packagist.org/downloads/",
  3533. "license": [
  3534. "MIT"
  3535. ],
  3536. "authors": [
  3537. {
  3538. "name": "PHP-FIG",
  3539. "homepage": "https://www.php-fig.org/"
  3540. }
  3541. ],
  3542. "description": "Common interface for logging libraries",
  3543. "homepage": "https://github.com/php-fig/log",
  3544. "keywords": [
  3545. "log",
  3546. "psr",
  3547. "psr-3"
  3548. ],
  3549. "support": {
  3550. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3551. },
  3552. "time": "2021-07-14T16:46:02+00:00"
  3553. },
  3554. {
  3555. "name": "psr/simple-cache",
  3556. "version": "3.0.0",
  3557. "source": {
  3558. "type": "git",
  3559. "url": "https://github.com/php-fig/simple-cache.git",
  3560. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3561. },
  3562. "dist": {
  3563. "type": "zip",
  3564. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3565. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3566. "shasum": "",
  3567. "mirrors": [
  3568. {
  3569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3570. "preferred": true
  3571. }
  3572. ]
  3573. },
  3574. "require": {
  3575. "php": ">=8.0.0"
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "branch-alias": {
  3580. "dev-master": "3.0.x-dev"
  3581. }
  3582. },
  3583. "autoload": {
  3584. "psr-4": {
  3585. "Psr\\SimpleCache\\": "src/"
  3586. }
  3587. },
  3588. "notification-url": "https://packagist.org/downloads/",
  3589. "license": [
  3590. "MIT"
  3591. ],
  3592. "authors": [
  3593. {
  3594. "name": "PHP-FIG",
  3595. "homepage": "https://www.php-fig.org/"
  3596. }
  3597. ],
  3598. "description": "Common interfaces for simple caching",
  3599. "keywords": [
  3600. "cache",
  3601. "caching",
  3602. "psr",
  3603. "psr-16",
  3604. "simple-cache"
  3605. ],
  3606. "support": {
  3607. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3608. },
  3609. "time": "2021-10-29T13:26:27+00:00"
  3610. },
  3611. {
  3612. "name": "psy/psysh",
  3613. "version": "v0.11.17",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/bobthecow/psysh.git",
  3617. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  3622. "reference": "3dc5d4018dabd80bceb8fe1e3191ba8460569f0a",
  3623. "shasum": "",
  3624. "mirrors": [
  3625. {
  3626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3627. "preferred": true
  3628. }
  3629. ]
  3630. },
  3631. "require": {
  3632. "ext-json": "*",
  3633. "ext-tokenizer": "*",
  3634. "nikic/php-parser": "^4.0 || ^3.1",
  3635. "php": "^8.0 || ^7.0.8",
  3636. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  3637. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  3638. },
  3639. "conflict": {
  3640. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3641. },
  3642. "require-dev": {
  3643. "bamarni/composer-bin-plugin": "^1.2"
  3644. },
  3645. "suggest": {
  3646. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3647. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3648. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  3649. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  3650. },
  3651. "bin": [
  3652. "bin/psysh"
  3653. ],
  3654. "type": "library",
  3655. "extra": {
  3656. "branch-alias": {
  3657. "dev-main": "0.11.x-dev"
  3658. }
  3659. },
  3660. "autoload": {
  3661. "files": [
  3662. "src/functions.php"
  3663. ],
  3664. "psr-4": {
  3665. "Psy\\": "src/"
  3666. }
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "authors": [
  3673. {
  3674. "name": "Justin Hileman",
  3675. "email": "justin@justinhileman.info",
  3676. "homepage": "http://justinhileman.com"
  3677. }
  3678. ],
  3679. "description": "An interactive shell for modern PHP.",
  3680. "homepage": "http://psysh.org",
  3681. "keywords": [
  3682. "REPL",
  3683. "console",
  3684. "interactive",
  3685. "shell"
  3686. ],
  3687. "support": {
  3688. "issues": "https://github.com/bobthecow/psysh/issues",
  3689. "source": "https://github.com/bobthecow/psysh/tree/v0.11.17"
  3690. },
  3691. "time": "2023-05-05T20:02:42+00:00"
  3692. },
  3693. {
  3694. "name": "ralouphie/getallheaders",
  3695. "version": "3.0.3",
  3696. "source": {
  3697. "type": "git",
  3698. "url": "https://github.com/ralouphie/getallheaders.git",
  3699. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3700. },
  3701. "dist": {
  3702. "type": "zip",
  3703. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3704. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3705. "shasum": "",
  3706. "mirrors": [
  3707. {
  3708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3709. "preferred": true
  3710. }
  3711. ]
  3712. },
  3713. "require": {
  3714. "php": ">=5.6"
  3715. },
  3716. "require-dev": {
  3717. "php-coveralls/php-coveralls": "^2.1",
  3718. "phpunit/phpunit": "^5 || ^6.5"
  3719. },
  3720. "type": "library",
  3721. "autoload": {
  3722. "files": [
  3723. "src/getallheaders.php"
  3724. ]
  3725. },
  3726. "notification-url": "https://packagist.org/downloads/",
  3727. "license": [
  3728. "MIT"
  3729. ],
  3730. "authors": [
  3731. {
  3732. "name": "Ralph Khattar",
  3733. "email": "ralph.khattar@gmail.com"
  3734. }
  3735. ],
  3736. "description": "A polyfill for getallheaders.",
  3737. "support": {
  3738. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3739. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3740. },
  3741. "time": "2019-03-08T08:55:37+00:00"
  3742. },
  3743. {
  3744. "name": "ramsey/collection",
  3745. "version": "1.3.0",
  3746. "source": {
  3747. "type": "git",
  3748. "url": "https://github.com/ramsey/collection.git",
  3749. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  3750. },
  3751. "dist": {
  3752. "type": "zip",
  3753. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3754. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3755. "shasum": "",
  3756. "mirrors": [
  3757. {
  3758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3759. "preferred": true
  3760. }
  3761. ]
  3762. },
  3763. "require": {
  3764. "php": "^7.4 || ^8.0",
  3765. "symfony/polyfill-php81": "^1.23"
  3766. },
  3767. "require-dev": {
  3768. "captainhook/plugin-composer": "^5.3",
  3769. "ergebnis/composer-normalize": "^2.28.3",
  3770. "fakerphp/faker": "^1.21",
  3771. "hamcrest/hamcrest-php": "^2.0",
  3772. "jangregor/phpstan-prophecy": "^1.0",
  3773. "mockery/mockery": "^1.5",
  3774. "php-parallel-lint/php-console-highlighter": "^1.0",
  3775. "php-parallel-lint/php-parallel-lint": "^1.3",
  3776. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3777. "phpspec/prophecy-phpunit": "^2.0",
  3778. "phpstan/extension-installer": "^1.2",
  3779. "phpstan/phpstan": "^1.9",
  3780. "phpstan/phpstan-mockery": "^1.1",
  3781. "phpstan/phpstan-phpunit": "^1.3",
  3782. "phpunit/phpunit": "^9.5",
  3783. "psalm/plugin-mockery": "^1.1",
  3784. "psalm/plugin-phpunit": "^0.18.4",
  3785. "ramsey/coding-standard": "^2.0.3",
  3786. "ramsey/conventional-commits": "^1.3",
  3787. "vimeo/psalm": "^5.4"
  3788. },
  3789. "type": "library",
  3790. "extra": {
  3791. "captainhook": {
  3792. "force-install": true
  3793. },
  3794. "ramsey/conventional-commits": {
  3795. "configFile": "conventional-commits.json"
  3796. }
  3797. },
  3798. "autoload": {
  3799. "psr-4": {
  3800. "Ramsey\\Collection\\": "src/"
  3801. }
  3802. },
  3803. "notification-url": "https://packagist.org/downloads/",
  3804. "license": [
  3805. "MIT"
  3806. ],
  3807. "authors": [
  3808. {
  3809. "name": "Ben Ramsey",
  3810. "email": "ben@benramsey.com",
  3811. "homepage": "https://benramsey.com"
  3812. }
  3813. ],
  3814. "description": "A PHP library for representing and manipulating collections.",
  3815. "keywords": [
  3816. "array",
  3817. "collection",
  3818. "hash",
  3819. "map",
  3820. "queue",
  3821. "set"
  3822. ],
  3823. "support": {
  3824. "issues": "https://github.com/ramsey/collection/issues",
  3825. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  3826. },
  3827. "funding": [
  3828. {
  3829. "url": "https://github.com/ramsey",
  3830. "type": "github"
  3831. },
  3832. {
  3833. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3834. "type": "tidelift"
  3835. }
  3836. ],
  3837. "time": "2022-12-27T19:12:24+00:00"
  3838. },
  3839. {
  3840. "name": "ramsey/uuid",
  3841. "version": "4.7.4",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://github.com/ramsey/uuid.git",
  3845. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  3850. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  3851. "shasum": "",
  3852. "mirrors": [
  3853. {
  3854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3855. "preferred": true
  3856. }
  3857. ]
  3858. },
  3859. "require": {
  3860. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  3861. "ext-json": "*",
  3862. "php": "^8.0",
  3863. "ramsey/collection": "^1.2 || ^2.0"
  3864. },
  3865. "replace": {
  3866. "rhumsaa/uuid": "self.version"
  3867. },
  3868. "require-dev": {
  3869. "captainhook/captainhook": "^5.10",
  3870. "captainhook/plugin-composer": "^5.3",
  3871. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3872. "doctrine/annotations": "^1.8",
  3873. "ergebnis/composer-normalize": "^2.15",
  3874. "mockery/mockery": "^1.3",
  3875. "paragonie/random-lib": "^2",
  3876. "php-mock/php-mock": "^2.2",
  3877. "php-mock/php-mock-mockery": "^1.3",
  3878. "php-parallel-lint/php-parallel-lint": "^1.1",
  3879. "phpbench/phpbench": "^1.0",
  3880. "phpstan/extension-installer": "^1.1",
  3881. "phpstan/phpstan": "^1.8",
  3882. "phpstan/phpstan-mockery": "^1.1",
  3883. "phpstan/phpstan-phpunit": "^1.1",
  3884. "phpunit/phpunit": "^8.5 || ^9",
  3885. "ramsey/composer-repl": "^1.4",
  3886. "slevomat/coding-standard": "^8.4",
  3887. "squizlabs/php_codesniffer": "^3.5",
  3888. "vimeo/psalm": "^4.9"
  3889. },
  3890. "suggest": {
  3891. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3892. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3893. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3894. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3895. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3896. },
  3897. "type": "library",
  3898. "extra": {
  3899. "captainhook": {
  3900. "force-install": true
  3901. }
  3902. },
  3903. "autoload": {
  3904. "files": [
  3905. "src/functions.php"
  3906. ],
  3907. "psr-4": {
  3908. "Ramsey\\Uuid\\": "src/"
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3916. "keywords": [
  3917. "guid",
  3918. "identifier",
  3919. "uuid"
  3920. ],
  3921. "support": {
  3922. "issues": "https://github.com/ramsey/uuid/issues",
  3923. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  3924. },
  3925. "funding": [
  3926. {
  3927. "url": "https://github.com/ramsey",
  3928. "type": "github"
  3929. },
  3930. {
  3931. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3932. "type": "tidelift"
  3933. }
  3934. ],
  3935. "time": "2023-04-15T23:01:58+00:00"
  3936. },
  3937. {
  3938. "name": "symfony/cache",
  3939. "version": "v6.0.19",
  3940. "source": {
  3941. "type": "git",
  3942. "url": "https://github.com/symfony/cache.git",
  3943. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  3944. },
  3945. "dist": {
  3946. "type": "zip",
  3947. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  3948. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  3949. "shasum": "",
  3950. "mirrors": [
  3951. {
  3952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3953. "preferred": true
  3954. }
  3955. ]
  3956. },
  3957. "require": {
  3958. "php": ">=8.0.2",
  3959. "psr/cache": "^2.0|^3.0",
  3960. "psr/log": "^1.1|^2|^3",
  3961. "symfony/cache-contracts": "^1.1.7|^2|^3",
  3962. "symfony/service-contracts": "^1.1|^2|^3",
  3963. "symfony/var-exporter": "^5.4|^6.0"
  3964. },
  3965. "conflict": {
  3966. "doctrine/dbal": "<2.13.1",
  3967. "symfony/dependency-injection": "<5.4",
  3968. "symfony/http-kernel": "<5.4",
  3969. "symfony/var-dumper": "<5.4"
  3970. },
  3971. "provide": {
  3972. "psr/cache-implementation": "2.0|3.0",
  3973. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  3974. "symfony/cache-implementation": "1.1|2.0|3.0"
  3975. },
  3976. "require-dev": {
  3977. "cache/integration-tests": "dev-master",
  3978. "doctrine/dbal": "^2.13.1|^3.0",
  3979. "predis/predis": "^1.1",
  3980. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3981. "symfony/config": "^5.4|^6.0",
  3982. "symfony/dependency-injection": "^5.4|^6.0",
  3983. "symfony/filesystem": "^5.4|^6.0",
  3984. "symfony/http-kernel": "^5.4|^6.0",
  3985. "symfony/messenger": "^5.4|^6.0",
  3986. "symfony/var-dumper": "^5.4|^6.0"
  3987. },
  3988. "type": "library",
  3989. "autoload": {
  3990. "psr-4": {
  3991. "Symfony\\Component\\Cache\\": ""
  3992. },
  3993. "exclude-from-classmap": [
  3994. "/Tests/"
  3995. ]
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "MIT"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Nicolas Grekas",
  4004. "email": "p@tchwork.com"
  4005. },
  4006. {
  4007. "name": "Symfony Community",
  4008. "homepage": "https://symfony.com/contributors"
  4009. }
  4010. ],
  4011. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4012. "homepage": "https://symfony.com",
  4013. "keywords": [
  4014. "caching",
  4015. "psr6"
  4016. ],
  4017. "support": {
  4018. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  4019. },
  4020. "funding": [
  4021. {
  4022. "url": "https://symfony.com/sponsor",
  4023. "type": "custom"
  4024. },
  4025. {
  4026. "url": "https://github.com/fabpot",
  4027. "type": "github"
  4028. },
  4029. {
  4030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4031. "type": "tidelift"
  4032. }
  4033. ],
  4034. "time": "2023-01-20T17:44:14+00:00"
  4035. },
  4036. {
  4037. "name": "symfony/cache-contracts",
  4038. "version": "v3.0.2",
  4039. "source": {
  4040. "type": "git",
  4041. "url": "https://github.com/symfony/cache-contracts.git",
  4042. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  4043. },
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4047. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  4048. "shasum": "",
  4049. "mirrors": [
  4050. {
  4051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4052. "preferred": true
  4053. }
  4054. ]
  4055. },
  4056. "require": {
  4057. "php": ">=8.0.2",
  4058. "psr/cache": "^3.0"
  4059. },
  4060. "suggest": {
  4061. "symfony/cache-implementation": ""
  4062. },
  4063. "type": "library",
  4064. "extra": {
  4065. "branch-alias": {
  4066. "dev-main": "3.0-dev"
  4067. },
  4068. "thanks": {
  4069. "name": "symfony/contracts",
  4070. "url": "https://github.com/symfony/contracts"
  4071. }
  4072. },
  4073. "autoload": {
  4074. "psr-4": {
  4075. "Symfony\\Contracts\\Cache\\": ""
  4076. }
  4077. },
  4078. "notification-url": "https://packagist.org/downloads/",
  4079. "license": [
  4080. "MIT"
  4081. ],
  4082. "authors": [
  4083. {
  4084. "name": "Nicolas Grekas",
  4085. "email": "p@tchwork.com"
  4086. },
  4087. {
  4088. "name": "Symfony Community",
  4089. "homepage": "https://symfony.com/contributors"
  4090. }
  4091. ],
  4092. "description": "Generic abstractions related to caching",
  4093. "homepage": "https://symfony.com",
  4094. "keywords": [
  4095. "abstractions",
  4096. "contracts",
  4097. "decoupling",
  4098. "interfaces",
  4099. "interoperability",
  4100. "standards"
  4101. ],
  4102. "support": {
  4103. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  4104. },
  4105. "funding": [
  4106. {
  4107. "url": "https://symfony.com/sponsor",
  4108. "type": "custom"
  4109. },
  4110. {
  4111. "url": "https://github.com/fabpot",
  4112. "type": "github"
  4113. },
  4114. {
  4115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4116. "type": "tidelift"
  4117. }
  4118. ],
  4119. "time": "2022-01-02T09:55:41+00:00"
  4120. },
  4121. {
  4122. "name": "symfony/console",
  4123. "version": "v6.0.19",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://github.com/symfony/console.git",
  4127. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://api.github.com/repos/symfony/console/zipball/c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4132. "reference": "c3ebc83d031b71c39da318ca8b7a07ecc67507ed",
  4133. "shasum": "",
  4134. "mirrors": [
  4135. {
  4136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4137. "preferred": true
  4138. }
  4139. ]
  4140. },
  4141. "require": {
  4142. "php": ">=8.0.2",
  4143. "symfony/polyfill-mbstring": "~1.0",
  4144. "symfony/service-contracts": "^1.1|^2|^3",
  4145. "symfony/string": "^5.4|^6.0"
  4146. },
  4147. "conflict": {
  4148. "symfony/dependency-injection": "<5.4",
  4149. "symfony/dotenv": "<5.4",
  4150. "symfony/event-dispatcher": "<5.4",
  4151. "symfony/lock": "<5.4",
  4152. "symfony/process": "<5.4"
  4153. },
  4154. "provide": {
  4155. "psr/log-implementation": "1.0|2.0|3.0"
  4156. },
  4157. "require-dev": {
  4158. "psr/log": "^1|^2|^3",
  4159. "symfony/config": "^5.4|^6.0",
  4160. "symfony/dependency-injection": "^5.4|^6.0",
  4161. "symfony/event-dispatcher": "^5.4|^6.0",
  4162. "symfony/lock": "^5.4|^6.0",
  4163. "symfony/process": "^5.4|^6.0",
  4164. "symfony/var-dumper": "^5.4|^6.0"
  4165. },
  4166. "suggest": {
  4167. "psr/log": "For using the console logger",
  4168. "symfony/event-dispatcher": "",
  4169. "symfony/lock": "",
  4170. "symfony/process": ""
  4171. },
  4172. "type": "library",
  4173. "autoload": {
  4174. "psr-4": {
  4175. "Symfony\\Component\\Console\\": ""
  4176. },
  4177. "exclude-from-classmap": [
  4178. "/Tests/"
  4179. ]
  4180. },
  4181. "notification-url": "https://packagist.org/downloads/",
  4182. "license": [
  4183. "MIT"
  4184. ],
  4185. "authors": [
  4186. {
  4187. "name": "Fabien Potencier",
  4188. "email": "fabien@symfony.com"
  4189. },
  4190. {
  4191. "name": "Symfony Community",
  4192. "homepage": "https://symfony.com/contributors"
  4193. }
  4194. ],
  4195. "description": "Eases the creation of beautiful and testable command line interfaces",
  4196. "homepage": "https://symfony.com",
  4197. "keywords": [
  4198. "cli",
  4199. "command line",
  4200. "console",
  4201. "terminal"
  4202. ],
  4203. "support": {
  4204. "source": "https://github.com/symfony/console/tree/v6.0.19"
  4205. },
  4206. "funding": [
  4207. {
  4208. "url": "https://symfony.com/sponsor",
  4209. "type": "custom"
  4210. },
  4211. {
  4212. "url": "https://github.com/fabpot",
  4213. "type": "github"
  4214. },
  4215. {
  4216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4217. "type": "tidelift"
  4218. }
  4219. ],
  4220. "time": "2023-01-01T08:36:10+00:00"
  4221. },
  4222. {
  4223. "name": "symfony/css-selector",
  4224. "version": "v6.0.19",
  4225. "source": {
  4226. "type": "git",
  4227. "url": "https://github.com/symfony/css-selector.git",
  4228. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  4229. },
  4230. "dist": {
  4231. "type": "zip",
  4232. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4233. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  4234. "shasum": "",
  4235. "mirrors": [
  4236. {
  4237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4238. "preferred": true
  4239. }
  4240. ]
  4241. },
  4242. "require": {
  4243. "php": ">=8.0.2"
  4244. },
  4245. "type": "library",
  4246. "autoload": {
  4247. "psr-4": {
  4248. "Symfony\\Component\\CssSelector\\": ""
  4249. },
  4250. "exclude-from-classmap": [
  4251. "/Tests/"
  4252. ]
  4253. },
  4254. "notification-url": "https://packagist.org/downloads/",
  4255. "license": [
  4256. "MIT"
  4257. ],
  4258. "authors": [
  4259. {
  4260. "name": "Fabien Potencier",
  4261. "email": "fabien@symfony.com"
  4262. },
  4263. {
  4264. "name": "Jean-François Simon",
  4265. "email": "jeanfrancois.simon@sensiolabs.com"
  4266. },
  4267. {
  4268. "name": "Symfony Community",
  4269. "homepage": "https://symfony.com/contributors"
  4270. }
  4271. ],
  4272. "description": "Converts CSS selectors to XPath expressions",
  4273. "homepage": "https://symfony.com",
  4274. "support": {
  4275. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  4276. },
  4277. "funding": [
  4278. {
  4279. "url": "https://symfony.com/sponsor",
  4280. "type": "custom"
  4281. },
  4282. {
  4283. "url": "https://github.com/fabpot",
  4284. "type": "github"
  4285. },
  4286. {
  4287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4288. "type": "tidelift"
  4289. }
  4290. ],
  4291. "time": "2023-01-01T08:36:10+00:00"
  4292. },
  4293. {
  4294. "name": "symfony/deprecation-contracts",
  4295. "version": "v3.0.2",
  4296. "source": {
  4297. "type": "git",
  4298. "url": "https://github.com/symfony/deprecation-contracts.git",
  4299. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  4300. },
  4301. "dist": {
  4302. "type": "zip",
  4303. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4304. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  4305. "shasum": "",
  4306. "mirrors": [
  4307. {
  4308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4309. "preferred": true
  4310. }
  4311. ]
  4312. },
  4313. "require": {
  4314. "php": ">=8.0.2"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-main": "3.0-dev"
  4320. },
  4321. "thanks": {
  4322. "name": "symfony/contracts",
  4323. "url": "https://github.com/symfony/contracts"
  4324. }
  4325. },
  4326. "autoload": {
  4327. "files": [
  4328. "function.php"
  4329. ]
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Nicolas Grekas",
  4338. "email": "p@tchwork.com"
  4339. },
  4340. {
  4341. "name": "Symfony Community",
  4342. "homepage": "https://symfony.com/contributors"
  4343. }
  4344. ],
  4345. "description": "A generic function and convention to trigger deprecation notices",
  4346. "homepage": "https://symfony.com",
  4347. "support": {
  4348. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  4349. },
  4350. "funding": [
  4351. {
  4352. "url": "https://symfony.com/sponsor",
  4353. "type": "custom"
  4354. },
  4355. {
  4356. "url": "https://github.com/fabpot",
  4357. "type": "github"
  4358. },
  4359. {
  4360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4361. "type": "tidelift"
  4362. }
  4363. ],
  4364. "time": "2022-01-02T09:55:41+00:00"
  4365. },
  4366. {
  4367. "name": "symfony/error-handler",
  4368. "version": "v6.0.19",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://github.com/symfony/error-handler.git",
  4372. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67"
  4373. },
  4374. "dist": {
  4375. "type": "zip",
  4376. "url": "https://api.github.com/repos/symfony/error-handler/zipball/c7df52182f43a68522756ac31a532dd5b1e6db67",
  4377. "reference": "c7df52182f43a68522756ac31a532dd5b1e6db67",
  4378. "shasum": "",
  4379. "mirrors": [
  4380. {
  4381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4382. "preferred": true
  4383. }
  4384. ]
  4385. },
  4386. "require": {
  4387. "php": ">=8.0.2",
  4388. "psr/log": "^1|^2|^3",
  4389. "symfony/var-dumper": "^5.4|^6.0"
  4390. },
  4391. "require-dev": {
  4392. "symfony/deprecation-contracts": "^2.1|^3",
  4393. "symfony/http-kernel": "^5.4|^6.0",
  4394. "symfony/serializer": "^5.4|^6.0"
  4395. },
  4396. "bin": [
  4397. "Resources/bin/patch-type-declarations"
  4398. ],
  4399. "type": "library",
  4400. "autoload": {
  4401. "psr-4": {
  4402. "Symfony\\Component\\ErrorHandler\\": ""
  4403. },
  4404. "exclude-from-classmap": [
  4405. "/Tests/"
  4406. ]
  4407. },
  4408. "notification-url": "https://packagist.org/downloads/",
  4409. "license": [
  4410. "MIT"
  4411. ],
  4412. "authors": [
  4413. {
  4414. "name": "Fabien Potencier",
  4415. "email": "fabien@symfony.com"
  4416. },
  4417. {
  4418. "name": "Symfony Community",
  4419. "homepage": "https://symfony.com/contributors"
  4420. }
  4421. ],
  4422. "description": "Provides tools to manage errors and ease debugging PHP code",
  4423. "homepage": "https://symfony.com",
  4424. "support": {
  4425. "source": "https://github.com/symfony/error-handler/tree/v6.0.19"
  4426. },
  4427. "funding": [
  4428. {
  4429. "url": "https://symfony.com/sponsor",
  4430. "type": "custom"
  4431. },
  4432. {
  4433. "url": "https://github.com/fabpot",
  4434. "type": "github"
  4435. },
  4436. {
  4437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4438. "type": "tidelift"
  4439. }
  4440. ],
  4441. "time": "2023-01-01T08:36:10+00:00"
  4442. },
  4443. {
  4444. "name": "symfony/event-dispatcher",
  4445. "version": "v6.0.19",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://github.com/symfony/event-dispatcher.git",
  4449. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  4454. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  4455. "shasum": "",
  4456. "mirrors": [
  4457. {
  4458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4459. "preferred": true
  4460. }
  4461. ]
  4462. },
  4463. "require": {
  4464. "php": ">=8.0.2",
  4465. "symfony/event-dispatcher-contracts": "^2|^3"
  4466. },
  4467. "conflict": {
  4468. "symfony/dependency-injection": "<5.4"
  4469. },
  4470. "provide": {
  4471. "psr/event-dispatcher-implementation": "1.0",
  4472. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4473. },
  4474. "require-dev": {
  4475. "psr/log": "^1|^2|^3",
  4476. "symfony/config": "^5.4|^6.0",
  4477. "symfony/dependency-injection": "^5.4|^6.0",
  4478. "symfony/error-handler": "^5.4|^6.0",
  4479. "symfony/expression-language": "^5.4|^6.0",
  4480. "symfony/http-foundation": "^5.4|^6.0",
  4481. "symfony/service-contracts": "^1.1|^2|^3",
  4482. "symfony/stopwatch": "^5.4|^6.0"
  4483. },
  4484. "suggest": {
  4485. "symfony/dependency-injection": "",
  4486. "symfony/http-kernel": ""
  4487. },
  4488. "type": "library",
  4489. "autoload": {
  4490. "psr-4": {
  4491. "Symfony\\Component\\EventDispatcher\\": ""
  4492. },
  4493. "exclude-from-classmap": [
  4494. "/Tests/"
  4495. ]
  4496. },
  4497. "notification-url": "https://packagist.org/downloads/",
  4498. "license": [
  4499. "MIT"
  4500. ],
  4501. "authors": [
  4502. {
  4503. "name": "Fabien Potencier",
  4504. "email": "fabien@symfony.com"
  4505. },
  4506. {
  4507. "name": "Symfony Community",
  4508. "homepage": "https://symfony.com/contributors"
  4509. }
  4510. ],
  4511. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4512. "homepage": "https://symfony.com",
  4513. "support": {
  4514. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  4515. },
  4516. "funding": [
  4517. {
  4518. "url": "https://symfony.com/sponsor",
  4519. "type": "custom"
  4520. },
  4521. {
  4522. "url": "https://github.com/fabpot",
  4523. "type": "github"
  4524. },
  4525. {
  4526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4527. "type": "tidelift"
  4528. }
  4529. ],
  4530. "time": "2023-01-01T08:36:10+00:00"
  4531. },
  4532. {
  4533. "name": "symfony/event-dispatcher-contracts",
  4534. "version": "v3.0.2",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4538. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  4543. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  4544. "shasum": "",
  4545. "mirrors": [
  4546. {
  4547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4548. "preferred": true
  4549. }
  4550. ]
  4551. },
  4552. "require": {
  4553. "php": ">=8.0.2",
  4554. "psr/event-dispatcher": "^1"
  4555. },
  4556. "suggest": {
  4557. "symfony/event-dispatcher-implementation": ""
  4558. },
  4559. "type": "library",
  4560. "extra": {
  4561. "branch-alias": {
  4562. "dev-main": "3.0-dev"
  4563. },
  4564. "thanks": {
  4565. "name": "symfony/contracts",
  4566. "url": "https://github.com/symfony/contracts"
  4567. }
  4568. },
  4569. "autoload": {
  4570. "psr-4": {
  4571. "Symfony\\Contracts\\EventDispatcher\\": ""
  4572. }
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "MIT"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "Nicolas Grekas",
  4581. "email": "p@tchwork.com"
  4582. },
  4583. {
  4584. "name": "Symfony Community",
  4585. "homepage": "https://symfony.com/contributors"
  4586. }
  4587. ],
  4588. "description": "Generic abstractions related to dispatching event",
  4589. "homepage": "https://symfony.com",
  4590. "keywords": [
  4591. "abstractions",
  4592. "contracts",
  4593. "decoupling",
  4594. "interfaces",
  4595. "interoperability",
  4596. "standards"
  4597. ],
  4598. "support": {
  4599. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  4600. },
  4601. "funding": [
  4602. {
  4603. "url": "https://symfony.com/sponsor",
  4604. "type": "custom"
  4605. },
  4606. {
  4607. "url": "https://github.com/fabpot",
  4608. "type": "github"
  4609. },
  4610. {
  4611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4612. "type": "tidelift"
  4613. }
  4614. ],
  4615. "time": "2022-01-02T09:55:41+00:00"
  4616. },
  4617. {
  4618. "name": "symfony/finder",
  4619. "version": "v6.0.19",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://github.com/symfony/finder.git",
  4623. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11"
  4624. },
  4625. "dist": {
  4626. "type": "zip",
  4627. "url": "https://api.github.com/repos/symfony/finder/zipball/5cc9cac6586fc0c28cd173780ca696e419fefa11",
  4628. "reference": "5cc9cac6586fc0c28cd173780ca696e419fefa11",
  4629. "shasum": "",
  4630. "mirrors": [
  4631. {
  4632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4633. "preferred": true
  4634. }
  4635. ]
  4636. },
  4637. "require": {
  4638. "php": ">=8.0.2"
  4639. },
  4640. "type": "library",
  4641. "autoload": {
  4642. "psr-4": {
  4643. "Symfony\\Component\\Finder\\": ""
  4644. },
  4645. "exclude-from-classmap": [
  4646. "/Tests/"
  4647. ]
  4648. },
  4649. "notification-url": "https://packagist.org/downloads/",
  4650. "license": [
  4651. "MIT"
  4652. ],
  4653. "authors": [
  4654. {
  4655. "name": "Fabien Potencier",
  4656. "email": "fabien@symfony.com"
  4657. },
  4658. {
  4659. "name": "Symfony Community",
  4660. "homepage": "https://symfony.com/contributors"
  4661. }
  4662. ],
  4663. "description": "Finds files and directories via an intuitive fluent interface",
  4664. "homepage": "https://symfony.com",
  4665. "support": {
  4666. "source": "https://github.com/symfony/finder/tree/v6.0.19"
  4667. },
  4668. "funding": [
  4669. {
  4670. "url": "https://symfony.com/sponsor",
  4671. "type": "custom"
  4672. },
  4673. {
  4674. "url": "https://github.com/fabpot",
  4675. "type": "github"
  4676. },
  4677. {
  4678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4679. "type": "tidelift"
  4680. }
  4681. ],
  4682. "time": "2023-01-20T17:44:14+00:00"
  4683. },
  4684. {
  4685. "name": "symfony/http-client",
  4686. "version": "v6.0.20",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/symfony/http-client.git",
  4690. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/symfony/http-client/zipball/541c04560da1875f62c963c3aab6ea12a7314e11",
  4695. "reference": "541c04560da1875f62c963c3aab6ea12a7314e11",
  4696. "shasum": "",
  4697. "mirrors": [
  4698. {
  4699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4700. "preferred": true
  4701. }
  4702. ]
  4703. },
  4704. "require": {
  4705. "php": ">=8.0.2",
  4706. "psr/log": "^1|^2|^3",
  4707. "symfony/http-client-contracts": "^3",
  4708. "symfony/service-contracts": "^1.0|^2|^3"
  4709. },
  4710. "provide": {
  4711. "php-http/async-client-implementation": "*",
  4712. "php-http/client-implementation": "*",
  4713. "psr/http-client-implementation": "1.0",
  4714. "symfony/http-client-implementation": "3.0"
  4715. },
  4716. "require-dev": {
  4717. "amphp/amp": "^2.5",
  4718. "amphp/http-client": "^4.2.1",
  4719. "amphp/http-tunnel": "^1.0",
  4720. "amphp/socket": "^1.1",
  4721. "guzzlehttp/promises": "^1.4",
  4722. "nyholm/psr7": "^1.0",
  4723. "php-http/httplug": "^1.0|^2.0",
  4724. "psr/http-client": "^1.0",
  4725. "symfony/dependency-injection": "^5.4|^6.0",
  4726. "symfony/http-kernel": "^5.4|^6.0",
  4727. "symfony/process": "^5.4|^6.0",
  4728. "symfony/stopwatch": "^5.4|^6.0"
  4729. },
  4730. "type": "library",
  4731. "autoload": {
  4732. "psr-4": {
  4733. "Symfony\\Component\\HttpClient\\": ""
  4734. },
  4735. "exclude-from-classmap": [
  4736. "/Tests/"
  4737. ]
  4738. },
  4739. "notification-url": "https://packagist.org/downloads/",
  4740. "license": [
  4741. "MIT"
  4742. ],
  4743. "authors": [
  4744. {
  4745. "name": "Nicolas Grekas",
  4746. "email": "p@tchwork.com"
  4747. },
  4748. {
  4749. "name": "Symfony Community",
  4750. "homepage": "https://symfony.com/contributors"
  4751. }
  4752. ],
  4753. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4754. "homepage": "https://symfony.com",
  4755. "support": {
  4756. "source": "https://github.com/symfony/http-client/tree/v6.0.20"
  4757. },
  4758. "funding": [
  4759. {
  4760. "url": "https://symfony.com/sponsor",
  4761. "type": "custom"
  4762. },
  4763. {
  4764. "url": "https://github.com/fabpot",
  4765. "type": "github"
  4766. },
  4767. {
  4768. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4769. "type": "tidelift"
  4770. }
  4771. ],
  4772. "time": "2023-01-30T15:41:07+00:00"
  4773. },
  4774. {
  4775. "name": "symfony/http-client-contracts",
  4776. "version": "v3.0.2",
  4777. "source": {
  4778. "type": "git",
  4779. "url": "https://github.com/symfony/http-client-contracts.git",
  4780. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129"
  4781. },
  4782. "dist": {
  4783. "type": "zip",
  4784. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4785. "reference": "4184b9b63af1edaf35b6a7974c6f1f9f33294129",
  4786. "shasum": "",
  4787. "mirrors": [
  4788. {
  4789. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4790. "preferred": true
  4791. }
  4792. ]
  4793. },
  4794. "require": {
  4795. "php": ">=8.0.2"
  4796. },
  4797. "suggest": {
  4798. "symfony/http-client-implementation": ""
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "branch-alias": {
  4803. "dev-main": "3.0-dev"
  4804. },
  4805. "thanks": {
  4806. "name": "symfony/contracts",
  4807. "url": "https://github.com/symfony/contracts"
  4808. }
  4809. },
  4810. "autoload": {
  4811. "psr-4": {
  4812. "Symfony\\Contracts\\HttpClient\\": ""
  4813. }
  4814. },
  4815. "notification-url": "https://packagist.org/downloads/",
  4816. "license": [
  4817. "MIT"
  4818. ],
  4819. "authors": [
  4820. {
  4821. "name": "Nicolas Grekas",
  4822. "email": "p@tchwork.com"
  4823. },
  4824. {
  4825. "name": "Symfony Community",
  4826. "homepage": "https://symfony.com/contributors"
  4827. }
  4828. ],
  4829. "description": "Generic abstractions related to HTTP clients",
  4830. "homepage": "https://symfony.com",
  4831. "keywords": [
  4832. "abstractions",
  4833. "contracts",
  4834. "decoupling",
  4835. "interfaces",
  4836. "interoperability",
  4837. "standards"
  4838. ],
  4839. "support": {
  4840. "source": "https://github.com/symfony/http-client-contracts/tree/v3.0.2"
  4841. },
  4842. "funding": [
  4843. {
  4844. "url": "https://symfony.com/sponsor",
  4845. "type": "custom"
  4846. },
  4847. {
  4848. "url": "https://github.com/fabpot",
  4849. "type": "github"
  4850. },
  4851. {
  4852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4853. "type": "tidelift"
  4854. }
  4855. ],
  4856. "time": "2022-04-12T16:11:42+00:00"
  4857. },
  4858. {
  4859. "name": "symfony/http-foundation",
  4860. "version": "v6.0.20",
  4861. "source": {
  4862. "type": "git",
  4863. "url": "https://github.com/symfony/http-foundation.git",
  4864. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6"
  4865. },
  4866. "dist": {
  4867. "type": "zip",
  4868. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4869. "reference": "e16b2676a4b3b1fa12378a20b29c364feda2a8d6",
  4870. "shasum": "",
  4871. "mirrors": [
  4872. {
  4873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4874. "preferred": true
  4875. }
  4876. ]
  4877. },
  4878. "require": {
  4879. "php": ">=8.0.2",
  4880. "symfony/deprecation-contracts": "^2.1|^3",
  4881. "symfony/polyfill-mbstring": "~1.1"
  4882. },
  4883. "require-dev": {
  4884. "predis/predis": "~1.0",
  4885. "symfony/cache": "^5.4|^6.0",
  4886. "symfony/dependency-injection": "^5.4|^6.0",
  4887. "symfony/expression-language": "^5.4|^6.0",
  4888. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  4889. "symfony/mime": "^5.4|^6.0",
  4890. "symfony/rate-limiter": "^5.2|^6.0"
  4891. },
  4892. "suggest": {
  4893. "symfony/mime": "To use the file extension guesser"
  4894. },
  4895. "type": "library",
  4896. "autoload": {
  4897. "psr-4": {
  4898. "Symfony\\Component\\HttpFoundation\\": ""
  4899. },
  4900. "exclude-from-classmap": [
  4901. "/Tests/"
  4902. ]
  4903. },
  4904. "notification-url": "https://packagist.org/downloads/",
  4905. "license": [
  4906. "MIT"
  4907. ],
  4908. "authors": [
  4909. {
  4910. "name": "Fabien Potencier",
  4911. "email": "fabien@symfony.com"
  4912. },
  4913. {
  4914. "name": "Symfony Community",
  4915. "homepage": "https://symfony.com/contributors"
  4916. }
  4917. ],
  4918. "description": "Defines an object-oriented layer for the HTTP specification",
  4919. "homepage": "https://symfony.com",
  4920. "support": {
  4921. "source": "https://github.com/symfony/http-foundation/tree/v6.0.20"
  4922. },
  4923. "funding": [
  4924. {
  4925. "url": "https://symfony.com/sponsor",
  4926. "type": "custom"
  4927. },
  4928. {
  4929. "url": "https://github.com/fabpot",
  4930. "type": "github"
  4931. },
  4932. {
  4933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4934. "type": "tidelift"
  4935. }
  4936. ],
  4937. "time": "2023-01-30T15:41:07+00:00"
  4938. },
  4939. {
  4940. "name": "symfony/http-kernel",
  4941. "version": "v6.0.20",
  4942. "source": {
  4943. "type": "git",
  4944. "url": "https://github.com/symfony/http-kernel.git",
  4945. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349"
  4946. },
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6dc70833fd0ef5e861e17c7854c12d7d86679349",
  4950. "reference": "6dc70833fd0ef5e861e17c7854c12d7d86679349",
  4951. "shasum": "",
  4952. "mirrors": [
  4953. {
  4954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4955. "preferred": true
  4956. }
  4957. ]
  4958. },
  4959. "require": {
  4960. "php": ">=8.0.2",
  4961. "psr/log": "^1|^2|^3",
  4962. "symfony/error-handler": "^5.4|^6.0",
  4963. "symfony/event-dispatcher": "^5.4|^6.0",
  4964. "symfony/http-foundation": "^5.4|^6.0",
  4965. "symfony/polyfill-ctype": "^1.8"
  4966. },
  4967. "conflict": {
  4968. "symfony/browser-kit": "<5.4",
  4969. "symfony/cache": "<5.4",
  4970. "symfony/config": "<5.4",
  4971. "symfony/console": "<5.4",
  4972. "symfony/dependency-injection": "<5.4",
  4973. "symfony/doctrine-bridge": "<5.4",
  4974. "symfony/form": "<5.4",
  4975. "symfony/http-client": "<5.4",
  4976. "symfony/mailer": "<5.4",
  4977. "symfony/messenger": "<5.4",
  4978. "symfony/translation": "<5.4",
  4979. "symfony/twig-bridge": "<5.4",
  4980. "symfony/validator": "<5.4",
  4981. "twig/twig": "<2.13"
  4982. },
  4983. "provide": {
  4984. "psr/log-implementation": "1.0|2.0|3.0"
  4985. },
  4986. "require-dev": {
  4987. "psr/cache": "^1.0|^2.0|^3.0",
  4988. "symfony/browser-kit": "^5.4|^6.0",
  4989. "symfony/config": "^5.4|^6.0",
  4990. "symfony/console": "^5.4|^6.0",
  4991. "symfony/css-selector": "^5.4|^6.0",
  4992. "symfony/dependency-injection": "^5.4|^6.0",
  4993. "symfony/dom-crawler": "^5.4|^6.0",
  4994. "symfony/expression-language": "^5.4|^6.0",
  4995. "symfony/finder": "^5.4|^6.0",
  4996. "symfony/http-client-contracts": "^1.1|^2|^3",
  4997. "symfony/process": "^5.4|^6.0",
  4998. "symfony/routing": "^5.4|^6.0",
  4999. "symfony/stopwatch": "^5.4|^6.0",
  5000. "symfony/translation": "^5.4|^6.0",
  5001. "symfony/translation-contracts": "^1.1|^2|^3",
  5002. "twig/twig": "^2.13|^3.0.4"
  5003. },
  5004. "suggest": {
  5005. "symfony/browser-kit": "",
  5006. "symfony/config": "",
  5007. "symfony/console": "",
  5008. "symfony/dependency-injection": ""
  5009. },
  5010. "type": "library",
  5011. "autoload": {
  5012. "psr-4": {
  5013. "Symfony\\Component\\HttpKernel\\": ""
  5014. },
  5015. "exclude-from-classmap": [
  5016. "/Tests/"
  5017. ]
  5018. },
  5019. "notification-url": "https://packagist.org/downloads/",
  5020. "license": [
  5021. "MIT"
  5022. ],
  5023. "authors": [
  5024. {
  5025. "name": "Fabien Potencier",
  5026. "email": "fabien@symfony.com"
  5027. },
  5028. {
  5029. "name": "Symfony Community",
  5030. "homepage": "https://symfony.com/contributors"
  5031. }
  5032. ],
  5033. "description": "Provides a structured process for converting a Request into a Response",
  5034. "homepage": "https://symfony.com",
  5035. "support": {
  5036. "source": "https://github.com/symfony/http-kernel/tree/v6.0.20"
  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": "2023-02-01T08:22:55+00:00"
  5053. },
  5054. {
  5055. "name": "symfony/mailer",
  5056. "version": "v6.0.19",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://github.com/symfony/mailer.git",
  5060. "reference": "cd60799210c488f545ddde2444dc1aa548322872"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://api.github.com/repos/symfony/mailer/zipball/cd60799210c488f545ddde2444dc1aa548322872",
  5065. "reference": "cd60799210c488f545ddde2444dc1aa548322872",
  5066. "shasum": "",
  5067. "mirrors": [
  5068. {
  5069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5070. "preferred": true
  5071. }
  5072. ]
  5073. },
  5074. "require": {
  5075. "egulias/email-validator": "^2.1.10|^3|^4",
  5076. "php": ">=8.0.2",
  5077. "psr/event-dispatcher": "^1",
  5078. "psr/log": "^1|^2|^3",
  5079. "symfony/event-dispatcher": "^5.4|^6.0",
  5080. "symfony/mime": "^5.4|^6.0",
  5081. "symfony/service-contracts": "^1.1|^2|^3"
  5082. },
  5083. "conflict": {
  5084. "symfony/http-kernel": "<5.4"
  5085. },
  5086. "require-dev": {
  5087. "symfony/http-client-contracts": "^1.1|^2|^3",
  5088. "symfony/messenger": "^5.4|^6.0"
  5089. },
  5090. "type": "library",
  5091. "autoload": {
  5092. "psr-4": {
  5093. "Symfony\\Component\\Mailer\\": ""
  5094. },
  5095. "exclude-from-classmap": [
  5096. "/Tests/"
  5097. ]
  5098. },
  5099. "notification-url": "https://packagist.org/downloads/",
  5100. "license": [
  5101. "MIT"
  5102. ],
  5103. "authors": [
  5104. {
  5105. "name": "Fabien Potencier",
  5106. "email": "fabien@symfony.com"
  5107. },
  5108. {
  5109. "name": "Symfony Community",
  5110. "homepage": "https://symfony.com/contributors"
  5111. }
  5112. ],
  5113. "description": "Helps sending emails",
  5114. "homepage": "https://symfony.com",
  5115. "support": {
  5116. "source": "https://github.com/symfony/mailer/tree/v6.0.19"
  5117. },
  5118. "funding": [
  5119. {
  5120. "url": "https://symfony.com/sponsor",
  5121. "type": "custom"
  5122. },
  5123. {
  5124. "url": "https://github.com/fabpot",
  5125. "type": "github"
  5126. },
  5127. {
  5128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5129. "type": "tidelift"
  5130. }
  5131. ],
  5132. "time": "2023-01-11T11:50:03+00:00"
  5133. },
  5134. {
  5135. "name": "symfony/mime",
  5136. "version": "v6.0.19",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/symfony/mime.git",
  5140. "reference": "d7052547a0070cbeadd474e172b527a00d657301"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/symfony/mime/zipball/d7052547a0070cbeadd474e172b527a00d657301",
  5145. "reference": "d7052547a0070cbeadd474e172b527a00d657301",
  5146. "shasum": "",
  5147. "mirrors": [
  5148. {
  5149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5150. "preferred": true
  5151. }
  5152. ]
  5153. },
  5154. "require": {
  5155. "php": ">=8.0.2",
  5156. "symfony/polyfill-intl-idn": "^1.10",
  5157. "symfony/polyfill-mbstring": "^1.0"
  5158. },
  5159. "conflict": {
  5160. "egulias/email-validator": "~3.0.0",
  5161. "phpdocumentor/reflection-docblock": "<3.2.2",
  5162. "phpdocumentor/type-resolver": "<1.4.0",
  5163. "symfony/mailer": "<5.4",
  5164. "symfony/serializer": "<5.4.14|>=6.0,<6.0.14|>=6.1,<6.1.6"
  5165. },
  5166. "require-dev": {
  5167. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5168. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5169. "symfony/dependency-injection": "^5.4|^6.0",
  5170. "symfony/property-access": "^5.4|^6.0",
  5171. "symfony/property-info": "^5.4|^6.0",
  5172. "symfony/serializer": "^5.4.14|~6.0.14|^6.1.6"
  5173. },
  5174. "type": "library",
  5175. "autoload": {
  5176. "psr-4": {
  5177. "Symfony\\Component\\Mime\\": ""
  5178. },
  5179. "exclude-from-classmap": [
  5180. "/Tests/"
  5181. ]
  5182. },
  5183. "notification-url": "https://packagist.org/downloads/",
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Fabien Potencier",
  5190. "email": "fabien@symfony.com"
  5191. },
  5192. {
  5193. "name": "Symfony Community",
  5194. "homepage": "https://symfony.com/contributors"
  5195. }
  5196. ],
  5197. "description": "Allows manipulating MIME messages",
  5198. "homepage": "https://symfony.com",
  5199. "keywords": [
  5200. "mime",
  5201. "mime-type"
  5202. ],
  5203. "support": {
  5204. "source": "https://github.com/symfony/mime/tree/v6.0.19"
  5205. },
  5206. "funding": [
  5207. {
  5208. "url": "https://symfony.com/sponsor",
  5209. "type": "custom"
  5210. },
  5211. {
  5212. "url": "https://github.com/fabpot",
  5213. "type": "github"
  5214. },
  5215. {
  5216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5217. "type": "tidelift"
  5218. }
  5219. ],
  5220. "time": "2023-01-11T11:50:03+00:00"
  5221. },
  5222. {
  5223. "name": "symfony/polyfill-ctype",
  5224. "version": "v1.27.0",
  5225. "source": {
  5226. "type": "git",
  5227. "url": "https://github.com/symfony/polyfill-ctype.git",
  5228. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  5229. },
  5230. "dist": {
  5231. "type": "zip",
  5232. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  5233. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  5234. "shasum": "",
  5235. "mirrors": [
  5236. {
  5237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5238. "preferred": true
  5239. }
  5240. ]
  5241. },
  5242. "require": {
  5243. "php": ">=7.1"
  5244. },
  5245. "provide": {
  5246. "ext-ctype": "*"
  5247. },
  5248. "suggest": {
  5249. "ext-ctype": "For best performance"
  5250. },
  5251. "type": "library",
  5252. "extra": {
  5253. "branch-alias": {
  5254. "dev-main": "1.27-dev"
  5255. },
  5256. "thanks": {
  5257. "name": "symfony/polyfill",
  5258. "url": "https://github.com/symfony/polyfill"
  5259. }
  5260. },
  5261. "autoload": {
  5262. "files": [
  5263. "bootstrap.php"
  5264. ],
  5265. "psr-4": {
  5266. "Symfony\\Polyfill\\Ctype\\": ""
  5267. }
  5268. },
  5269. "notification-url": "https://packagist.org/downloads/",
  5270. "license": [
  5271. "MIT"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "Gert de Pagter",
  5276. "email": "BackEndTea@gmail.com"
  5277. },
  5278. {
  5279. "name": "Symfony Community",
  5280. "homepage": "https://symfony.com/contributors"
  5281. }
  5282. ],
  5283. "description": "Symfony polyfill for ctype functions",
  5284. "homepage": "https://symfony.com",
  5285. "keywords": [
  5286. "compatibility",
  5287. "ctype",
  5288. "polyfill",
  5289. "portable"
  5290. ],
  5291. "support": {
  5292. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  5293. },
  5294. "funding": [
  5295. {
  5296. "url": "https://symfony.com/sponsor",
  5297. "type": "custom"
  5298. },
  5299. {
  5300. "url": "https://github.com/fabpot",
  5301. "type": "github"
  5302. },
  5303. {
  5304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5305. "type": "tidelift"
  5306. }
  5307. ],
  5308. "time": "2022-11-03T14:55:06+00:00"
  5309. },
  5310. {
  5311. "name": "symfony/polyfill-intl-grapheme",
  5312. "version": "v1.27.0",
  5313. "source": {
  5314. "type": "git",
  5315. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5316. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  5317. },
  5318. "dist": {
  5319. "type": "zip",
  5320. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  5321. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  5322. "shasum": "",
  5323. "mirrors": [
  5324. {
  5325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5326. "preferred": true
  5327. }
  5328. ]
  5329. },
  5330. "require": {
  5331. "php": ">=7.1"
  5332. },
  5333. "suggest": {
  5334. "ext-intl": "For best performance"
  5335. },
  5336. "type": "library",
  5337. "extra": {
  5338. "branch-alias": {
  5339. "dev-main": "1.27-dev"
  5340. },
  5341. "thanks": {
  5342. "name": "symfony/polyfill",
  5343. "url": "https://github.com/symfony/polyfill"
  5344. }
  5345. },
  5346. "autoload": {
  5347. "files": [
  5348. "bootstrap.php"
  5349. ],
  5350. "psr-4": {
  5351. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5352. }
  5353. },
  5354. "notification-url": "https://packagist.org/downloads/",
  5355. "license": [
  5356. "MIT"
  5357. ],
  5358. "authors": [
  5359. {
  5360. "name": "Nicolas Grekas",
  5361. "email": "p@tchwork.com"
  5362. },
  5363. {
  5364. "name": "Symfony Community",
  5365. "homepage": "https://symfony.com/contributors"
  5366. }
  5367. ],
  5368. "description": "Symfony polyfill for intl's grapheme_* functions",
  5369. "homepage": "https://symfony.com",
  5370. "keywords": [
  5371. "compatibility",
  5372. "grapheme",
  5373. "intl",
  5374. "polyfill",
  5375. "portable",
  5376. "shim"
  5377. ],
  5378. "support": {
  5379. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  5380. },
  5381. "funding": [
  5382. {
  5383. "url": "https://symfony.com/sponsor",
  5384. "type": "custom"
  5385. },
  5386. {
  5387. "url": "https://github.com/fabpot",
  5388. "type": "github"
  5389. },
  5390. {
  5391. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5392. "type": "tidelift"
  5393. }
  5394. ],
  5395. "time": "2022-11-03T14:55:06+00:00"
  5396. },
  5397. {
  5398. "name": "symfony/polyfill-intl-idn",
  5399. "version": "v1.27.0",
  5400. "source": {
  5401. "type": "git",
  5402. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5403. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  5404. },
  5405. "dist": {
  5406. "type": "zip",
  5407. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  5408. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  5409. "shasum": "",
  5410. "mirrors": [
  5411. {
  5412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5413. "preferred": true
  5414. }
  5415. ]
  5416. },
  5417. "require": {
  5418. "php": ">=7.1",
  5419. "symfony/polyfill-intl-normalizer": "^1.10",
  5420. "symfony/polyfill-php72": "^1.10"
  5421. },
  5422. "suggest": {
  5423. "ext-intl": "For best performance"
  5424. },
  5425. "type": "library",
  5426. "extra": {
  5427. "branch-alias": {
  5428. "dev-main": "1.27-dev"
  5429. },
  5430. "thanks": {
  5431. "name": "symfony/polyfill",
  5432. "url": "https://github.com/symfony/polyfill"
  5433. }
  5434. },
  5435. "autoload": {
  5436. "files": [
  5437. "bootstrap.php"
  5438. ],
  5439. "psr-4": {
  5440. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5441. }
  5442. },
  5443. "notification-url": "https://packagist.org/downloads/",
  5444. "license": [
  5445. "MIT"
  5446. ],
  5447. "authors": [
  5448. {
  5449. "name": "Laurent Bassin",
  5450. "email": "laurent@bassin.info"
  5451. },
  5452. {
  5453. "name": "Trevor Rowbotham",
  5454. "email": "trevor.rowbotham@pm.me"
  5455. },
  5456. {
  5457. "name": "Symfony Community",
  5458. "homepage": "https://symfony.com/contributors"
  5459. }
  5460. ],
  5461. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5462. "homepage": "https://symfony.com",
  5463. "keywords": [
  5464. "compatibility",
  5465. "idn",
  5466. "intl",
  5467. "polyfill",
  5468. "portable",
  5469. "shim"
  5470. ],
  5471. "support": {
  5472. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  5473. },
  5474. "funding": [
  5475. {
  5476. "url": "https://symfony.com/sponsor",
  5477. "type": "custom"
  5478. },
  5479. {
  5480. "url": "https://github.com/fabpot",
  5481. "type": "github"
  5482. },
  5483. {
  5484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5485. "type": "tidelift"
  5486. }
  5487. ],
  5488. "time": "2022-11-03T14:55:06+00:00"
  5489. },
  5490. {
  5491. "name": "symfony/polyfill-intl-normalizer",
  5492. "version": "v1.27.0",
  5493. "source": {
  5494. "type": "git",
  5495. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5496. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  5497. },
  5498. "dist": {
  5499. "type": "zip",
  5500. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5501. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  5502. "shasum": "",
  5503. "mirrors": [
  5504. {
  5505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5506. "preferred": true
  5507. }
  5508. ]
  5509. },
  5510. "require": {
  5511. "php": ">=7.1"
  5512. },
  5513. "suggest": {
  5514. "ext-intl": "For best performance"
  5515. },
  5516. "type": "library",
  5517. "extra": {
  5518. "branch-alias": {
  5519. "dev-main": "1.27-dev"
  5520. },
  5521. "thanks": {
  5522. "name": "symfony/polyfill",
  5523. "url": "https://github.com/symfony/polyfill"
  5524. }
  5525. },
  5526. "autoload": {
  5527. "files": [
  5528. "bootstrap.php"
  5529. ],
  5530. "psr-4": {
  5531. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5532. },
  5533. "classmap": [
  5534. "Resources/stubs"
  5535. ]
  5536. },
  5537. "notification-url": "https://packagist.org/downloads/",
  5538. "license": [
  5539. "MIT"
  5540. ],
  5541. "authors": [
  5542. {
  5543. "name": "Nicolas Grekas",
  5544. "email": "p@tchwork.com"
  5545. },
  5546. {
  5547. "name": "Symfony Community",
  5548. "homepage": "https://symfony.com/contributors"
  5549. }
  5550. ],
  5551. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5552. "homepage": "https://symfony.com",
  5553. "keywords": [
  5554. "compatibility",
  5555. "intl",
  5556. "normalizer",
  5557. "polyfill",
  5558. "portable",
  5559. "shim"
  5560. ],
  5561. "support": {
  5562. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  5563. },
  5564. "funding": [
  5565. {
  5566. "url": "https://symfony.com/sponsor",
  5567. "type": "custom"
  5568. },
  5569. {
  5570. "url": "https://github.com/fabpot",
  5571. "type": "github"
  5572. },
  5573. {
  5574. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5575. "type": "tidelift"
  5576. }
  5577. ],
  5578. "time": "2022-11-03T14:55:06+00:00"
  5579. },
  5580. {
  5581. "name": "symfony/polyfill-mbstring",
  5582. "version": "v1.27.0",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5586. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5591. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  5592. "shasum": "",
  5593. "mirrors": [
  5594. {
  5595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5596. "preferred": true
  5597. }
  5598. ]
  5599. },
  5600. "require": {
  5601. "php": ">=7.1"
  5602. },
  5603. "provide": {
  5604. "ext-mbstring": "*"
  5605. },
  5606. "suggest": {
  5607. "ext-mbstring": "For best performance"
  5608. },
  5609. "type": "library",
  5610. "extra": {
  5611. "branch-alias": {
  5612. "dev-main": "1.27-dev"
  5613. },
  5614. "thanks": {
  5615. "name": "symfony/polyfill",
  5616. "url": "https://github.com/symfony/polyfill"
  5617. }
  5618. },
  5619. "autoload": {
  5620. "files": [
  5621. "bootstrap.php"
  5622. ],
  5623. "psr-4": {
  5624. "Symfony\\Polyfill\\Mbstring\\": ""
  5625. }
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "MIT"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Nicolas Grekas",
  5634. "email": "p@tchwork.com"
  5635. },
  5636. {
  5637. "name": "Symfony Community",
  5638. "homepage": "https://symfony.com/contributors"
  5639. }
  5640. ],
  5641. "description": "Symfony polyfill for the Mbstring extension",
  5642. "homepage": "https://symfony.com",
  5643. "keywords": [
  5644. "compatibility",
  5645. "mbstring",
  5646. "polyfill",
  5647. "portable",
  5648. "shim"
  5649. ],
  5650. "support": {
  5651. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  5652. },
  5653. "funding": [
  5654. {
  5655. "url": "https://symfony.com/sponsor",
  5656. "type": "custom"
  5657. },
  5658. {
  5659. "url": "https://github.com/fabpot",
  5660. "type": "github"
  5661. },
  5662. {
  5663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5664. "type": "tidelift"
  5665. }
  5666. ],
  5667. "time": "2022-11-03T14:55:06+00:00"
  5668. },
  5669. {
  5670. "name": "symfony/polyfill-php72",
  5671. "version": "v1.27.0",
  5672. "source": {
  5673. "type": "git",
  5674. "url": "https://github.com/symfony/polyfill-php72.git",
  5675. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
  5676. },
  5677. "dist": {
  5678. "type": "zip",
  5679. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
  5680. "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
  5681. "shasum": "",
  5682. "mirrors": [
  5683. {
  5684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5685. "preferred": true
  5686. }
  5687. ]
  5688. },
  5689. "require": {
  5690. "php": ">=7.1"
  5691. },
  5692. "type": "library",
  5693. "extra": {
  5694. "branch-alias": {
  5695. "dev-main": "1.27-dev"
  5696. },
  5697. "thanks": {
  5698. "name": "symfony/polyfill",
  5699. "url": "https://github.com/symfony/polyfill"
  5700. }
  5701. },
  5702. "autoload": {
  5703. "files": [
  5704. "bootstrap.php"
  5705. ],
  5706. "psr-4": {
  5707. "Symfony\\Polyfill\\Php72\\": ""
  5708. }
  5709. },
  5710. "notification-url": "https://packagist.org/downloads/",
  5711. "license": [
  5712. "MIT"
  5713. ],
  5714. "authors": [
  5715. {
  5716. "name": "Nicolas Grekas",
  5717. "email": "p@tchwork.com"
  5718. },
  5719. {
  5720. "name": "Symfony Community",
  5721. "homepage": "https://symfony.com/contributors"
  5722. }
  5723. ],
  5724. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5725. "homepage": "https://symfony.com",
  5726. "keywords": [
  5727. "compatibility",
  5728. "polyfill",
  5729. "portable",
  5730. "shim"
  5731. ],
  5732. "support": {
  5733. "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
  5734. },
  5735. "funding": [
  5736. {
  5737. "url": "https://symfony.com/sponsor",
  5738. "type": "custom"
  5739. },
  5740. {
  5741. "url": "https://github.com/fabpot",
  5742. "type": "github"
  5743. },
  5744. {
  5745. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5746. "type": "tidelift"
  5747. }
  5748. ],
  5749. "time": "2022-11-03T14:55:06+00:00"
  5750. },
  5751. {
  5752. "name": "symfony/polyfill-php80",
  5753. "version": "v1.27.0",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/symfony/polyfill-php80.git",
  5757. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5762. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  5763. "shasum": "",
  5764. "mirrors": [
  5765. {
  5766. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5767. "preferred": true
  5768. }
  5769. ]
  5770. },
  5771. "require": {
  5772. "php": ">=7.1"
  5773. },
  5774. "type": "library",
  5775. "extra": {
  5776. "branch-alias": {
  5777. "dev-main": "1.27-dev"
  5778. },
  5779. "thanks": {
  5780. "name": "symfony/polyfill",
  5781. "url": "https://github.com/symfony/polyfill"
  5782. }
  5783. },
  5784. "autoload": {
  5785. "files": [
  5786. "bootstrap.php"
  5787. ],
  5788. "psr-4": {
  5789. "Symfony\\Polyfill\\Php80\\": ""
  5790. },
  5791. "classmap": [
  5792. "Resources/stubs"
  5793. ]
  5794. },
  5795. "notification-url": "https://packagist.org/downloads/",
  5796. "license": [
  5797. "MIT"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "Ion Bazan",
  5802. "email": "ion.bazan@gmail.com"
  5803. },
  5804. {
  5805. "name": "Nicolas Grekas",
  5806. "email": "p@tchwork.com"
  5807. },
  5808. {
  5809. "name": "Symfony Community",
  5810. "homepage": "https://symfony.com/contributors"
  5811. }
  5812. ],
  5813. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5814. "homepage": "https://symfony.com",
  5815. "keywords": [
  5816. "compatibility",
  5817. "polyfill",
  5818. "portable",
  5819. "shim"
  5820. ],
  5821. "support": {
  5822. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  5823. },
  5824. "funding": [
  5825. {
  5826. "url": "https://symfony.com/sponsor",
  5827. "type": "custom"
  5828. },
  5829. {
  5830. "url": "https://github.com/fabpot",
  5831. "type": "github"
  5832. },
  5833. {
  5834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5835. "type": "tidelift"
  5836. }
  5837. ],
  5838. "time": "2022-11-03T14:55:06+00:00"
  5839. },
  5840. {
  5841. "name": "symfony/polyfill-php81",
  5842. "version": "v1.27.0",
  5843. "source": {
  5844. "type": "git",
  5845. "url": "https://github.com/symfony/polyfill-php81.git",
  5846. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  5847. },
  5848. "dist": {
  5849. "type": "zip",
  5850. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  5851. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  5852. "shasum": "",
  5853. "mirrors": [
  5854. {
  5855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5856. "preferred": true
  5857. }
  5858. ]
  5859. },
  5860. "require": {
  5861. "php": ">=7.1"
  5862. },
  5863. "type": "library",
  5864. "extra": {
  5865. "branch-alias": {
  5866. "dev-main": "1.27-dev"
  5867. },
  5868. "thanks": {
  5869. "name": "symfony/polyfill",
  5870. "url": "https://github.com/symfony/polyfill"
  5871. }
  5872. },
  5873. "autoload": {
  5874. "files": [
  5875. "bootstrap.php"
  5876. ],
  5877. "psr-4": {
  5878. "Symfony\\Polyfill\\Php81\\": ""
  5879. },
  5880. "classmap": [
  5881. "Resources/stubs"
  5882. ]
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "MIT"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "Nicolas Grekas",
  5891. "email": "p@tchwork.com"
  5892. },
  5893. {
  5894. "name": "Symfony Community",
  5895. "homepage": "https://symfony.com/contributors"
  5896. }
  5897. ],
  5898. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5899. "homepage": "https://symfony.com",
  5900. "keywords": [
  5901. "compatibility",
  5902. "polyfill",
  5903. "portable",
  5904. "shim"
  5905. ],
  5906. "support": {
  5907. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  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": "2022-11-03T14:55:06+00:00"
  5924. },
  5925. {
  5926. "name": "symfony/polyfill-uuid",
  5927. "version": "v1.27.0",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/symfony/polyfill-uuid.git",
  5931. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/f3cf1a645c2734236ed1e2e671e273eeb3586166",
  5936. "reference": "f3cf1a645c2734236ed1e2e671e273eeb3586166",
  5937. "shasum": "",
  5938. "mirrors": [
  5939. {
  5940. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5941. "preferred": true
  5942. }
  5943. ]
  5944. },
  5945. "require": {
  5946. "php": ">=7.1"
  5947. },
  5948. "provide": {
  5949. "ext-uuid": "*"
  5950. },
  5951. "suggest": {
  5952. "ext-uuid": "For best performance"
  5953. },
  5954. "type": "library",
  5955. "extra": {
  5956. "branch-alias": {
  5957. "dev-main": "1.27-dev"
  5958. },
  5959. "thanks": {
  5960. "name": "symfony/polyfill",
  5961. "url": "https://github.com/symfony/polyfill"
  5962. }
  5963. },
  5964. "autoload": {
  5965. "files": [
  5966. "bootstrap.php"
  5967. ],
  5968. "psr-4": {
  5969. "Symfony\\Polyfill\\Uuid\\": ""
  5970. }
  5971. },
  5972. "notification-url": "https://packagist.org/downloads/",
  5973. "license": [
  5974. "MIT"
  5975. ],
  5976. "authors": [
  5977. {
  5978. "name": "Grégoire Pineau",
  5979. "email": "lyrixx@lyrixx.info"
  5980. },
  5981. {
  5982. "name": "Symfony Community",
  5983. "homepage": "https://symfony.com/contributors"
  5984. }
  5985. ],
  5986. "description": "Symfony polyfill for uuid functions",
  5987. "homepage": "https://symfony.com",
  5988. "keywords": [
  5989. "compatibility",
  5990. "polyfill",
  5991. "portable",
  5992. "uuid"
  5993. ],
  5994. "support": {
  5995. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.27.0"
  5996. },
  5997. "funding": [
  5998. {
  5999. "url": "https://symfony.com/sponsor",
  6000. "type": "custom"
  6001. },
  6002. {
  6003. "url": "https://github.com/fabpot",
  6004. "type": "github"
  6005. },
  6006. {
  6007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6008. "type": "tidelift"
  6009. }
  6010. ],
  6011. "time": "2022-11-03T14:55:06+00:00"
  6012. },
  6013. {
  6014. "name": "symfony/process",
  6015. "version": "v6.0.19",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/symfony/process.git",
  6019. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/symfony/process/zipball/2114fd60f26a296cc403a7939ab91478475a33d4",
  6024. "reference": "2114fd60f26a296cc403a7939ab91478475a33d4",
  6025. "shasum": "",
  6026. "mirrors": [
  6027. {
  6028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6029. "preferred": true
  6030. }
  6031. ]
  6032. },
  6033. "require": {
  6034. "php": ">=8.0.2"
  6035. },
  6036. "type": "library",
  6037. "autoload": {
  6038. "psr-4": {
  6039. "Symfony\\Component\\Process\\": ""
  6040. },
  6041. "exclude-from-classmap": [
  6042. "/Tests/"
  6043. ]
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "MIT"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Fabien Potencier",
  6052. "email": "fabien@symfony.com"
  6053. },
  6054. {
  6055. "name": "Symfony Community",
  6056. "homepage": "https://symfony.com/contributors"
  6057. }
  6058. ],
  6059. "description": "Executes commands in sub-processes",
  6060. "homepage": "https://symfony.com",
  6061. "support": {
  6062. "source": "https://github.com/symfony/process/tree/v6.0.19"
  6063. },
  6064. "funding": [
  6065. {
  6066. "url": "https://symfony.com/sponsor",
  6067. "type": "custom"
  6068. },
  6069. {
  6070. "url": "https://github.com/fabpot",
  6071. "type": "github"
  6072. },
  6073. {
  6074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6075. "type": "tidelift"
  6076. }
  6077. ],
  6078. "time": "2023-01-01T08:36:10+00:00"
  6079. },
  6080. {
  6081. "name": "symfony/psr-http-message-bridge",
  6082. "version": "v2.2.0",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6086. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  6091. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  6092. "shasum": "",
  6093. "mirrors": [
  6094. {
  6095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6096. "preferred": true
  6097. }
  6098. ]
  6099. },
  6100. "require": {
  6101. "php": ">=7.2.5",
  6102. "psr/http-message": "^1.0 || ^2.0",
  6103. "symfony/http-foundation": "^5.4 || ^6.0"
  6104. },
  6105. "require-dev": {
  6106. "nyholm/psr7": "^1.1",
  6107. "psr/log": "^1.1 || ^2 || ^3",
  6108. "symfony/browser-kit": "^5.4 || ^6.0",
  6109. "symfony/config": "^5.4 || ^6.0",
  6110. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6111. "symfony/framework-bundle": "^5.4 || ^6.0",
  6112. "symfony/http-kernel": "^5.4 || ^6.0",
  6113. "symfony/phpunit-bridge": "^6.2"
  6114. },
  6115. "suggest": {
  6116. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6117. },
  6118. "type": "symfony-bridge",
  6119. "extra": {
  6120. "branch-alias": {
  6121. "dev-main": "2.2-dev"
  6122. }
  6123. },
  6124. "autoload": {
  6125. "psr-4": {
  6126. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6127. },
  6128. "exclude-from-classmap": [
  6129. "/Tests/"
  6130. ]
  6131. },
  6132. "notification-url": "https://packagist.org/downloads/",
  6133. "license": [
  6134. "MIT"
  6135. ],
  6136. "authors": [
  6137. {
  6138. "name": "Fabien Potencier",
  6139. "email": "fabien@symfony.com"
  6140. },
  6141. {
  6142. "name": "Symfony Community",
  6143. "homepage": "http://symfony.com/contributors"
  6144. }
  6145. ],
  6146. "description": "PSR HTTP message bridge",
  6147. "homepage": "http://symfony.com",
  6148. "keywords": [
  6149. "http",
  6150. "http-message",
  6151. "psr-17",
  6152. "psr-7"
  6153. ],
  6154. "support": {
  6155. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6156. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  6157. },
  6158. "funding": [
  6159. {
  6160. "url": "https://symfony.com/sponsor",
  6161. "type": "custom"
  6162. },
  6163. {
  6164. "url": "https://github.com/fabpot",
  6165. "type": "github"
  6166. },
  6167. {
  6168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6169. "type": "tidelift"
  6170. }
  6171. ],
  6172. "time": "2023-04-21T08:40:19+00:00"
  6173. },
  6174. {
  6175. "name": "symfony/routing",
  6176. "version": "v6.0.19",
  6177. "source": {
  6178. "type": "git",
  6179. "url": "https://github.com/symfony/routing.git",
  6180. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac"
  6181. },
  6182. "dist": {
  6183. "type": "zip",
  6184. "url": "https://api.github.com/repos/symfony/routing/zipball/e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6185. "reference": "e56ca9b41c1ec447193474cd86ad7c0b547755ac",
  6186. "shasum": "",
  6187. "mirrors": [
  6188. {
  6189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6190. "preferred": true
  6191. }
  6192. ]
  6193. },
  6194. "require": {
  6195. "php": ">=8.0.2"
  6196. },
  6197. "conflict": {
  6198. "doctrine/annotations": "<1.12",
  6199. "symfony/config": "<5.4",
  6200. "symfony/dependency-injection": "<5.4",
  6201. "symfony/yaml": "<5.4"
  6202. },
  6203. "require-dev": {
  6204. "doctrine/annotations": "^1.12|^2",
  6205. "psr/log": "^1|^2|^3",
  6206. "symfony/config": "^5.4|^6.0",
  6207. "symfony/dependency-injection": "^5.4|^6.0",
  6208. "symfony/expression-language": "^5.4|^6.0",
  6209. "symfony/http-foundation": "^5.4|^6.0",
  6210. "symfony/yaml": "^5.4|^6.0"
  6211. },
  6212. "suggest": {
  6213. "symfony/config": "For using the all-in-one router or any loader",
  6214. "symfony/expression-language": "For using expression matching",
  6215. "symfony/http-foundation": "For using a Symfony Request object",
  6216. "symfony/yaml": "For using the YAML loader"
  6217. },
  6218. "type": "library",
  6219. "autoload": {
  6220. "psr-4": {
  6221. "Symfony\\Component\\Routing\\": ""
  6222. },
  6223. "exclude-from-classmap": [
  6224. "/Tests/"
  6225. ]
  6226. },
  6227. "notification-url": "https://packagist.org/downloads/",
  6228. "license": [
  6229. "MIT"
  6230. ],
  6231. "authors": [
  6232. {
  6233. "name": "Fabien Potencier",
  6234. "email": "fabien@symfony.com"
  6235. },
  6236. {
  6237. "name": "Symfony Community",
  6238. "homepage": "https://symfony.com/contributors"
  6239. }
  6240. ],
  6241. "description": "Maps an HTTP request to a set of configuration variables",
  6242. "homepage": "https://symfony.com",
  6243. "keywords": [
  6244. "router",
  6245. "routing",
  6246. "uri",
  6247. "url"
  6248. ],
  6249. "support": {
  6250. "source": "https://github.com/symfony/routing/tree/v6.0.19"
  6251. },
  6252. "funding": [
  6253. {
  6254. "url": "https://symfony.com/sponsor",
  6255. "type": "custom"
  6256. },
  6257. {
  6258. "url": "https://github.com/fabpot",
  6259. "type": "github"
  6260. },
  6261. {
  6262. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6263. "type": "tidelift"
  6264. }
  6265. ],
  6266. "time": "2023-01-01T08:36:10+00:00"
  6267. },
  6268. {
  6269. "name": "symfony/service-contracts",
  6270. "version": "v3.0.2",
  6271. "source": {
  6272. "type": "git",
  6273. "url": "https://github.com/symfony/service-contracts.git",
  6274. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
  6275. },
  6276. "dist": {
  6277. "type": "zip",
  6278. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6279. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6280. "shasum": "",
  6281. "mirrors": [
  6282. {
  6283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6284. "preferred": true
  6285. }
  6286. ]
  6287. },
  6288. "require": {
  6289. "php": ">=8.0.2",
  6290. "psr/container": "^2.0"
  6291. },
  6292. "conflict": {
  6293. "ext-psr": "<1.1|>=2"
  6294. },
  6295. "suggest": {
  6296. "symfony/service-implementation": ""
  6297. },
  6298. "type": "library",
  6299. "extra": {
  6300. "branch-alias": {
  6301. "dev-main": "3.0-dev"
  6302. },
  6303. "thanks": {
  6304. "name": "symfony/contracts",
  6305. "url": "https://github.com/symfony/contracts"
  6306. }
  6307. },
  6308. "autoload": {
  6309. "psr-4": {
  6310. "Symfony\\Contracts\\Service\\": ""
  6311. }
  6312. },
  6313. "notification-url": "https://packagist.org/downloads/",
  6314. "license": [
  6315. "MIT"
  6316. ],
  6317. "authors": [
  6318. {
  6319. "name": "Nicolas Grekas",
  6320. "email": "p@tchwork.com"
  6321. },
  6322. {
  6323. "name": "Symfony Community",
  6324. "homepage": "https://symfony.com/contributors"
  6325. }
  6326. ],
  6327. "description": "Generic abstractions related to writing services",
  6328. "homepage": "https://symfony.com",
  6329. "keywords": [
  6330. "abstractions",
  6331. "contracts",
  6332. "decoupling",
  6333. "interfaces",
  6334. "interoperability",
  6335. "standards"
  6336. ],
  6337. "support": {
  6338. "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
  6339. },
  6340. "funding": [
  6341. {
  6342. "url": "https://symfony.com/sponsor",
  6343. "type": "custom"
  6344. },
  6345. {
  6346. "url": "https://github.com/fabpot",
  6347. "type": "github"
  6348. },
  6349. {
  6350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6351. "type": "tidelift"
  6352. }
  6353. ],
  6354. "time": "2022-05-30T19:17:58+00:00"
  6355. },
  6356. {
  6357. "name": "symfony/string",
  6358. "version": "v6.0.19",
  6359. "source": {
  6360. "type": "git",
  6361. "url": "https://github.com/symfony/string.git",
  6362. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  6363. },
  6364. "dist": {
  6365. "type": "zip",
  6366. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  6367. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  6368. "shasum": "",
  6369. "mirrors": [
  6370. {
  6371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6372. "preferred": true
  6373. }
  6374. ]
  6375. },
  6376. "require": {
  6377. "php": ">=8.0.2",
  6378. "symfony/polyfill-ctype": "~1.8",
  6379. "symfony/polyfill-intl-grapheme": "~1.0",
  6380. "symfony/polyfill-intl-normalizer": "~1.0",
  6381. "symfony/polyfill-mbstring": "~1.0"
  6382. },
  6383. "conflict": {
  6384. "symfony/translation-contracts": "<2.0"
  6385. },
  6386. "require-dev": {
  6387. "symfony/error-handler": "^5.4|^6.0",
  6388. "symfony/http-client": "^5.4|^6.0",
  6389. "symfony/translation-contracts": "^2.0|^3.0",
  6390. "symfony/var-exporter": "^5.4|^6.0"
  6391. },
  6392. "type": "library",
  6393. "autoload": {
  6394. "files": [
  6395. "Resources/functions.php"
  6396. ],
  6397. "psr-4": {
  6398. "Symfony\\Component\\String\\": ""
  6399. },
  6400. "exclude-from-classmap": [
  6401. "/Tests/"
  6402. ]
  6403. },
  6404. "notification-url": "https://packagist.org/downloads/",
  6405. "license": [
  6406. "MIT"
  6407. ],
  6408. "authors": [
  6409. {
  6410. "name": "Nicolas Grekas",
  6411. "email": "p@tchwork.com"
  6412. },
  6413. {
  6414. "name": "Symfony Community",
  6415. "homepage": "https://symfony.com/contributors"
  6416. }
  6417. ],
  6418. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6419. "homepage": "https://symfony.com",
  6420. "keywords": [
  6421. "grapheme",
  6422. "i18n",
  6423. "string",
  6424. "unicode",
  6425. "utf-8",
  6426. "utf8"
  6427. ],
  6428. "support": {
  6429. "source": "https://github.com/symfony/string/tree/v6.0.19"
  6430. },
  6431. "funding": [
  6432. {
  6433. "url": "https://symfony.com/sponsor",
  6434. "type": "custom"
  6435. },
  6436. {
  6437. "url": "https://github.com/fabpot",
  6438. "type": "github"
  6439. },
  6440. {
  6441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6442. "type": "tidelift"
  6443. }
  6444. ],
  6445. "time": "2023-01-01T08:36:10+00:00"
  6446. },
  6447. {
  6448. "name": "symfony/translation",
  6449. "version": "v6.0.19",
  6450. "source": {
  6451. "type": "git",
  6452. "url": "https://github.com/symfony/translation.git",
  6453. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  6454. },
  6455. "dist": {
  6456. "type": "zip",
  6457. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  6458. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  6459. "shasum": "",
  6460. "mirrors": [
  6461. {
  6462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6463. "preferred": true
  6464. }
  6465. ]
  6466. },
  6467. "require": {
  6468. "php": ">=8.0.2",
  6469. "symfony/polyfill-mbstring": "~1.0",
  6470. "symfony/translation-contracts": "^2.3|^3.0"
  6471. },
  6472. "conflict": {
  6473. "symfony/config": "<5.4",
  6474. "symfony/console": "<5.4",
  6475. "symfony/dependency-injection": "<5.4",
  6476. "symfony/http-kernel": "<5.4",
  6477. "symfony/twig-bundle": "<5.4",
  6478. "symfony/yaml": "<5.4"
  6479. },
  6480. "provide": {
  6481. "symfony/translation-implementation": "2.3|3.0"
  6482. },
  6483. "require-dev": {
  6484. "psr/log": "^1|^2|^3",
  6485. "symfony/config": "^5.4|^6.0",
  6486. "symfony/console": "^5.4|^6.0",
  6487. "symfony/dependency-injection": "^5.4|^6.0",
  6488. "symfony/finder": "^5.4|^6.0",
  6489. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6490. "symfony/http-kernel": "^5.4|^6.0",
  6491. "symfony/intl": "^5.4|^6.0",
  6492. "symfony/polyfill-intl-icu": "^1.21",
  6493. "symfony/service-contracts": "^1.1.2|^2|^3",
  6494. "symfony/yaml": "^5.4|^6.0"
  6495. },
  6496. "suggest": {
  6497. "psr/log-implementation": "To use logging capability in translator",
  6498. "symfony/config": "",
  6499. "symfony/yaml": ""
  6500. },
  6501. "type": "library",
  6502. "autoload": {
  6503. "files": [
  6504. "Resources/functions.php"
  6505. ],
  6506. "psr-4": {
  6507. "Symfony\\Component\\Translation\\": ""
  6508. },
  6509. "exclude-from-classmap": [
  6510. "/Tests/"
  6511. ]
  6512. },
  6513. "notification-url": "https://packagist.org/downloads/",
  6514. "license": [
  6515. "MIT"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "Fabien Potencier",
  6520. "email": "fabien@symfony.com"
  6521. },
  6522. {
  6523. "name": "Symfony Community",
  6524. "homepage": "https://symfony.com/contributors"
  6525. }
  6526. ],
  6527. "description": "Provides tools to internationalize your application",
  6528. "homepage": "https://symfony.com",
  6529. "support": {
  6530. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  6531. },
  6532. "funding": [
  6533. {
  6534. "url": "https://symfony.com/sponsor",
  6535. "type": "custom"
  6536. },
  6537. {
  6538. "url": "https://github.com/fabpot",
  6539. "type": "github"
  6540. },
  6541. {
  6542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6543. "type": "tidelift"
  6544. }
  6545. ],
  6546. "time": "2023-01-01T08:36:10+00:00"
  6547. },
  6548. {
  6549. "name": "symfony/translation-contracts",
  6550. "version": "v3.0.2",
  6551. "source": {
  6552. "type": "git",
  6553. "url": "https://github.com/symfony/translation-contracts.git",
  6554. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  6555. },
  6556. "dist": {
  6557. "type": "zip",
  6558. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  6559. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  6560. "shasum": "",
  6561. "mirrors": [
  6562. {
  6563. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6564. "preferred": true
  6565. }
  6566. ]
  6567. },
  6568. "require": {
  6569. "php": ">=8.0.2"
  6570. },
  6571. "suggest": {
  6572. "symfony/translation-implementation": ""
  6573. },
  6574. "type": "library",
  6575. "extra": {
  6576. "branch-alias": {
  6577. "dev-main": "3.0-dev"
  6578. },
  6579. "thanks": {
  6580. "name": "symfony/contracts",
  6581. "url": "https://github.com/symfony/contracts"
  6582. }
  6583. },
  6584. "autoload": {
  6585. "psr-4": {
  6586. "Symfony\\Contracts\\Translation\\": ""
  6587. }
  6588. },
  6589. "notification-url": "https://packagist.org/downloads/",
  6590. "license": [
  6591. "MIT"
  6592. ],
  6593. "authors": [
  6594. {
  6595. "name": "Nicolas Grekas",
  6596. "email": "p@tchwork.com"
  6597. },
  6598. {
  6599. "name": "Symfony Community",
  6600. "homepage": "https://symfony.com/contributors"
  6601. }
  6602. ],
  6603. "description": "Generic abstractions related to translation",
  6604. "homepage": "https://symfony.com",
  6605. "keywords": [
  6606. "abstractions",
  6607. "contracts",
  6608. "decoupling",
  6609. "interfaces",
  6610. "interoperability",
  6611. "standards"
  6612. ],
  6613. "support": {
  6614. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  6615. },
  6616. "funding": [
  6617. {
  6618. "url": "https://symfony.com/sponsor",
  6619. "type": "custom"
  6620. },
  6621. {
  6622. "url": "https://github.com/fabpot",
  6623. "type": "github"
  6624. },
  6625. {
  6626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6627. "type": "tidelift"
  6628. }
  6629. ],
  6630. "time": "2022-06-27T17:10:44+00:00"
  6631. },
  6632. {
  6633. "name": "symfony/uid",
  6634. "version": "v6.0.19",
  6635. "source": {
  6636. "type": "git",
  6637. "url": "https://github.com/symfony/uid.git",
  6638. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d"
  6639. },
  6640. "dist": {
  6641. "type": "zip",
  6642. "url": "https://api.github.com/repos/symfony/uid/zipball/6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  6643. "reference": "6499e28b0ac9f2aa3151e11845bdb5cd21e6bb9d",
  6644. "shasum": "",
  6645. "mirrors": [
  6646. {
  6647. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6648. "preferred": true
  6649. }
  6650. ]
  6651. },
  6652. "require": {
  6653. "php": ">=8.0.2",
  6654. "symfony/polyfill-uuid": "^1.15"
  6655. },
  6656. "require-dev": {
  6657. "symfony/console": "^5.4|^6.0"
  6658. },
  6659. "type": "library",
  6660. "autoload": {
  6661. "psr-4": {
  6662. "Symfony\\Component\\Uid\\": ""
  6663. },
  6664. "exclude-from-classmap": [
  6665. "/Tests/"
  6666. ]
  6667. },
  6668. "notification-url": "https://packagist.org/downloads/",
  6669. "license": [
  6670. "MIT"
  6671. ],
  6672. "authors": [
  6673. {
  6674. "name": "Grégoire Pineau",
  6675. "email": "lyrixx@lyrixx.info"
  6676. },
  6677. {
  6678. "name": "Nicolas Grekas",
  6679. "email": "p@tchwork.com"
  6680. },
  6681. {
  6682. "name": "Symfony Community",
  6683. "homepage": "https://symfony.com/contributors"
  6684. }
  6685. ],
  6686. "description": "Provides an object-oriented API to generate and represent UIDs",
  6687. "homepage": "https://symfony.com",
  6688. "keywords": [
  6689. "UID",
  6690. "ulid",
  6691. "uuid"
  6692. ],
  6693. "support": {
  6694. "source": "https://github.com/symfony/uid/tree/v6.0.19"
  6695. },
  6696. "funding": [
  6697. {
  6698. "url": "https://symfony.com/sponsor",
  6699. "type": "custom"
  6700. },
  6701. {
  6702. "url": "https://github.com/fabpot",
  6703. "type": "github"
  6704. },
  6705. {
  6706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6707. "type": "tidelift"
  6708. }
  6709. ],
  6710. "time": "2023-01-01T08:36:10+00:00"
  6711. },
  6712. {
  6713. "name": "symfony/var-dumper",
  6714. "version": "v6.0.19",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/symfony/var-dumper.git",
  6718. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6723. "reference": "eb980457fa6899840fe1687e8627a03a7d8a3d52",
  6724. "shasum": "",
  6725. "mirrors": [
  6726. {
  6727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6728. "preferred": true
  6729. }
  6730. ]
  6731. },
  6732. "require": {
  6733. "php": ">=8.0.2",
  6734. "symfony/polyfill-mbstring": "~1.0"
  6735. },
  6736. "conflict": {
  6737. "phpunit/phpunit": "<5.4.3",
  6738. "symfony/console": "<5.4"
  6739. },
  6740. "require-dev": {
  6741. "ext-iconv": "*",
  6742. "symfony/console": "^5.4|^6.0",
  6743. "symfony/process": "^5.4|^6.0",
  6744. "symfony/uid": "^5.4|^6.0",
  6745. "twig/twig": "^2.13|^3.0.4"
  6746. },
  6747. "suggest": {
  6748. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6749. "ext-intl": "To show region name in time zone dump",
  6750. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6751. },
  6752. "bin": [
  6753. "Resources/bin/var-dump-server"
  6754. ],
  6755. "type": "library",
  6756. "autoload": {
  6757. "files": [
  6758. "Resources/functions/dump.php"
  6759. ],
  6760. "psr-4": {
  6761. "Symfony\\Component\\VarDumper\\": ""
  6762. },
  6763. "exclude-from-classmap": [
  6764. "/Tests/"
  6765. ]
  6766. },
  6767. "notification-url": "https://packagist.org/downloads/",
  6768. "license": [
  6769. "MIT"
  6770. ],
  6771. "authors": [
  6772. {
  6773. "name": "Nicolas Grekas",
  6774. "email": "p@tchwork.com"
  6775. },
  6776. {
  6777. "name": "Symfony Community",
  6778. "homepage": "https://symfony.com/contributors"
  6779. }
  6780. ],
  6781. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6782. "homepage": "https://symfony.com",
  6783. "keywords": [
  6784. "debug",
  6785. "dump"
  6786. ],
  6787. "support": {
  6788. "source": "https://github.com/symfony/var-dumper/tree/v6.0.19"
  6789. },
  6790. "funding": [
  6791. {
  6792. "url": "https://symfony.com/sponsor",
  6793. "type": "custom"
  6794. },
  6795. {
  6796. "url": "https://github.com/fabpot",
  6797. "type": "github"
  6798. },
  6799. {
  6800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6801. "type": "tidelift"
  6802. }
  6803. ],
  6804. "time": "2023-01-20T17:44:14+00:00"
  6805. },
  6806. {
  6807. "name": "symfony/var-exporter",
  6808. "version": "v6.0.19",
  6809. "source": {
  6810. "type": "git",
  6811. "url": "https://github.com/symfony/var-exporter.git",
  6812. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  6813. },
  6814. "dist": {
  6815. "type": "zip",
  6816. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  6817. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  6818. "shasum": "",
  6819. "mirrors": [
  6820. {
  6821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6822. "preferred": true
  6823. }
  6824. ]
  6825. },
  6826. "require": {
  6827. "php": ">=8.0.2"
  6828. },
  6829. "require-dev": {
  6830. "symfony/var-dumper": "^5.4|^6.0"
  6831. },
  6832. "type": "library",
  6833. "autoload": {
  6834. "psr-4": {
  6835. "Symfony\\Component\\VarExporter\\": ""
  6836. },
  6837. "exclude-from-classmap": [
  6838. "/Tests/"
  6839. ]
  6840. },
  6841. "notification-url": "https://packagist.org/downloads/",
  6842. "license": [
  6843. "MIT"
  6844. ],
  6845. "authors": [
  6846. {
  6847. "name": "Nicolas Grekas",
  6848. "email": "p@tchwork.com"
  6849. },
  6850. {
  6851. "name": "Symfony Community",
  6852. "homepage": "https://symfony.com/contributors"
  6853. }
  6854. ],
  6855. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6856. "homepage": "https://symfony.com",
  6857. "keywords": [
  6858. "clone",
  6859. "construct",
  6860. "export",
  6861. "hydrate",
  6862. "instantiate",
  6863. "serialize"
  6864. ],
  6865. "support": {
  6866. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  6867. },
  6868. "funding": [
  6869. {
  6870. "url": "https://symfony.com/sponsor",
  6871. "type": "custom"
  6872. },
  6873. {
  6874. "url": "https://github.com/fabpot",
  6875. "type": "github"
  6876. },
  6877. {
  6878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6879. "type": "tidelift"
  6880. }
  6881. ],
  6882. "time": "2023-01-13T08:34:10+00:00"
  6883. },
  6884. {
  6885. "name": "th3n3rd/cartesian-product",
  6886. "version": "v0.3.0",
  6887. "source": {
  6888. "type": "git",
  6889. "url": "https://github.com/th3n3rd/cartesian-product.git",
  6890. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d"
  6891. },
  6892. "dist": {
  6893. "type": "zip",
  6894. "url": "https://api.github.com/repos/th3n3rd/cartesian-product/zipball/78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  6895. "reference": "78b22f4feb4ef3efc1e99dfe5d932e17024b035d",
  6896. "shasum": "",
  6897. "mirrors": [
  6898. {
  6899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6900. "preferred": true
  6901. }
  6902. ]
  6903. },
  6904. "require": {
  6905. "php": ">=5.3.3"
  6906. },
  6907. "require-dev": {
  6908. "devster/ubench": "~1.1",
  6909. "phpunit/phpunit": "~4.4"
  6910. },
  6911. "type": "library",
  6912. "extra": {
  6913. "branch-alias": {
  6914. "dev-master": "0.3-dev"
  6915. }
  6916. },
  6917. "autoload": {
  6918. "psr-4": {
  6919. "Nerd\\CartesianProduct\\": "src"
  6920. }
  6921. },
  6922. "notification-url": "https://packagist.org/downloads/",
  6923. "license": [
  6924. "MIT"
  6925. ],
  6926. "authors": [
  6927. {
  6928. "name": "Marco Garofalo",
  6929. "email": "marcogarofalo.personal@gmail.com"
  6930. }
  6931. ],
  6932. "description": "Memory efficient Cartesian Product implementation",
  6933. "keywords": [
  6934. "cartesian",
  6935. "product"
  6936. ],
  6937. "support": {
  6938. "issues": "https://github.com/th3n3rd/cartesian-product/issues",
  6939. "source": "https://github.com/th3n3rd/cartesian-product/tree/master"
  6940. },
  6941. "time": "2015-05-30T08:42:25+00:00"
  6942. },
  6943. {
  6944. "name": "thenorthmemory/xml",
  6945. "version": "1.1.1",
  6946. "source": {
  6947. "type": "git",
  6948. "url": "https://github.com/TheNorthMemory/xml.git",
  6949. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  6950. },
  6951. "dist": {
  6952. "type": "zip",
  6953. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6954. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6955. "shasum": "",
  6956. "mirrors": [
  6957. {
  6958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6959. "preferred": true
  6960. }
  6961. ]
  6962. },
  6963. "require": {
  6964. "ext-libxml": "*",
  6965. "ext-simplexml": "*",
  6966. "php": ">=7.1.2"
  6967. },
  6968. "require-dev": {
  6969. "phpstan/phpstan": "^0.12.89 || ^1.0",
  6970. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  6971. },
  6972. "type": "library",
  6973. "autoload": {
  6974. "psr-4": {
  6975. "TheNorthMemory\\Xml\\": "src/"
  6976. }
  6977. },
  6978. "notification-url": "https://packagist.org/downloads/",
  6979. "license": [
  6980. "Apache-2.0"
  6981. ],
  6982. "authors": [
  6983. {
  6984. "name": "James ZHANG",
  6985. "homepage": "https://github.com/TheNorthMemory"
  6986. }
  6987. ],
  6988. "description": "A wrapper of the XML parser and builder",
  6989. "homepage": "https://github.com/TheNorthMemory/xml",
  6990. "keywords": [
  6991. "xml-builder",
  6992. "xml-parser"
  6993. ],
  6994. "support": {
  6995. "issues": "https://github.com/TheNorthMemory/xml/issues",
  6996. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  6997. },
  6998. "time": "2023-01-15T06:01:13+00:00"
  6999. },
  7000. {
  7001. "name": "tijsverkoyen/css-to-inline-styles",
  7002. "version": "2.2.6",
  7003. "source": {
  7004. "type": "git",
  7005. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7006. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  7007. },
  7008. "dist": {
  7009. "type": "zip",
  7010. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7011. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  7012. "shasum": "",
  7013. "mirrors": [
  7014. {
  7015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7016. "preferred": true
  7017. }
  7018. ]
  7019. },
  7020. "require": {
  7021. "ext-dom": "*",
  7022. "ext-libxml": "*",
  7023. "php": "^5.5 || ^7.0 || ^8.0",
  7024. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7025. },
  7026. "require-dev": {
  7027. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7028. },
  7029. "type": "library",
  7030. "extra": {
  7031. "branch-alias": {
  7032. "dev-master": "2.2.x-dev"
  7033. }
  7034. },
  7035. "autoload": {
  7036. "psr-4": {
  7037. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7038. }
  7039. },
  7040. "notification-url": "https://packagist.org/downloads/",
  7041. "license": [
  7042. "BSD-3-Clause"
  7043. ],
  7044. "authors": [
  7045. {
  7046. "name": "Tijs Verkoyen",
  7047. "email": "css_to_inline_styles@verkoyen.eu",
  7048. "role": "Developer"
  7049. }
  7050. ],
  7051. "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.",
  7052. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7053. "support": {
  7054. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7055. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  7056. },
  7057. "time": "2023-01-03T09:29:04+00:00"
  7058. },
  7059. {
  7060. "name": "tuupola/base62",
  7061. "version": "2.1.0",
  7062. "source": {
  7063. "type": "git",
  7064. "url": "https://github.com/tuupola/base62.git",
  7065. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb"
  7066. },
  7067. "dist": {
  7068. "type": "zip",
  7069. "url": "https://api.github.com/repos/tuupola/base62/zipball/7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7070. "reference": "7406145a9cf8c567cd35ad7358d1b24828cbcfdb",
  7071. "shasum": "",
  7072. "mirrors": [
  7073. {
  7074. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7075. "preferred": true
  7076. }
  7077. ]
  7078. },
  7079. "require": {
  7080. "php": "^7.1|^8.0"
  7081. },
  7082. "require-dev": {
  7083. "overtrue/phplint": "^1.0",
  7084. "phpbench/phpbench": "^0.15.0",
  7085. "phpstan/phpstan": "^0.12.38",
  7086. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  7087. "squizlabs/php_codesniffer": "^3.0"
  7088. },
  7089. "suggest": {
  7090. "ext-gmp": "GMP extension provides the fastest encoding and decoding."
  7091. },
  7092. "type": "library",
  7093. "autoload": {
  7094. "psr-4": {
  7095. "Tuupola\\": "src"
  7096. }
  7097. },
  7098. "notification-url": "https://packagist.org/downloads/",
  7099. "license": [
  7100. "MIT"
  7101. ],
  7102. "authors": [
  7103. {
  7104. "name": "Mika Tuupola",
  7105. "email": "tuupola@appelsiini.net",
  7106. "homepage": "https://appelsiini.net/",
  7107. "role": "Developer"
  7108. }
  7109. ],
  7110. "description": "Base62 encoder and decoder for arbitrary data",
  7111. "homepage": "https://github.com/tuupola/base62",
  7112. "keywords": [
  7113. "base62"
  7114. ],
  7115. "support": {
  7116. "issues": "https://github.com/tuupola/base62/issues",
  7117. "source": "https://github.com/tuupola/base62/tree/2.1.0"
  7118. },
  7119. "funding": [
  7120. {
  7121. "url": "https://github.com/tuupola",
  7122. "type": "github"
  7123. }
  7124. ],
  7125. "time": "2020-09-09T15:05:36+00:00"
  7126. },
  7127. {
  7128. "name": "vlucas/phpdotenv",
  7129. "version": "v5.4.1",
  7130. "source": {
  7131. "type": "git",
  7132. "url": "https://github.com/vlucas/phpdotenv.git",
  7133. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f"
  7134. },
  7135. "dist": {
  7136. "type": "zip",
  7137. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7138. "reference": "264dce589e7ce37a7ba99cb901eed8249fbec92f",
  7139. "shasum": "",
  7140. "mirrors": [
  7141. {
  7142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7143. "preferred": true
  7144. }
  7145. ]
  7146. },
  7147. "require": {
  7148. "ext-pcre": "*",
  7149. "graham-campbell/result-type": "^1.0.2",
  7150. "php": "^7.1.3 || ^8.0",
  7151. "phpoption/phpoption": "^1.8",
  7152. "symfony/polyfill-ctype": "^1.23",
  7153. "symfony/polyfill-mbstring": "^1.23.1",
  7154. "symfony/polyfill-php80": "^1.23.1"
  7155. },
  7156. "require-dev": {
  7157. "bamarni/composer-bin-plugin": "^1.4.1",
  7158. "ext-filter": "*",
  7159. "phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10"
  7160. },
  7161. "suggest": {
  7162. "ext-filter": "Required to use the boolean validator."
  7163. },
  7164. "type": "library",
  7165. "extra": {
  7166. "branch-alias": {
  7167. "dev-master": "5.4-dev"
  7168. }
  7169. },
  7170. "autoload": {
  7171. "psr-4": {
  7172. "Dotenv\\": "src/"
  7173. }
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "BSD-3-Clause"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Graham Campbell",
  7182. "email": "hello@gjcampbell.co.uk",
  7183. "homepage": "https://github.com/GrahamCampbell"
  7184. },
  7185. {
  7186. "name": "Vance Lucas",
  7187. "email": "vance@vancelucas.com",
  7188. "homepage": "https://github.com/vlucas"
  7189. }
  7190. ],
  7191. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7192. "keywords": [
  7193. "dotenv",
  7194. "env",
  7195. "environment"
  7196. ],
  7197. "support": {
  7198. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7199. "source": "https://github.com/vlucas/phpdotenv/tree/v5.4.1"
  7200. },
  7201. "funding": [
  7202. {
  7203. "url": "https://github.com/GrahamCampbell",
  7204. "type": "github"
  7205. },
  7206. {
  7207. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7208. "type": "tidelift"
  7209. }
  7210. ],
  7211. "time": "2021-12-12T23:22:04+00:00"
  7212. },
  7213. {
  7214. "name": "voku/portable-ascii",
  7215. "version": "2.0.1",
  7216. "source": {
  7217. "type": "git",
  7218. "url": "https://github.com/voku/portable-ascii.git",
  7219. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7220. },
  7221. "dist": {
  7222. "type": "zip",
  7223. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7224. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7225. "shasum": "",
  7226. "mirrors": [
  7227. {
  7228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7229. "preferred": true
  7230. }
  7231. ]
  7232. },
  7233. "require": {
  7234. "php": ">=7.0.0"
  7235. },
  7236. "require-dev": {
  7237. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7238. },
  7239. "suggest": {
  7240. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7241. },
  7242. "type": "library",
  7243. "autoload": {
  7244. "psr-4": {
  7245. "voku\\": "src/voku/"
  7246. }
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "authors": [
  7253. {
  7254. "name": "Lars Moelleken",
  7255. "homepage": "http://www.moelleken.org/"
  7256. }
  7257. ],
  7258. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7259. "homepage": "https://github.com/voku/portable-ascii",
  7260. "keywords": [
  7261. "ascii",
  7262. "clean",
  7263. "php"
  7264. ],
  7265. "support": {
  7266. "issues": "https://github.com/voku/portable-ascii/issues",
  7267. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7268. },
  7269. "funding": [
  7270. {
  7271. "url": "https://www.paypal.me/moelleken",
  7272. "type": "custom"
  7273. },
  7274. {
  7275. "url": "https://github.com/voku",
  7276. "type": "github"
  7277. },
  7278. {
  7279. "url": "https://opencollective.com/portable-ascii",
  7280. "type": "open_collective"
  7281. },
  7282. {
  7283. "url": "https://www.patreon.com/voku",
  7284. "type": "patreon"
  7285. },
  7286. {
  7287. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7288. "type": "tidelift"
  7289. }
  7290. ],
  7291. "time": "2022-03-08T17:03:00+00:00"
  7292. },
  7293. {
  7294. "name": "w7corp/easywechat",
  7295. "version": "6.8.0",
  7296. "source": {
  7297. "type": "git",
  7298. "url": "https://github.com/w7corp/easywechat.git",
  7299. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26"
  7300. },
  7301. "dist": {
  7302. "type": "zip",
  7303. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7304. "reference": "60f0b4ba2ac3144df1a2291193daa34beb949d26",
  7305. "shasum": "",
  7306. "mirrors": [
  7307. {
  7308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7309. "preferred": true
  7310. }
  7311. ]
  7312. },
  7313. "require": {
  7314. "ext-curl": "*",
  7315. "ext-fileinfo": "*",
  7316. "ext-libxml": "*",
  7317. "ext-openssl": "*",
  7318. "ext-simplexml": "*",
  7319. "ext-sodium": "*",
  7320. "monolog/monolog": "^2.2",
  7321. "nyholm/psr7": "^1.5",
  7322. "nyholm/psr7-server": "^1.0",
  7323. "overtrue/socialite": "^3.5|^4.0.1",
  7324. "php": ">=8.0.2",
  7325. "psr/http-client": "^1.0",
  7326. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7327. "symfony/cache": "^5.4|^6.0",
  7328. "symfony/http-client": "^5.4|^6.0",
  7329. "symfony/http-foundation": "^5.4|^6.0",
  7330. "symfony/mime": "^5.4|^6.0",
  7331. "symfony/polyfill-php81": "^1.25",
  7332. "symfony/psr-http-message-bridge": "^2.1.2",
  7333. "thenorthmemory/xml": "^1.0"
  7334. },
  7335. "require-dev": {
  7336. "brainmaestro/composer-git-hooks": "^2.8",
  7337. "jetbrains/phpstorm-attributes": "^1.0",
  7338. "laravel/pint": "^1.2",
  7339. "mikey179/vfsstream": "^1.6",
  7340. "mockery/mockery": "^1.4.4",
  7341. "phpstan/phpstan": "^1.0",
  7342. "phpunit/phpunit": "^9.5",
  7343. "symfony/var-dumper": "^5.2"
  7344. },
  7345. "type": "library",
  7346. "extra": {
  7347. "hooks": {
  7348. "pre-commit": [
  7349. "composer check-style",
  7350. "composer phpstan",
  7351. "composer test"
  7352. ],
  7353. "pre-push": [
  7354. "composer check-style"
  7355. ],
  7356. "config": {
  7357. "stop-on-failure": [
  7358. "pre-commit",
  7359. "pre-push"
  7360. ]
  7361. }
  7362. }
  7363. },
  7364. "autoload": {
  7365. "psr-4": {
  7366. "EasyWeChat\\": "src/"
  7367. }
  7368. },
  7369. "notification-url": "https://packagist.org/downloads/",
  7370. "license": [
  7371. "MIT"
  7372. ],
  7373. "authors": [
  7374. {
  7375. "name": "overtrue",
  7376. "email": "anzhengchao@gmail.com"
  7377. }
  7378. ],
  7379. "description": "微信SDK",
  7380. "keywords": [
  7381. "easywechat",
  7382. "sdk",
  7383. "wechat",
  7384. "weixin",
  7385. "weixin-sdk"
  7386. ],
  7387. "support": {
  7388. "issues": "https://github.com/w7corp/easywechat/issues",
  7389. "source": "https://github.com/w7corp/easywechat/tree/6.8.0"
  7390. },
  7391. "funding": [
  7392. {
  7393. "url": "https://github.com/overtrue",
  7394. "type": "github"
  7395. }
  7396. ],
  7397. "time": "2022-09-25T13:05:18+00:00"
  7398. },
  7399. {
  7400. "name": "webmozart/assert",
  7401. "version": "1.11.0",
  7402. "source": {
  7403. "type": "git",
  7404. "url": "https://github.com/webmozarts/assert.git",
  7405. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7406. },
  7407. "dist": {
  7408. "type": "zip",
  7409. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7410. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7411. "shasum": "",
  7412. "mirrors": [
  7413. {
  7414. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7415. "preferred": true
  7416. }
  7417. ]
  7418. },
  7419. "require": {
  7420. "ext-ctype": "*",
  7421. "php": "^7.2 || ^8.0"
  7422. },
  7423. "conflict": {
  7424. "phpstan/phpstan": "<0.12.20",
  7425. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7426. },
  7427. "require-dev": {
  7428. "phpunit/phpunit": "^8.5.13"
  7429. },
  7430. "type": "library",
  7431. "extra": {
  7432. "branch-alias": {
  7433. "dev-master": "1.10-dev"
  7434. }
  7435. },
  7436. "autoload": {
  7437. "psr-4": {
  7438. "Webmozart\\Assert\\": "src/"
  7439. }
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "authors": [
  7446. {
  7447. "name": "Bernhard Schussek",
  7448. "email": "bschussek@gmail.com"
  7449. }
  7450. ],
  7451. "description": "Assertions to validate method input/output with nice error messages.",
  7452. "keywords": [
  7453. "assert",
  7454. "check",
  7455. "validate"
  7456. ],
  7457. "support": {
  7458. "issues": "https://github.com/webmozarts/assert/issues",
  7459. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7460. },
  7461. "time": "2022-06-03T18:03:27+00:00"
  7462. }
  7463. ],
  7464. "packages-dev": [
  7465. {
  7466. "name": "barryvdh/laravel-ide-helper",
  7467. "version": "v2.12.3",
  7468. "source": {
  7469. "type": "git",
  7470. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  7471. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550"
  7472. },
  7473. "dist": {
  7474. "type": "zip",
  7475. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7476. "reference": "3ba1e2573b38f72107b8aacc4ee177fcab30a550",
  7477. "shasum": "",
  7478. "mirrors": [
  7479. {
  7480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7481. "preferred": true
  7482. }
  7483. ]
  7484. },
  7485. "require": {
  7486. "barryvdh/reflection-docblock": "^2.0.6",
  7487. "composer/pcre": "^1 || ^2 || ^3",
  7488. "doctrine/dbal": "^2.6 || ^3",
  7489. "ext-json": "*",
  7490. "illuminate/console": "^8 || ^9",
  7491. "illuminate/filesystem": "^8 || ^9",
  7492. "illuminate/support": "^8 || ^9",
  7493. "nikic/php-parser": "^4.7",
  7494. "php": "^7.3 || ^8.0",
  7495. "phpdocumentor/type-resolver": "^1.1.0"
  7496. },
  7497. "require-dev": {
  7498. "ext-pdo_sqlite": "*",
  7499. "friendsofphp/php-cs-fixer": "^2",
  7500. "illuminate/config": "^8 || ^9",
  7501. "illuminate/view": "^8 || ^9",
  7502. "mockery/mockery": "^1.4",
  7503. "orchestra/testbench": "^6 || ^7",
  7504. "phpunit/phpunit": "^8.5 || ^9",
  7505. "spatie/phpunit-snapshot-assertions": "^3 || ^4",
  7506. "vimeo/psalm": "^3.12"
  7507. },
  7508. "suggest": {
  7509. "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
  7510. },
  7511. "type": "library",
  7512. "extra": {
  7513. "branch-alias": {
  7514. "dev-master": "2.12-dev"
  7515. },
  7516. "laravel": {
  7517. "providers": [
  7518. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  7519. ]
  7520. }
  7521. },
  7522. "autoload": {
  7523. "psr-4": {
  7524. "Barryvdh\\LaravelIdeHelper\\": "src"
  7525. }
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Barry vd. Heuvel",
  7534. "email": "barryvdh@gmail.com"
  7535. }
  7536. ],
  7537. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  7538. "keywords": [
  7539. "autocomplete",
  7540. "codeintel",
  7541. "helper",
  7542. "ide",
  7543. "laravel",
  7544. "netbeans",
  7545. "phpdoc",
  7546. "phpstorm",
  7547. "sublime"
  7548. ],
  7549. "support": {
  7550. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  7551. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.12.3"
  7552. },
  7553. "funding": [
  7554. {
  7555. "url": "https://fruitcake.nl",
  7556. "type": "custom"
  7557. },
  7558. {
  7559. "url": "https://github.com/barryvdh",
  7560. "type": "github"
  7561. }
  7562. ],
  7563. "time": "2022-03-06T14:33:42+00:00"
  7564. },
  7565. {
  7566. "name": "barryvdh/reflection-docblock",
  7567. "version": "v2.1.0",
  7568. "source": {
  7569. "type": "git",
  7570. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  7571. "reference": "bf44b757feb8ba1734659029357646466ded673e"
  7572. },
  7573. "dist": {
  7574. "type": "zip",
  7575. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/bf44b757feb8ba1734659029357646466ded673e",
  7576. "reference": "bf44b757feb8ba1734659029357646466ded673e",
  7577. "shasum": "",
  7578. "mirrors": [
  7579. {
  7580. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7581. "preferred": true
  7582. }
  7583. ]
  7584. },
  7585. "require": {
  7586. "php": ">=5.3.3"
  7587. },
  7588. "require-dev": {
  7589. "phpunit/phpunit": "^8.5.14|^9"
  7590. },
  7591. "suggest": {
  7592. "dflydev/markdown": "~1.0",
  7593. "erusev/parsedown": "~1.0"
  7594. },
  7595. "type": "library",
  7596. "extra": {
  7597. "branch-alias": {
  7598. "dev-master": "2.0.x-dev"
  7599. }
  7600. },
  7601. "autoload": {
  7602. "psr-0": {
  7603. "Barryvdh": [
  7604. "src/"
  7605. ]
  7606. }
  7607. },
  7608. "notification-url": "https://packagist.org/downloads/",
  7609. "license": [
  7610. "MIT"
  7611. ],
  7612. "authors": [
  7613. {
  7614. "name": "Mike van Riel",
  7615. "email": "mike.vanriel@naenius.com"
  7616. }
  7617. ],
  7618. "support": {
  7619. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.0"
  7620. },
  7621. "time": "2022-10-31T15:35:43+00:00"
  7622. },
  7623. {
  7624. "name": "composer/pcre",
  7625. "version": "3.0.2",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/composer/pcre.git",
  7629. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/composer/pcre/zipball/4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  7634. "reference": "4482b6409ca6bfc2af043a5711cd21ac3e7a8dfb",
  7635. "shasum": "",
  7636. "mirrors": [
  7637. {
  7638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7639. "preferred": true
  7640. }
  7641. ]
  7642. },
  7643. "require": {
  7644. "php": "^7.4 || ^8.0"
  7645. },
  7646. "require-dev": {
  7647. "phpstan/phpstan": "^1.3",
  7648. "phpstan/phpstan-strict-rules": "^1.1",
  7649. "symfony/phpunit-bridge": "^5"
  7650. },
  7651. "type": "library",
  7652. "extra": {
  7653. "branch-alias": {
  7654. "dev-main": "3.x-dev"
  7655. }
  7656. },
  7657. "autoload": {
  7658. "psr-4": {
  7659. "Composer\\Pcre\\": "src"
  7660. }
  7661. },
  7662. "notification-url": "https://packagist.org/downloads/",
  7663. "license": [
  7664. "MIT"
  7665. ],
  7666. "authors": [
  7667. {
  7668. "name": "Jordi Boggiano",
  7669. "email": "j.boggiano@seld.be",
  7670. "homepage": "http://seld.be"
  7671. }
  7672. ],
  7673. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7674. "keywords": [
  7675. "PCRE",
  7676. "preg",
  7677. "regex",
  7678. "regular expression"
  7679. ],
  7680. "support": {
  7681. "issues": "https://github.com/composer/pcre/issues",
  7682. "source": "https://github.com/composer/pcre/tree/3.0.2"
  7683. },
  7684. "funding": [
  7685. {
  7686. "url": "https://packagist.com",
  7687. "type": "custom"
  7688. },
  7689. {
  7690. "url": "https://github.com/composer",
  7691. "type": "github"
  7692. },
  7693. {
  7694. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7695. "type": "tidelift"
  7696. }
  7697. ],
  7698. "time": "2022-11-03T20:24:16+00:00"
  7699. },
  7700. {
  7701. "name": "doctrine/cache",
  7702. "version": "2.2.0",
  7703. "source": {
  7704. "type": "git",
  7705. "url": "https://github.com/doctrine/cache.git",
  7706. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  7707. },
  7708. "dist": {
  7709. "type": "zip",
  7710. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  7711. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  7712. "shasum": "",
  7713. "mirrors": [
  7714. {
  7715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7716. "preferred": true
  7717. }
  7718. ]
  7719. },
  7720. "require": {
  7721. "php": "~7.1 || ^8.0"
  7722. },
  7723. "conflict": {
  7724. "doctrine/common": ">2.2,<2.4"
  7725. },
  7726. "require-dev": {
  7727. "cache/integration-tests": "dev-master",
  7728. "doctrine/coding-standard": "^9",
  7729. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7730. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  7731. "symfony/cache": "^4.4 || ^5.4 || ^6",
  7732. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  7733. },
  7734. "type": "library",
  7735. "autoload": {
  7736. "psr-4": {
  7737. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  7738. }
  7739. },
  7740. "notification-url": "https://packagist.org/downloads/",
  7741. "license": [
  7742. "MIT"
  7743. ],
  7744. "authors": [
  7745. {
  7746. "name": "Guilherme Blanco",
  7747. "email": "guilhermeblanco@gmail.com"
  7748. },
  7749. {
  7750. "name": "Roman Borschel",
  7751. "email": "roman@code-factory.org"
  7752. },
  7753. {
  7754. "name": "Benjamin Eberlei",
  7755. "email": "kontakt@beberlei.de"
  7756. },
  7757. {
  7758. "name": "Jonathan Wage",
  7759. "email": "jonwage@gmail.com"
  7760. },
  7761. {
  7762. "name": "Johannes Schmitt",
  7763. "email": "schmittjoh@gmail.com"
  7764. }
  7765. ],
  7766. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  7767. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  7768. "keywords": [
  7769. "abstraction",
  7770. "apcu",
  7771. "cache",
  7772. "caching",
  7773. "couchdb",
  7774. "memcached",
  7775. "php",
  7776. "redis",
  7777. "xcache"
  7778. ],
  7779. "support": {
  7780. "issues": "https://github.com/doctrine/cache/issues",
  7781. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  7782. },
  7783. "funding": [
  7784. {
  7785. "url": "https://www.doctrine-project.org/sponsorship.html",
  7786. "type": "custom"
  7787. },
  7788. {
  7789. "url": "https://www.patreon.com/phpdoctrine",
  7790. "type": "patreon"
  7791. },
  7792. {
  7793. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  7794. "type": "tidelift"
  7795. }
  7796. ],
  7797. "time": "2022-05-20T20:07:39+00:00"
  7798. },
  7799. {
  7800. "name": "doctrine/dbal",
  7801. "version": "3.6.1",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://github.com/doctrine/dbal.git",
  7805. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  7810. "reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
  7811. "shasum": "",
  7812. "mirrors": [
  7813. {
  7814. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7815. "preferred": true
  7816. }
  7817. ]
  7818. },
  7819. "require": {
  7820. "composer-runtime-api": "^2",
  7821. "doctrine/cache": "^1.11|^2.0",
  7822. "doctrine/deprecations": "^0.5.3|^1",
  7823. "doctrine/event-manager": "^1|^2",
  7824. "php": "^7.4 || ^8.0",
  7825. "psr/cache": "^1|^2|^3",
  7826. "psr/log": "^1|^2|^3"
  7827. },
  7828. "require-dev": {
  7829. "doctrine/coding-standard": "11.1.0",
  7830. "fig/log-test": "^1",
  7831. "jetbrains/phpstorm-stubs": "2022.3",
  7832. "phpstan/phpstan": "1.10.3",
  7833. "phpstan/phpstan-strict-rules": "^1.5",
  7834. "phpunit/phpunit": "9.6.4",
  7835. "psalm/plugin-phpunit": "0.18.4",
  7836. "squizlabs/php_codesniffer": "3.7.2",
  7837. "symfony/cache": "^5.4|^6.0",
  7838. "symfony/console": "^4.4|^5.4|^6.0",
  7839. "vimeo/psalm": "4.30.0"
  7840. },
  7841. "suggest": {
  7842. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  7843. },
  7844. "bin": [
  7845. "bin/doctrine-dbal"
  7846. ],
  7847. "type": "library",
  7848. "autoload": {
  7849. "psr-4": {
  7850. "Doctrine\\DBAL\\": "src"
  7851. }
  7852. },
  7853. "notification-url": "https://packagist.org/downloads/",
  7854. "license": [
  7855. "MIT"
  7856. ],
  7857. "authors": [
  7858. {
  7859. "name": "Guilherme Blanco",
  7860. "email": "guilhermeblanco@gmail.com"
  7861. },
  7862. {
  7863. "name": "Roman Borschel",
  7864. "email": "roman@code-factory.org"
  7865. },
  7866. {
  7867. "name": "Benjamin Eberlei",
  7868. "email": "kontakt@beberlei.de"
  7869. },
  7870. {
  7871. "name": "Jonathan Wage",
  7872. "email": "jonwage@gmail.com"
  7873. }
  7874. ],
  7875. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  7876. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  7877. "keywords": [
  7878. "abstraction",
  7879. "database",
  7880. "db2",
  7881. "dbal",
  7882. "mariadb",
  7883. "mssql",
  7884. "mysql",
  7885. "oci8",
  7886. "oracle",
  7887. "pdo",
  7888. "pgsql",
  7889. "postgresql",
  7890. "queryobject",
  7891. "sasql",
  7892. "sql",
  7893. "sqlite",
  7894. "sqlserver",
  7895. "sqlsrv"
  7896. ],
  7897. "support": {
  7898. "issues": "https://github.com/doctrine/dbal/issues",
  7899. "source": "https://github.com/doctrine/dbal/tree/3.6.1"
  7900. },
  7901. "funding": [
  7902. {
  7903. "url": "https://www.doctrine-project.org/sponsorship.html",
  7904. "type": "custom"
  7905. },
  7906. {
  7907. "url": "https://www.patreon.com/phpdoctrine",
  7908. "type": "patreon"
  7909. },
  7910. {
  7911. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  7912. "type": "tidelift"
  7913. }
  7914. ],
  7915. "time": "2023-03-02T19:26:24+00:00"
  7916. },
  7917. {
  7918. "name": "doctrine/event-manager",
  7919. "version": "1.1.1",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/doctrine/event-manager.git",
  7923. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7928. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  7929. "shasum": "",
  7930. "mirrors": [
  7931. {
  7932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7933. "preferred": true
  7934. }
  7935. ]
  7936. },
  7937. "require": {
  7938. "php": "^7.1 || ^8.0"
  7939. },
  7940. "conflict": {
  7941. "doctrine/common": "<2.9@dev"
  7942. },
  7943. "require-dev": {
  7944. "doctrine/coding-standard": "^6.0",
  7945. "phpunit/phpunit": "^7.0"
  7946. },
  7947. "type": "library",
  7948. "extra": {
  7949. "branch-alias": {
  7950. "dev-master": "1.0.x-dev"
  7951. }
  7952. },
  7953. "autoload": {
  7954. "psr-4": {
  7955. "Doctrine\\Common\\": "lib/Doctrine/Common"
  7956. }
  7957. },
  7958. "notification-url": "https://packagist.org/downloads/",
  7959. "license": [
  7960. "MIT"
  7961. ],
  7962. "authors": [
  7963. {
  7964. "name": "Guilherme Blanco",
  7965. "email": "guilhermeblanco@gmail.com"
  7966. },
  7967. {
  7968. "name": "Roman Borschel",
  7969. "email": "roman@code-factory.org"
  7970. },
  7971. {
  7972. "name": "Benjamin Eberlei",
  7973. "email": "kontakt@beberlei.de"
  7974. },
  7975. {
  7976. "name": "Jonathan Wage",
  7977. "email": "jonwage@gmail.com"
  7978. },
  7979. {
  7980. "name": "Johannes Schmitt",
  7981. "email": "schmittjoh@gmail.com"
  7982. },
  7983. {
  7984. "name": "Marco Pivetta",
  7985. "email": "ocramius@gmail.com"
  7986. }
  7987. ],
  7988. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  7989. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  7990. "keywords": [
  7991. "event",
  7992. "event dispatcher",
  7993. "event manager",
  7994. "event system",
  7995. "events"
  7996. ],
  7997. "support": {
  7998. "issues": "https://github.com/doctrine/event-manager/issues",
  7999. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  8000. },
  8001. "funding": [
  8002. {
  8003. "url": "https://www.doctrine-project.org/sponsorship.html",
  8004. "type": "custom"
  8005. },
  8006. {
  8007. "url": "https://www.patreon.com/phpdoctrine",
  8008. "type": "patreon"
  8009. },
  8010. {
  8011. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  8012. "type": "tidelift"
  8013. }
  8014. ],
  8015. "time": "2020-05-29T18:28:51+00:00"
  8016. },
  8017. {
  8018. "name": "doctrine/instantiator",
  8019. "version": "1.5.0",
  8020. "source": {
  8021. "type": "git",
  8022. "url": "https://github.com/doctrine/instantiator.git",
  8023. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8024. },
  8025. "dist": {
  8026. "type": "zip",
  8027. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8028. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8029. "shasum": "",
  8030. "mirrors": [
  8031. {
  8032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8033. "preferred": true
  8034. }
  8035. ]
  8036. },
  8037. "require": {
  8038. "php": "^7.1 || ^8.0"
  8039. },
  8040. "require-dev": {
  8041. "doctrine/coding-standard": "^9 || ^11",
  8042. "ext-pdo": "*",
  8043. "ext-phar": "*",
  8044. "phpbench/phpbench": "^0.16 || ^1",
  8045. "phpstan/phpstan": "^1.4",
  8046. "phpstan/phpstan-phpunit": "^1",
  8047. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8048. "vimeo/psalm": "^4.30 || ^5.4"
  8049. },
  8050. "type": "library",
  8051. "autoload": {
  8052. "psr-4": {
  8053. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8054. }
  8055. },
  8056. "notification-url": "https://packagist.org/downloads/",
  8057. "license": [
  8058. "MIT"
  8059. ],
  8060. "authors": [
  8061. {
  8062. "name": "Marco Pivetta",
  8063. "email": "ocramius@gmail.com",
  8064. "homepage": "https://ocramius.github.io/"
  8065. }
  8066. ],
  8067. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8068. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8069. "keywords": [
  8070. "constructor",
  8071. "instantiate"
  8072. ],
  8073. "support": {
  8074. "issues": "https://github.com/doctrine/instantiator/issues",
  8075. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8076. },
  8077. "funding": [
  8078. {
  8079. "url": "https://www.doctrine-project.org/sponsorship.html",
  8080. "type": "custom"
  8081. },
  8082. {
  8083. "url": "https://www.patreon.com/phpdoctrine",
  8084. "type": "patreon"
  8085. },
  8086. {
  8087. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8088. "type": "tidelift"
  8089. }
  8090. ],
  8091. "time": "2022-12-30T00:15:36+00:00"
  8092. },
  8093. {
  8094. "name": "fakerphp/faker",
  8095. "version": "v1.21.0",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/FakerPHP/Faker.git",
  8099. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/92efad6a967f0b79c499705c69b662f738cc9e4d",
  8104. "reference": "92efad6a967f0b79c499705c69b662f738cc9e4d",
  8105. "shasum": "",
  8106. "mirrors": [
  8107. {
  8108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8109. "preferred": true
  8110. }
  8111. ]
  8112. },
  8113. "require": {
  8114. "php": "^7.4 || ^8.0",
  8115. "psr/container": "^1.0 || ^2.0",
  8116. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8117. },
  8118. "conflict": {
  8119. "fzaninotto/faker": "*"
  8120. },
  8121. "require-dev": {
  8122. "bamarni/composer-bin-plugin": "^1.4.1",
  8123. "doctrine/persistence": "^1.3 || ^2.0",
  8124. "ext-intl": "*",
  8125. "phpunit/phpunit": "^9.5.26",
  8126. "symfony/phpunit-bridge": "^5.4.16"
  8127. },
  8128. "suggest": {
  8129. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8130. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8131. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8132. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8133. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8134. },
  8135. "type": "library",
  8136. "extra": {
  8137. "branch-alias": {
  8138. "dev-main": "v1.21-dev"
  8139. }
  8140. },
  8141. "autoload": {
  8142. "psr-4": {
  8143. "Faker\\": "src/Faker/"
  8144. }
  8145. },
  8146. "notification-url": "https://packagist.org/downloads/",
  8147. "license": [
  8148. "MIT"
  8149. ],
  8150. "authors": [
  8151. {
  8152. "name": "François Zaninotto"
  8153. }
  8154. ],
  8155. "description": "Faker is a PHP library that generates fake data for you.",
  8156. "keywords": [
  8157. "data",
  8158. "faker",
  8159. "fixtures"
  8160. ],
  8161. "support": {
  8162. "issues": "https://github.com/FakerPHP/Faker/issues",
  8163. "source": "https://github.com/FakerPHP/Faker/tree/v1.21.0"
  8164. },
  8165. "time": "2022-12-13T13:54:32+00:00"
  8166. },
  8167. {
  8168. "name": "filp/whoops",
  8169. "version": "2.15.2",
  8170. "source": {
  8171. "type": "git",
  8172. "url": "https://github.com/filp/whoops.git",
  8173. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73"
  8174. },
  8175. "dist": {
  8176. "type": "zip",
  8177. "url": "https://api.github.com/repos/filp/whoops/zipball/aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8178. "reference": "aac9304c5ed61bf7b1b7a6064bf9806ab842ce73",
  8179. "shasum": "",
  8180. "mirrors": [
  8181. {
  8182. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8183. "preferred": true
  8184. }
  8185. ]
  8186. },
  8187. "require": {
  8188. "php": "^5.5.9 || ^7.0 || ^8.0",
  8189. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8190. },
  8191. "require-dev": {
  8192. "mockery/mockery": "^0.9 || ^1.0",
  8193. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8194. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8195. },
  8196. "suggest": {
  8197. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8198. "whoops/soap": "Formats errors as SOAP responses"
  8199. },
  8200. "type": "library",
  8201. "extra": {
  8202. "branch-alias": {
  8203. "dev-master": "2.7-dev"
  8204. }
  8205. },
  8206. "autoload": {
  8207. "psr-4": {
  8208. "Whoops\\": "src/Whoops/"
  8209. }
  8210. },
  8211. "notification-url": "https://packagist.org/downloads/",
  8212. "license": [
  8213. "MIT"
  8214. ],
  8215. "authors": [
  8216. {
  8217. "name": "Filipe Dobreira",
  8218. "homepage": "https://github.com/filp",
  8219. "role": "Developer"
  8220. }
  8221. ],
  8222. "description": "php error handling for cool kids",
  8223. "homepage": "https://filp.github.io/whoops/",
  8224. "keywords": [
  8225. "error",
  8226. "exception",
  8227. "handling",
  8228. "library",
  8229. "throwable",
  8230. "whoops"
  8231. ],
  8232. "support": {
  8233. "issues": "https://github.com/filp/whoops/issues",
  8234. "source": "https://github.com/filp/whoops/tree/2.15.2"
  8235. },
  8236. "funding": [
  8237. {
  8238. "url": "https://github.com/denis-sokolov",
  8239. "type": "github"
  8240. }
  8241. ],
  8242. "time": "2023-04-12T12:00:00+00:00"
  8243. },
  8244. {
  8245. "name": "hamcrest/hamcrest-php",
  8246. "version": "v2.0.1",
  8247. "source": {
  8248. "type": "git",
  8249. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8250. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8251. },
  8252. "dist": {
  8253. "type": "zip",
  8254. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8255. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8256. "shasum": "",
  8257. "mirrors": [
  8258. {
  8259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8260. "preferred": true
  8261. }
  8262. ]
  8263. },
  8264. "require": {
  8265. "php": "^5.3|^7.0|^8.0"
  8266. },
  8267. "replace": {
  8268. "cordoval/hamcrest-php": "*",
  8269. "davedevelopment/hamcrest-php": "*",
  8270. "kodova/hamcrest-php": "*"
  8271. },
  8272. "require-dev": {
  8273. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8274. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8275. },
  8276. "type": "library",
  8277. "extra": {
  8278. "branch-alias": {
  8279. "dev-master": "2.1-dev"
  8280. }
  8281. },
  8282. "autoload": {
  8283. "classmap": [
  8284. "hamcrest"
  8285. ]
  8286. },
  8287. "notification-url": "https://packagist.org/downloads/",
  8288. "license": [
  8289. "BSD-3-Clause"
  8290. ],
  8291. "description": "This is the PHP port of Hamcrest Matchers",
  8292. "keywords": [
  8293. "test"
  8294. ],
  8295. "support": {
  8296. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8297. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8298. },
  8299. "time": "2020-07-09T08:09:16+00:00"
  8300. },
  8301. {
  8302. "name": "laravel/pint",
  8303. "version": "v1.5.0",
  8304. "source": {
  8305. "type": "git",
  8306. "url": "https://github.com/laravel/pint.git",
  8307. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362"
  8308. },
  8309. "dist": {
  8310. "type": "zip",
  8311. "url": "https://api.github.com/repos/laravel/pint/zipball/e0a8cef58b74662f27355be9cdea0e726bbac362",
  8312. "reference": "e0a8cef58b74662f27355be9cdea0e726bbac362",
  8313. "shasum": "",
  8314. "mirrors": [
  8315. {
  8316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8317. "preferred": true
  8318. }
  8319. ]
  8320. },
  8321. "require": {
  8322. "ext-json": "*",
  8323. "ext-mbstring": "*",
  8324. "ext-tokenizer": "*",
  8325. "ext-xml": "*",
  8326. "php": "^8.0"
  8327. },
  8328. "require-dev": {
  8329. "friendsofphp/php-cs-fixer": "^3.14.4",
  8330. "illuminate/view": "^9.51.0",
  8331. "laravel-zero/framework": "^9.2.0",
  8332. "mockery/mockery": "^1.5.1",
  8333. "nunomaduro/larastan": "^2.4.0",
  8334. "nunomaduro/termwind": "^1.15.1",
  8335. "pestphp/pest": "^1.22.4"
  8336. },
  8337. "bin": [
  8338. "builds/pint"
  8339. ],
  8340. "type": "project",
  8341. "autoload": {
  8342. "psr-4": {
  8343. "App\\": "app/",
  8344. "Database\\Seeders\\": "database/seeders/",
  8345. "Database\\Factories\\": "database/factories/"
  8346. }
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "MIT"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Nuno Maduro",
  8355. "email": "enunomaduro@gmail.com"
  8356. }
  8357. ],
  8358. "description": "An opinionated code formatter for PHP.",
  8359. "homepage": "https://laravel.com",
  8360. "keywords": [
  8361. "format",
  8362. "formatter",
  8363. "lint",
  8364. "linter",
  8365. "php"
  8366. ],
  8367. "support": {
  8368. "issues": "https://github.com/laravel/pint/issues",
  8369. "source": "https://github.com/laravel/pint"
  8370. },
  8371. "time": "2023-02-14T16:31:02+00:00"
  8372. },
  8373. {
  8374. "name": "laravel/sail",
  8375. "version": "v1.21.5",
  8376. "source": {
  8377. "type": "git",
  8378. "url": "https://github.com/laravel/sail.git",
  8379. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d"
  8380. },
  8381. "dist": {
  8382. "type": "zip",
  8383. "url": "https://api.github.com/repos/laravel/sail/zipball/27af207bb1c53faddcba34c7528b3e969f6a646d",
  8384. "reference": "27af207bb1c53faddcba34c7528b3e969f6a646d",
  8385. "shasum": "",
  8386. "mirrors": [
  8387. {
  8388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8389. "preferred": true
  8390. }
  8391. ]
  8392. },
  8393. "require": {
  8394. "illuminate/console": "^8.0|^9.0|^10.0",
  8395. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8396. "illuminate/support": "^8.0|^9.0|^10.0",
  8397. "php": "^7.3|^8.0",
  8398. "symfony/yaml": "^6.0"
  8399. },
  8400. "require-dev": {
  8401. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8402. "phpstan/phpstan": "^1.10"
  8403. },
  8404. "bin": [
  8405. "bin/sail"
  8406. ],
  8407. "type": "library",
  8408. "extra": {
  8409. "branch-alias": {
  8410. "dev-master": "1.x-dev"
  8411. },
  8412. "laravel": {
  8413. "providers": [
  8414. "Laravel\\Sail\\SailServiceProvider"
  8415. ]
  8416. }
  8417. },
  8418. "autoload": {
  8419. "psr-4": {
  8420. "Laravel\\Sail\\": "src/"
  8421. }
  8422. },
  8423. "notification-url": "https://packagist.org/downloads/",
  8424. "license": [
  8425. "MIT"
  8426. ],
  8427. "authors": [
  8428. {
  8429. "name": "Taylor Otwell",
  8430. "email": "taylor@laravel.com"
  8431. }
  8432. ],
  8433. "description": "Docker files for running a basic Laravel application.",
  8434. "keywords": [
  8435. "docker",
  8436. "laravel"
  8437. ],
  8438. "support": {
  8439. "issues": "https://github.com/laravel/sail/issues",
  8440. "source": "https://github.com/laravel/sail"
  8441. },
  8442. "time": "2023-04-24T13:29:38+00:00"
  8443. },
  8444. {
  8445. "name": "laravel/telescope",
  8446. "version": "v4.14.2",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/laravel/telescope.git",
  8450. "reference": "222bbea975d9f3a10879af153db5c34ffac08034"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/laravel/telescope/zipball/222bbea975d9f3a10879af153db5c34ffac08034",
  8455. "reference": "222bbea975d9f3a10879af153db5c34ffac08034",
  8456. "shasum": "",
  8457. "mirrors": [
  8458. {
  8459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8460. "preferred": true
  8461. }
  8462. ]
  8463. },
  8464. "require": {
  8465. "ext-json": "*",
  8466. "laravel/framework": "^8.37|^9.0|^10.0",
  8467. "php": "^8.0",
  8468. "symfony/var-dumper": "^5.0|^6.0"
  8469. },
  8470. "require-dev": {
  8471. "ext-gd": "*",
  8472. "guzzlehttp/guzzle": "^6.0|^7.0",
  8473. "laravel/octane": "^1.4",
  8474. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8475. "phpstan/phpstan": "^1.10",
  8476. "phpunit/phpunit": "^9.0"
  8477. },
  8478. "type": "library",
  8479. "extra": {
  8480. "branch-alias": {
  8481. "dev-master": "4.x-dev"
  8482. },
  8483. "laravel": {
  8484. "providers": [
  8485. "Laravel\\Telescope\\TelescopeServiceProvider"
  8486. ]
  8487. }
  8488. },
  8489. "autoload": {
  8490. "psr-4": {
  8491. "Laravel\\Telescope\\": "src/",
  8492. "Laravel\\Telescope\\Database\\Factories\\": "database/factories/"
  8493. }
  8494. },
  8495. "notification-url": "https://packagist.org/downloads/",
  8496. "license": [
  8497. "MIT"
  8498. ],
  8499. "authors": [
  8500. {
  8501. "name": "Taylor Otwell",
  8502. "email": "taylor@laravel.com"
  8503. },
  8504. {
  8505. "name": "Mohamed Said",
  8506. "email": "mohamed@laravel.com"
  8507. }
  8508. ],
  8509. "description": "An elegant debug assistant for the Laravel framework.",
  8510. "keywords": [
  8511. "debugging",
  8512. "laravel",
  8513. "monitoring"
  8514. ],
  8515. "support": {
  8516. "issues": "https://github.com/laravel/telescope/issues",
  8517. "source": "https://github.com/laravel/telescope/tree/v4.14.2"
  8518. },
  8519. "time": "2023-04-19T15:24:14+00:00"
  8520. },
  8521. {
  8522. "name": "mockery/mockery",
  8523. "version": "1.5.1",
  8524. "source": {
  8525. "type": "git",
  8526. "url": "https://github.com/mockery/mockery.git",
  8527. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  8528. },
  8529. "dist": {
  8530. "type": "zip",
  8531. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8532. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  8533. "shasum": "",
  8534. "mirrors": [
  8535. {
  8536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8537. "preferred": true
  8538. }
  8539. ]
  8540. },
  8541. "require": {
  8542. "hamcrest/hamcrest-php": "^2.0.1",
  8543. "lib-pcre": ">=7.0",
  8544. "php": "^7.3 || ^8.0"
  8545. },
  8546. "conflict": {
  8547. "phpunit/phpunit": "<8.0"
  8548. },
  8549. "require-dev": {
  8550. "phpunit/phpunit": "^8.5 || ^9.3"
  8551. },
  8552. "type": "library",
  8553. "extra": {
  8554. "branch-alias": {
  8555. "dev-master": "1.4.x-dev"
  8556. }
  8557. },
  8558. "autoload": {
  8559. "psr-0": {
  8560. "Mockery": "library/"
  8561. }
  8562. },
  8563. "notification-url": "https://packagist.org/downloads/",
  8564. "license": [
  8565. "BSD-3-Clause"
  8566. ],
  8567. "authors": [
  8568. {
  8569. "name": "Pádraic Brady",
  8570. "email": "padraic.brady@gmail.com",
  8571. "homepage": "http://blog.astrumfutura.com"
  8572. },
  8573. {
  8574. "name": "Dave Marshall",
  8575. "email": "dave.marshall@atstsolutions.co.uk",
  8576. "homepage": "http://davedevelopment.co.uk"
  8577. }
  8578. ],
  8579. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8580. "homepage": "https://github.com/mockery/mockery",
  8581. "keywords": [
  8582. "BDD",
  8583. "TDD",
  8584. "library",
  8585. "mock",
  8586. "mock objects",
  8587. "mockery",
  8588. "stub",
  8589. "test",
  8590. "test double",
  8591. "testing"
  8592. ],
  8593. "support": {
  8594. "issues": "https://github.com/mockery/mockery/issues",
  8595. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  8596. },
  8597. "time": "2022-09-07T15:32:08+00:00"
  8598. },
  8599. {
  8600. "name": "myclabs/deep-copy",
  8601. "version": "1.11.1",
  8602. "source": {
  8603. "type": "git",
  8604. "url": "https://github.com/myclabs/DeepCopy.git",
  8605. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8606. },
  8607. "dist": {
  8608. "type": "zip",
  8609. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8610. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8611. "shasum": "",
  8612. "mirrors": [
  8613. {
  8614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8615. "preferred": true
  8616. }
  8617. ]
  8618. },
  8619. "require": {
  8620. "php": "^7.1 || ^8.0"
  8621. },
  8622. "conflict": {
  8623. "doctrine/collections": "<1.6.8",
  8624. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8625. },
  8626. "require-dev": {
  8627. "doctrine/collections": "^1.6.8",
  8628. "doctrine/common": "^2.13.3 || ^3.2.2",
  8629. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8630. },
  8631. "type": "library",
  8632. "autoload": {
  8633. "files": [
  8634. "src/DeepCopy/deep_copy.php"
  8635. ],
  8636. "psr-4": {
  8637. "DeepCopy\\": "src/DeepCopy/"
  8638. }
  8639. },
  8640. "notification-url": "https://packagist.org/downloads/",
  8641. "license": [
  8642. "MIT"
  8643. ],
  8644. "description": "Create deep copies (clones) of your objects",
  8645. "keywords": [
  8646. "clone",
  8647. "copy",
  8648. "duplicate",
  8649. "object",
  8650. "object graph"
  8651. ],
  8652. "support": {
  8653. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8654. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8655. },
  8656. "funding": [
  8657. {
  8658. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8659. "type": "tidelift"
  8660. }
  8661. ],
  8662. "time": "2023-03-08T13:26:56+00:00"
  8663. },
  8664. {
  8665. "name": "nunomaduro/collision",
  8666. "version": "v6.4.0",
  8667. "source": {
  8668. "type": "git",
  8669. "url": "https://github.com/nunomaduro/collision.git",
  8670. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  8671. },
  8672. "dist": {
  8673. "type": "zip",
  8674. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  8675. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  8676. "shasum": "",
  8677. "mirrors": [
  8678. {
  8679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8680. "preferred": true
  8681. }
  8682. ]
  8683. },
  8684. "require": {
  8685. "filp/whoops": "^2.14.5",
  8686. "php": "^8.0.0",
  8687. "symfony/console": "^6.0.2"
  8688. },
  8689. "require-dev": {
  8690. "brianium/paratest": "^6.4.1",
  8691. "laravel/framework": "^9.26.1",
  8692. "laravel/pint": "^1.1.1",
  8693. "nunomaduro/larastan": "^1.0.3",
  8694. "nunomaduro/mock-final-classes": "^1.1.0",
  8695. "orchestra/testbench": "^7.7",
  8696. "phpunit/phpunit": "^9.5.23",
  8697. "spatie/ignition": "^1.4.1"
  8698. },
  8699. "type": "library",
  8700. "extra": {
  8701. "branch-alias": {
  8702. "dev-develop": "6.x-dev"
  8703. },
  8704. "laravel": {
  8705. "providers": [
  8706. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8707. ]
  8708. }
  8709. },
  8710. "autoload": {
  8711. "psr-4": {
  8712. "NunoMaduro\\Collision\\": "src/"
  8713. }
  8714. },
  8715. "notification-url": "https://packagist.org/downloads/",
  8716. "license": [
  8717. "MIT"
  8718. ],
  8719. "authors": [
  8720. {
  8721. "name": "Nuno Maduro",
  8722. "email": "enunomaduro@gmail.com"
  8723. }
  8724. ],
  8725. "description": "Cli error handling for console/command-line PHP applications.",
  8726. "keywords": [
  8727. "artisan",
  8728. "cli",
  8729. "command-line",
  8730. "console",
  8731. "error",
  8732. "handling",
  8733. "laravel",
  8734. "laravel-zero",
  8735. "php",
  8736. "symfony"
  8737. ],
  8738. "support": {
  8739. "issues": "https://github.com/nunomaduro/collision/issues",
  8740. "source": "https://github.com/nunomaduro/collision"
  8741. },
  8742. "funding": [
  8743. {
  8744. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8745. "type": "custom"
  8746. },
  8747. {
  8748. "url": "https://github.com/nunomaduro",
  8749. "type": "github"
  8750. },
  8751. {
  8752. "url": "https://www.patreon.com/nunomaduro",
  8753. "type": "patreon"
  8754. }
  8755. ],
  8756. "time": "2023-01-03T12:54:54+00:00"
  8757. },
  8758. {
  8759. "name": "phar-io/manifest",
  8760. "version": "2.0.3",
  8761. "source": {
  8762. "type": "git",
  8763. "url": "https://github.com/phar-io/manifest.git",
  8764. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8765. },
  8766. "dist": {
  8767. "type": "zip",
  8768. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8769. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8770. "shasum": "",
  8771. "mirrors": [
  8772. {
  8773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8774. "preferred": true
  8775. }
  8776. ]
  8777. },
  8778. "require": {
  8779. "ext-dom": "*",
  8780. "ext-phar": "*",
  8781. "ext-xmlwriter": "*",
  8782. "phar-io/version": "^3.0.1",
  8783. "php": "^7.2 || ^8.0"
  8784. },
  8785. "type": "library",
  8786. "extra": {
  8787. "branch-alias": {
  8788. "dev-master": "2.0.x-dev"
  8789. }
  8790. },
  8791. "autoload": {
  8792. "classmap": [
  8793. "src/"
  8794. ]
  8795. },
  8796. "notification-url": "https://packagist.org/downloads/",
  8797. "license": [
  8798. "BSD-3-Clause"
  8799. ],
  8800. "authors": [
  8801. {
  8802. "name": "Arne Blankerts",
  8803. "email": "arne@blankerts.de",
  8804. "role": "Developer"
  8805. },
  8806. {
  8807. "name": "Sebastian Heuer",
  8808. "email": "sebastian@phpeople.de",
  8809. "role": "Developer"
  8810. },
  8811. {
  8812. "name": "Sebastian Bergmann",
  8813. "email": "sebastian@phpunit.de",
  8814. "role": "Developer"
  8815. }
  8816. ],
  8817. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8818. "support": {
  8819. "issues": "https://github.com/phar-io/manifest/issues",
  8820. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8821. },
  8822. "time": "2021-07-20T11:28:43+00:00"
  8823. },
  8824. {
  8825. "name": "phar-io/version",
  8826. "version": "3.2.1",
  8827. "source": {
  8828. "type": "git",
  8829. "url": "https://github.com/phar-io/version.git",
  8830. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8831. },
  8832. "dist": {
  8833. "type": "zip",
  8834. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8835. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8836. "shasum": "",
  8837. "mirrors": [
  8838. {
  8839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8840. "preferred": true
  8841. }
  8842. ]
  8843. },
  8844. "require": {
  8845. "php": "^7.2 || ^8.0"
  8846. },
  8847. "type": "library",
  8848. "autoload": {
  8849. "classmap": [
  8850. "src/"
  8851. ]
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "BSD-3-Clause"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Arne Blankerts",
  8860. "email": "arne@blankerts.de",
  8861. "role": "Developer"
  8862. },
  8863. {
  8864. "name": "Sebastian Heuer",
  8865. "email": "sebastian@phpeople.de",
  8866. "role": "Developer"
  8867. },
  8868. {
  8869. "name": "Sebastian Bergmann",
  8870. "email": "sebastian@phpunit.de",
  8871. "role": "Developer"
  8872. }
  8873. ],
  8874. "description": "Library for handling version information and constraints",
  8875. "support": {
  8876. "issues": "https://github.com/phar-io/version/issues",
  8877. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8878. },
  8879. "time": "2022-02-21T01:04:05+00:00"
  8880. },
  8881. {
  8882. "name": "phpdocumentor/reflection-common",
  8883. "version": "2.2.0",
  8884. "source": {
  8885. "type": "git",
  8886. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  8887. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  8888. },
  8889. "dist": {
  8890. "type": "zip",
  8891. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8892. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  8893. "shasum": "",
  8894. "mirrors": [
  8895. {
  8896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8897. "preferred": true
  8898. }
  8899. ]
  8900. },
  8901. "require": {
  8902. "php": "^7.2 || ^8.0"
  8903. },
  8904. "type": "library",
  8905. "extra": {
  8906. "branch-alias": {
  8907. "dev-2.x": "2.x-dev"
  8908. }
  8909. },
  8910. "autoload": {
  8911. "psr-4": {
  8912. "phpDocumentor\\Reflection\\": "src/"
  8913. }
  8914. },
  8915. "notification-url": "https://packagist.org/downloads/",
  8916. "license": [
  8917. "MIT"
  8918. ],
  8919. "authors": [
  8920. {
  8921. "name": "Jaap van Otterdijk",
  8922. "email": "opensource@ijaap.nl"
  8923. }
  8924. ],
  8925. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  8926. "homepage": "http://www.phpdoc.org",
  8927. "keywords": [
  8928. "FQSEN",
  8929. "phpDocumentor",
  8930. "phpdoc",
  8931. "reflection",
  8932. "static analysis"
  8933. ],
  8934. "support": {
  8935. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  8936. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  8937. },
  8938. "time": "2020-06-27T09:03:43+00:00"
  8939. },
  8940. {
  8941. "name": "phpdocumentor/type-resolver",
  8942. "version": "1.7.1",
  8943. "source": {
  8944. "type": "git",
  8945. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  8946. "reference": "dfc078e8af9c99210337325ff5aa152872c98714"
  8947. },
  8948. "dist": {
  8949. "type": "zip",
  8950. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/dfc078e8af9c99210337325ff5aa152872c98714",
  8951. "reference": "dfc078e8af9c99210337325ff5aa152872c98714",
  8952. "shasum": "",
  8953. "mirrors": [
  8954. {
  8955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8956. "preferred": true
  8957. }
  8958. ]
  8959. },
  8960. "require": {
  8961. "doctrine/deprecations": "^1.0",
  8962. "php": "^7.4 || ^8.0",
  8963. "phpdocumentor/reflection-common": "^2.0",
  8964. "phpstan/phpdoc-parser": "^1.13"
  8965. },
  8966. "require-dev": {
  8967. "ext-tokenizer": "*",
  8968. "phpbench/phpbench": "^1.2",
  8969. "phpstan/extension-installer": "^1.1",
  8970. "phpstan/phpstan": "^1.8",
  8971. "phpstan/phpstan-phpunit": "^1.1",
  8972. "phpunit/phpunit": "^9.5",
  8973. "rector/rector": "^0.13.9",
  8974. "vimeo/psalm": "^4.25"
  8975. },
  8976. "type": "library",
  8977. "extra": {
  8978. "branch-alias": {
  8979. "dev-1.x": "1.x-dev"
  8980. }
  8981. },
  8982. "autoload": {
  8983. "psr-4": {
  8984. "phpDocumentor\\Reflection\\": "src"
  8985. }
  8986. },
  8987. "notification-url": "https://packagist.org/downloads/",
  8988. "license": [
  8989. "MIT"
  8990. ],
  8991. "authors": [
  8992. {
  8993. "name": "Mike van Riel",
  8994. "email": "me@mikevanriel.com"
  8995. }
  8996. ],
  8997. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  8998. "support": {
  8999. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9000. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.7.1"
  9001. },
  9002. "time": "2023-03-27T19:02:04+00:00"
  9003. },
  9004. {
  9005. "name": "phpstan/phpdoc-parser",
  9006. "version": "1.20.3",
  9007. "source": {
  9008. "type": "git",
  9009. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9010. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2"
  9011. },
  9012. "dist": {
  9013. "type": "zip",
  9014. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/6c04009f6cae6eda2f040745b6b846080ef069c2",
  9015. "reference": "6c04009f6cae6eda2f040745b6b846080ef069c2",
  9016. "shasum": "",
  9017. "mirrors": [
  9018. {
  9019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9020. "preferred": true
  9021. }
  9022. ]
  9023. },
  9024. "require": {
  9025. "php": "^7.2 || ^8.0"
  9026. },
  9027. "require-dev": {
  9028. "php-parallel-lint/php-parallel-lint": "^1.2",
  9029. "phpstan/extension-installer": "^1.0",
  9030. "phpstan/phpstan": "^1.5",
  9031. "phpstan/phpstan-phpunit": "^1.1",
  9032. "phpstan/phpstan-strict-rules": "^1.0",
  9033. "phpunit/phpunit": "^9.5",
  9034. "symfony/process": "^5.2"
  9035. },
  9036. "type": "library",
  9037. "autoload": {
  9038. "psr-4": {
  9039. "PHPStan\\PhpDocParser\\": [
  9040. "src/"
  9041. ]
  9042. }
  9043. },
  9044. "notification-url": "https://packagist.org/downloads/",
  9045. "license": [
  9046. "MIT"
  9047. ],
  9048. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9049. "support": {
  9050. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9051. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.20.3"
  9052. },
  9053. "time": "2023-04-25T09:01:03+00:00"
  9054. },
  9055. {
  9056. "name": "phpunit/php-code-coverage",
  9057. "version": "9.2.26",
  9058. "source": {
  9059. "type": "git",
  9060. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9061. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  9062. },
  9063. "dist": {
  9064. "type": "zip",
  9065. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9066. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  9067. "shasum": "",
  9068. "mirrors": [
  9069. {
  9070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9071. "preferred": true
  9072. }
  9073. ]
  9074. },
  9075. "require": {
  9076. "ext-dom": "*",
  9077. "ext-libxml": "*",
  9078. "ext-xmlwriter": "*",
  9079. "nikic/php-parser": "^4.15",
  9080. "php": ">=7.3",
  9081. "phpunit/php-file-iterator": "^3.0.3",
  9082. "phpunit/php-text-template": "^2.0.2",
  9083. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9084. "sebastian/complexity": "^2.0",
  9085. "sebastian/environment": "^5.1.2",
  9086. "sebastian/lines-of-code": "^1.0.3",
  9087. "sebastian/version": "^3.0.1",
  9088. "theseer/tokenizer": "^1.2.0"
  9089. },
  9090. "require-dev": {
  9091. "phpunit/phpunit": "^9.3"
  9092. },
  9093. "suggest": {
  9094. "ext-pcov": "PHP extension that provides line coverage",
  9095. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9096. },
  9097. "type": "library",
  9098. "extra": {
  9099. "branch-alias": {
  9100. "dev-master": "9.2-dev"
  9101. }
  9102. },
  9103. "autoload": {
  9104. "classmap": [
  9105. "src/"
  9106. ]
  9107. },
  9108. "notification-url": "https://packagist.org/downloads/",
  9109. "license": [
  9110. "BSD-3-Clause"
  9111. ],
  9112. "authors": [
  9113. {
  9114. "name": "Sebastian Bergmann",
  9115. "email": "sebastian@phpunit.de",
  9116. "role": "lead"
  9117. }
  9118. ],
  9119. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9120. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9121. "keywords": [
  9122. "coverage",
  9123. "testing",
  9124. "xunit"
  9125. ],
  9126. "support": {
  9127. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9128. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  9129. },
  9130. "funding": [
  9131. {
  9132. "url": "https://github.com/sebastianbergmann",
  9133. "type": "github"
  9134. }
  9135. ],
  9136. "time": "2023-03-06T12:58:08+00:00"
  9137. },
  9138. {
  9139. "name": "phpunit/php-file-iterator",
  9140. "version": "3.0.6",
  9141. "source": {
  9142. "type": "git",
  9143. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9144. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9145. },
  9146. "dist": {
  9147. "type": "zip",
  9148. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9149. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9150. "shasum": "",
  9151. "mirrors": [
  9152. {
  9153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9154. "preferred": true
  9155. }
  9156. ]
  9157. },
  9158. "require": {
  9159. "php": ">=7.3"
  9160. },
  9161. "require-dev": {
  9162. "phpunit/phpunit": "^9.3"
  9163. },
  9164. "type": "library",
  9165. "extra": {
  9166. "branch-alias": {
  9167. "dev-master": "3.0-dev"
  9168. }
  9169. },
  9170. "autoload": {
  9171. "classmap": [
  9172. "src/"
  9173. ]
  9174. },
  9175. "notification-url": "https://packagist.org/downloads/",
  9176. "license": [
  9177. "BSD-3-Clause"
  9178. ],
  9179. "authors": [
  9180. {
  9181. "name": "Sebastian Bergmann",
  9182. "email": "sebastian@phpunit.de",
  9183. "role": "lead"
  9184. }
  9185. ],
  9186. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9187. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9188. "keywords": [
  9189. "filesystem",
  9190. "iterator"
  9191. ],
  9192. "support": {
  9193. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9194. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9195. },
  9196. "funding": [
  9197. {
  9198. "url": "https://github.com/sebastianbergmann",
  9199. "type": "github"
  9200. }
  9201. ],
  9202. "time": "2021-12-02T12:48:52+00:00"
  9203. },
  9204. {
  9205. "name": "phpunit/php-invoker",
  9206. "version": "3.1.1",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9210. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9215. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9216. "shasum": "",
  9217. "mirrors": [
  9218. {
  9219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9220. "preferred": true
  9221. }
  9222. ]
  9223. },
  9224. "require": {
  9225. "php": ">=7.3"
  9226. },
  9227. "require-dev": {
  9228. "ext-pcntl": "*",
  9229. "phpunit/phpunit": "^9.3"
  9230. },
  9231. "suggest": {
  9232. "ext-pcntl": "*"
  9233. },
  9234. "type": "library",
  9235. "extra": {
  9236. "branch-alias": {
  9237. "dev-master": "3.1-dev"
  9238. }
  9239. },
  9240. "autoload": {
  9241. "classmap": [
  9242. "src/"
  9243. ]
  9244. },
  9245. "notification-url": "https://packagist.org/downloads/",
  9246. "license": [
  9247. "BSD-3-Clause"
  9248. ],
  9249. "authors": [
  9250. {
  9251. "name": "Sebastian Bergmann",
  9252. "email": "sebastian@phpunit.de",
  9253. "role": "lead"
  9254. }
  9255. ],
  9256. "description": "Invoke callables with a timeout",
  9257. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9258. "keywords": [
  9259. "process"
  9260. ],
  9261. "support": {
  9262. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9263. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9264. },
  9265. "funding": [
  9266. {
  9267. "url": "https://github.com/sebastianbergmann",
  9268. "type": "github"
  9269. }
  9270. ],
  9271. "time": "2020-09-28T05:58:55+00:00"
  9272. },
  9273. {
  9274. "name": "phpunit/php-text-template",
  9275. "version": "2.0.4",
  9276. "source": {
  9277. "type": "git",
  9278. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9279. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9280. },
  9281. "dist": {
  9282. "type": "zip",
  9283. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9284. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9285. "shasum": "",
  9286. "mirrors": [
  9287. {
  9288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9289. "preferred": true
  9290. }
  9291. ]
  9292. },
  9293. "require": {
  9294. "php": ">=7.3"
  9295. },
  9296. "require-dev": {
  9297. "phpunit/phpunit": "^9.3"
  9298. },
  9299. "type": "library",
  9300. "extra": {
  9301. "branch-alias": {
  9302. "dev-master": "2.0-dev"
  9303. }
  9304. },
  9305. "autoload": {
  9306. "classmap": [
  9307. "src/"
  9308. ]
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "BSD-3-Clause"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Sebastian Bergmann",
  9317. "email": "sebastian@phpunit.de",
  9318. "role": "lead"
  9319. }
  9320. ],
  9321. "description": "Simple template engine.",
  9322. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9323. "keywords": [
  9324. "template"
  9325. ],
  9326. "support": {
  9327. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9328. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9329. },
  9330. "funding": [
  9331. {
  9332. "url": "https://github.com/sebastianbergmann",
  9333. "type": "github"
  9334. }
  9335. ],
  9336. "time": "2020-10-26T05:33:50+00:00"
  9337. },
  9338. {
  9339. "name": "phpunit/php-timer",
  9340. "version": "5.0.3",
  9341. "source": {
  9342. "type": "git",
  9343. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9344. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9345. },
  9346. "dist": {
  9347. "type": "zip",
  9348. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9349. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9350. "shasum": "",
  9351. "mirrors": [
  9352. {
  9353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9354. "preferred": true
  9355. }
  9356. ]
  9357. },
  9358. "require": {
  9359. "php": ">=7.3"
  9360. },
  9361. "require-dev": {
  9362. "phpunit/phpunit": "^9.3"
  9363. },
  9364. "type": "library",
  9365. "extra": {
  9366. "branch-alias": {
  9367. "dev-master": "5.0-dev"
  9368. }
  9369. },
  9370. "autoload": {
  9371. "classmap": [
  9372. "src/"
  9373. ]
  9374. },
  9375. "notification-url": "https://packagist.org/downloads/",
  9376. "license": [
  9377. "BSD-3-Clause"
  9378. ],
  9379. "authors": [
  9380. {
  9381. "name": "Sebastian Bergmann",
  9382. "email": "sebastian@phpunit.de",
  9383. "role": "lead"
  9384. }
  9385. ],
  9386. "description": "Utility class for timing",
  9387. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9388. "keywords": [
  9389. "timer"
  9390. ],
  9391. "support": {
  9392. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9393. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9394. },
  9395. "funding": [
  9396. {
  9397. "url": "https://github.com/sebastianbergmann",
  9398. "type": "github"
  9399. }
  9400. ],
  9401. "time": "2020-10-26T13:16:10+00:00"
  9402. },
  9403. {
  9404. "name": "phpunit/phpunit",
  9405. "version": "9.6.7",
  9406. "source": {
  9407. "type": "git",
  9408. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9409. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2"
  9410. },
  9411. "dist": {
  9412. "type": "zip",
  9413. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9414. "reference": "c993f0d3b0489ffc42ee2fe0bd645af1538a63b2",
  9415. "shasum": "",
  9416. "mirrors": [
  9417. {
  9418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9419. "preferred": true
  9420. }
  9421. ]
  9422. },
  9423. "require": {
  9424. "doctrine/instantiator": "^1.3.1 || ^2",
  9425. "ext-dom": "*",
  9426. "ext-json": "*",
  9427. "ext-libxml": "*",
  9428. "ext-mbstring": "*",
  9429. "ext-xml": "*",
  9430. "ext-xmlwriter": "*",
  9431. "myclabs/deep-copy": "^1.10.1",
  9432. "phar-io/manifest": "^2.0.3",
  9433. "phar-io/version": "^3.0.2",
  9434. "php": ">=7.3",
  9435. "phpunit/php-code-coverage": "^9.2.13",
  9436. "phpunit/php-file-iterator": "^3.0.5",
  9437. "phpunit/php-invoker": "^3.1.1",
  9438. "phpunit/php-text-template": "^2.0.3",
  9439. "phpunit/php-timer": "^5.0.2",
  9440. "sebastian/cli-parser": "^1.0.1",
  9441. "sebastian/code-unit": "^1.0.6",
  9442. "sebastian/comparator": "^4.0.8",
  9443. "sebastian/diff": "^4.0.3",
  9444. "sebastian/environment": "^5.1.3",
  9445. "sebastian/exporter": "^4.0.5",
  9446. "sebastian/global-state": "^5.0.1",
  9447. "sebastian/object-enumerator": "^4.0.3",
  9448. "sebastian/resource-operations": "^3.0.3",
  9449. "sebastian/type": "^3.2",
  9450. "sebastian/version": "^3.0.2"
  9451. },
  9452. "suggest": {
  9453. "ext-soap": "To be able to generate mocks based on WSDL files",
  9454. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9455. },
  9456. "bin": [
  9457. "phpunit"
  9458. ],
  9459. "type": "library",
  9460. "extra": {
  9461. "branch-alias": {
  9462. "dev-master": "9.6-dev"
  9463. }
  9464. },
  9465. "autoload": {
  9466. "files": [
  9467. "src/Framework/Assert/Functions.php"
  9468. ],
  9469. "classmap": [
  9470. "src/"
  9471. ]
  9472. },
  9473. "notification-url": "https://packagist.org/downloads/",
  9474. "license": [
  9475. "BSD-3-Clause"
  9476. ],
  9477. "authors": [
  9478. {
  9479. "name": "Sebastian Bergmann",
  9480. "email": "sebastian@phpunit.de",
  9481. "role": "lead"
  9482. }
  9483. ],
  9484. "description": "The PHP Unit Testing framework.",
  9485. "homepage": "https://phpunit.de/",
  9486. "keywords": [
  9487. "phpunit",
  9488. "testing",
  9489. "xunit"
  9490. ],
  9491. "support": {
  9492. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9493. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9494. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.7"
  9495. },
  9496. "funding": [
  9497. {
  9498. "url": "https://phpunit.de/sponsors.html",
  9499. "type": "custom"
  9500. },
  9501. {
  9502. "url": "https://github.com/sebastianbergmann",
  9503. "type": "github"
  9504. },
  9505. {
  9506. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9507. "type": "tidelift"
  9508. }
  9509. ],
  9510. "time": "2023-04-14T08:58:40+00:00"
  9511. },
  9512. {
  9513. "name": "sebastian/cli-parser",
  9514. "version": "1.0.1",
  9515. "source": {
  9516. "type": "git",
  9517. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9518. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9519. },
  9520. "dist": {
  9521. "type": "zip",
  9522. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9523. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9524. "shasum": "",
  9525. "mirrors": [
  9526. {
  9527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9528. "preferred": true
  9529. }
  9530. ]
  9531. },
  9532. "require": {
  9533. "php": ">=7.3"
  9534. },
  9535. "require-dev": {
  9536. "phpunit/phpunit": "^9.3"
  9537. },
  9538. "type": "library",
  9539. "extra": {
  9540. "branch-alias": {
  9541. "dev-master": "1.0-dev"
  9542. }
  9543. },
  9544. "autoload": {
  9545. "classmap": [
  9546. "src/"
  9547. ]
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "BSD-3-Clause"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Sebastian Bergmann",
  9556. "email": "sebastian@phpunit.de",
  9557. "role": "lead"
  9558. }
  9559. ],
  9560. "description": "Library for parsing CLI options",
  9561. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9562. "support": {
  9563. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9564. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9565. },
  9566. "funding": [
  9567. {
  9568. "url": "https://github.com/sebastianbergmann",
  9569. "type": "github"
  9570. }
  9571. ],
  9572. "time": "2020-09-28T06:08:49+00:00"
  9573. },
  9574. {
  9575. "name": "sebastian/code-unit",
  9576. "version": "1.0.8",
  9577. "source": {
  9578. "type": "git",
  9579. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9580. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9581. },
  9582. "dist": {
  9583. "type": "zip",
  9584. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9585. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9586. "shasum": "",
  9587. "mirrors": [
  9588. {
  9589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9590. "preferred": true
  9591. }
  9592. ]
  9593. },
  9594. "require": {
  9595. "php": ">=7.3"
  9596. },
  9597. "require-dev": {
  9598. "phpunit/phpunit": "^9.3"
  9599. },
  9600. "type": "library",
  9601. "extra": {
  9602. "branch-alias": {
  9603. "dev-master": "1.0-dev"
  9604. }
  9605. },
  9606. "autoload": {
  9607. "classmap": [
  9608. "src/"
  9609. ]
  9610. },
  9611. "notification-url": "https://packagist.org/downloads/",
  9612. "license": [
  9613. "BSD-3-Clause"
  9614. ],
  9615. "authors": [
  9616. {
  9617. "name": "Sebastian Bergmann",
  9618. "email": "sebastian@phpunit.de",
  9619. "role": "lead"
  9620. }
  9621. ],
  9622. "description": "Collection of value objects that represent the PHP code units",
  9623. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9624. "support": {
  9625. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9626. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9627. },
  9628. "funding": [
  9629. {
  9630. "url": "https://github.com/sebastianbergmann",
  9631. "type": "github"
  9632. }
  9633. ],
  9634. "time": "2020-10-26T13:08:54+00:00"
  9635. },
  9636. {
  9637. "name": "sebastian/code-unit-reverse-lookup",
  9638. "version": "2.0.3",
  9639. "source": {
  9640. "type": "git",
  9641. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9642. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9643. },
  9644. "dist": {
  9645. "type": "zip",
  9646. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9647. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9648. "shasum": "",
  9649. "mirrors": [
  9650. {
  9651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9652. "preferred": true
  9653. }
  9654. ]
  9655. },
  9656. "require": {
  9657. "php": ">=7.3"
  9658. },
  9659. "require-dev": {
  9660. "phpunit/phpunit": "^9.3"
  9661. },
  9662. "type": "library",
  9663. "extra": {
  9664. "branch-alias": {
  9665. "dev-master": "2.0-dev"
  9666. }
  9667. },
  9668. "autoload": {
  9669. "classmap": [
  9670. "src/"
  9671. ]
  9672. },
  9673. "notification-url": "https://packagist.org/downloads/",
  9674. "license": [
  9675. "BSD-3-Clause"
  9676. ],
  9677. "authors": [
  9678. {
  9679. "name": "Sebastian Bergmann",
  9680. "email": "sebastian@phpunit.de"
  9681. }
  9682. ],
  9683. "description": "Looks up which function or method a line of code belongs to",
  9684. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9685. "support": {
  9686. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9687. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9688. },
  9689. "funding": [
  9690. {
  9691. "url": "https://github.com/sebastianbergmann",
  9692. "type": "github"
  9693. }
  9694. ],
  9695. "time": "2020-09-28T05:30:19+00:00"
  9696. },
  9697. {
  9698. "name": "sebastian/comparator",
  9699. "version": "4.0.8",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/sebastianbergmann/comparator.git",
  9703. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9708. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9709. "shasum": "",
  9710. "mirrors": [
  9711. {
  9712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9713. "preferred": true
  9714. }
  9715. ]
  9716. },
  9717. "require": {
  9718. "php": ">=7.3",
  9719. "sebastian/diff": "^4.0",
  9720. "sebastian/exporter": "^4.0"
  9721. },
  9722. "require-dev": {
  9723. "phpunit/phpunit": "^9.3"
  9724. },
  9725. "type": "library",
  9726. "extra": {
  9727. "branch-alias": {
  9728. "dev-master": "4.0-dev"
  9729. }
  9730. },
  9731. "autoload": {
  9732. "classmap": [
  9733. "src/"
  9734. ]
  9735. },
  9736. "notification-url": "https://packagist.org/downloads/",
  9737. "license": [
  9738. "BSD-3-Clause"
  9739. ],
  9740. "authors": [
  9741. {
  9742. "name": "Sebastian Bergmann",
  9743. "email": "sebastian@phpunit.de"
  9744. },
  9745. {
  9746. "name": "Jeff Welch",
  9747. "email": "whatthejeff@gmail.com"
  9748. },
  9749. {
  9750. "name": "Volker Dusch",
  9751. "email": "github@wallbash.com"
  9752. },
  9753. {
  9754. "name": "Bernhard Schussek",
  9755. "email": "bschussek@2bepublished.at"
  9756. }
  9757. ],
  9758. "description": "Provides the functionality to compare PHP values for equality",
  9759. "homepage": "https://github.com/sebastianbergmann/comparator",
  9760. "keywords": [
  9761. "comparator",
  9762. "compare",
  9763. "equality"
  9764. ],
  9765. "support": {
  9766. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9767. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9768. },
  9769. "funding": [
  9770. {
  9771. "url": "https://github.com/sebastianbergmann",
  9772. "type": "github"
  9773. }
  9774. ],
  9775. "time": "2022-09-14T12:41:17+00:00"
  9776. },
  9777. {
  9778. "name": "sebastian/complexity",
  9779. "version": "2.0.2",
  9780. "source": {
  9781. "type": "git",
  9782. "url": "https://github.com/sebastianbergmann/complexity.git",
  9783. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9784. },
  9785. "dist": {
  9786. "type": "zip",
  9787. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9788. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9789. "shasum": "",
  9790. "mirrors": [
  9791. {
  9792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9793. "preferred": true
  9794. }
  9795. ]
  9796. },
  9797. "require": {
  9798. "nikic/php-parser": "^4.7",
  9799. "php": ">=7.3"
  9800. },
  9801. "require-dev": {
  9802. "phpunit/phpunit": "^9.3"
  9803. },
  9804. "type": "library",
  9805. "extra": {
  9806. "branch-alias": {
  9807. "dev-master": "2.0-dev"
  9808. }
  9809. },
  9810. "autoload": {
  9811. "classmap": [
  9812. "src/"
  9813. ]
  9814. },
  9815. "notification-url": "https://packagist.org/downloads/",
  9816. "license": [
  9817. "BSD-3-Clause"
  9818. ],
  9819. "authors": [
  9820. {
  9821. "name": "Sebastian Bergmann",
  9822. "email": "sebastian@phpunit.de",
  9823. "role": "lead"
  9824. }
  9825. ],
  9826. "description": "Library for calculating the complexity of PHP code units",
  9827. "homepage": "https://github.com/sebastianbergmann/complexity",
  9828. "support": {
  9829. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9830. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9831. },
  9832. "funding": [
  9833. {
  9834. "url": "https://github.com/sebastianbergmann",
  9835. "type": "github"
  9836. }
  9837. ],
  9838. "time": "2020-10-26T15:52:27+00:00"
  9839. },
  9840. {
  9841. "name": "sebastian/diff",
  9842. "version": "4.0.4",
  9843. "source": {
  9844. "type": "git",
  9845. "url": "https://github.com/sebastianbergmann/diff.git",
  9846. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9847. },
  9848. "dist": {
  9849. "type": "zip",
  9850. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9851. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9852. "shasum": "",
  9853. "mirrors": [
  9854. {
  9855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9856. "preferred": true
  9857. }
  9858. ]
  9859. },
  9860. "require": {
  9861. "php": ">=7.3"
  9862. },
  9863. "require-dev": {
  9864. "phpunit/phpunit": "^9.3",
  9865. "symfony/process": "^4.2 || ^5"
  9866. },
  9867. "type": "library",
  9868. "extra": {
  9869. "branch-alias": {
  9870. "dev-master": "4.0-dev"
  9871. }
  9872. },
  9873. "autoload": {
  9874. "classmap": [
  9875. "src/"
  9876. ]
  9877. },
  9878. "notification-url": "https://packagist.org/downloads/",
  9879. "license": [
  9880. "BSD-3-Clause"
  9881. ],
  9882. "authors": [
  9883. {
  9884. "name": "Sebastian Bergmann",
  9885. "email": "sebastian@phpunit.de"
  9886. },
  9887. {
  9888. "name": "Kore Nordmann",
  9889. "email": "mail@kore-nordmann.de"
  9890. }
  9891. ],
  9892. "description": "Diff implementation",
  9893. "homepage": "https://github.com/sebastianbergmann/diff",
  9894. "keywords": [
  9895. "diff",
  9896. "udiff",
  9897. "unidiff",
  9898. "unified diff"
  9899. ],
  9900. "support": {
  9901. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9902. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9903. },
  9904. "funding": [
  9905. {
  9906. "url": "https://github.com/sebastianbergmann",
  9907. "type": "github"
  9908. }
  9909. ],
  9910. "time": "2020-10-26T13:10:38+00:00"
  9911. },
  9912. {
  9913. "name": "sebastian/environment",
  9914. "version": "5.1.5",
  9915. "source": {
  9916. "type": "git",
  9917. "url": "https://github.com/sebastianbergmann/environment.git",
  9918. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9919. },
  9920. "dist": {
  9921. "type": "zip",
  9922. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9923. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9924. "shasum": "",
  9925. "mirrors": [
  9926. {
  9927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9928. "preferred": true
  9929. }
  9930. ]
  9931. },
  9932. "require": {
  9933. "php": ">=7.3"
  9934. },
  9935. "require-dev": {
  9936. "phpunit/phpunit": "^9.3"
  9937. },
  9938. "suggest": {
  9939. "ext-posix": "*"
  9940. },
  9941. "type": "library",
  9942. "extra": {
  9943. "branch-alias": {
  9944. "dev-master": "5.1-dev"
  9945. }
  9946. },
  9947. "autoload": {
  9948. "classmap": [
  9949. "src/"
  9950. ]
  9951. },
  9952. "notification-url": "https://packagist.org/downloads/",
  9953. "license": [
  9954. "BSD-3-Clause"
  9955. ],
  9956. "authors": [
  9957. {
  9958. "name": "Sebastian Bergmann",
  9959. "email": "sebastian@phpunit.de"
  9960. }
  9961. ],
  9962. "description": "Provides functionality to handle HHVM/PHP environments",
  9963. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9964. "keywords": [
  9965. "Xdebug",
  9966. "environment",
  9967. "hhvm"
  9968. ],
  9969. "support": {
  9970. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9971. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9972. },
  9973. "funding": [
  9974. {
  9975. "url": "https://github.com/sebastianbergmann",
  9976. "type": "github"
  9977. }
  9978. ],
  9979. "time": "2023-02-03T06:03:51+00:00"
  9980. },
  9981. {
  9982. "name": "sebastian/exporter",
  9983. "version": "4.0.5",
  9984. "source": {
  9985. "type": "git",
  9986. "url": "https://github.com/sebastianbergmann/exporter.git",
  9987. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9988. },
  9989. "dist": {
  9990. "type": "zip",
  9991. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9992. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9993. "shasum": "",
  9994. "mirrors": [
  9995. {
  9996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9997. "preferred": true
  9998. }
  9999. ]
  10000. },
  10001. "require": {
  10002. "php": ">=7.3",
  10003. "sebastian/recursion-context": "^4.0"
  10004. },
  10005. "require-dev": {
  10006. "ext-mbstring": "*",
  10007. "phpunit/phpunit": "^9.3"
  10008. },
  10009. "type": "library",
  10010. "extra": {
  10011. "branch-alias": {
  10012. "dev-master": "4.0-dev"
  10013. }
  10014. },
  10015. "autoload": {
  10016. "classmap": [
  10017. "src/"
  10018. ]
  10019. },
  10020. "notification-url": "https://packagist.org/downloads/",
  10021. "license": [
  10022. "BSD-3-Clause"
  10023. ],
  10024. "authors": [
  10025. {
  10026. "name": "Sebastian Bergmann",
  10027. "email": "sebastian@phpunit.de"
  10028. },
  10029. {
  10030. "name": "Jeff Welch",
  10031. "email": "whatthejeff@gmail.com"
  10032. },
  10033. {
  10034. "name": "Volker Dusch",
  10035. "email": "github@wallbash.com"
  10036. },
  10037. {
  10038. "name": "Adam Harvey",
  10039. "email": "aharvey@php.net"
  10040. },
  10041. {
  10042. "name": "Bernhard Schussek",
  10043. "email": "bschussek@gmail.com"
  10044. }
  10045. ],
  10046. "description": "Provides the functionality to export PHP variables for visualization",
  10047. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10048. "keywords": [
  10049. "export",
  10050. "exporter"
  10051. ],
  10052. "support": {
  10053. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10054. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10055. },
  10056. "funding": [
  10057. {
  10058. "url": "https://github.com/sebastianbergmann",
  10059. "type": "github"
  10060. }
  10061. ],
  10062. "time": "2022-09-14T06:03:37+00:00"
  10063. },
  10064. {
  10065. "name": "sebastian/global-state",
  10066. "version": "5.0.5",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/sebastianbergmann/global-state.git",
  10070. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10075. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  10076. "shasum": "",
  10077. "mirrors": [
  10078. {
  10079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10080. "preferred": true
  10081. }
  10082. ]
  10083. },
  10084. "require": {
  10085. "php": ">=7.3",
  10086. "sebastian/object-reflector": "^2.0",
  10087. "sebastian/recursion-context": "^4.0"
  10088. },
  10089. "require-dev": {
  10090. "ext-dom": "*",
  10091. "phpunit/phpunit": "^9.3"
  10092. },
  10093. "suggest": {
  10094. "ext-uopz": "*"
  10095. },
  10096. "type": "library",
  10097. "extra": {
  10098. "branch-alias": {
  10099. "dev-master": "5.0-dev"
  10100. }
  10101. },
  10102. "autoload": {
  10103. "classmap": [
  10104. "src/"
  10105. ]
  10106. },
  10107. "notification-url": "https://packagist.org/downloads/",
  10108. "license": [
  10109. "BSD-3-Clause"
  10110. ],
  10111. "authors": [
  10112. {
  10113. "name": "Sebastian Bergmann",
  10114. "email": "sebastian@phpunit.de"
  10115. }
  10116. ],
  10117. "description": "Snapshotting of global state",
  10118. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10119. "keywords": [
  10120. "global state"
  10121. ],
  10122. "support": {
  10123. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10124. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  10125. },
  10126. "funding": [
  10127. {
  10128. "url": "https://github.com/sebastianbergmann",
  10129. "type": "github"
  10130. }
  10131. ],
  10132. "time": "2022-02-14T08:28:10+00:00"
  10133. },
  10134. {
  10135. "name": "sebastian/lines-of-code",
  10136. "version": "1.0.3",
  10137. "source": {
  10138. "type": "git",
  10139. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10140. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10141. },
  10142. "dist": {
  10143. "type": "zip",
  10144. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10145. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10146. "shasum": "",
  10147. "mirrors": [
  10148. {
  10149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10150. "preferred": true
  10151. }
  10152. ]
  10153. },
  10154. "require": {
  10155. "nikic/php-parser": "^4.6",
  10156. "php": ">=7.3"
  10157. },
  10158. "require-dev": {
  10159. "phpunit/phpunit": "^9.3"
  10160. },
  10161. "type": "library",
  10162. "extra": {
  10163. "branch-alias": {
  10164. "dev-master": "1.0-dev"
  10165. }
  10166. },
  10167. "autoload": {
  10168. "classmap": [
  10169. "src/"
  10170. ]
  10171. },
  10172. "notification-url": "https://packagist.org/downloads/",
  10173. "license": [
  10174. "BSD-3-Clause"
  10175. ],
  10176. "authors": [
  10177. {
  10178. "name": "Sebastian Bergmann",
  10179. "email": "sebastian@phpunit.de",
  10180. "role": "lead"
  10181. }
  10182. ],
  10183. "description": "Library for counting the lines of code in PHP source code",
  10184. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10185. "support": {
  10186. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10187. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10188. },
  10189. "funding": [
  10190. {
  10191. "url": "https://github.com/sebastianbergmann",
  10192. "type": "github"
  10193. }
  10194. ],
  10195. "time": "2020-11-28T06:42:11+00:00"
  10196. },
  10197. {
  10198. "name": "sebastian/object-enumerator",
  10199. "version": "4.0.4",
  10200. "source": {
  10201. "type": "git",
  10202. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10203. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10204. },
  10205. "dist": {
  10206. "type": "zip",
  10207. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10208. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10209. "shasum": "",
  10210. "mirrors": [
  10211. {
  10212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10213. "preferred": true
  10214. }
  10215. ]
  10216. },
  10217. "require": {
  10218. "php": ">=7.3",
  10219. "sebastian/object-reflector": "^2.0",
  10220. "sebastian/recursion-context": "^4.0"
  10221. },
  10222. "require-dev": {
  10223. "phpunit/phpunit": "^9.3"
  10224. },
  10225. "type": "library",
  10226. "extra": {
  10227. "branch-alias": {
  10228. "dev-master": "4.0-dev"
  10229. }
  10230. },
  10231. "autoload": {
  10232. "classmap": [
  10233. "src/"
  10234. ]
  10235. },
  10236. "notification-url": "https://packagist.org/downloads/",
  10237. "license": [
  10238. "BSD-3-Clause"
  10239. ],
  10240. "authors": [
  10241. {
  10242. "name": "Sebastian Bergmann",
  10243. "email": "sebastian@phpunit.de"
  10244. }
  10245. ],
  10246. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10247. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10248. "support": {
  10249. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10250. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10251. },
  10252. "funding": [
  10253. {
  10254. "url": "https://github.com/sebastianbergmann",
  10255. "type": "github"
  10256. }
  10257. ],
  10258. "time": "2020-10-26T13:12:34+00:00"
  10259. },
  10260. {
  10261. "name": "sebastian/object-reflector",
  10262. "version": "2.0.4",
  10263. "source": {
  10264. "type": "git",
  10265. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10266. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10267. },
  10268. "dist": {
  10269. "type": "zip",
  10270. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10271. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10272. "shasum": "",
  10273. "mirrors": [
  10274. {
  10275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10276. "preferred": true
  10277. }
  10278. ]
  10279. },
  10280. "require": {
  10281. "php": ">=7.3"
  10282. },
  10283. "require-dev": {
  10284. "phpunit/phpunit": "^9.3"
  10285. },
  10286. "type": "library",
  10287. "extra": {
  10288. "branch-alias": {
  10289. "dev-master": "2.0-dev"
  10290. }
  10291. },
  10292. "autoload": {
  10293. "classmap": [
  10294. "src/"
  10295. ]
  10296. },
  10297. "notification-url": "https://packagist.org/downloads/",
  10298. "license": [
  10299. "BSD-3-Clause"
  10300. ],
  10301. "authors": [
  10302. {
  10303. "name": "Sebastian Bergmann",
  10304. "email": "sebastian@phpunit.de"
  10305. }
  10306. ],
  10307. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10308. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10309. "support": {
  10310. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10311. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10312. },
  10313. "funding": [
  10314. {
  10315. "url": "https://github.com/sebastianbergmann",
  10316. "type": "github"
  10317. }
  10318. ],
  10319. "time": "2020-10-26T13:14:26+00:00"
  10320. },
  10321. {
  10322. "name": "sebastian/recursion-context",
  10323. "version": "4.0.5",
  10324. "source": {
  10325. "type": "git",
  10326. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10327. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10328. },
  10329. "dist": {
  10330. "type": "zip",
  10331. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10332. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10333. "shasum": "",
  10334. "mirrors": [
  10335. {
  10336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10337. "preferred": true
  10338. }
  10339. ]
  10340. },
  10341. "require": {
  10342. "php": ">=7.3"
  10343. },
  10344. "require-dev": {
  10345. "phpunit/phpunit": "^9.3"
  10346. },
  10347. "type": "library",
  10348. "extra": {
  10349. "branch-alias": {
  10350. "dev-master": "4.0-dev"
  10351. }
  10352. },
  10353. "autoload": {
  10354. "classmap": [
  10355. "src/"
  10356. ]
  10357. },
  10358. "notification-url": "https://packagist.org/downloads/",
  10359. "license": [
  10360. "BSD-3-Clause"
  10361. ],
  10362. "authors": [
  10363. {
  10364. "name": "Sebastian Bergmann",
  10365. "email": "sebastian@phpunit.de"
  10366. },
  10367. {
  10368. "name": "Jeff Welch",
  10369. "email": "whatthejeff@gmail.com"
  10370. },
  10371. {
  10372. "name": "Adam Harvey",
  10373. "email": "aharvey@php.net"
  10374. }
  10375. ],
  10376. "description": "Provides functionality to recursively process PHP variables",
  10377. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10378. "support": {
  10379. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10380. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10381. },
  10382. "funding": [
  10383. {
  10384. "url": "https://github.com/sebastianbergmann",
  10385. "type": "github"
  10386. }
  10387. ],
  10388. "time": "2023-02-03T06:07:39+00:00"
  10389. },
  10390. {
  10391. "name": "sebastian/resource-operations",
  10392. "version": "3.0.3",
  10393. "source": {
  10394. "type": "git",
  10395. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10396. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10397. },
  10398. "dist": {
  10399. "type": "zip",
  10400. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10401. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10402. "shasum": "",
  10403. "mirrors": [
  10404. {
  10405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10406. "preferred": true
  10407. }
  10408. ]
  10409. },
  10410. "require": {
  10411. "php": ">=7.3"
  10412. },
  10413. "require-dev": {
  10414. "phpunit/phpunit": "^9.0"
  10415. },
  10416. "type": "library",
  10417. "extra": {
  10418. "branch-alias": {
  10419. "dev-master": "3.0-dev"
  10420. }
  10421. },
  10422. "autoload": {
  10423. "classmap": [
  10424. "src/"
  10425. ]
  10426. },
  10427. "notification-url": "https://packagist.org/downloads/",
  10428. "license": [
  10429. "BSD-3-Clause"
  10430. ],
  10431. "authors": [
  10432. {
  10433. "name": "Sebastian Bergmann",
  10434. "email": "sebastian@phpunit.de"
  10435. }
  10436. ],
  10437. "description": "Provides a list of PHP built-in functions that operate on resources",
  10438. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10439. "support": {
  10440. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10441. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10442. },
  10443. "funding": [
  10444. {
  10445. "url": "https://github.com/sebastianbergmann",
  10446. "type": "github"
  10447. }
  10448. ],
  10449. "time": "2020-09-28T06:45:17+00:00"
  10450. },
  10451. {
  10452. "name": "sebastian/type",
  10453. "version": "3.2.1",
  10454. "source": {
  10455. "type": "git",
  10456. "url": "https://github.com/sebastianbergmann/type.git",
  10457. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10458. },
  10459. "dist": {
  10460. "type": "zip",
  10461. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10462. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10463. "shasum": "",
  10464. "mirrors": [
  10465. {
  10466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10467. "preferred": true
  10468. }
  10469. ]
  10470. },
  10471. "require": {
  10472. "php": ">=7.3"
  10473. },
  10474. "require-dev": {
  10475. "phpunit/phpunit": "^9.5"
  10476. },
  10477. "type": "library",
  10478. "extra": {
  10479. "branch-alias": {
  10480. "dev-master": "3.2-dev"
  10481. }
  10482. },
  10483. "autoload": {
  10484. "classmap": [
  10485. "src/"
  10486. ]
  10487. },
  10488. "notification-url": "https://packagist.org/downloads/",
  10489. "license": [
  10490. "BSD-3-Clause"
  10491. ],
  10492. "authors": [
  10493. {
  10494. "name": "Sebastian Bergmann",
  10495. "email": "sebastian@phpunit.de",
  10496. "role": "lead"
  10497. }
  10498. ],
  10499. "description": "Collection of value objects that represent the types of the PHP type system",
  10500. "homepage": "https://github.com/sebastianbergmann/type",
  10501. "support": {
  10502. "issues": "https://github.com/sebastianbergmann/type/issues",
  10503. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10504. },
  10505. "funding": [
  10506. {
  10507. "url": "https://github.com/sebastianbergmann",
  10508. "type": "github"
  10509. }
  10510. ],
  10511. "time": "2023-02-03T06:13:03+00:00"
  10512. },
  10513. {
  10514. "name": "sebastian/version",
  10515. "version": "3.0.2",
  10516. "source": {
  10517. "type": "git",
  10518. "url": "https://github.com/sebastianbergmann/version.git",
  10519. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10520. },
  10521. "dist": {
  10522. "type": "zip",
  10523. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10524. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10525. "shasum": "",
  10526. "mirrors": [
  10527. {
  10528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10529. "preferred": true
  10530. }
  10531. ]
  10532. },
  10533. "require": {
  10534. "php": ">=7.3"
  10535. },
  10536. "type": "library",
  10537. "extra": {
  10538. "branch-alias": {
  10539. "dev-master": "3.0-dev"
  10540. }
  10541. },
  10542. "autoload": {
  10543. "classmap": [
  10544. "src/"
  10545. ]
  10546. },
  10547. "notification-url": "https://packagist.org/downloads/",
  10548. "license": [
  10549. "BSD-3-Clause"
  10550. ],
  10551. "authors": [
  10552. {
  10553. "name": "Sebastian Bergmann",
  10554. "email": "sebastian@phpunit.de",
  10555. "role": "lead"
  10556. }
  10557. ],
  10558. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10559. "homepage": "https://github.com/sebastianbergmann/version",
  10560. "support": {
  10561. "issues": "https://github.com/sebastianbergmann/version/issues",
  10562. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10563. },
  10564. "funding": [
  10565. {
  10566. "url": "https://github.com/sebastianbergmann",
  10567. "type": "github"
  10568. }
  10569. ],
  10570. "time": "2020-09-28T06:39:44+00:00"
  10571. },
  10572. {
  10573. "name": "spatie/backtrace",
  10574. "version": "1.3.0",
  10575. "source": {
  10576. "type": "git",
  10577. "url": "https://github.com/spatie/backtrace.git",
  10578. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec"
  10579. },
  10580. "dist": {
  10581. "type": "zip",
  10582. "url": "https://api.github.com/repos/spatie/backtrace/zipball/6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  10583. "reference": "6d0ff6485800ba649f06c788f1fbd1fb61fbc3ec",
  10584. "shasum": "",
  10585. "mirrors": [
  10586. {
  10587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10588. "preferred": true
  10589. }
  10590. ]
  10591. },
  10592. "require": {
  10593. "php": "^7.3|^8.0"
  10594. },
  10595. "require-dev": {
  10596. "ext-json": "*",
  10597. "phpunit/phpunit": "^9.3",
  10598. "spatie/phpunit-snapshot-assertions": "^4.2",
  10599. "symfony/var-dumper": "^5.1"
  10600. },
  10601. "type": "library",
  10602. "autoload": {
  10603. "psr-4": {
  10604. "Spatie\\Backtrace\\": "src"
  10605. }
  10606. },
  10607. "notification-url": "https://packagist.org/downloads/",
  10608. "license": [
  10609. "MIT"
  10610. ],
  10611. "authors": [
  10612. {
  10613. "name": "Freek Van de Herten",
  10614. "email": "freek@spatie.be",
  10615. "homepage": "https://spatie.be",
  10616. "role": "Developer"
  10617. }
  10618. ],
  10619. "description": "A better backtrace",
  10620. "homepage": "https://github.com/spatie/backtrace",
  10621. "keywords": [
  10622. "Backtrace",
  10623. "spatie"
  10624. ],
  10625. "support": {
  10626. "source": "https://github.com/spatie/backtrace/tree/1.3.0"
  10627. },
  10628. "funding": [
  10629. {
  10630. "url": "https://github.com/sponsors/spatie",
  10631. "type": "github"
  10632. },
  10633. {
  10634. "url": "https://spatie.be/open-source/support-us",
  10635. "type": "other"
  10636. }
  10637. ],
  10638. "time": "2023-03-04T08:31:24+00:00"
  10639. },
  10640. {
  10641. "name": "spatie/flare-client-php",
  10642. "version": "1.3.5",
  10643. "source": {
  10644. "type": "git",
  10645. "url": "https://github.com/spatie/flare-client-php.git",
  10646. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42"
  10647. },
  10648. "dist": {
  10649. "type": "zip",
  10650. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10651. "reference": "3e5dd5ac4928f3d2d036bd02de5eb83fd0ef1f42",
  10652. "shasum": "",
  10653. "mirrors": [
  10654. {
  10655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10656. "preferred": true
  10657. }
  10658. ]
  10659. },
  10660. "require": {
  10661. "illuminate/pipeline": "^8.0|^9.0|^10.0",
  10662. "php": "^8.0",
  10663. "spatie/backtrace": "^1.2",
  10664. "symfony/http-foundation": "^5.0|^6.0",
  10665. "symfony/mime": "^5.2|^6.0",
  10666. "symfony/process": "^5.2|^6.0",
  10667. "symfony/var-dumper": "^5.2|^6.0"
  10668. },
  10669. "require-dev": {
  10670. "dms/phpunit-arraysubset-asserts": "^0.3.0",
  10671. "pestphp/pest": "^1.20",
  10672. "phpstan/extension-installer": "^1.1",
  10673. "phpstan/phpstan-deprecation-rules": "^1.0",
  10674. "phpstan/phpstan-phpunit": "^1.0",
  10675. "spatie/phpunit-snapshot-assertions": "^4.0"
  10676. },
  10677. "type": "library",
  10678. "extra": {
  10679. "branch-alias": {
  10680. "dev-main": "1.1.x-dev"
  10681. }
  10682. },
  10683. "autoload": {
  10684. "files": [
  10685. "src/helpers.php"
  10686. ],
  10687. "psr-4": {
  10688. "Spatie\\FlareClient\\": "src"
  10689. }
  10690. },
  10691. "notification-url": "https://packagist.org/downloads/",
  10692. "license": [
  10693. "MIT"
  10694. ],
  10695. "description": "Send PHP errors to Flare",
  10696. "homepage": "https://github.com/spatie/flare-client-php",
  10697. "keywords": [
  10698. "exception",
  10699. "flare",
  10700. "reporting",
  10701. "spatie"
  10702. ],
  10703. "support": {
  10704. "issues": "https://github.com/spatie/flare-client-php/issues",
  10705. "source": "https://github.com/spatie/flare-client-php/tree/1.3.5"
  10706. },
  10707. "funding": [
  10708. {
  10709. "url": "https://github.com/spatie",
  10710. "type": "github"
  10711. }
  10712. ],
  10713. "time": "2023-01-23T15:58:46+00:00"
  10714. },
  10715. {
  10716. "name": "spatie/ignition",
  10717. "version": "1.4.5",
  10718. "source": {
  10719. "type": "git",
  10720. "url": "https://github.com/spatie/ignition.git",
  10721. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6"
  10722. },
  10723. "dist": {
  10724. "type": "zip",
  10725. "url": "https://api.github.com/repos/spatie/ignition/zipball/cc09114b7057bd217b676f047544b33f5b6247e6",
  10726. "reference": "cc09114b7057bd217b676f047544b33f5b6247e6",
  10727. "shasum": "",
  10728. "mirrors": [
  10729. {
  10730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10731. "preferred": true
  10732. }
  10733. ]
  10734. },
  10735. "require": {
  10736. "ext-json": "*",
  10737. "ext-mbstring": "*",
  10738. "php": "^8.0",
  10739. "spatie/flare-client-php": "^1.1",
  10740. "symfony/console": "^5.4|^6.0",
  10741. "symfony/var-dumper": "^5.4|^6.0"
  10742. },
  10743. "require-dev": {
  10744. "mockery/mockery": "^1.4",
  10745. "pestphp/pest": "^1.20",
  10746. "phpstan/extension-installer": "^1.1",
  10747. "phpstan/phpstan-deprecation-rules": "^1.0",
  10748. "phpstan/phpstan-phpunit": "^1.0",
  10749. "symfony/process": "^5.4|^6.0"
  10750. },
  10751. "type": "library",
  10752. "extra": {
  10753. "branch-alias": {
  10754. "dev-main": "1.4.x-dev"
  10755. }
  10756. },
  10757. "autoload": {
  10758. "psr-4": {
  10759. "Spatie\\Ignition\\": "src"
  10760. }
  10761. },
  10762. "notification-url": "https://packagist.org/downloads/",
  10763. "license": [
  10764. "MIT"
  10765. ],
  10766. "authors": [
  10767. {
  10768. "name": "Spatie",
  10769. "email": "info@spatie.be",
  10770. "role": "Developer"
  10771. }
  10772. ],
  10773. "description": "A beautiful error page for PHP applications.",
  10774. "homepage": "https://flareapp.io/ignition",
  10775. "keywords": [
  10776. "error",
  10777. "flare",
  10778. "laravel",
  10779. "page"
  10780. ],
  10781. "support": {
  10782. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10783. "forum": "https://twitter.com/flareappio",
  10784. "issues": "https://github.com/spatie/ignition/issues",
  10785. "source": "https://github.com/spatie/ignition"
  10786. },
  10787. "funding": [
  10788. {
  10789. "url": "https://github.com/spatie",
  10790. "type": "github"
  10791. }
  10792. ],
  10793. "time": "2023-02-28T16:49:47+00:00"
  10794. },
  10795. {
  10796. "name": "spatie/laravel-ignition",
  10797. "version": "1.6.4",
  10798. "source": {
  10799. "type": "git",
  10800. "url": "https://github.com/spatie/laravel-ignition.git",
  10801. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc"
  10802. },
  10803. "dist": {
  10804. "type": "zip",
  10805. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10806. "reference": "1a2b4bd3d48c72526c0ba417687e5c56b5cf49bc",
  10807. "shasum": "",
  10808. "mirrors": [
  10809. {
  10810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10811. "preferred": true
  10812. }
  10813. ]
  10814. },
  10815. "require": {
  10816. "ext-curl": "*",
  10817. "ext-json": "*",
  10818. "ext-mbstring": "*",
  10819. "illuminate/support": "^8.77|^9.27",
  10820. "monolog/monolog": "^2.3",
  10821. "php": "^8.0",
  10822. "spatie/flare-client-php": "^1.0.1",
  10823. "spatie/ignition": "^1.4.1",
  10824. "symfony/console": "^5.0|^6.0",
  10825. "symfony/var-dumper": "^5.0|^6.0"
  10826. },
  10827. "require-dev": {
  10828. "filp/whoops": "^2.14",
  10829. "livewire/livewire": "^2.8|dev-develop",
  10830. "mockery/mockery": "^1.4",
  10831. "nunomaduro/larastan": "^1.0",
  10832. "orchestra/testbench": "^6.23|^7.0",
  10833. "pestphp/pest": "^1.20",
  10834. "phpstan/extension-installer": "^1.1",
  10835. "phpstan/phpstan-deprecation-rules": "^1.0",
  10836. "phpstan/phpstan-phpunit": "^1.0",
  10837. "spatie/laravel-ray": "^1.27"
  10838. },
  10839. "type": "library",
  10840. "extra": {
  10841. "laravel": {
  10842. "providers": [
  10843. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  10844. ],
  10845. "aliases": {
  10846. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  10847. }
  10848. }
  10849. },
  10850. "autoload": {
  10851. "files": [
  10852. "src/helpers.php"
  10853. ],
  10854. "psr-4": {
  10855. "Spatie\\LaravelIgnition\\": "src"
  10856. }
  10857. },
  10858. "notification-url": "https://packagist.org/downloads/",
  10859. "license": [
  10860. "MIT"
  10861. ],
  10862. "authors": [
  10863. {
  10864. "name": "Spatie",
  10865. "email": "info@spatie.be",
  10866. "role": "Developer"
  10867. }
  10868. ],
  10869. "description": "A beautiful error page for Laravel applications.",
  10870. "homepage": "https://flareapp.io/ignition",
  10871. "keywords": [
  10872. "error",
  10873. "flare",
  10874. "laravel",
  10875. "page"
  10876. ],
  10877. "support": {
  10878. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10879. "forum": "https://twitter.com/flareappio",
  10880. "issues": "https://github.com/spatie/laravel-ignition/issues",
  10881. "source": "https://github.com/spatie/laravel-ignition"
  10882. },
  10883. "funding": [
  10884. {
  10885. "url": "https://github.com/spatie",
  10886. "type": "github"
  10887. }
  10888. ],
  10889. "time": "2023-01-03T19:28:04+00:00"
  10890. },
  10891. {
  10892. "name": "symfony/yaml",
  10893. "version": "v6.0.19",
  10894. "source": {
  10895. "type": "git",
  10896. "url": "https://github.com/symfony/yaml.git",
  10897. "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
  10898. },
  10899. "dist": {
  10900. "type": "zip",
  10901. "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
  10902. "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
  10903. "shasum": "",
  10904. "mirrors": [
  10905. {
  10906. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10907. "preferred": true
  10908. }
  10909. ]
  10910. },
  10911. "require": {
  10912. "php": ">=8.0.2",
  10913. "symfony/polyfill-ctype": "^1.8"
  10914. },
  10915. "conflict": {
  10916. "symfony/console": "<5.4"
  10917. },
  10918. "require-dev": {
  10919. "symfony/console": "^5.4|^6.0"
  10920. },
  10921. "suggest": {
  10922. "symfony/console": "For validating YAML files using the lint command"
  10923. },
  10924. "bin": [
  10925. "Resources/bin/yaml-lint"
  10926. ],
  10927. "type": "library",
  10928. "autoload": {
  10929. "psr-4": {
  10930. "Symfony\\Component\\Yaml\\": ""
  10931. },
  10932. "exclude-from-classmap": [
  10933. "/Tests/"
  10934. ]
  10935. },
  10936. "notification-url": "https://packagist.org/downloads/",
  10937. "license": [
  10938. "MIT"
  10939. ],
  10940. "authors": [
  10941. {
  10942. "name": "Fabien Potencier",
  10943. "email": "fabien@symfony.com"
  10944. },
  10945. {
  10946. "name": "Symfony Community",
  10947. "homepage": "https://symfony.com/contributors"
  10948. }
  10949. ],
  10950. "description": "Loads and dumps YAML files",
  10951. "homepage": "https://symfony.com",
  10952. "support": {
  10953. "source": "https://github.com/symfony/yaml/tree/v6.0.19"
  10954. },
  10955. "funding": [
  10956. {
  10957. "url": "https://symfony.com/sponsor",
  10958. "type": "custom"
  10959. },
  10960. {
  10961. "url": "https://github.com/fabpot",
  10962. "type": "github"
  10963. },
  10964. {
  10965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10966. "type": "tidelift"
  10967. }
  10968. ],
  10969. "time": "2023-01-11T11:50:03+00:00"
  10970. },
  10971. {
  10972. "name": "theseer/tokenizer",
  10973. "version": "1.2.1",
  10974. "source": {
  10975. "type": "git",
  10976. "url": "https://github.com/theseer/tokenizer.git",
  10977. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10978. },
  10979. "dist": {
  10980. "type": "zip",
  10981. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10982. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10983. "shasum": "",
  10984. "mirrors": [
  10985. {
  10986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10987. "preferred": true
  10988. }
  10989. ]
  10990. },
  10991. "require": {
  10992. "ext-dom": "*",
  10993. "ext-tokenizer": "*",
  10994. "ext-xmlwriter": "*",
  10995. "php": "^7.2 || ^8.0"
  10996. },
  10997. "type": "library",
  10998. "autoload": {
  10999. "classmap": [
  11000. "src/"
  11001. ]
  11002. },
  11003. "notification-url": "https://packagist.org/downloads/",
  11004. "license": [
  11005. "BSD-3-Clause"
  11006. ],
  11007. "authors": [
  11008. {
  11009. "name": "Arne Blankerts",
  11010. "email": "arne@blankerts.de",
  11011. "role": "Developer"
  11012. }
  11013. ],
  11014. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11015. "support": {
  11016. "issues": "https://github.com/theseer/tokenizer/issues",
  11017. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11018. },
  11019. "funding": [
  11020. {
  11021. "url": "https://github.com/theseer",
  11022. "type": "github"
  11023. }
  11024. ],
  11025. "time": "2021-07-28T10:34:58+00:00"
  11026. }
  11027. ],
  11028. "aliases": [],
  11029. "minimum-stability": "stable",
  11030. "stability-flags": [],
  11031. "prefer-stable": true,
  11032. "prefer-lowest": false,
  11033. "platform": {
  11034. "php": "^8.0.2"
  11035. },
  11036. "platform-dev": [],
  11037. "plugin-api-version": "2.3.0"
  11038. }