composer.lock 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537
  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": "042c9292d792206e5b9c46809e528e73",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.2|^8.0",
  31. "symfony/http-foundation": "^4|^5|^6",
  32. "symfony/http-kernel": "^4|^5|^6"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^7|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  68. },
  69. "time": "2022-01-18T09:12:03+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.9.3",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  82. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  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. "ext-json": "*",
  93. "php": "^7.1 || ^8.0"
  94. },
  95. "require-dev": {
  96. "php-coveralls/php-coveralls": "^2.2",
  97. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  98. "vimeo/psalm": "4.9.2"
  99. },
  100. "type": "library",
  101. "autoload": {
  102. "psr-4": {
  103. "Brick\\Math\\": "src/"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "MIT"
  109. ],
  110. "description": "Arbitrary-precision arithmetic library",
  111. "keywords": [
  112. "Arbitrary-precision",
  113. "BigInteger",
  114. "BigRational",
  115. "arithmetic",
  116. "bigdecimal",
  117. "bignum",
  118. "brick",
  119. "math"
  120. ],
  121. "support": {
  122. "issues": "https://github.com/brick/math/issues",
  123. "source": "https://github.com/brick/math/tree/0.9.3"
  124. },
  125. "funding": [
  126. {
  127. "url": "https://github.com/BenMorel",
  128. "type": "github"
  129. },
  130. {
  131. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  132. "type": "tidelift"
  133. }
  134. ],
  135. "time": "2021-08-15T20:50:18+00:00"
  136. },
  137. {
  138. "name": "carbonphp/carbon-doctrine-types",
  139. "version": "2.1.0",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  143. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  148. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  149. "shasum": "",
  150. "mirrors": [
  151. {
  152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  153. "preferred": true
  154. }
  155. ]
  156. },
  157. "require": {
  158. "php": "^7.4 || ^8.0"
  159. },
  160. "conflict": {
  161. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  162. },
  163. "require-dev": {
  164. "doctrine/dbal": "^3.7.0",
  165. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  166. "phpunit/phpunit": "^10.3"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "KyleKatarn",
  181. "email": "kylekatarnls@gmail.com"
  182. }
  183. ],
  184. "description": "Types to use Carbon in Doctrine",
  185. "keywords": [
  186. "carbon",
  187. "date",
  188. "datetime",
  189. "doctrine",
  190. "time"
  191. ],
  192. "support": {
  193. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  194. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  195. },
  196. "funding": [
  197. {
  198. "url": "https://github.com/kylekatarnls",
  199. "type": "github"
  200. },
  201. {
  202. "url": "https://opencollective.com/Carbon",
  203. "type": "open_collective"
  204. },
  205. {
  206. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  207. "type": "tidelift"
  208. }
  209. ],
  210. "time": "2023-12-11T17:09:12+00:00"
  211. },
  212. {
  213. "name": "dflydev/dot-access-data",
  214. "version": "v3.0.2",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  218. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  223. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  224. "shasum": "",
  225. "mirrors": [
  226. {
  227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  228. "preferred": true
  229. }
  230. ]
  231. },
  232. "require": {
  233. "php": "^7.1 || ^8.0"
  234. },
  235. "require-dev": {
  236. "phpstan/phpstan": "^0.12.42",
  237. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  238. "scrutinizer/ocular": "1.6.0",
  239. "squizlabs/php_codesniffer": "^3.5",
  240. "vimeo/psalm": "^4.0.0"
  241. },
  242. "type": "library",
  243. "extra": {
  244. "branch-alias": {
  245. "dev-main": "3.x-dev"
  246. }
  247. },
  248. "autoload": {
  249. "psr-4": {
  250. "Dflydev\\DotAccessData\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "MIT"
  256. ],
  257. "authors": [
  258. {
  259. "name": "Dragonfly Development Inc.",
  260. "email": "info@dflydev.com",
  261. "homepage": "http://dflydev.com"
  262. },
  263. {
  264. "name": "Beau Simensen",
  265. "email": "beau@dflydev.com",
  266. "homepage": "http://beausimensen.com"
  267. },
  268. {
  269. "name": "Carlos Frutos",
  270. "email": "carlos@kiwing.it",
  271. "homepage": "https://github.com/cfrutos"
  272. },
  273. {
  274. "name": "Colin O'Dell",
  275. "email": "colinodell@gmail.com",
  276. "homepage": "https://www.colinodell.com"
  277. }
  278. ],
  279. "description": "Given a deep data structure, access data by dot notation.",
  280. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  281. "keywords": [
  282. "access",
  283. "data",
  284. "dot",
  285. "notation"
  286. ],
  287. "support": {
  288. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  289. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  290. },
  291. "time": "2022-10-27T11:44:00+00:00"
  292. },
  293. {
  294. "name": "doctrine/inflector",
  295. "version": "2.0.8",
  296. "source": {
  297. "type": "git",
  298. "url": "https://github.com/doctrine/inflector.git",
  299. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  300. },
  301. "dist": {
  302. "type": "zip",
  303. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  304. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  305. "shasum": "",
  306. "mirrors": [
  307. {
  308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  309. "preferred": true
  310. }
  311. ]
  312. },
  313. "require": {
  314. "php": "^7.2 || ^8.0"
  315. },
  316. "require-dev": {
  317. "doctrine/coding-standard": "^11.0",
  318. "phpstan/phpstan": "^1.8",
  319. "phpstan/phpstan-phpunit": "^1.1",
  320. "phpstan/phpstan-strict-rules": "^1.3",
  321. "phpunit/phpunit": "^8.5 || ^9.5",
  322. "vimeo/psalm": "^4.25 || ^5.4"
  323. },
  324. "type": "library",
  325. "autoload": {
  326. "psr-4": {
  327. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  328. }
  329. },
  330. "notification-url": "https://packagist.org/downloads/",
  331. "license": [
  332. "MIT"
  333. ],
  334. "authors": [
  335. {
  336. "name": "Guilherme Blanco",
  337. "email": "guilhermeblanco@gmail.com"
  338. },
  339. {
  340. "name": "Roman Borschel",
  341. "email": "roman@code-factory.org"
  342. },
  343. {
  344. "name": "Benjamin Eberlei",
  345. "email": "kontakt@beberlei.de"
  346. },
  347. {
  348. "name": "Jonathan Wage",
  349. "email": "jonwage@gmail.com"
  350. },
  351. {
  352. "name": "Johannes Schmitt",
  353. "email": "schmittjoh@gmail.com"
  354. }
  355. ],
  356. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  357. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  358. "keywords": [
  359. "inflection",
  360. "inflector",
  361. "lowercase",
  362. "manipulation",
  363. "php",
  364. "plural",
  365. "singular",
  366. "strings",
  367. "uppercase",
  368. "words"
  369. ],
  370. "support": {
  371. "issues": "https://github.com/doctrine/inflector/issues",
  372. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  373. },
  374. "funding": [
  375. {
  376. "url": "https://www.doctrine-project.org/sponsorship.html",
  377. "type": "custom"
  378. },
  379. {
  380. "url": "https://www.patreon.com/phpdoctrine",
  381. "type": "patreon"
  382. },
  383. {
  384. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  385. "type": "tidelift"
  386. }
  387. ],
  388. "time": "2023-06-16T13:40:37+00:00"
  389. },
  390. {
  391. "name": "doctrine/lexer",
  392. "version": "1.2.3",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/doctrine/lexer.git",
  396. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  401. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  402. "shasum": ""
  403. },
  404. "require": {
  405. "php": "^7.1 || ^8.0"
  406. },
  407. "require-dev": {
  408. "doctrine/coding-standard": "^9.0",
  409. "phpstan/phpstan": "^1.3",
  410. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  411. "vimeo/psalm": "^4.11"
  412. },
  413. "type": "library",
  414. "autoload": {
  415. "psr-4": {
  416. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  417. }
  418. },
  419. "notification-url": "https://packagist.org/downloads/",
  420. "license": [
  421. "MIT"
  422. ],
  423. "authors": [
  424. {
  425. "name": "Guilherme Blanco",
  426. "email": "guilhermeblanco@gmail.com"
  427. },
  428. {
  429. "name": "Roman Borschel",
  430. "email": "roman@code-factory.org"
  431. },
  432. {
  433. "name": "Johannes Schmitt",
  434. "email": "schmittjoh@gmail.com"
  435. }
  436. ],
  437. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  438. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  439. "keywords": [
  440. "annotations",
  441. "docblock",
  442. "lexer",
  443. "parser",
  444. "php"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/lexer/issues",
  448. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2022-02-28T11:07:21+00:00"
  465. },
  466. {
  467. "name": "dragonmantank/cron-expression",
  468. "version": "v3.3.3",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/dragonmantank/cron-expression.git",
  472. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  477. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  478. "shasum": "",
  479. "mirrors": [
  480. {
  481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  482. "preferred": true
  483. }
  484. ]
  485. },
  486. "require": {
  487. "php": "^7.2|^8.0",
  488. "webmozart/assert": "^1.0"
  489. },
  490. "replace": {
  491. "mtdowling/cron-expression": "^1.0"
  492. },
  493. "require-dev": {
  494. "phpstan/extension-installer": "^1.0",
  495. "phpstan/phpstan": "^1.0",
  496. "phpstan/phpstan-webmozart-assert": "^1.0",
  497. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  498. },
  499. "type": "library",
  500. "autoload": {
  501. "psr-4": {
  502. "Cron\\": "src/Cron/"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Chris Tankersley",
  512. "email": "chris@ctankersley.com",
  513. "homepage": "https://github.com/dragonmantank"
  514. }
  515. ],
  516. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  517. "keywords": [
  518. "cron",
  519. "schedule"
  520. ],
  521. "support": {
  522. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  523. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  524. },
  525. "funding": [
  526. {
  527. "url": "https://github.com/dragonmantank",
  528. "type": "github"
  529. }
  530. ],
  531. "time": "2023-08-10T19:36:49+00:00"
  532. },
  533. {
  534. "name": "easywechat-composer/easywechat-composer",
  535. "version": "1.4.1",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/mingyoung/easywechat-composer.git",
  539. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  544. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "composer-plugin-api": "^1.0 || ^2.0",
  549. "php": ">=7.0"
  550. },
  551. "require-dev": {
  552. "composer/composer": "^1.0 || ^2.0",
  553. "phpunit/phpunit": "^6.5 || ^7.0"
  554. },
  555. "type": "composer-plugin",
  556. "extra": {
  557. "class": "EasyWeChatComposer\\Plugin"
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "EasyWeChatComposer\\": "src/"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "MIT"
  567. ],
  568. "authors": [
  569. {
  570. "name": "张铭阳",
  571. "email": "mingyoungcheung@gmail.com"
  572. }
  573. ],
  574. "description": "The composer plugin for EasyWeChat",
  575. "support": {
  576. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  577. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  578. },
  579. "time": "2021-07-05T04:03:22+00:00"
  580. },
  581. {
  582. "name": "egulias/email-validator",
  583. "version": "2.1.25",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/egulias/EmailValidator.git",
  587. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  592. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  593. "shasum": ""
  594. },
  595. "require": {
  596. "doctrine/lexer": "^1.0.1",
  597. "php": ">=5.5",
  598. "symfony/polyfill-intl-idn": "^1.10"
  599. },
  600. "require-dev": {
  601. "dominicsayers/isemail": "^3.0.7",
  602. "phpunit/phpunit": "^4.8.36|^7.5.15",
  603. "satooshi/php-coveralls": "^1.0.1"
  604. },
  605. "suggest": {
  606. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  607. },
  608. "type": "library",
  609. "extra": {
  610. "branch-alias": {
  611. "dev-master": "2.1.x-dev"
  612. }
  613. },
  614. "autoload": {
  615. "psr-4": {
  616. "Egulias\\EmailValidator\\": "src"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Eduardo Gulias Davis"
  626. }
  627. ],
  628. "description": "A library for validating emails against several RFCs",
  629. "homepage": "https://github.com/egulias/EmailValidator",
  630. "keywords": [
  631. "email",
  632. "emailvalidation",
  633. "emailvalidator",
  634. "validation",
  635. "validator"
  636. ],
  637. "support": {
  638. "issues": "https://github.com/egulias/EmailValidator/issues",
  639. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  640. },
  641. "funding": [
  642. {
  643. "url": "https://github.com/egulias",
  644. "type": "github"
  645. }
  646. ],
  647. "time": "2020-12-29T14:50:06+00:00"
  648. },
  649. {
  650. "name": "ezyang/htmlpurifier",
  651. "version": "v4.16.0",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/ezyang/htmlpurifier.git",
  655. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  660. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  661. "shasum": "",
  662. "mirrors": [
  663. {
  664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  665. "preferred": true
  666. }
  667. ]
  668. },
  669. "require": {
  670. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  671. },
  672. "require-dev": {
  673. "cerdic/css-tidy": "^1.7 || ^2.0",
  674. "simpletest/simpletest": "dev-master"
  675. },
  676. "suggest": {
  677. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  678. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  679. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  680. "ext-tidy": "Used for pretty-printing HTML"
  681. },
  682. "type": "library",
  683. "autoload": {
  684. "files": [
  685. "library/HTMLPurifier.composer.php"
  686. ],
  687. "psr-0": {
  688. "HTMLPurifier": "library/"
  689. },
  690. "exclude-from-classmap": [
  691. "/library/HTMLPurifier/Language/"
  692. ]
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "LGPL-2.1-or-later"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Edward Z. Yang",
  701. "email": "admin@htmlpurifier.org",
  702. "homepage": "http://ezyang.com"
  703. }
  704. ],
  705. "description": "Standards compliant HTML filter written in PHP",
  706. "homepage": "http://htmlpurifier.org/",
  707. "keywords": [
  708. "html"
  709. ],
  710. "support": {
  711. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  712. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  713. },
  714. "time": "2022-09-18T07:06:19+00:00"
  715. },
  716. {
  717. "name": "fideloper/proxy",
  718. "version": "4.4.2",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/fideloper/TrustedProxy.git",
  722. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  727. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  728. "shasum": "",
  729. "mirrors": [
  730. {
  731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  732. "preferred": true
  733. }
  734. ]
  735. },
  736. "require": {
  737. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  738. "php": ">=5.4.0"
  739. },
  740. "require-dev": {
  741. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  742. "mockery/mockery": "^1.0",
  743. "phpunit/phpunit": "^8.5.8|^9.3.3"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "laravel": {
  748. "providers": [
  749. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  750. ]
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Fideloper\\Proxy\\": "src/"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Chris Fidao",
  765. "email": "fideloper@gmail.com"
  766. }
  767. ],
  768. "description": "Set trusted proxies for Laravel",
  769. "keywords": [
  770. "load balancing",
  771. "proxy",
  772. "trusted proxy"
  773. ],
  774. "support": {
  775. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  776. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  777. },
  778. "time": "2022-02-09T13:33:34+00:00"
  779. },
  780. {
  781. "name": "firebase/php-jwt",
  782. "version": "v6.10.0",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/firebase/php-jwt.git",
  786. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  791. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  792. "shasum": ""
  793. },
  794. "require": {
  795. "php": "^7.4||^8.0"
  796. },
  797. "require-dev": {
  798. "guzzlehttp/guzzle": "^6.5||^7.4",
  799. "phpspec/prophecy-phpunit": "^2.0",
  800. "phpunit/phpunit": "^9.5",
  801. "psr/cache": "^1.0||^2.0",
  802. "psr/http-client": "^1.0",
  803. "psr/http-factory": "^1.0"
  804. },
  805. "suggest": {
  806. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  807. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  808. },
  809. "type": "library",
  810. "autoload": {
  811. "psr-4": {
  812. "Firebase\\JWT\\": "src"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "BSD-3-Clause"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Neuman Vong",
  822. "email": "neuman+pear@twilio.com",
  823. "role": "Developer"
  824. },
  825. {
  826. "name": "Anant Narayanan",
  827. "email": "anant@php.net",
  828. "role": "Developer"
  829. }
  830. ],
  831. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  832. "homepage": "https://github.com/firebase/php-jwt",
  833. "keywords": [
  834. "jwt",
  835. "php"
  836. ],
  837. "support": {
  838. "issues": "https://github.com/firebase/php-jwt/issues",
  839. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  840. },
  841. "time": "2023-12-01T16:26:39+00:00"
  842. },
  843. {
  844. "name": "fruitcake/laravel-cors",
  845. "version": "v2.2.0",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/fruitcake/laravel-cors.git",
  849. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  854. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  855. "shasum": "",
  856. "mirrors": [
  857. {
  858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  859. "preferred": true
  860. }
  861. ]
  862. },
  863. "require": {
  864. "asm89/stack-cors": "^2.0.1",
  865. "illuminate/contracts": "^6|^7|^8|^9",
  866. "illuminate/support": "^6|^7|^8|^9",
  867. "php": ">=7.2"
  868. },
  869. "require-dev": {
  870. "laravel/framework": "^6|^7.24|^8",
  871. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  872. "phpunit/phpunit": "^6|^7|^8|^9",
  873. "squizlabs/php_codesniffer": "^3.5"
  874. },
  875. "type": "library",
  876. "extra": {
  877. "branch-alias": {
  878. "dev-master": "2.1-dev"
  879. },
  880. "laravel": {
  881. "providers": [
  882. "Fruitcake\\Cors\\CorsServiceProvider"
  883. ]
  884. }
  885. },
  886. "autoload": {
  887. "psr-4": {
  888. "Fruitcake\\Cors\\": "src/"
  889. }
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Fruitcake",
  898. "homepage": "https://fruitcake.nl"
  899. },
  900. {
  901. "name": "Barry vd. Heuvel",
  902. "email": "barryvdh@gmail.com"
  903. }
  904. ],
  905. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  906. "keywords": [
  907. "api",
  908. "cors",
  909. "crossdomain",
  910. "laravel"
  911. ],
  912. "support": {
  913. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  914. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  915. },
  916. "funding": [
  917. {
  918. "url": "https://fruitcake.nl",
  919. "type": "custom"
  920. },
  921. {
  922. "url": "https://github.com/barryvdh",
  923. "type": "github"
  924. }
  925. ],
  926. "abandoned": true,
  927. "time": "2022-02-23T14:25:13+00:00"
  928. },
  929. {
  930. "name": "graham-campbell/manager",
  931. "version": "v4.7.0",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  935. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  940. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  941. "shasum": "",
  942. "mirrors": [
  943. {
  944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  945. "preferred": true
  946. }
  947. ]
  948. },
  949. "require": {
  950. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  951. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  952. "php": "^7.1.3 || ^8.0"
  953. },
  954. "require-dev": {
  955. "graham-campbell/analyzer": "^2.4 || ^3.0",
  956. "graham-campbell/testbench-core": "^3.4",
  957. "mockery/mockery": "^1.3.1",
  958. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  959. },
  960. "type": "library",
  961. "autoload": {
  962. "psr-4": {
  963. "GrahamCampbell\\Manager\\": "src/"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Graham Campbell",
  973. "email": "hello@gjcampbell.co.uk",
  974. "homepage": "https://github.com/GrahamCampbell"
  975. }
  976. ],
  977. "description": "Manager Provides Some Manager Functionality For Laravel",
  978. "keywords": [
  979. "Graham Campbell",
  980. "GrahamCampbell",
  981. "Laravel Manager",
  982. "Laravel-Manager",
  983. "connector",
  984. "framework",
  985. "interface",
  986. "laravel",
  987. "manager"
  988. ],
  989. "support": {
  990. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  991. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  992. },
  993. "funding": [
  994. {
  995. "url": "https://github.com/GrahamCampbell",
  996. "type": "github"
  997. },
  998. {
  999. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1000. "type": "tidelift"
  1001. }
  1002. ],
  1003. "time": "2022-01-24T01:59:19+00:00"
  1004. },
  1005. {
  1006. "name": "graham-campbell/result-type",
  1007. "version": "v1.1.2",
  1008. "source": {
  1009. "type": "git",
  1010. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1011. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1012. },
  1013. "dist": {
  1014. "type": "zip",
  1015. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1016. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1017. "shasum": "",
  1018. "mirrors": [
  1019. {
  1020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1021. "preferred": true
  1022. }
  1023. ]
  1024. },
  1025. "require": {
  1026. "php": "^7.2.5 || ^8.0",
  1027. "phpoption/phpoption": "^1.9.2"
  1028. },
  1029. "require-dev": {
  1030. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1031. },
  1032. "type": "library",
  1033. "autoload": {
  1034. "psr-4": {
  1035. "GrahamCampbell\\ResultType\\": "src/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "Graham Campbell",
  1045. "email": "hello@gjcampbell.co.uk",
  1046. "homepage": "https://github.com/GrahamCampbell"
  1047. }
  1048. ],
  1049. "description": "An Implementation Of The Result Type",
  1050. "keywords": [
  1051. "Graham Campbell",
  1052. "GrahamCampbell",
  1053. "Result Type",
  1054. "Result-Type",
  1055. "result"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1059. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1060. },
  1061. "funding": [
  1062. {
  1063. "url": "https://github.com/GrahamCampbell",
  1064. "type": "github"
  1065. },
  1066. {
  1067. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1068. "type": "tidelift"
  1069. }
  1070. ],
  1071. "time": "2023-11-12T22:16:48+00:00"
  1072. },
  1073. {
  1074. "name": "guzzlehttp/guzzle",
  1075. "version": "7.8.1",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/guzzle/guzzle.git",
  1079. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1084. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1085. "shasum": "",
  1086. "mirrors": [
  1087. {
  1088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1089. "preferred": true
  1090. }
  1091. ]
  1092. },
  1093. "require": {
  1094. "ext-json": "*",
  1095. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1096. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1097. "php": "^7.2.5 || ^8.0",
  1098. "psr/http-client": "^1.0",
  1099. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1100. },
  1101. "provide": {
  1102. "psr/http-client-implementation": "1.0"
  1103. },
  1104. "require-dev": {
  1105. "bamarni/composer-bin-plugin": "^1.8.2",
  1106. "ext-curl": "*",
  1107. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1108. "php-http/message-factory": "^1.1",
  1109. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1110. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1111. },
  1112. "suggest": {
  1113. "ext-curl": "Required for CURL handler support",
  1114. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1115. "psr/log": "Required for using the Log middleware"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "bamarni-bin": {
  1120. "bin-links": true,
  1121. "forward-command": false
  1122. }
  1123. },
  1124. "autoload": {
  1125. "files": [
  1126. "src/functions_include.php"
  1127. ],
  1128. "psr-4": {
  1129. "GuzzleHttp\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Graham Campbell",
  1139. "email": "hello@gjcampbell.co.uk",
  1140. "homepage": "https://github.com/GrahamCampbell"
  1141. },
  1142. {
  1143. "name": "Michael Dowling",
  1144. "email": "mtdowling@gmail.com",
  1145. "homepage": "https://github.com/mtdowling"
  1146. },
  1147. {
  1148. "name": "Jeremy Lindblom",
  1149. "email": "jeremeamia@gmail.com",
  1150. "homepage": "https://github.com/jeremeamia"
  1151. },
  1152. {
  1153. "name": "George Mponos",
  1154. "email": "gmponos@gmail.com",
  1155. "homepage": "https://github.com/gmponos"
  1156. },
  1157. {
  1158. "name": "Tobias Nyholm",
  1159. "email": "tobias.nyholm@gmail.com",
  1160. "homepage": "https://github.com/Nyholm"
  1161. },
  1162. {
  1163. "name": "Márk Sági-Kazár",
  1164. "email": "mark.sagikazar@gmail.com",
  1165. "homepage": "https://github.com/sagikazarmark"
  1166. },
  1167. {
  1168. "name": "Tobias Schultze",
  1169. "email": "webmaster@tubo-world.de",
  1170. "homepage": "https://github.com/Tobion"
  1171. }
  1172. ],
  1173. "description": "Guzzle is a PHP HTTP client library",
  1174. "keywords": [
  1175. "client",
  1176. "curl",
  1177. "framework",
  1178. "http",
  1179. "http client",
  1180. "psr-18",
  1181. "psr-7",
  1182. "rest",
  1183. "web service"
  1184. ],
  1185. "support": {
  1186. "issues": "https://github.com/guzzle/guzzle/issues",
  1187. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1188. },
  1189. "funding": [
  1190. {
  1191. "url": "https://github.com/GrahamCampbell",
  1192. "type": "github"
  1193. },
  1194. {
  1195. "url": "https://github.com/Nyholm",
  1196. "type": "github"
  1197. },
  1198. {
  1199. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1200. "type": "tidelift"
  1201. }
  1202. ],
  1203. "time": "2023-12-03T20:35:24+00:00"
  1204. },
  1205. {
  1206. "name": "guzzlehttp/promises",
  1207. "version": "2.0.1",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/guzzle/promises.git",
  1211. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1216. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1217. "shasum": "",
  1218. "mirrors": [
  1219. {
  1220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1221. "preferred": true
  1222. }
  1223. ]
  1224. },
  1225. "require": {
  1226. "php": "^7.2.5 || ^8.0"
  1227. },
  1228. "require-dev": {
  1229. "bamarni/composer-bin-plugin": "^1.8.1",
  1230. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "bamarni-bin": {
  1235. "bin-links": true,
  1236. "forward-command": false
  1237. }
  1238. },
  1239. "autoload": {
  1240. "psr-4": {
  1241. "GuzzleHttp\\Promise\\": "src/"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Graham Campbell",
  1251. "email": "hello@gjcampbell.co.uk",
  1252. "homepage": "https://github.com/GrahamCampbell"
  1253. },
  1254. {
  1255. "name": "Michael Dowling",
  1256. "email": "mtdowling@gmail.com",
  1257. "homepage": "https://github.com/mtdowling"
  1258. },
  1259. {
  1260. "name": "Tobias Nyholm",
  1261. "email": "tobias.nyholm@gmail.com",
  1262. "homepage": "https://github.com/Nyholm"
  1263. },
  1264. {
  1265. "name": "Tobias Schultze",
  1266. "email": "webmaster@tubo-world.de",
  1267. "homepage": "https://github.com/Tobion"
  1268. }
  1269. ],
  1270. "description": "Guzzle promises library",
  1271. "keywords": [
  1272. "promise"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/guzzle/promises/issues",
  1276. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1277. },
  1278. "funding": [
  1279. {
  1280. "url": "https://github.com/GrahamCampbell",
  1281. "type": "github"
  1282. },
  1283. {
  1284. "url": "https://github.com/Nyholm",
  1285. "type": "github"
  1286. },
  1287. {
  1288. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1289. "type": "tidelift"
  1290. }
  1291. ],
  1292. "time": "2023-08-03T15:11:55+00:00"
  1293. },
  1294. {
  1295. "name": "guzzlehttp/psr7",
  1296. "version": "2.6.2",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/guzzle/psr7.git",
  1300. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1305. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1306. "shasum": "",
  1307. "mirrors": [
  1308. {
  1309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1310. "preferred": true
  1311. }
  1312. ]
  1313. },
  1314. "require": {
  1315. "php": "^7.2.5 || ^8.0",
  1316. "psr/http-factory": "^1.0",
  1317. "psr/http-message": "^1.1 || ^2.0",
  1318. "ralouphie/getallheaders": "^3.0"
  1319. },
  1320. "provide": {
  1321. "psr/http-factory-implementation": "1.0",
  1322. "psr/http-message-implementation": "1.0"
  1323. },
  1324. "require-dev": {
  1325. "bamarni/composer-bin-plugin": "^1.8.2",
  1326. "http-interop/http-factory-tests": "^0.9",
  1327. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1328. },
  1329. "suggest": {
  1330. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1331. },
  1332. "type": "library",
  1333. "extra": {
  1334. "bamarni-bin": {
  1335. "bin-links": true,
  1336. "forward-command": false
  1337. }
  1338. },
  1339. "autoload": {
  1340. "psr-4": {
  1341. "GuzzleHttp\\Psr7\\": "src/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Graham Campbell",
  1351. "email": "hello@gjcampbell.co.uk",
  1352. "homepage": "https://github.com/GrahamCampbell"
  1353. },
  1354. {
  1355. "name": "Michael Dowling",
  1356. "email": "mtdowling@gmail.com",
  1357. "homepage": "https://github.com/mtdowling"
  1358. },
  1359. {
  1360. "name": "George Mponos",
  1361. "email": "gmponos@gmail.com",
  1362. "homepage": "https://github.com/gmponos"
  1363. },
  1364. {
  1365. "name": "Tobias Nyholm",
  1366. "email": "tobias.nyholm@gmail.com",
  1367. "homepage": "https://github.com/Nyholm"
  1368. },
  1369. {
  1370. "name": "Márk Sági-Kazár",
  1371. "email": "mark.sagikazar@gmail.com",
  1372. "homepage": "https://github.com/sagikazarmark"
  1373. },
  1374. {
  1375. "name": "Tobias Schultze",
  1376. "email": "webmaster@tubo-world.de",
  1377. "homepage": "https://github.com/Tobion"
  1378. },
  1379. {
  1380. "name": "Márk Sági-Kazár",
  1381. "email": "mark.sagikazar@gmail.com",
  1382. "homepage": "https://sagikazarmark.hu"
  1383. }
  1384. ],
  1385. "description": "PSR-7 message implementation that also provides common utility methods",
  1386. "keywords": [
  1387. "http",
  1388. "message",
  1389. "psr-7",
  1390. "request",
  1391. "response",
  1392. "stream",
  1393. "uri",
  1394. "url"
  1395. ],
  1396. "support": {
  1397. "issues": "https://github.com/guzzle/psr7/issues",
  1398. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1399. },
  1400. "funding": [
  1401. {
  1402. "url": "https://github.com/GrahamCampbell",
  1403. "type": "github"
  1404. },
  1405. {
  1406. "url": "https://github.com/Nyholm",
  1407. "type": "github"
  1408. },
  1409. {
  1410. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1411. "type": "tidelift"
  1412. }
  1413. ],
  1414. "time": "2023-12-03T20:05:35+00:00"
  1415. },
  1416. {
  1417. "name": "guzzlehttp/uri-template",
  1418. "version": "v1.0.3",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/guzzle/uri-template.git",
  1422. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1427. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "php": "^7.2.5 || ^8.0",
  1432. "symfony/polyfill-php80": "^1.24"
  1433. },
  1434. "require-dev": {
  1435. "bamarni/composer-bin-plugin": "^1.8.2",
  1436. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1437. "uri-template/tests": "1.0.0"
  1438. },
  1439. "type": "library",
  1440. "extra": {
  1441. "bamarni-bin": {
  1442. "bin-links": true,
  1443. "forward-command": false
  1444. }
  1445. },
  1446. "autoload": {
  1447. "psr-4": {
  1448. "GuzzleHttp\\UriTemplate\\": "src"
  1449. }
  1450. },
  1451. "notification-url": "https://packagist.org/downloads/",
  1452. "license": [
  1453. "MIT"
  1454. ],
  1455. "authors": [
  1456. {
  1457. "name": "Graham Campbell",
  1458. "email": "hello@gjcampbell.co.uk",
  1459. "homepage": "https://github.com/GrahamCampbell"
  1460. },
  1461. {
  1462. "name": "Michael Dowling",
  1463. "email": "mtdowling@gmail.com",
  1464. "homepage": "https://github.com/mtdowling"
  1465. },
  1466. {
  1467. "name": "George Mponos",
  1468. "email": "gmponos@gmail.com",
  1469. "homepage": "https://github.com/gmponos"
  1470. },
  1471. {
  1472. "name": "Tobias Nyholm",
  1473. "email": "tobias.nyholm@gmail.com",
  1474. "homepage": "https://github.com/Nyholm"
  1475. }
  1476. ],
  1477. "description": "A polyfill class for uri_template of PHP",
  1478. "keywords": [
  1479. "guzzlehttp",
  1480. "uri-template"
  1481. ],
  1482. "support": {
  1483. "issues": "https://github.com/guzzle/uri-template/issues",
  1484. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1485. },
  1486. "funding": [
  1487. {
  1488. "url": "https://github.com/GrahamCampbell",
  1489. "type": "github"
  1490. },
  1491. {
  1492. "url": "https://github.com/Nyholm",
  1493. "type": "github"
  1494. },
  1495. {
  1496. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1497. "type": "tidelift"
  1498. }
  1499. ],
  1500. "time": "2023-12-03T19:50:20+00:00"
  1501. },
  1502. {
  1503. "name": "hashids/hashids",
  1504. "version": "4.1.0",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/vinkla/hashids.git",
  1508. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1513. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1514. "shasum": "",
  1515. "mirrors": [
  1516. {
  1517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1518. "preferred": true
  1519. }
  1520. ]
  1521. },
  1522. "require": {
  1523. "ext-mbstring": "*",
  1524. "php": "^7.2 || ^8.0"
  1525. },
  1526. "require-dev": {
  1527. "phpunit/phpunit": "^8.0 || ^9.4",
  1528. "squizlabs/php_codesniffer": "^3.5"
  1529. },
  1530. "suggest": {
  1531. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1532. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "4.1-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "Hashids\\": "src/"
  1543. }
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Ivan Akimov",
  1552. "email": "ivan@barreleye.com"
  1553. },
  1554. {
  1555. "name": "Vincent Klaiber",
  1556. "email": "hello@doubledip.se"
  1557. }
  1558. ],
  1559. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1560. "homepage": "https://hashids.org/php",
  1561. "keywords": [
  1562. "bitly",
  1563. "decode",
  1564. "encode",
  1565. "hash",
  1566. "hashid",
  1567. "hashids",
  1568. "ids",
  1569. "obfuscate",
  1570. "youtube"
  1571. ],
  1572. "support": {
  1573. "issues": "https://github.com/vinkla/hashids/issues",
  1574. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1575. },
  1576. "time": "2020-11-26T19:24:33+00:00"
  1577. },
  1578. {
  1579. "name": "intervention/image",
  1580. "version": "2.7.2",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/Intervention/image.git",
  1584. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1589. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1590. "shasum": "",
  1591. "mirrors": [
  1592. {
  1593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1594. "preferred": true
  1595. }
  1596. ]
  1597. },
  1598. "require": {
  1599. "ext-fileinfo": "*",
  1600. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1601. "php": ">=5.4.0"
  1602. },
  1603. "require-dev": {
  1604. "mockery/mockery": "~0.9.2",
  1605. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1606. },
  1607. "suggest": {
  1608. "ext-gd": "to use GD library based image processing.",
  1609. "ext-imagick": "to use Imagick based image processing.",
  1610. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1611. },
  1612. "type": "library",
  1613. "extra": {
  1614. "branch-alias": {
  1615. "dev-master": "2.4-dev"
  1616. },
  1617. "laravel": {
  1618. "providers": [
  1619. "Intervention\\Image\\ImageServiceProvider"
  1620. ],
  1621. "aliases": {
  1622. "Image": "Intervention\\Image\\Facades\\Image"
  1623. }
  1624. }
  1625. },
  1626. "autoload": {
  1627. "psr-4": {
  1628. "Intervention\\Image\\": "src/Intervention/Image"
  1629. }
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "authors": [
  1636. {
  1637. "name": "Oliver Vogel",
  1638. "email": "oliver@intervention.io",
  1639. "homepage": "https://intervention.io/"
  1640. }
  1641. ],
  1642. "description": "Image handling and manipulation library with support for Laravel integration",
  1643. "homepage": "http://image.intervention.io/",
  1644. "keywords": [
  1645. "gd",
  1646. "image",
  1647. "imagick",
  1648. "laravel",
  1649. "thumbnail",
  1650. "watermark"
  1651. ],
  1652. "support": {
  1653. "issues": "https://github.com/Intervention/image/issues",
  1654. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1655. },
  1656. "funding": [
  1657. {
  1658. "url": "https://paypal.me/interventionio",
  1659. "type": "custom"
  1660. },
  1661. {
  1662. "url": "https://github.com/Intervention",
  1663. "type": "github"
  1664. }
  1665. ],
  1666. "time": "2022-05-21T17:30:32+00:00"
  1667. },
  1668. {
  1669. "name": "ixudra/curl",
  1670. "version": "6.22.1",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/ixudra/curl.git",
  1674. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1679. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1680. "shasum": "",
  1681. "mirrors": [
  1682. {
  1683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1684. "preferred": true
  1685. }
  1686. ]
  1687. },
  1688. "require": {
  1689. "ext-curl": "*",
  1690. "illuminate/support": ">=4.0",
  1691. "php": ">=5.4.0"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "laravel": {
  1696. "providers": [
  1697. "Ixudra\\Curl\\CurlServiceProvider"
  1698. ],
  1699. "aliases": {
  1700. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  1701. }
  1702. }
  1703. },
  1704. "autoload": {
  1705. "psr-4": {
  1706. "Ixudra\\Curl\\": "src/"
  1707. }
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "MIT"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Jan Oris",
  1716. "email": "jan.oris@ixudra.be"
  1717. }
  1718. ],
  1719. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  1720. "homepage": "http://ixudra.be",
  1721. "keywords": [
  1722. "Ixudra",
  1723. "curl",
  1724. "laravel"
  1725. ],
  1726. "support": {
  1727. "issues": "https://github.com/ixudra/curl/issues",
  1728. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  1729. },
  1730. "time": "2022-07-31T09:58:52+00:00"
  1731. },
  1732. {
  1733. "name": "kra8/laravel-snowflake",
  1734. "version": "v2.1.0",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/kra8/laravel-snowflake.git",
  1738. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/kra8/laravel-snowflake/zipball/c56250c9e5b75eb26864f298039a74720b2ab1ed",
  1743. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed",
  1744. "shasum": "",
  1745. "mirrors": [
  1746. {
  1747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1748. "preferred": true
  1749. }
  1750. ]
  1751. },
  1752. "require": {
  1753. "illuminate/support": "^6.3|^7.0|^8.0|^9.0",
  1754. "php": "^7.2.5|^8.0"
  1755. },
  1756. "require-dev": {
  1757. "orchestra/testbench": "^5.0|^6.0|^7.0",
  1758. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1759. },
  1760. "type": "library",
  1761. "extra": {
  1762. "laravel": {
  1763. "providers": [
  1764. "Kra8\\Snowflake\\Providers\\LaravelServiceProvider"
  1765. ]
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "Kra8\\Snowflake\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "authors": [
  1778. {
  1779. "name": "Koki Asai",
  1780. "email": "me@kra.dev"
  1781. }
  1782. ],
  1783. "description": "Snowflake for Laravel and Lumen.",
  1784. "homepage": "https://github.com/kra8/laravel-snowflake",
  1785. "keywords": [
  1786. "laravel",
  1787. "lumen",
  1788. "php",
  1789. "snowflake"
  1790. ],
  1791. "support": {
  1792. "issues": "https://github.com/kra8/laravel-snowflake/issues",
  1793. "source": "https://github.com/kra8/laravel-snowflake/tree/v2.1.0"
  1794. },
  1795. "time": "2022-02-28T04:04:37+00:00"
  1796. },
  1797. {
  1798. "name": "laravel/framework",
  1799. "version": "v8.83.27",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/laravel/framework.git",
  1803. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1808. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "doctrine/inflector": "^1.4|^2.0",
  1813. "dragonmantank/cron-expression": "^3.0.2",
  1814. "egulias/email-validator": "^2.1.10",
  1815. "ext-json": "*",
  1816. "ext-mbstring": "*",
  1817. "ext-openssl": "*",
  1818. "laravel/serializable-closure": "^1.0",
  1819. "league/commonmark": "^1.3|^2.0.2",
  1820. "league/flysystem": "^1.1",
  1821. "monolog/monolog": "^2.0",
  1822. "nesbot/carbon": "^2.53.1",
  1823. "opis/closure": "^3.6",
  1824. "php": "^7.3|^8.0",
  1825. "psr/container": "^1.0",
  1826. "psr/log": "^1.0|^2.0",
  1827. "psr/simple-cache": "^1.0",
  1828. "ramsey/uuid": "^4.2.2",
  1829. "swiftmailer/swiftmailer": "^6.3",
  1830. "symfony/console": "^5.4",
  1831. "symfony/error-handler": "^5.4",
  1832. "symfony/finder": "^5.4",
  1833. "symfony/http-foundation": "^5.4",
  1834. "symfony/http-kernel": "^5.4",
  1835. "symfony/mime": "^5.4",
  1836. "symfony/process": "^5.4",
  1837. "symfony/routing": "^5.4",
  1838. "symfony/var-dumper": "^5.4",
  1839. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1840. "vlucas/phpdotenv": "^5.4.1",
  1841. "voku/portable-ascii": "^1.6.1"
  1842. },
  1843. "conflict": {
  1844. "tightenco/collect": "<5.5.33"
  1845. },
  1846. "provide": {
  1847. "psr/container-implementation": "1.0",
  1848. "psr/simple-cache-implementation": "1.0"
  1849. },
  1850. "replace": {
  1851. "illuminate/auth": "self.version",
  1852. "illuminate/broadcasting": "self.version",
  1853. "illuminate/bus": "self.version",
  1854. "illuminate/cache": "self.version",
  1855. "illuminate/collections": "self.version",
  1856. "illuminate/config": "self.version",
  1857. "illuminate/console": "self.version",
  1858. "illuminate/container": "self.version",
  1859. "illuminate/contracts": "self.version",
  1860. "illuminate/cookie": "self.version",
  1861. "illuminate/database": "self.version",
  1862. "illuminate/encryption": "self.version",
  1863. "illuminate/events": "self.version",
  1864. "illuminate/filesystem": "self.version",
  1865. "illuminate/hashing": "self.version",
  1866. "illuminate/http": "self.version",
  1867. "illuminate/log": "self.version",
  1868. "illuminate/macroable": "self.version",
  1869. "illuminate/mail": "self.version",
  1870. "illuminate/notifications": "self.version",
  1871. "illuminate/pagination": "self.version",
  1872. "illuminate/pipeline": "self.version",
  1873. "illuminate/queue": "self.version",
  1874. "illuminate/redis": "self.version",
  1875. "illuminate/routing": "self.version",
  1876. "illuminate/session": "self.version",
  1877. "illuminate/support": "self.version",
  1878. "illuminate/testing": "self.version",
  1879. "illuminate/translation": "self.version",
  1880. "illuminate/validation": "self.version",
  1881. "illuminate/view": "self.version"
  1882. },
  1883. "require-dev": {
  1884. "aws/aws-sdk-php": "^3.198.1",
  1885. "doctrine/dbal": "^2.13.3|^3.1.4",
  1886. "filp/whoops": "^2.14.3",
  1887. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1888. "league/flysystem-cached-adapter": "^1.0",
  1889. "mockery/mockery": "^1.4.4",
  1890. "orchestra/testbench-core": "^6.27",
  1891. "pda/pheanstalk": "^4.0",
  1892. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1893. "predis/predis": "^1.1.9",
  1894. "symfony/cache": "^5.4"
  1895. },
  1896. "suggest": {
  1897. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1898. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1899. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1900. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1901. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1902. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1903. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1904. "ext-memcached": "Required to use the memcache cache driver.",
  1905. "ext-pcntl": "Required to use all features of the queue worker.",
  1906. "ext-posix": "Required to use all features of the queue worker.",
  1907. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1908. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1909. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1910. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1911. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1912. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1913. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1914. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1915. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1916. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1917. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1918. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1919. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1920. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1921. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1922. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1923. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1924. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1925. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1926. },
  1927. "type": "library",
  1928. "extra": {
  1929. "branch-alias": {
  1930. "dev-master": "8.x-dev"
  1931. }
  1932. },
  1933. "autoload": {
  1934. "files": [
  1935. "src/Illuminate/Collections/helpers.php",
  1936. "src/Illuminate/Events/functions.php",
  1937. "src/Illuminate/Foundation/helpers.php",
  1938. "src/Illuminate/Support/helpers.php"
  1939. ],
  1940. "psr-4": {
  1941. "Illuminate\\": "src/Illuminate/",
  1942. "Illuminate\\Support\\": [
  1943. "src/Illuminate/Macroable/",
  1944. "src/Illuminate/Collections/"
  1945. ]
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Taylor Otwell",
  1955. "email": "taylor@laravel.com"
  1956. }
  1957. ],
  1958. "description": "The Laravel Framework.",
  1959. "homepage": "https://laravel.com",
  1960. "keywords": [
  1961. "framework",
  1962. "laravel"
  1963. ],
  1964. "support": {
  1965. "issues": "https://github.com/laravel/framework/issues",
  1966. "source": "https://github.com/laravel/framework"
  1967. },
  1968. "time": "2022-12-08T15:28:55+00:00"
  1969. },
  1970. {
  1971. "name": "laravel/serializable-closure",
  1972. "version": "v1.3.3",
  1973. "source": {
  1974. "type": "git",
  1975. "url": "https://github.com/laravel/serializable-closure.git",
  1976. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  1977. },
  1978. "dist": {
  1979. "type": "zip",
  1980. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  1981. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  1982. "shasum": "",
  1983. "mirrors": [
  1984. {
  1985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1986. "preferred": true
  1987. }
  1988. ]
  1989. },
  1990. "require": {
  1991. "php": "^7.3|^8.0"
  1992. },
  1993. "require-dev": {
  1994. "nesbot/carbon": "^2.61",
  1995. "pestphp/pest": "^1.21.3",
  1996. "phpstan/phpstan": "^1.8.2",
  1997. "symfony/var-dumper": "^5.4.11"
  1998. },
  1999. "type": "library",
  2000. "extra": {
  2001. "branch-alias": {
  2002. "dev-master": "1.x-dev"
  2003. }
  2004. },
  2005. "autoload": {
  2006. "psr-4": {
  2007. "Laravel\\SerializableClosure\\": "src/"
  2008. }
  2009. },
  2010. "notification-url": "https://packagist.org/downloads/",
  2011. "license": [
  2012. "MIT"
  2013. ],
  2014. "authors": [
  2015. {
  2016. "name": "Taylor Otwell",
  2017. "email": "taylor@laravel.com"
  2018. },
  2019. {
  2020. "name": "Nuno Maduro",
  2021. "email": "nuno@laravel.com"
  2022. }
  2023. ],
  2024. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2025. "keywords": [
  2026. "closure",
  2027. "laravel",
  2028. "serializable"
  2029. ],
  2030. "support": {
  2031. "issues": "https://github.com/laravel/serializable-closure/issues",
  2032. "source": "https://github.com/laravel/serializable-closure"
  2033. },
  2034. "time": "2023-11-08T14:08:06+00:00"
  2035. },
  2036. {
  2037. "name": "laravel/tinker",
  2038. "version": "v2.9.0",
  2039. "source": {
  2040. "type": "git",
  2041. "url": "https://github.com/laravel/tinker.git",
  2042. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2043. },
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2047. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2048. "shasum": "",
  2049. "mirrors": [
  2050. {
  2051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2052. "preferred": true
  2053. }
  2054. ]
  2055. },
  2056. "require": {
  2057. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2058. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2059. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2060. "php": "^7.2.5|^8.0",
  2061. "psy/psysh": "^0.11.1|^0.12.0",
  2062. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2063. },
  2064. "require-dev": {
  2065. "mockery/mockery": "~1.3.3|^1.4.2",
  2066. "phpstan/phpstan": "^1.10",
  2067. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2068. },
  2069. "suggest": {
  2070. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "laravel": {
  2075. "providers": [
  2076. "Laravel\\Tinker\\TinkerServiceProvider"
  2077. ]
  2078. }
  2079. },
  2080. "autoload": {
  2081. "psr-4": {
  2082. "Laravel\\Tinker\\": "src/"
  2083. }
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "MIT"
  2088. ],
  2089. "authors": [
  2090. {
  2091. "name": "Taylor Otwell",
  2092. "email": "taylor@laravel.com"
  2093. }
  2094. ],
  2095. "description": "Powerful REPL for the Laravel framework.",
  2096. "keywords": [
  2097. "REPL",
  2098. "Tinker",
  2099. "laravel",
  2100. "psysh"
  2101. ],
  2102. "support": {
  2103. "issues": "https://github.com/laravel/tinker/issues",
  2104. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2105. },
  2106. "time": "2024-01-04T16:10:04+00:00"
  2107. },
  2108. {
  2109. "name": "league/commonmark",
  2110. "version": "2.4.1",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/thephpleague/commonmark.git",
  2114. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2119. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2120. "shasum": "",
  2121. "mirrors": [
  2122. {
  2123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2124. "preferred": true
  2125. }
  2126. ]
  2127. },
  2128. "require": {
  2129. "ext-mbstring": "*",
  2130. "league/config": "^1.1.1",
  2131. "php": "^7.4 || ^8.0",
  2132. "psr/event-dispatcher": "^1.0",
  2133. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2134. "symfony/polyfill-php80": "^1.16"
  2135. },
  2136. "require-dev": {
  2137. "cebe/markdown": "^1.0",
  2138. "commonmark/cmark": "0.30.0",
  2139. "commonmark/commonmark.js": "0.30.0",
  2140. "composer/package-versions-deprecated": "^1.8",
  2141. "embed/embed": "^4.4",
  2142. "erusev/parsedown": "^1.0",
  2143. "ext-json": "*",
  2144. "github/gfm": "0.29.0",
  2145. "michelf/php-markdown": "^1.4 || ^2.0",
  2146. "nyholm/psr7": "^1.5",
  2147. "phpstan/phpstan": "^1.8.2",
  2148. "phpunit/phpunit": "^9.5.21",
  2149. "scrutinizer/ocular": "^1.8.1",
  2150. "symfony/finder": "^5.3 | ^6.0",
  2151. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2152. "unleashedtech/php-coding-standard": "^3.1.1",
  2153. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2154. },
  2155. "suggest": {
  2156. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2157. },
  2158. "type": "library",
  2159. "extra": {
  2160. "branch-alias": {
  2161. "dev-main": "2.5-dev"
  2162. }
  2163. },
  2164. "autoload": {
  2165. "psr-4": {
  2166. "League\\CommonMark\\": "src"
  2167. }
  2168. },
  2169. "notification-url": "https://packagist.org/downloads/",
  2170. "license": [
  2171. "BSD-3-Clause"
  2172. ],
  2173. "authors": [
  2174. {
  2175. "name": "Colin O'Dell",
  2176. "email": "colinodell@gmail.com",
  2177. "homepage": "https://www.colinodell.com",
  2178. "role": "Lead Developer"
  2179. }
  2180. ],
  2181. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2182. "homepage": "https://commonmark.thephpleague.com",
  2183. "keywords": [
  2184. "commonmark",
  2185. "flavored",
  2186. "gfm",
  2187. "github",
  2188. "github-flavored",
  2189. "markdown",
  2190. "md",
  2191. "parser"
  2192. ],
  2193. "support": {
  2194. "docs": "https://commonmark.thephpleague.com/",
  2195. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2196. "issues": "https://github.com/thephpleague/commonmark/issues",
  2197. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2198. "source": "https://github.com/thephpleague/commonmark"
  2199. },
  2200. "funding": [
  2201. {
  2202. "url": "https://www.colinodell.com/sponsor",
  2203. "type": "custom"
  2204. },
  2205. {
  2206. "url": "https://www.paypal.me/colinpodell/10.00",
  2207. "type": "custom"
  2208. },
  2209. {
  2210. "url": "https://github.com/colinodell",
  2211. "type": "github"
  2212. },
  2213. {
  2214. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2215. "type": "tidelift"
  2216. }
  2217. ],
  2218. "time": "2023-08-30T16:55:00+00:00"
  2219. },
  2220. {
  2221. "name": "league/config",
  2222. "version": "v1.2.0",
  2223. "source": {
  2224. "type": "git",
  2225. "url": "https://github.com/thephpleague/config.git",
  2226. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2227. },
  2228. "dist": {
  2229. "type": "zip",
  2230. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2231. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2232. "shasum": "",
  2233. "mirrors": [
  2234. {
  2235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2236. "preferred": true
  2237. }
  2238. ]
  2239. },
  2240. "require": {
  2241. "dflydev/dot-access-data": "^3.0.1",
  2242. "nette/schema": "^1.2",
  2243. "php": "^7.4 || ^8.0"
  2244. },
  2245. "require-dev": {
  2246. "phpstan/phpstan": "^1.8.2",
  2247. "phpunit/phpunit": "^9.5.5",
  2248. "scrutinizer/ocular": "^1.8.1",
  2249. "unleashedtech/php-coding-standard": "^3.1",
  2250. "vimeo/psalm": "^4.7.3"
  2251. },
  2252. "type": "library",
  2253. "extra": {
  2254. "branch-alias": {
  2255. "dev-main": "1.2-dev"
  2256. }
  2257. },
  2258. "autoload": {
  2259. "psr-4": {
  2260. "League\\Config\\": "src"
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "BSD-3-Clause"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "Colin O'Dell",
  2270. "email": "colinodell@gmail.com",
  2271. "homepage": "https://www.colinodell.com",
  2272. "role": "Lead Developer"
  2273. }
  2274. ],
  2275. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2276. "homepage": "https://config.thephpleague.com",
  2277. "keywords": [
  2278. "array",
  2279. "config",
  2280. "configuration",
  2281. "dot",
  2282. "dot-access",
  2283. "nested",
  2284. "schema"
  2285. ],
  2286. "support": {
  2287. "docs": "https://config.thephpleague.com/",
  2288. "issues": "https://github.com/thephpleague/config/issues",
  2289. "rss": "https://github.com/thephpleague/config/releases.atom",
  2290. "source": "https://github.com/thephpleague/config"
  2291. },
  2292. "funding": [
  2293. {
  2294. "url": "https://www.colinodell.com/sponsor",
  2295. "type": "custom"
  2296. },
  2297. {
  2298. "url": "https://www.paypal.me/colinpodell/10.00",
  2299. "type": "custom"
  2300. },
  2301. {
  2302. "url": "https://github.com/colinodell",
  2303. "type": "github"
  2304. }
  2305. ],
  2306. "time": "2022-12-11T20:36:23+00:00"
  2307. },
  2308. {
  2309. "name": "league/flysystem",
  2310. "version": "1.1.10",
  2311. "source": {
  2312. "type": "git",
  2313. "url": "https://github.com/thephpleague/flysystem.git",
  2314. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2315. },
  2316. "dist": {
  2317. "type": "zip",
  2318. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2319. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2320. "shasum": "",
  2321. "mirrors": [
  2322. {
  2323. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2324. "preferred": true
  2325. }
  2326. ]
  2327. },
  2328. "require": {
  2329. "ext-fileinfo": "*",
  2330. "league/mime-type-detection": "^1.3",
  2331. "php": "^7.2.5 || ^8.0"
  2332. },
  2333. "conflict": {
  2334. "league/flysystem-sftp": "<1.0.6"
  2335. },
  2336. "require-dev": {
  2337. "phpspec/prophecy": "^1.11.1",
  2338. "phpunit/phpunit": "^8.5.8"
  2339. },
  2340. "suggest": {
  2341. "ext-ftp": "Allows you to use FTP server storage",
  2342. "ext-openssl": "Allows you to use FTPS server storage",
  2343. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2344. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2345. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2346. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2347. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2348. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2349. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2350. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2351. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2352. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2353. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2354. },
  2355. "type": "library",
  2356. "extra": {
  2357. "branch-alias": {
  2358. "dev-master": "1.1-dev"
  2359. }
  2360. },
  2361. "autoload": {
  2362. "psr-4": {
  2363. "League\\Flysystem\\": "src/"
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Frank de Jonge",
  2373. "email": "info@frenky.net"
  2374. }
  2375. ],
  2376. "description": "Filesystem abstraction: Many filesystems, one API.",
  2377. "keywords": [
  2378. "Cloud Files",
  2379. "WebDAV",
  2380. "abstraction",
  2381. "aws",
  2382. "cloud",
  2383. "copy.com",
  2384. "dropbox",
  2385. "file systems",
  2386. "files",
  2387. "filesystem",
  2388. "filesystems",
  2389. "ftp",
  2390. "rackspace",
  2391. "remote",
  2392. "s3",
  2393. "sftp",
  2394. "storage"
  2395. ],
  2396. "support": {
  2397. "issues": "https://github.com/thephpleague/flysystem/issues",
  2398. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2399. },
  2400. "funding": [
  2401. {
  2402. "url": "https://offset.earth/frankdejonge",
  2403. "type": "other"
  2404. }
  2405. ],
  2406. "time": "2022-10-04T09:16:37+00:00"
  2407. },
  2408. {
  2409. "name": "league/mime-type-detection",
  2410. "version": "1.13.0",
  2411. "source": {
  2412. "type": "git",
  2413. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2414. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  2415. },
  2416. "dist": {
  2417. "type": "zip",
  2418. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2419. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2420. "shasum": "",
  2421. "mirrors": [
  2422. {
  2423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2424. "preferred": true
  2425. }
  2426. ]
  2427. },
  2428. "require": {
  2429. "ext-fileinfo": "*",
  2430. "php": "^7.4 || ^8.0"
  2431. },
  2432. "require-dev": {
  2433. "friendsofphp/php-cs-fixer": "^3.2",
  2434. "phpstan/phpstan": "^0.12.68",
  2435. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2436. },
  2437. "type": "library",
  2438. "autoload": {
  2439. "psr-4": {
  2440. "League\\MimeTypeDetection\\": "src"
  2441. }
  2442. },
  2443. "notification-url": "https://packagist.org/downloads/",
  2444. "license": [
  2445. "MIT"
  2446. ],
  2447. "authors": [
  2448. {
  2449. "name": "Frank de Jonge",
  2450. "email": "info@frankdejonge.nl"
  2451. }
  2452. ],
  2453. "description": "Mime-type detection for Flysystem",
  2454. "support": {
  2455. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2456. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  2457. },
  2458. "funding": [
  2459. {
  2460. "url": "https://github.com/frankdejonge",
  2461. "type": "github"
  2462. },
  2463. {
  2464. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2465. "type": "tidelift"
  2466. }
  2467. ],
  2468. "time": "2023-08-05T12:09:49+00:00"
  2469. },
  2470. {
  2471. "name": "maennchen/zipstream-php",
  2472. "version": "2.2.6",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2476. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2481. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2482. "shasum": "",
  2483. "mirrors": [
  2484. {
  2485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2486. "preferred": true
  2487. }
  2488. ]
  2489. },
  2490. "require": {
  2491. "myclabs/php-enum": "^1.5",
  2492. "php": "^7.4 || ^8.0",
  2493. "psr/http-message": "^1.0",
  2494. "symfony/polyfill-mbstring": "^1.0"
  2495. },
  2496. "require-dev": {
  2497. "ext-zip": "*",
  2498. "friendsofphp/php-cs-fixer": "^3.9",
  2499. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2500. "mikey179/vfsstream": "^1.6",
  2501. "php-coveralls/php-coveralls": "^2.4",
  2502. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2503. "vimeo/psalm": "^4.1"
  2504. },
  2505. "type": "library",
  2506. "autoload": {
  2507. "psr-4": {
  2508. "ZipStream\\": "src/"
  2509. }
  2510. },
  2511. "notification-url": "https://packagist.org/downloads/",
  2512. "license": [
  2513. "MIT"
  2514. ],
  2515. "authors": [
  2516. {
  2517. "name": "Paul Duncan",
  2518. "email": "pabs@pablotron.org"
  2519. },
  2520. {
  2521. "name": "Jonatan Männchen",
  2522. "email": "jonatan@maennchen.ch"
  2523. },
  2524. {
  2525. "name": "Jesse Donat",
  2526. "email": "donatj@gmail.com"
  2527. },
  2528. {
  2529. "name": "András Kolesár",
  2530. "email": "kolesar@kolesar.hu"
  2531. }
  2532. ],
  2533. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2534. "keywords": [
  2535. "stream",
  2536. "zip"
  2537. ],
  2538. "support": {
  2539. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2540. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2541. },
  2542. "funding": [
  2543. {
  2544. "url": "https://github.com/maennchen",
  2545. "type": "github"
  2546. },
  2547. {
  2548. "url": "https://opencollective.com/zipstream",
  2549. "type": "open_collective"
  2550. }
  2551. ],
  2552. "time": "2022-11-25T18:57:19+00:00"
  2553. },
  2554. {
  2555. "name": "markbaker/complex",
  2556. "version": "3.0.2",
  2557. "source": {
  2558. "type": "git",
  2559. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2560. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2561. },
  2562. "dist": {
  2563. "type": "zip",
  2564. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2565. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2566. "shasum": "",
  2567. "mirrors": [
  2568. {
  2569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2570. "preferred": true
  2571. }
  2572. ]
  2573. },
  2574. "require": {
  2575. "php": "^7.2 || ^8.0"
  2576. },
  2577. "require-dev": {
  2578. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2579. "phpcompatibility/php-compatibility": "^9.3",
  2580. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2581. "squizlabs/php_codesniffer": "^3.7"
  2582. },
  2583. "type": "library",
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Complex\\": "classes/src/"
  2587. }
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Mark Baker",
  2596. "email": "mark@lange.demon.co.uk"
  2597. }
  2598. ],
  2599. "description": "PHP Class for working with complex numbers",
  2600. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2601. "keywords": [
  2602. "complex",
  2603. "mathematics"
  2604. ],
  2605. "support": {
  2606. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2607. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2608. },
  2609. "time": "2022-12-06T16:21:08+00:00"
  2610. },
  2611. {
  2612. "name": "markbaker/matrix",
  2613. "version": "3.0.1",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2617. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2622. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2623. "shasum": "",
  2624. "mirrors": [
  2625. {
  2626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2627. "preferred": true
  2628. }
  2629. ]
  2630. },
  2631. "require": {
  2632. "php": "^7.1 || ^8.0"
  2633. },
  2634. "require-dev": {
  2635. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2636. "phpcompatibility/php-compatibility": "^9.3",
  2637. "phpdocumentor/phpdocumentor": "2.*",
  2638. "phploc/phploc": "^4.0",
  2639. "phpmd/phpmd": "2.*",
  2640. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2641. "sebastian/phpcpd": "^4.0",
  2642. "squizlabs/php_codesniffer": "^3.7"
  2643. },
  2644. "type": "library",
  2645. "autoload": {
  2646. "psr-4": {
  2647. "Matrix\\": "classes/src/"
  2648. }
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "authors": [
  2655. {
  2656. "name": "Mark Baker",
  2657. "email": "mark@demon-angel.eu"
  2658. }
  2659. ],
  2660. "description": "PHP Class for working with matrices",
  2661. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2662. "keywords": [
  2663. "mathematics",
  2664. "matrix",
  2665. "vector"
  2666. ],
  2667. "support": {
  2668. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2669. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2670. },
  2671. "time": "2022-12-02T22:17:43+00:00"
  2672. },
  2673. {
  2674. "name": "monolog/monolog",
  2675. "version": "2.9.2",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/Seldaek/monolog.git",
  2679. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  2684. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  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.2",
  2695. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2696. },
  2697. "provide": {
  2698. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2699. },
  2700. "require-dev": {
  2701. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2702. "doctrine/couchdb": "~1.0@dev",
  2703. "elasticsearch/elasticsearch": "^7 || ^8",
  2704. "ext-json": "*",
  2705. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2706. "guzzlehttp/guzzle": "^7.4",
  2707. "guzzlehttp/psr7": "^2.2",
  2708. "mongodb/mongodb": "^1.8",
  2709. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2710. "phpspec/prophecy": "^1.15",
  2711. "phpstan/phpstan": "^0.12.91",
  2712. "phpunit/phpunit": "^8.5.14",
  2713. "predis/predis": "^1.1 || ^2.0",
  2714. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2715. "ruflin/elastica": "^7",
  2716. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2717. "symfony/mailer": "^5.4 || ^6",
  2718. "symfony/mime": "^5.4 || ^6"
  2719. },
  2720. "suggest": {
  2721. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2722. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2723. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2724. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2725. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2726. "ext-mbstring": "Allow to work properly with unicode symbols",
  2727. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2728. "ext-openssl": "Required to send log messages using SSL",
  2729. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2730. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2731. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2732. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2733. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2734. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2735. },
  2736. "type": "library",
  2737. "extra": {
  2738. "branch-alias": {
  2739. "dev-main": "2.x-dev"
  2740. }
  2741. },
  2742. "autoload": {
  2743. "psr-4": {
  2744. "Monolog\\": "src/Monolog"
  2745. }
  2746. },
  2747. "notification-url": "https://packagist.org/downloads/",
  2748. "license": [
  2749. "MIT"
  2750. ],
  2751. "authors": [
  2752. {
  2753. "name": "Jordi Boggiano",
  2754. "email": "j.boggiano@seld.be",
  2755. "homepage": "https://seld.be"
  2756. }
  2757. ],
  2758. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2759. "homepage": "https://github.com/Seldaek/monolog",
  2760. "keywords": [
  2761. "log",
  2762. "logging",
  2763. "psr-3"
  2764. ],
  2765. "support": {
  2766. "issues": "https://github.com/Seldaek/monolog/issues",
  2767. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  2768. },
  2769. "funding": [
  2770. {
  2771. "url": "https://github.com/Seldaek",
  2772. "type": "github"
  2773. },
  2774. {
  2775. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2776. "type": "tidelift"
  2777. }
  2778. ],
  2779. "time": "2023-10-27T15:25:26+00:00"
  2780. },
  2781. {
  2782. "name": "myclabs/php-enum",
  2783. "version": "1.8.4",
  2784. "source": {
  2785. "type": "git",
  2786. "url": "https://github.com/myclabs/php-enum.git",
  2787. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2788. },
  2789. "dist": {
  2790. "type": "zip",
  2791. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2792. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2793. "shasum": "",
  2794. "mirrors": [
  2795. {
  2796. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2797. "preferred": true
  2798. }
  2799. ]
  2800. },
  2801. "require": {
  2802. "ext-json": "*",
  2803. "php": "^7.3 || ^8.0"
  2804. },
  2805. "require-dev": {
  2806. "phpunit/phpunit": "^9.5",
  2807. "squizlabs/php_codesniffer": "1.*",
  2808. "vimeo/psalm": "^4.6.2"
  2809. },
  2810. "type": "library",
  2811. "autoload": {
  2812. "psr-4": {
  2813. "MyCLabs\\Enum\\": "src/"
  2814. },
  2815. "classmap": [
  2816. "stubs/Stringable.php"
  2817. ]
  2818. },
  2819. "notification-url": "https://packagist.org/downloads/",
  2820. "license": [
  2821. "MIT"
  2822. ],
  2823. "authors": [
  2824. {
  2825. "name": "PHP Enum contributors",
  2826. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2827. }
  2828. ],
  2829. "description": "PHP Enum implementation",
  2830. "homepage": "http://github.com/myclabs/php-enum",
  2831. "keywords": [
  2832. "enum"
  2833. ],
  2834. "support": {
  2835. "issues": "https://github.com/myclabs/php-enum/issues",
  2836. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2837. },
  2838. "funding": [
  2839. {
  2840. "url": "https://github.com/mnapoli",
  2841. "type": "github"
  2842. },
  2843. {
  2844. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2845. "type": "tidelift"
  2846. }
  2847. ],
  2848. "time": "2022-08-04T09:53:51+00:00"
  2849. },
  2850. {
  2851. "name": "nesbot/carbon",
  2852. "version": "2.72.1",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/briannesbitt/Carbon.git",
  2856. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2861. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2862. "shasum": "",
  2863. "mirrors": [
  2864. {
  2865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2866. "preferred": true
  2867. }
  2868. ]
  2869. },
  2870. "require": {
  2871. "carbonphp/carbon-doctrine-types": "*",
  2872. "ext-json": "*",
  2873. "php": "^7.1.8 || ^8.0",
  2874. "psr/clock": "^1.0",
  2875. "symfony/polyfill-mbstring": "^1.0",
  2876. "symfony/polyfill-php80": "^1.16",
  2877. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2878. },
  2879. "provide": {
  2880. "psr/clock-implementation": "1.0"
  2881. },
  2882. "require-dev": {
  2883. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2884. "doctrine/orm": "^2.7 || ^3.0",
  2885. "friendsofphp/php-cs-fixer": "^3.0",
  2886. "kylekatarnls/multi-tester": "^2.0",
  2887. "ondrejmirtes/better-reflection": "*",
  2888. "phpmd/phpmd": "^2.9",
  2889. "phpstan/extension-installer": "^1.0",
  2890. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2891. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2892. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2893. "squizlabs/php_codesniffer": "^3.4"
  2894. },
  2895. "bin": [
  2896. "bin/carbon"
  2897. ],
  2898. "type": "library",
  2899. "extra": {
  2900. "branch-alias": {
  2901. "dev-3.x": "3.x-dev",
  2902. "dev-master": "2.x-dev"
  2903. },
  2904. "laravel": {
  2905. "providers": [
  2906. "Carbon\\Laravel\\ServiceProvider"
  2907. ]
  2908. },
  2909. "phpstan": {
  2910. "includes": [
  2911. "extension.neon"
  2912. ]
  2913. }
  2914. },
  2915. "autoload": {
  2916. "psr-4": {
  2917. "Carbon\\": "src/Carbon/"
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Brian Nesbitt",
  2927. "email": "brian@nesbot.com",
  2928. "homepage": "https://markido.com"
  2929. },
  2930. {
  2931. "name": "kylekatarnls",
  2932. "homepage": "https://github.com/kylekatarnls"
  2933. }
  2934. ],
  2935. "description": "An API extension for DateTime that supports 281 different languages.",
  2936. "homepage": "https://carbon.nesbot.com",
  2937. "keywords": [
  2938. "date",
  2939. "datetime",
  2940. "time"
  2941. ],
  2942. "support": {
  2943. "docs": "https://carbon.nesbot.com/docs",
  2944. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2945. "source": "https://github.com/briannesbitt/Carbon"
  2946. },
  2947. "funding": [
  2948. {
  2949. "url": "https://github.com/sponsors/kylekatarnls",
  2950. "type": "github"
  2951. },
  2952. {
  2953. "url": "https://opencollective.com/Carbon#sponsor",
  2954. "type": "opencollective"
  2955. },
  2956. {
  2957. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2958. "type": "tidelift"
  2959. }
  2960. ],
  2961. "time": "2023-12-08T23:47:49+00:00"
  2962. },
  2963. {
  2964. "name": "nette/schema",
  2965. "version": "v1.2.5",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/nette/schema.git",
  2969. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  2974. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  2975. "shasum": "",
  2976. "mirrors": [
  2977. {
  2978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2979. "preferred": true
  2980. }
  2981. ]
  2982. },
  2983. "require": {
  2984. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2985. "php": "7.1 - 8.3"
  2986. },
  2987. "require-dev": {
  2988. "nette/tester": "^2.3 || ^2.4",
  2989. "phpstan/phpstan-nette": "^1.0",
  2990. "tracy/tracy": "^2.7"
  2991. },
  2992. "type": "library",
  2993. "extra": {
  2994. "branch-alias": {
  2995. "dev-master": "1.2-dev"
  2996. }
  2997. },
  2998. "autoload": {
  2999. "classmap": [
  3000. "src/"
  3001. ]
  3002. },
  3003. "notification-url": "https://packagist.org/downloads/",
  3004. "license": [
  3005. "BSD-3-Clause",
  3006. "GPL-2.0-only",
  3007. "GPL-3.0-only"
  3008. ],
  3009. "authors": [
  3010. {
  3011. "name": "David Grudl",
  3012. "homepage": "https://davidgrudl.com"
  3013. },
  3014. {
  3015. "name": "Nette Community",
  3016. "homepage": "https://nette.org/contributors"
  3017. }
  3018. ],
  3019. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3020. "homepage": "https://nette.org",
  3021. "keywords": [
  3022. "config",
  3023. "nette"
  3024. ],
  3025. "support": {
  3026. "issues": "https://github.com/nette/schema/issues",
  3027. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3028. },
  3029. "time": "2023-10-05T20:37:59+00:00"
  3030. },
  3031. {
  3032. "name": "nette/utils",
  3033. "version": "v3.2.10",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/nette/utils.git",
  3037. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3042. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3043. "shasum": "",
  3044. "mirrors": [
  3045. {
  3046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3047. "preferred": true
  3048. }
  3049. ]
  3050. },
  3051. "require": {
  3052. "php": ">=7.2 <8.4"
  3053. },
  3054. "conflict": {
  3055. "nette/di": "<3.0.6"
  3056. },
  3057. "require-dev": {
  3058. "jetbrains/phpstorm-attributes": "dev-master",
  3059. "nette/tester": "~2.0",
  3060. "phpstan/phpstan": "^1.0",
  3061. "tracy/tracy": "^2.3"
  3062. },
  3063. "suggest": {
  3064. "ext-gd": "to use Image",
  3065. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3066. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3067. "ext-json": "to use Nette\\Utils\\Json",
  3068. "ext-mbstring": "to use Strings::lower() etc...",
  3069. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3070. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "3.2-dev"
  3076. }
  3077. },
  3078. "autoload": {
  3079. "classmap": [
  3080. "src/"
  3081. ]
  3082. },
  3083. "notification-url": "https://packagist.org/downloads/",
  3084. "license": [
  3085. "BSD-3-Clause",
  3086. "GPL-2.0-only",
  3087. "GPL-3.0-only"
  3088. ],
  3089. "authors": [
  3090. {
  3091. "name": "David Grudl",
  3092. "homepage": "https://davidgrudl.com"
  3093. },
  3094. {
  3095. "name": "Nette Community",
  3096. "homepage": "https://nette.org/contributors"
  3097. }
  3098. ],
  3099. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3100. "homepage": "https://nette.org",
  3101. "keywords": [
  3102. "array",
  3103. "core",
  3104. "datetime",
  3105. "images",
  3106. "json",
  3107. "nette",
  3108. "paginator",
  3109. "password",
  3110. "slugify",
  3111. "string",
  3112. "unicode",
  3113. "utf-8",
  3114. "utility",
  3115. "validation"
  3116. ],
  3117. "support": {
  3118. "issues": "https://github.com/nette/utils/issues",
  3119. "source": "https://github.com/nette/utils/tree/v3.2.10"
  3120. },
  3121. "time": "2023-07-30T15:38:18+00:00"
  3122. },
  3123. {
  3124. "name": "nikic/php-parser",
  3125. "version": "v5.0.0",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/nikic/PHP-Parser.git",
  3129. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3134. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3135. "shasum": "",
  3136. "mirrors": [
  3137. {
  3138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3139. "preferred": true
  3140. }
  3141. ]
  3142. },
  3143. "require": {
  3144. "ext-ctype": "*",
  3145. "ext-json": "*",
  3146. "ext-tokenizer": "*",
  3147. "php": ">=7.4"
  3148. },
  3149. "require-dev": {
  3150. "ircmaxell/php-yacc": "^0.0.7",
  3151. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3152. },
  3153. "bin": [
  3154. "bin/php-parse"
  3155. ],
  3156. "type": "library",
  3157. "extra": {
  3158. "branch-alias": {
  3159. "dev-master": "5.0-dev"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "psr-4": {
  3164. "PhpParser\\": "lib/PhpParser"
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "BSD-3-Clause"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "Nikita Popov"
  3174. }
  3175. ],
  3176. "description": "A PHP parser written in PHP",
  3177. "keywords": [
  3178. "parser",
  3179. "php"
  3180. ],
  3181. "support": {
  3182. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3183. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  3184. },
  3185. "time": "2024-01-07T17:17:35+00:00"
  3186. },
  3187. {
  3188. "name": "opis/closure",
  3189. "version": "3.6.3",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/opis/closure.git",
  3193. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3198. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3199. "shasum": "",
  3200. "mirrors": [
  3201. {
  3202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3203. "preferred": true
  3204. }
  3205. ]
  3206. },
  3207. "require": {
  3208. "php": "^5.4 || ^7.0 || ^8.0"
  3209. },
  3210. "require-dev": {
  3211. "jeremeamia/superclosure": "^2.0",
  3212. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "3.6.x-dev"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "files": [
  3222. "functions.php"
  3223. ],
  3224. "psr-4": {
  3225. "Opis\\Closure\\": "src/"
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "authors": [
  3233. {
  3234. "name": "Marius Sarca",
  3235. "email": "marius.sarca@gmail.com"
  3236. },
  3237. {
  3238. "name": "Sorin Sarca",
  3239. "email": "sarca_sorin@hotmail.com"
  3240. }
  3241. ],
  3242. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3243. "homepage": "https://opis.io/closure",
  3244. "keywords": [
  3245. "anonymous functions",
  3246. "closure",
  3247. "function",
  3248. "serializable",
  3249. "serialization",
  3250. "serialize"
  3251. ],
  3252. "support": {
  3253. "issues": "https://github.com/opis/closure/issues",
  3254. "source": "https://github.com/opis/closure/tree/3.6.3"
  3255. },
  3256. "time": "2022-01-27T09:35:39+00:00"
  3257. },
  3258. {
  3259. "name": "overtrue/qcloud-cos-client",
  3260. "version": "1.0.4",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  3264. "reference": "64ca47881afe4fd0961958f85674dcae71421913"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/64ca47881afe4fd0961958f85674dcae71421913",
  3269. "reference": "64ca47881afe4fd0961958f85674dcae71421913",
  3270. "shasum": "",
  3271. "mirrors": [
  3272. {
  3273. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3274. "preferred": true
  3275. }
  3276. ]
  3277. },
  3278. "require": {
  3279. "ext-dom": "*",
  3280. "ext-json": "*",
  3281. "ext-libxml": "*",
  3282. "ext-simplexml": "*",
  3283. "guzzlehttp/guzzle": "^7.2",
  3284. "php": ">=7.4",
  3285. "psr/http-message": "^1.0"
  3286. },
  3287. "require-dev": {
  3288. "brainmaestro/composer-git-hooks": "^2.7",
  3289. "friendsofphp/php-cs-fixer": "^3.4.0",
  3290. "mockery/mockery": "^1.0",
  3291. "monolog/monolog": "^2.1",
  3292. "phpunit/phpunit": "^9.0"
  3293. },
  3294. "type": "library",
  3295. "extra": {
  3296. "hooks": {
  3297. "pre-commit": [
  3298. "composer test",
  3299. "composer check-style"
  3300. ],
  3301. "pre-push": [
  3302. "composer test",
  3303. "composer check-style"
  3304. ]
  3305. }
  3306. },
  3307. "autoload": {
  3308. "psr-4": {
  3309. "Overtrue\\CosClient\\": "src"
  3310. }
  3311. },
  3312. "notification-url": "https://packagist.org/downloads/",
  3313. "license": [
  3314. "MIT"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "overtrue",
  3319. "email": "anzhengchao@gmail.com"
  3320. }
  3321. ],
  3322. "description": "Client of QCloud.com COS",
  3323. "support": {
  3324. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  3325. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.4"
  3326. },
  3327. "funding": [
  3328. {
  3329. "url": "https://github.com/overtrue",
  3330. "type": "github"
  3331. }
  3332. ],
  3333. "time": "2022-11-07T00:18:25+00:00"
  3334. },
  3335. {
  3336. "name": "overtrue/socialite",
  3337. "version": "3.5.5",
  3338. "source": {
  3339. "type": "git",
  3340. "url": "https://github.com/overtrue/socialite.git",
  3341. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401"
  3342. },
  3343. "dist": {
  3344. "type": "zip",
  3345. "url": "https://api.github.com/repos/overtrue/socialite/zipball/3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3346. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3347. "shasum": ""
  3348. },
  3349. "require": {
  3350. "ext-json": "*",
  3351. "ext-openssl": "*",
  3352. "guzzlehttp/guzzle": "~6.0|~7.0",
  3353. "php": ">=7.4",
  3354. "symfony/psr-http-message-bridge": "^2.0"
  3355. },
  3356. "require-dev": {
  3357. "friendsofphp/php-cs-fixer": "^3.0",
  3358. "mockery/mockery": "~1.2",
  3359. "phpunit/phpunit": "~9.0"
  3360. },
  3361. "type": "library",
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Overtrue\\Socialite\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "overtrue",
  3374. "email": "anzhengchao@gmail.com"
  3375. }
  3376. ],
  3377. "description": "A collection of OAuth 2 packages.",
  3378. "keywords": [
  3379. "Feishu",
  3380. "login",
  3381. "oauth",
  3382. "qcloud",
  3383. "qq",
  3384. "social",
  3385. "wechat",
  3386. "weibo"
  3387. ],
  3388. "support": {
  3389. "issues": "https://github.com/overtrue/socialite/issues",
  3390. "source": "https://github.com/overtrue/socialite/tree/3.5.5"
  3391. },
  3392. "funding": [
  3393. {
  3394. "url": "https://github.com/overtrue",
  3395. "type": "github"
  3396. }
  3397. ],
  3398. "time": "2024-06-24T09:26:56+00:00"
  3399. },
  3400. {
  3401. "name": "phpoffice/phpspreadsheet",
  3402. "version": "1.29.0",
  3403. "source": {
  3404. "type": "git",
  3405. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3406. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3407. },
  3408. "dist": {
  3409. "type": "zip",
  3410. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3411. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3412. "shasum": ""
  3413. },
  3414. "require": {
  3415. "ext-ctype": "*",
  3416. "ext-dom": "*",
  3417. "ext-fileinfo": "*",
  3418. "ext-gd": "*",
  3419. "ext-iconv": "*",
  3420. "ext-libxml": "*",
  3421. "ext-mbstring": "*",
  3422. "ext-simplexml": "*",
  3423. "ext-xml": "*",
  3424. "ext-xmlreader": "*",
  3425. "ext-xmlwriter": "*",
  3426. "ext-zip": "*",
  3427. "ext-zlib": "*",
  3428. "ezyang/htmlpurifier": "^4.15",
  3429. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3430. "markbaker/complex": "^3.0",
  3431. "markbaker/matrix": "^3.0",
  3432. "php": "^7.4 || ^8.0",
  3433. "psr/http-client": "^1.0",
  3434. "psr/http-factory": "^1.0",
  3435. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3436. },
  3437. "require-dev": {
  3438. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3439. "dompdf/dompdf": "^1.0 || ^2.0",
  3440. "friendsofphp/php-cs-fixer": "^3.2",
  3441. "mitoteam/jpgraph": "^10.3",
  3442. "mpdf/mpdf": "^8.1.1",
  3443. "phpcompatibility/php-compatibility": "^9.3",
  3444. "phpstan/phpstan": "^1.1",
  3445. "phpstan/phpstan-phpunit": "^1.0",
  3446. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  3447. "squizlabs/php_codesniffer": "^3.7",
  3448. "tecnickcom/tcpdf": "^6.5"
  3449. },
  3450. "suggest": {
  3451. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3452. "ext-intl": "PHP Internationalization Functions",
  3453. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3454. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3455. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3456. },
  3457. "type": "library",
  3458. "autoload": {
  3459. "psr-4": {
  3460. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3461. }
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "MIT"
  3466. ],
  3467. "authors": [
  3468. {
  3469. "name": "Maarten Balliauw",
  3470. "homepage": "https://blog.maartenballiauw.be"
  3471. },
  3472. {
  3473. "name": "Mark Baker",
  3474. "homepage": "https://markbakeruk.net"
  3475. },
  3476. {
  3477. "name": "Franck Lefevre",
  3478. "homepage": "https://rootslabs.net"
  3479. },
  3480. {
  3481. "name": "Erik Tilt"
  3482. },
  3483. {
  3484. "name": "Adrien Crivelli"
  3485. }
  3486. ],
  3487. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3488. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3489. "keywords": [
  3490. "OpenXML",
  3491. "excel",
  3492. "gnumeric",
  3493. "ods",
  3494. "php",
  3495. "spreadsheet",
  3496. "xls",
  3497. "xlsx"
  3498. ],
  3499. "support": {
  3500. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3501. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  3502. },
  3503. "time": "2023-06-14T22:48:31+00:00"
  3504. },
  3505. {
  3506. "name": "phpoption/phpoption",
  3507. "version": "1.9.2",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://github.com/schmittjoh/php-option.git",
  3511. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  3516. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  3517. "shasum": "",
  3518. "mirrors": [
  3519. {
  3520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3521. "preferred": true
  3522. }
  3523. ]
  3524. },
  3525. "require": {
  3526. "php": "^7.2.5 || ^8.0"
  3527. },
  3528. "require-dev": {
  3529. "bamarni/composer-bin-plugin": "^1.8.2",
  3530. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "bamarni-bin": {
  3535. "bin-links": true,
  3536. "forward-command": true
  3537. },
  3538. "branch-alias": {
  3539. "dev-master": "1.9-dev"
  3540. }
  3541. },
  3542. "autoload": {
  3543. "psr-4": {
  3544. "PhpOption\\": "src/PhpOption/"
  3545. }
  3546. },
  3547. "notification-url": "https://packagist.org/downloads/",
  3548. "license": [
  3549. "Apache-2.0"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "Johannes M. Schmitt",
  3554. "email": "schmittjoh@gmail.com",
  3555. "homepage": "https://github.com/schmittjoh"
  3556. },
  3557. {
  3558. "name": "Graham Campbell",
  3559. "email": "hello@gjcampbell.co.uk",
  3560. "homepage": "https://github.com/GrahamCampbell"
  3561. }
  3562. ],
  3563. "description": "Option Type for PHP",
  3564. "keywords": [
  3565. "language",
  3566. "option",
  3567. "php",
  3568. "type"
  3569. ],
  3570. "support": {
  3571. "issues": "https://github.com/schmittjoh/php-option/issues",
  3572. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  3573. },
  3574. "funding": [
  3575. {
  3576. "url": "https://github.com/GrahamCampbell",
  3577. "type": "github"
  3578. },
  3579. {
  3580. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3581. "type": "tidelift"
  3582. }
  3583. ],
  3584. "time": "2023-11-12T21:59:55+00:00"
  3585. },
  3586. {
  3587. "name": "pimple/pimple",
  3588. "version": "v3.5.0",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/silexphp/Pimple.git",
  3592. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3597. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3598. "shasum": ""
  3599. },
  3600. "require": {
  3601. "php": ">=7.2.5",
  3602. "psr/container": "^1.1 || ^2.0"
  3603. },
  3604. "require-dev": {
  3605. "symfony/phpunit-bridge": "^5.4@dev"
  3606. },
  3607. "type": "library",
  3608. "extra": {
  3609. "branch-alias": {
  3610. "dev-master": "3.4.x-dev"
  3611. }
  3612. },
  3613. "autoload": {
  3614. "psr-0": {
  3615. "Pimple": "src/"
  3616. }
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Fabien Potencier",
  3625. "email": "fabien@symfony.com"
  3626. }
  3627. ],
  3628. "description": "Pimple, a simple Dependency Injection Container",
  3629. "homepage": "https://pimple.symfony.com",
  3630. "keywords": [
  3631. "container",
  3632. "dependency injection"
  3633. ],
  3634. "support": {
  3635. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3636. },
  3637. "time": "2021-10-28T11:13:42+00:00"
  3638. },
  3639. {
  3640. "name": "predis/predis",
  3641. "version": "v1.1.10",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://github.com/predis/predis.git",
  3645. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3650. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3651. "shasum": "",
  3652. "mirrors": [
  3653. {
  3654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3655. "preferred": true
  3656. }
  3657. ]
  3658. },
  3659. "require": {
  3660. "php": ">=5.3.9"
  3661. },
  3662. "require-dev": {
  3663. "phpunit/phpunit": "~4.8"
  3664. },
  3665. "suggest": {
  3666. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3667. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3668. },
  3669. "type": "library",
  3670. "autoload": {
  3671. "psr-4": {
  3672. "Predis\\": "src/"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Daniele Alessandri",
  3682. "email": "suppakilla@gmail.com",
  3683. "homepage": "http://clorophilla.net",
  3684. "role": "Creator & Maintainer"
  3685. },
  3686. {
  3687. "name": "Till Krüss",
  3688. "homepage": "https://till.im",
  3689. "role": "Maintainer"
  3690. }
  3691. ],
  3692. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3693. "homepage": "http://github.com/predis/predis",
  3694. "keywords": [
  3695. "nosql",
  3696. "predis",
  3697. "redis"
  3698. ],
  3699. "support": {
  3700. "issues": "https://github.com/predis/predis/issues",
  3701. "source": "https://github.com/predis/predis/tree/v1.1.10"
  3702. },
  3703. "funding": [
  3704. {
  3705. "url": "https://github.com/sponsors/tillkruss",
  3706. "type": "github"
  3707. }
  3708. ],
  3709. "time": "2022-01-05T17:46:08+00:00"
  3710. },
  3711. {
  3712. "name": "psr/cache",
  3713. "version": "1.0.1",
  3714. "source": {
  3715. "type": "git",
  3716. "url": "https://github.com/php-fig/cache.git",
  3717. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3718. },
  3719. "dist": {
  3720. "type": "zip",
  3721. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3722. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3723. "shasum": ""
  3724. },
  3725. "require": {
  3726. "php": ">=5.3.0"
  3727. },
  3728. "type": "library",
  3729. "extra": {
  3730. "branch-alias": {
  3731. "dev-master": "1.0.x-dev"
  3732. }
  3733. },
  3734. "autoload": {
  3735. "psr-4": {
  3736. "Psr\\Cache\\": "src/"
  3737. }
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "authors": [
  3744. {
  3745. "name": "PHP-FIG",
  3746. "homepage": "http://www.php-fig.org/"
  3747. }
  3748. ],
  3749. "description": "Common interface for caching libraries",
  3750. "keywords": [
  3751. "cache",
  3752. "psr",
  3753. "psr-6"
  3754. ],
  3755. "support": {
  3756. "source": "https://github.com/php-fig/cache/tree/master"
  3757. },
  3758. "time": "2016-08-06T20:24:11+00:00"
  3759. },
  3760. {
  3761. "name": "psr/clock",
  3762. "version": "1.0.0",
  3763. "source": {
  3764. "type": "git",
  3765. "url": "https://github.com/php-fig/clock.git",
  3766. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3767. },
  3768. "dist": {
  3769. "type": "zip",
  3770. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3771. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3772. "shasum": "",
  3773. "mirrors": [
  3774. {
  3775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3776. "preferred": true
  3777. }
  3778. ]
  3779. },
  3780. "require": {
  3781. "php": "^7.0 || ^8.0"
  3782. },
  3783. "type": "library",
  3784. "autoload": {
  3785. "psr-4": {
  3786. "Psr\\Clock\\": "src/"
  3787. }
  3788. },
  3789. "notification-url": "https://packagist.org/downloads/",
  3790. "license": [
  3791. "MIT"
  3792. ],
  3793. "authors": [
  3794. {
  3795. "name": "PHP-FIG",
  3796. "homepage": "https://www.php-fig.org/"
  3797. }
  3798. ],
  3799. "description": "Common interface for reading the clock.",
  3800. "homepage": "https://github.com/php-fig/clock",
  3801. "keywords": [
  3802. "clock",
  3803. "now",
  3804. "psr",
  3805. "psr-20",
  3806. "time"
  3807. ],
  3808. "support": {
  3809. "issues": "https://github.com/php-fig/clock/issues",
  3810. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3811. },
  3812. "time": "2022-11-25T14:36:26+00:00"
  3813. },
  3814. {
  3815. "name": "psr/container",
  3816. "version": "1.1.2",
  3817. "source": {
  3818. "type": "git",
  3819. "url": "https://github.com/php-fig/container.git",
  3820. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3821. },
  3822. "dist": {
  3823. "type": "zip",
  3824. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3825. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3826. "shasum": "",
  3827. "mirrors": [
  3828. {
  3829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3830. "preferred": true
  3831. }
  3832. ]
  3833. },
  3834. "require": {
  3835. "php": ">=7.4.0"
  3836. },
  3837. "type": "library",
  3838. "autoload": {
  3839. "psr-4": {
  3840. "Psr\\Container\\": "src/"
  3841. }
  3842. },
  3843. "notification-url": "https://packagist.org/downloads/",
  3844. "license": [
  3845. "MIT"
  3846. ],
  3847. "authors": [
  3848. {
  3849. "name": "PHP-FIG",
  3850. "homepage": "https://www.php-fig.org/"
  3851. }
  3852. ],
  3853. "description": "Common Container Interface (PHP FIG PSR-11)",
  3854. "homepage": "https://github.com/php-fig/container",
  3855. "keywords": [
  3856. "PSR-11",
  3857. "container",
  3858. "container-interface",
  3859. "container-interop",
  3860. "psr"
  3861. ],
  3862. "support": {
  3863. "issues": "https://github.com/php-fig/container/issues",
  3864. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3865. },
  3866. "time": "2021-11-05T16:50:12+00:00"
  3867. },
  3868. {
  3869. "name": "psr/event-dispatcher",
  3870. "version": "1.0.0",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/php-fig/event-dispatcher.git",
  3874. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3879. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3880. "shasum": "",
  3881. "mirrors": [
  3882. {
  3883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3884. "preferred": true
  3885. }
  3886. ]
  3887. },
  3888. "require": {
  3889. "php": ">=7.2.0"
  3890. },
  3891. "type": "library",
  3892. "extra": {
  3893. "branch-alias": {
  3894. "dev-master": "1.0.x-dev"
  3895. }
  3896. },
  3897. "autoload": {
  3898. "psr-4": {
  3899. "Psr\\EventDispatcher\\": "src/"
  3900. }
  3901. },
  3902. "notification-url": "https://packagist.org/downloads/",
  3903. "license": [
  3904. "MIT"
  3905. ],
  3906. "authors": [
  3907. {
  3908. "name": "PHP-FIG",
  3909. "homepage": "http://www.php-fig.org/"
  3910. }
  3911. ],
  3912. "description": "Standard interfaces for event handling.",
  3913. "keywords": [
  3914. "events",
  3915. "psr",
  3916. "psr-14"
  3917. ],
  3918. "support": {
  3919. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3920. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3921. },
  3922. "time": "2019-01-08T18:20:26+00:00"
  3923. },
  3924. {
  3925. "name": "psr/http-client",
  3926. "version": "1.0.3",
  3927. "source": {
  3928. "type": "git",
  3929. "url": "https://github.com/php-fig/http-client.git",
  3930. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3931. },
  3932. "dist": {
  3933. "type": "zip",
  3934. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3935. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3936. "shasum": "",
  3937. "mirrors": [
  3938. {
  3939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3940. "preferred": true
  3941. }
  3942. ]
  3943. },
  3944. "require": {
  3945. "php": "^7.0 || ^8.0",
  3946. "psr/http-message": "^1.0 || ^2.0"
  3947. },
  3948. "type": "library",
  3949. "extra": {
  3950. "branch-alias": {
  3951. "dev-master": "1.0.x-dev"
  3952. }
  3953. },
  3954. "autoload": {
  3955. "psr-4": {
  3956. "Psr\\Http\\Client\\": "src/"
  3957. }
  3958. },
  3959. "notification-url": "https://packagist.org/downloads/",
  3960. "license": [
  3961. "MIT"
  3962. ],
  3963. "authors": [
  3964. {
  3965. "name": "PHP-FIG",
  3966. "homepage": "https://www.php-fig.org/"
  3967. }
  3968. ],
  3969. "description": "Common interface for HTTP clients",
  3970. "homepage": "https://github.com/php-fig/http-client",
  3971. "keywords": [
  3972. "http",
  3973. "http-client",
  3974. "psr",
  3975. "psr-18"
  3976. ],
  3977. "support": {
  3978. "source": "https://github.com/php-fig/http-client"
  3979. },
  3980. "time": "2023-09-23T14:17:50+00:00"
  3981. },
  3982. {
  3983. "name": "psr/http-factory",
  3984. "version": "1.0.2",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://github.com/php-fig/http-factory.git",
  3988. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3993. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3994. "shasum": "",
  3995. "mirrors": [
  3996. {
  3997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3998. "preferred": true
  3999. }
  4000. ]
  4001. },
  4002. "require": {
  4003. "php": ">=7.0.0",
  4004. "psr/http-message": "^1.0 || ^2.0"
  4005. },
  4006. "type": "library",
  4007. "extra": {
  4008. "branch-alias": {
  4009. "dev-master": "1.0.x-dev"
  4010. }
  4011. },
  4012. "autoload": {
  4013. "psr-4": {
  4014. "Psr\\Http\\Message\\": "src/"
  4015. }
  4016. },
  4017. "notification-url": "https://packagist.org/downloads/",
  4018. "license": [
  4019. "MIT"
  4020. ],
  4021. "authors": [
  4022. {
  4023. "name": "PHP-FIG",
  4024. "homepage": "https://www.php-fig.org/"
  4025. }
  4026. ],
  4027. "description": "Common interfaces for PSR-7 HTTP message factories",
  4028. "keywords": [
  4029. "factory",
  4030. "http",
  4031. "message",
  4032. "psr",
  4033. "psr-17",
  4034. "psr-7",
  4035. "request",
  4036. "response"
  4037. ],
  4038. "support": {
  4039. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4040. },
  4041. "time": "2023-04-10T20:10:41+00:00"
  4042. },
  4043. {
  4044. "name": "psr/http-message",
  4045. "version": "1.1",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/php-fig/http-message.git",
  4049. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4054. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4055. "shasum": "",
  4056. "mirrors": [
  4057. {
  4058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4059. "preferred": true
  4060. }
  4061. ]
  4062. },
  4063. "require": {
  4064. "php": "^7.2 || ^8.0"
  4065. },
  4066. "type": "library",
  4067. "extra": {
  4068. "branch-alias": {
  4069. "dev-master": "1.1.x-dev"
  4070. }
  4071. },
  4072. "autoload": {
  4073. "psr-4": {
  4074. "Psr\\Http\\Message\\": "src/"
  4075. }
  4076. },
  4077. "notification-url": "https://packagist.org/downloads/",
  4078. "license": [
  4079. "MIT"
  4080. ],
  4081. "authors": [
  4082. {
  4083. "name": "PHP-FIG",
  4084. "homepage": "http://www.php-fig.org/"
  4085. }
  4086. ],
  4087. "description": "Common interface for HTTP messages",
  4088. "homepage": "https://github.com/php-fig/http-message",
  4089. "keywords": [
  4090. "http",
  4091. "http-message",
  4092. "psr",
  4093. "psr-7",
  4094. "request",
  4095. "response"
  4096. ],
  4097. "support": {
  4098. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4099. },
  4100. "time": "2023-04-04T09:50:52+00:00"
  4101. },
  4102. {
  4103. "name": "psr/log",
  4104. "version": "1.1.4",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://github.com/php-fig/log.git",
  4108. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4113. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4114. "shasum": "",
  4115. "mirrors": [
  4116. {
  4117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4118. "preferred": true
  4119. }
  4120. ]
  4121. },
  4122. "require": {
  4123. "php": ">=5.3.0"
  4124. },
  4125. "type": "library",
  4126. "extra": {
  4127. "branch-alias": {
  4128. "dev-master": "1.1.x-dev"
  4129. }
  4130. },
  4131. "autoload": {
  4132. "psr-4": {
  4133. "Psr\\Log\\": "Psr/Log/"
  4134. }
  4135. },
  4136. "notification-url": "https://packagist.org/downloads/",
  4137. "license": [
  4138. "MIT"
  4139. ],
  4140. "authors": [
  4141. {
  4142. "name": "PHP-FIG",
  4143. "homepage": "https://www.php-fig.org/"
  4144. }
  4145. ],
  4146. "description": "Common interface for logging libraries",
  4147. "homepage": "https://github.com/php-fig/log",
  4148. "keywords": [
  4149. "log",
  4150. "psr",
  4151. "psr-3"
  4152. ],
  4153. "support": {
  4154. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4155. },
  4156. "time": "2021-05-03T11:20:27+00:00"
  4157. },
  4158. {
  4159. "name": "psr/simple-cache",
  4160. "version": "1.0.1",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://github.com/php-fig/simple-cache.git",
  4164. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4165. },
  4166. "dist": {
  4167. "type": "zip",
  4168. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4169. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4170. "shasum": "",
  4171. "mirrors": [
  4172. {
  4173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4174. "preferred": true
  4175. }
  4176. ]
  4177. },
  4178. "require": {
  4179. "php": ">=5.3.0"
  4180. },
  4181. "type": "library",
  4182. "extra": {
  4183. "branch-alias": {
  4184. "dev-master": "1.0.x-dev"
  4185. }
  4186. },
  4187. "autoload": {
  4188. "psr-4": {
  4189. "Psr\\SimpleCache\\": "src/"
  4190. }
  4191. },
  4192. "notification-url": "https://packagist.org/downloads/",
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "PHP-FIG",
  4199. "homepage": "http://www.php-fig.org/"
  4200. }
  4201. ],
  4202. "description": "Common interfaces for simple caching",
  4203. "keywords": [
  4204. "cache",
  4205. "caching",
  4206. "psr",
  4207. "psr-16",
  4208. "simple-cache"
  4209. ],
  4210. "support": {
  4211. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4212. },
  4213. "time": "2017-10-23T01:57:42+00:00"
  4214. },
  4215. {
  4216. "name": "psy/psysh",
  4217. "version": "v0.12.0",
  4218. "source": {
  4219. "type": "git",
  4220. "url": "https://github.com/bobthecow/psysh.git",
  4221. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  4222. },
  4223. "dist": {
  4224. "type": "zip",
  4225. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4226. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4227. "shasum": "",
  4228. "mirrors": [
  4229. {
  4230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4231. "preferred": true
  4232. }
  4233. ]
  4234. },
  4235. "require": {
  4236. "ext-json": "*",
  4237. "ext-tokenizer": "*",
  4238. "nikic/php-parser": "^5.0 || ^4.0",
  4239. "php": "^8.0 || ^7.4",
  4240. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4241. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4242. },
  4243. "conflict": {
  4244. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4245. },
  4246. "require-dev": {
  4247. "bamarni/composer-bin-plugin": "^1.2"
  4248. },
  4249. "suggest": {
  4250. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4251. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4252. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4253. },
  4254. "bin": [
  4255. "bin/psysh"
  4256. ],
  4257. "type": "library",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-main": "0.12.x-dev"
  4261. },
  4262. "bamarni-bin": {
  4263. "bin-links": false,
  4264. "forward-command": false
  4265. }
  4266. },
  4267. "autoload": {
  4268. "files": [
  4269. "src/functions.php"
  4270. ],
  4271. "psr-4": {
  4272. "Psy\\": "src/"
  4273. }
  4274. },
  4275. "notification-url": "https://packagist.org/downloads/",
  4276. "license": [
  4277. "MIT"
  4278. ],
  4279. "authors": [
  4280. {
  4281. "name": "Justin Hileman",
  4282. "email": "justin@justinhileman.info",
  4283. "homepage": "http://justinhileman.com"
  4284. }
  4285. ],
  4286. "description": "An interactive shell for modern PHP.",
  4287. "homepage": "http://psysh.org",
  4288. "keywords": [
  4289. "REPL",
  4290. "console",
  4291. "interactive",
  4292. "shell"
  4293. ],
  4294. "support": {
  4295. "issues": "https://github.com/bobthecow/psysh/issues",
  4296. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  4297. },
  4298. "time": "2023-12-20T15:28:09+00:00"
  4299. },
  4300. {
  4301. "name": "ralouphie/getallheaders",
  4302. "version": "3.0.3",
  4303. "source": {
  4304. "type": "git",
  4305. "url": "https://github.com/ralouphie/getallheaders.git",
  4306. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4307. },
  4308. "dist": {
  4309. "type": "zip",
  4310. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4311. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4312. "shasum": "",
  4313. "mirrors": [
  4314. {
  4315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4316. "preferred": true
  4317. }
  4318. ]
  4319. },
  4320. "require": {
  4321. "php": ">=5.6"
  4322. },
  4323. "require-dev": {
  4324. "php-coveralls/php-coveralls": "^2.1",
  4325. "phpunit/phpunit": "^5 || ^6.5"
  4326. },
  4327. "type": "library",
  4328. "autoload": {
  4329. "files": [
  4330. "src/getallheaders.php"
  4331. ]
  4332. },
  4333. "notification-url": "https://packagist.org/downloads/",
  4334. "license": [
  4335. "MIT"
  4336. ],
  4337. "authors": [
  4338. {
  4339. "name": "Ralph Khattar",
  4340. "email": "ralph.khattar@gmail.com"
  4341. }
  4342. ],
  4343. "description": "A polyfill for getallheaders.",
  4344. "support": {
  4345. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4346. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4347. },
  4348. "time": "2019-03-08T08:55:37+00:00"
  4349. },
  4350. {
  4351. "name": "ramsey/collection",
  4352. "version": "1.3.0",
  4353. "source": {
  4354. "type": "git",
  4355. "url": "https://github.com/ramsey/collection.git",
  4356. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4357. },
  4358. "dist": {
  4359. "type": "zip",
  4360. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4361. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4362. "shasum": "",
  4363. "mirrors": [
  4364. {
  4365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4366. "preferred": true
  4367. }
  4368. ]
  4369. },
  4370. "require": {
  4371. "php": "^7.4 || ^8.0",
  4372. "symfony/polyfill-php81": "^1.23"
  4373. },
  4374. "require-dev": {
  4375. "captainhook/plugin-composer": "^5.3",
  4376. "ergebnis/composer-normalize": "^2.28.3",
  4377. "fakerphp/faker": "^1.21",
  4378. "hamcrest/hamcrest-php": "^2.0",
  4379. "jangregor/phpstan-prophecy": "^1.0",
  4380. "mockery/mockery": "^1.5",
  4381. "php-parallel-lint/php-console-highlighter": "^1.0",
  4382. "php-parallel-lint/php-parallel-lint": "^1.3",
  4383. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4384. "phpspec/prophecy-phpunit": "^2.0",
  4385. "phpstan/extension-installer": "^1.2",
  4386. "phpstan/phpstan": "^1.9",
  4387. "phpstan/phpstan-mockery": "^1.1",
  4388. "phpstan/phpstan-phpunit": "^1.3",
  4389. "phpunit/phpunit": "^9.5",
  4390. "psalm/plugin-mockery": "^1.1",
  4391. "psalm/plugin-phpunit": "^0.18.4",
  4392. "ramsey/coding-standard": "^2.0.3",
  4393. "ramsey/conventional-commits": "^1.3",
  4394. "vimeo/psalm": "^5.4"
  4395. },
  4396. "type": "library",
  4397. "extra": {
  4398. "captainhook": {
  4399. "force-install": true
  4400. },
  4401. "ramsey/conventional-commits": {
  4402. "configFile": "conventional-commits.json"
  4403. }
  4404. },
  4405. "autoload": {
  4406. "psr-4": {
  4407. "Ramsey\\Collection\\": "src/"
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "Ben Ramsey",
  4417. "email": "ben@benramsey.com",
  4418. "homepage": "https://benramsey.com"
  4419. }
  4420. ],
  4421. "description": "A PHP library for representing and manipulating collections.",
  4422. "keywords": [
  4423. "array",
  4424. "collection",
  4425. "hash",
  4426. "map",
  4427. "queue",
  4428. "set"
  4429. ],
  4430. "support": {
  4431. "issues": "https://github.com/ramsey/collection/issues",
  4432. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4433. },
  4434. "funding": [
  4435. {
  4436. "url": "https://github.com/ramsey",
  4437. "type": "github"
  4438. },
  4439. {
  4440. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4441. "type": "tidelift"
  4442. }
  4443. ],
  4444. "time": "2022-12-27T19:12:24+00:00"
  4445. },
  4446. {
  4447. "name": "ramsey/uuid",
  4448. "version": "4.2.3",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://github.com/ramsey/uuid.git",
  4452. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4453. },
  4454. "dist": {
  4455. "type": "zip",
  4456. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4457. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4458. "shasum": "",
  4459. "mirrors": [
  4460. {
  4461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4462. "preferred": true
  4463. }
  4464. ]
  4465. },
  4466. "require": {
  4467. "brick/math": "^0.8 || ^0.9",
  4468. "ext-json": "*",
  4469. "php": "^7.2 || ^8.0",
  4470. "ramsey/collection": "^1.0",
  4471. "symfony/polyfill-ctype": "^1.8",
  4472. "symfony/polyfill-php80": "^1.14"
  4473. },
  4474. "replace": {
  4475. "rhumsaa/uuid": "self.version"
  4476. },
  4477. "require-dev": {
  4478. "captainhook/captainhook": "^5.10",
  4479. "captainhook/plugin-composer": "^5.3",
  4480. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4481. "doctrine/annotations": "^1.8",
  4482. "ergebnis/composer-normalize": "^2.15",
  4483. "mockery/mockery": "^1.3",
  4484. "moontoast/math": "^1.1",
  4485. "paragonie/random-lib": "^2",
  4486. "php-mock/php-mock": "^2.2",
  4487. "php-mock/php-mock-mockery": "^1.3",
  4488. "php-parallel-lint/php-parallel-lint": "^1.1",
  4489. "phpbench/phpbench": "^1.0",
  4490. "phpstan/extension-installer": "^1.0",
  4491. "phpstan/phpstan": "^0.12",
  4492. "phpstan/phpstan-mockery": "^0.12",
  4493. "phpstan/phpstan-phpunit": "^0.12",
  4494. "phpunit/phpunit": "^8.5 || ^9",
  4495. "slevomat/coding-standard": "^7.0",
  4496. "squizlabs/php_codesniffer": "^3.5",
  4497. "vimeo/psalm": "^4.9"
  4498. },
  4499. "suggest": {
  4500. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4501. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4502. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4503. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4504. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4505. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4506. },
  4507. "type": "library",
  4508. "extra": {
  4509. "branch-alias": {
  4510. "dev-main": "4.x-dev"
  4511. },
  4512. "captainhook": {
  4513. "force-install": true
  4514. }
  4515. },
  4516. "autoload": {
  4517. "files": [
  4518. "src/functions.php"
  4519. ],
  4520. "psr-4": {
  4521. "Ramsey\\Uuid\\": "src/"
  4522. }
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4529. "keywords": [
  4530. "guid",
  4531. "identifier",
  4532. "uuid"
  4533. ],
  4534. "support": {
  4535. "issues": "https://github.com/ramsey/uuid/issues",
  4536. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4537. },
  4538. "funding": [
  4539. {
  4540. "url": "https://github.com/ramsey",
  4541. "type": "github"
  4542. },
  4543. {
  4544. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4545. "type": "tidelift"
  4546. }
  4547. ],
  4548. "time": "2021-09-25T23:10:38+00:00"
  4549. },
  4550. {
  4551. "name": "swiftmailer/swiftmailer",
  4552. "version": "v6.3.0",
  4553. "source": {
  4554. "type": "git",
  4555. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4556. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4557. },
  4558. "dist": {
  4559. "type": "zip",
  4560. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4561. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4562. "shasum": ""
  4563. },
  4564. "require": {
  4565. "egulias/email-validator": "^2.0|^3.1",
  4566. "php": ">=7.0.0",
  4567. "symfony/polyfill-iconv": "^1.0",
  4568. "symfony/polyfill-intl-idn": "^1.10",
  4569. "symfony/polyfill-mbstring": "^1.0"
  4570. },
  4571. "require-dev": {
  4572. "mockery/mockery": "^1.0",
  4573. "symfony/phpunit-bridge": "^4.4|^5.4"
  4574. },
  4575. "suggest": {
  4576. "ext-intl": "Needed to support internationalized email addresses"
  4577. },
  4578. "type": "library",
  4579. "extra": {
  4580. "branch-alias": {
  4581. "dev-master": "6.2-dev"
  4582. }
  4583. },
  4584. "autoload": {
  4585. "files": [
  4586. "lib/swift_required.php"
  4587. ]
  4588. },
  4589. "notification-url": "https://packagist.org/downloads/",
  4590. "license": [
  4591. "MIT"
  4592. ],
  4593. "authors": [
  4594. {
  4595. "name": "Chris Corbyn"
  4596. },
  4597. {
  4598. "name": "Fabien Potencier",
  4599. "email": "fabien@symfony.com"
  4600. }
  4601. ],
  4602. "description": "Swiftmailer, free feature-rich PHP mailer",
  4603. "homepage": "https://swiftmailer.symfony.com",
  4604. "keywords": [
  4605. "email",
  4606. "mail",
  4607. "mailer"
  4608. ],
  4609. "support": {
  4610. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4611. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4612. },
  4613. "funding": [
  4614. {
  4615. "url": "https://github.com/fabpot",
  4616. "type": "github"
  4617. },
  4618. {
  4619. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4620. "type": "tidelift"
  4621. }
  4622. ],
  4623. "abandoned": "symfony/mailer",
  4624. "time": "2021-10-18T15:26:12+00:00"
  4625. },
  4626. {
  4627. "name": "symfony/cache",
  4628. "version": "v5.4.42",
  4629. "source": {
  4630. "type": "git",
  4631. "url": "https://github.com/symfony/cache.git",
  4632. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e"
  4633. },
  4634. "dist": {
  4635. "type": "zip",
  4636. "url": "https://api.github.com/repos/symfony/cache/zipball/6f5f750692bd5a212e01a4f1945fd856bceef89e",
  4637. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e",
  4638. "shasum": ""
  4639. },
  4640. "require": {
  4641. "php": ">=7.2.5",
  4642. "psr/cache": "^1.0|^2.0",
  4643. "psr/log": "^1.1|^2|^3",
  4644. "symfony/cache-contracts": "^1.1.7|^2",
  4645. "symfony/deprecation-contracts": "^2.1|^3",
  4646. "symfony/polyfill-php73": "^1.9",
  4647. "symfony/polyfill-php80": "^1.16",
  4648. "symfony/service-contracts": "^1.1|^2|^3",
  4649. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4650. },
  4651. "conflict": {
  4652. "doctrine/dbal": "<2.13.1",
  4653. "symfony/dependency-injection": "<4.4",
  4654. "symfony/http-kernel": "<4.4",
  4655. "symfony/var-dumper": "<4.4"
  4656. },
  4657. "provide": {
  4658. "psr/cache-implementation": "1.0|2.0",
  4659. "psr/simple-cache-implementation": "1.0|2.0",
  4660. "symfony/cache-implementation": "1.0|2.0"
  4661. },
  4662. "require-dev": {
  4663. "cache/integration-tests": "dev-master",
  4664. "doctrine/cache": "^1.6|^2.0",
  4665. "doctrine/dbal": "^2.13.1|^3|^4",
  4666. "predis/predis": "^1.1|^2.0",
  4667. "psr/simple-cache": "^1.0|^2.0",
  4668. "symfony/config": "^4.4|^5.0|^6.0",
  4669. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4670. "symfony/filesystem": "^4.4|^5.0|^6.0",
  4671. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4672. "symfony/messenger": "^4.4|^5.0|^6.0",
  4673. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4674. },
  4675. "type": "library",
  4676. "autoload": {
  4677. "psr-4": {
  4678. "Symfony\\Component\\Cache\\": ""
  4679. },
  4680. "exclude-from-classmap": [
  4681. "/Tests/"
  4682. ]
  4683. },
  4684. "notification-url": "https://packagist.org/downloads/",
  4685. "license": [
  4686. "MIT"
  4687. ],
  4688. "authors": [
  4689. {
  4690. "name": "Nicolas Grekas",
  4691. "email": "p@tchwork.com"
  4692. },
  4693. {
  4694. "name": "Symfony Community",
  4695. "homepage": "https://symfony.com/contributors"
  4696. }
  4697. ],
  4698. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4699. "homepage": "https://symfony.com",
  4700. "keywords": [
  4701. "caching",
  4702. "psr6"
  4703. ],
  4704. "support": {
  4705. "source": "https://github.com/symfony/cache/tree/v5.4.42"
  4706. },
  4707. "funding": [
  4708. {
  4709. "url": "https://symfony.com/sponsor",
  4710. "type": "custom"
  4711. },
  4712. {
  4713. "url": "https://github.com/fabpot",
  4714. "type": "github"
  4715. },
  4716. {
  4717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4718. "type": "tidelift"
  4719. }
  4720. ],
  4721. "time": "2024-07-10T06:02:18+00:00"
  4722. },
  4723. {
  4724. "name": "symfony/cache-contracts",
  4725. "version": "v2.5.3",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://github.com/symfony/cache-contracts.git",
  4729. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/fee6db04d913094e2fb55ff8e7db5685a8134463",
  4734. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463",
  4735. "shasum": ""
  4736. },
  4737. "require": {
  4738. "php": ">=7.2.5",
  4739. "psr/cache": "^1.0|^2.0|^3.0"
  4740. },
  4741. "suggest": {
  4742. "symfony/cache-implementation": ""
  4743. },
  4744. "type": "library",
  4745. "extra": {
  4746. "branch-alias": {
  4747. "dev-main": "2.5-dev"
  4748. },
  4749. "thanks": {
  4750. "name": "symfony/contracts",
  4751. "url": "https://github.com/symfony/contracts"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "psr-4": {
  4756. "Symfony\\Contracts\\Cache\\": ""
  4757. }
  4758. },
  4759. "notification-url": "https://packagist.org/downloads/",
  4760. "license": [
  4761. "MIT"
  4762. ],
  4763. "authors": [
  4764. {
  4765. "name": "Nicolas Grekas",
  4766. "email": "p@tchwork.com"
  4767. },
  4768. {
  4769. "name": "Symfony Community",
  4770. "homepage": "https://symfony.com/contributors"
  4771. }
  4772. ],
  4773. "description": "Generic abstractions related to caching",
  4774. "homepage": "https://symfony.com",
  4775. "keywords": [
  4776. "abstractions",
  4777. "contracts",
  4778. "decoupling",
  4779. "interfaces",
  4780. "interoperability",
  4781. "standards"
  4782. ],
  4783. "support": {
  4784. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.3"
  4785. },
  4786. "funding": [
  4787. {
  4788. "url": "https://symfony.com/sponsor",
  4789. "type": "custom"
  4790. },
  4791. {
  4792. "url": "https://github.com/fabpot",
  4793. "type": "github"
  4794. },
  4795. {
  4796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4797. "type": "tidelift"
  4798. }
  4799. ],
  4800. "time": "2024-01-23T13:51:25+00:00"
  4801. },
  4802. {
  4803. "name": "symfony/console",
  4804. "version": "v5.4.34",
  4805. "source": {
  4806. "type": "git",
  4807. "url": "https://github.com/symfony/console.git",
  4808. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c"
  4809. },
  4810. "dist": {
  4811. "type": "zip",
  4812. "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c",
  4813. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c",
  4814. "shasum": "",
  4815. "mirrors": [
  4816. {
  4817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4818. "preferred": true
  4819. }
  4820. ]
  4821. },
  4822. "require": {
  4823. "php": ">=7.2.5",
  4824. "symfony/deprecation-contracts": "^2.1|^3",
  4825. "symfony/polyfill-mbstring": "~1.0",
  4826. "symfony/polyfill-php73": "^1.9",
  4827. "symfony/polyfill-php80": "^1.16",
  4828. "symfony/service-contracts": "^1.1|^2|^3",
  4829. "symfony/string": "^5.1|^6.0"
  4830. },
  4831. "conflict": {
  4832. "psr/log": ">=3",
  4833. "symfony/dependency-injection": "<4.4",
  4834. "symfony/dotenv": "<5.1",
  4835. "symfony/event-dispatcher": "<4.4",
  4836. "symfony/lock": "<4.4",
  4837. "symfony/process": "<4.4"
  4838. },
  4839. "provide": {
  4840. "psr/log-implementation": "1.0|2.0"
  4841. },
  4842. "require-dev": {
  4843. "psr/log": "^1|^2",
  4844. "symfony/config": "^4.4|^5.0|^6.0",
  4845. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4846. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4847. "symfony/lock": "^4.4|^5.0|^6.0",
  4848. "symfony/process": "^4.4|^5.0|^6.0",
  4849. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4850. },
  4851. "suggest": {
  4852. "psr/log": "For using the console logger",
  4853. "symfony/event-dispatcher": "",
  4854. "symfony/lock": "",
  4855. "symfony/process": ""
  4856. },
  4857. "type": "library",
  4858. "autoload": {
  4859. "psr-4": {
  4860. "Symfony\\Component\\Console\\": ""
  4861. },
  4862. "exclude-from-classmap": [
  4863. "/Tests/"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "MIT"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Fabien Potencier",
  4873. "email": "fabien@symfony.com"
  4874. },
  4875. {
  4876. "name": "Symfony Community",
  4877. "homepage": "https://symfony.com/contributors"
  4878. }
  4879. ],
  4880. "description": "Eases the creation of beautiful and testable command line interfaces",
  4881. "homepage": "https://symfony.com",
  4882. "keywords": [
  4883. "cli",
  4884. "command-line",
  4885. "console",
  4886. "terminal"
  4887. ],
  4888. "support": {
  4889. "source": "https://github.com/symfony/console/tree/v5.4.34"
  4890. },
  4891. "funding": [
  4892. {
  4893. "url": "https://symfony.com/sponsor",
  4894. "type": "custom"
  4895. },
  4896. {
  4897. "url": "https://github.com/fabpot",
  4898. "type": "github"
  4899. },
  4900. {
  4901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4902. "type": "tidelift"
  4903. }
  4904. ],
  4905. "time": "2023-12-08T13:33:03+00:00"
  4906. },
  4907. {
  4908. "name": "symfony/css-selector",
  4909. "version": "v5.4.26",
  4910. "source": {
  4911. "type": "git",
  4912. "url": "https://github.com/symfony/css-selector.git",
  4913. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  4914. },
  4915. "dist": {
  4916. "type": "zip",
  4917. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  4918. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  4919. "shasum": "",
  4920. "mirrors": [
  4921. {
  4922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4923. "preferred": true
  4924. }
  4925. ]
  4926. },
  4927. "require": {
  4928. "php": ">=7.2.5",
  4929. "symfony/polyfill-php80": "^1.16"
  4930. },
  4931. "type": "library",
  4932. "autoload": {
  4933. "psr-4": {
  4934. "Symfony\\Component\\CssSelector\\": ""
  4935. },
  4936. "exclude-from-classmap": [
  4937. "/Tests/"
  4938. ]
  4939. },
  4940. "notification-url": "https://packagist.org/downloads/",
  4941. "license": [
  4942. "MIT"
  4943. ],
  4944. "authors": [
  4945. {
  4946. "name": "Fabien Potencier",
  4947. "email": "fabien@symfony.com"
  4948. },
  4949. {
  4950. "name": "Jean-François Simon",
  4951. "email": "jeanfrancois.simon@sensiolabs.com"
  4952. },
  4953. {
  4954. "name": "Symfony Community",
  4955. "homepage": "https://symfony.com/contributors"
  4956. }
  4957. ],
  4958. "description": "Converts CSS selectors to XPath expressions",
  4959. "homepage": "https://symfony.com",
  4960. "support": {
  4961. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  4962. },
  4963. "funding": [
  4964. {
  4965. "url": "https://symfony.com/sponsor",
  4966. "type": "custom"
  4967. },
  4968. {
  4969. "url": "https://github.com/fabpot",
  4970. "type": "github"
  4971. },
  4972. {
  4973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4974. "type": "tidelift"
  4975. }
  4976. ],
  4977. "time": "2023-07-07T06:10:25+00:00"
  4978. },
  4979. {
  4980. "name": "symfony/deprecation-contracts",
  4981. "version": "v2.5.2",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://github.com/symfony/deprecation-contracts.git",
  4985. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4990. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4991. "shasum": "",
  4992. "mirrors": [
  4993. {
  4994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4995. "preferred": true
  4996. }
  4997. ]
  4998. },
  4999. "require": {
  5000. "php": ">=7.1"
  5001. },
  5002. "type": "library",
  5003. "extra": {
  5004. "branch-alias": {
  5005. "dev-main": "2.5-dev"
  5006. },
  5007. "thanks": {
  5008. "name": "symfony/contracts",
  5009. "url": "https://github.com/symfony/contracts"
  5010. }
  5011. },
  5012. "autoload": {
  5013. "files": [
  5014. "function.php"
  5015. ]
  5016. },
  5017. "notification-url": "https://packagist.org/downloads/",
  5018. "license": [
  5019. "MIT"
  5020. ],
  5021. "authors": [
  5022. {
  5023. "name": "Nicolas Grekas",
  5024. "email": "p@tchwork.com"
  5025. },
  5026. {
  5027. "name": "Symfony Community",
  5028. "homepage": "https://symfony.com/contributors"
  5029. }
  5030. ],
  5031. "description": "A generic function and convention to trigger deprecation notices",
  5032. "homepage": "https://symfony.com",
  5033. "support": {
  5034. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5035. },
  5036. "funding": [
  5037. {
  5038. "url": "https://symfony.com/sponsor",
  5039. "type": "custom"
  5040. },
  5041. {
  5042. "url": "https://github.com/fabpot",
  5043. "type": "github"
  5044. },
  5045. {
  5046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5047. "type": "tidelift"
  5048. }
  5049. ],
  5050. "time": "2022-01-02T09:53:40+00:00"
  5051. },
  5052. {
  5053. "name": "symfony/error-handler",
  5054. "version": "v5.4.29",
  5055. "source": {
  5056. "type": "git",
  5057. "url": "https://github.com/symfony/error-handler.git",
  5058. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  5059. },
  5060. "dist": {
  5061. "type": "zip",
  5062. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5063. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5064. "shasum": "",
  5065. "mirrors": [
  5066. {
  5067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5068. "preferred": true
  5069. }
  5070. ]
  5071. },
  5072. "require": {
  5073. "php": ">=7.2.5",
  5074. "psr/log": "^1|^2|^3",
  5075. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5076. },
  5077. "require-dev": {
  5078. "symfony/deprecation-contracts": "^2.1|^3",
  5079. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5080. "symfony/serializer": "^4.4|^5.0|^6.0"
  5081. },
  5082. "bin": [
  5083. "Resources/bin/patch-type-declarations"
  5084. ],
  5085. "type": "library",
  5086. "autoload": {
  5087. "psr-4": {
  5088. "Symfony\\Component\\ErrorHandler\\": ""
  5089. },
  5090. "exclude-from-classmap": [
  5091. "/Tests/"
  5092. ]
  5093. },
  5094. "notification-url": "https://packagist.org/downloads/",
  5095. "license": [
  5096. "MIT"
  5097. ],
  5098. "authors": [
  5099. {
  5100. "name": "Fabien Potencier",
  5101. "email": "fabien@symfony.com"
  5102. },
  5103. {
  5104. "name": "Symfony Community",
  5105. "homepage": "https://symfony.com/contributors"
  5106. }
  5107. ],
  5108. "description": "Provides tools to manage errors and ease debugging PHP code",
  5109. "homepage": "https://symfony.com",
  5110. "support": {
  5111. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  5112. },
  5113. "funding": [
  5114. {
  5115. "url": "https://symfony.com/sponsor",
  5116. "type": "custom"
  5117. },
  5118. {
  5119. "url": "https://github.com/fabpot",
  5120. "type": "github"
  5121. },
  5122. {
  5123. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5124. "type": "tidelift"
  5125. }
  5126. ],
  5127. "time": "2023-09-06T21:54:06+00:00"
  5128. },
  5129. {
  5130. "name": "symfony/event-dispatcher",
  5131. "version": "v5.4.34",
  5132. "source": {
  5133. "type": "git",
  5134. "url": "https://github.com/symfony/event-dispatcher.git",
  5135. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3"
  5136. },
  5137. "dist": {
  5138. "type": "zip",
  5139. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5140. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5141. "shasum": "",
  5142. "mirrors": [
  5143. {
  5144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5145. "preferred": true
  5146. }
  5147. ]
  5148. },
  5149. "require": {
  5150. "php": ">=7.2.5",
  5151. "symfony/deprecation-contracts": "^2.1|^3",
  5152. "symfony/event-dispatcher-contracts": "^2|^3",
  5153. "symfony/polyfill-php80": "^1.16"
  5154. },
  5155. "conflict": {
  5156. "symfony/dependency-injection": "<4.4"
  5157. },
  5158. "provide": {
  5159. "psr/event-dispatcher-implementation": "1.0",
  5160. "symfony/event-dispatcher-implementation": "2.0"
  5161. },
  5162. "require-dev": {
  5163. "psr/log": "^1|^2|^3",
  5164. "symfony/config": "^4.4|^5.0|^6.0",
  5165. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5166. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5167. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5168. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5169. "symfony/service-contracts": "^1.1|^2|^3",
  5170. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5171. },
  5172. "suggest": {
  5173. "symfony/dependency-injection": "",
  5174. "symfony/http-kernel": ""
  5175. },
  5176. "type": "library",
  5177. "autoload": {
  5178. "psr-4": {
  5179. "Symfony\\Component\\EventDispatcher\\": ""
  5180. },
  5181. "exclude-from-classmap": [
  5182. "/Tests/"
  5183. ]
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Fabien Potencier",
  5192. "email": "fabien@symfony.com"
  5193. },
  5194. {
  5195. "name": "Symfony Community",
  5196. "homepage": "https://symfony.com/contributors"
  5197. }
  5198. ],
  5199. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5200. "homepage": "https://symfony.com",
  5201. "support": {
  5202. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34"
  5203. },
  5204. "funding": [
  5205. {
  5206. "url": "https://symfony.com/sponsor",
  5207. "type": "custom"
  5208. },
  5209. {
  5210. "url": "https://github.com/fabpot",
  5211. "type": "github"
  5212. },
  5213. {
  5214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5215. "type": "tidelift"
  5216. }
  5217. ],
  5218. "time": "2023-12-27T21:12:56+00:00"
  5219. },
  5220. {
  5221. "name": "symfony/event-dispatcher-contracts",
  5222. "version": "v2.5.2",
  5223. "source": {
  5224. "type": "git",
  5225. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5226. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5227. },
  5228. "dist": {
  5229. "type": "zip",
  5230. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5231. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5232. "shasum": "",
  5233. "mirrors": [
  5234. {
  5235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5236. "preferred": true
  5237. }
  5238. ]
  5239. },
  5240. "require": {
  5241. "php": ">=7.2.5",
  5242. "psr/event-dispatcher": "^1"
  5243. },
  5244. "suggest": {
  5245. "symfony/event-dispatcher-implementation": ""
  5246. },
  5247. "type": "library",
  5248. "extra": {
  5249. "branch-alias": {
  5250. "dev-main": "2.5-dev"
  5251. },
  5252. "thanks": {
  5253. "name": "symfony/contracts",
  5254. "url": "https://github.com/symfony/contracts"
  5255. }
  5256. },
  5257. "autoload": {
  5258. "psr-4": {
  5259. "Symfony\\Contracts\\EventDispatcher\\": ""
  5260. }
  5261. },
  5262. "notification-url": "https://packagist.org/downloads/",
  5263. "license": [
  5264. "MIT"
  5265. ],
  5266. "authors": [
  5267. {
  5268. "name": "Nicolas Grekas",
  5269. "email": "p@tchwork.com"
  5270. },
  5271. {
  5272. "name": "Symfony Community",
  5273. "homepage": "https://symfony.com/contributors"
  5274. }
  5275. ],
  5276. "description": "Generic abstractions related to dispatching event",
  5277. "homepage": "https://symfony.com",
  5278. "keywords": [
  5279. "abstractions",
  5280. "contracts",
  5281. "decoupling",
  5282. "interfaces",
  5283. "interoperability",
  5284. "standards"
  5285. ],
  5286. "support": {
  5287. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5288. },
  5289. "funding": [
  5290. {
  5291. "url": "https://symfony.com/sponsor",
  5292. "type": "custom"
  5293. },
  5294. {
  5295. "url": "https://github.com/fabpot",
  5296. "type": "github"
  5297. },
  5298. {
  5299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5300. "type": "tidelift"
  5301. }
  5302. ],
  5303. "time": "2022-01-02T09:53:40+00:00"
  5304. },
  5305. {
  5306. "name": "symfony/finder",
  5307. "version": "v5.4.27",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/symfony/finder.git",
  5311. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5316. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5317. "shasum": "",
  5318. "mirrors": [
  5319. {
  5320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5321. "preferred": true
  5322. }
  5323. ]
  5324. },
  5325. "require": {
  5326. "php": ">=7.2.5",
  5327. "symfony/deprecation-contracts": "^2.1|^3",
  5328. "symfony/polyfill-php80": "^1.16"
  5329. },
  5330. "type": "library",
  5331. "autoload": {
  5332. "psr-4": {
  5333. "Symfony\\Component\\Finder\\": ""
  5334. },
  5335. "exclude-from-classmap": [
  5336. "/Tests/"
  5337. ]
  5338. },
  5339. "notification-url": "https://packagist.org/downloads/",
  5340. "license": [
  5341. "MIT"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Fabien Potencier",
  5346. "email": "fabien@symfony.com"
  5347. },
  5348. {
  5349. "name": "Symfony Community",
  5350. "homepage": "https://symfony.com/contributors"
  5351. }
  5352. ],
  5353. "description": "Finds files and directories via an intuitive fluent interface",
  5354. "homepage": "https://symfony.com",
  5355. "support": {
  5356. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  5357. },
  5358. "funding": [
  5359. {
  5360. "url": "https://symfony.com/sponsor",
  5361. "type": "custom"
  5362. },
  5363. {
  5364. "url": "https://github.com/fabpot",
  5365. "type": "github"
  5366. },
  5367. {
  5368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5369. "type": "tidelift"
  5370. }
  5371. ],
  5372. "time": "2023-07-31T08:02:31+00:00"
  5373. },
  5374. {
  5375. "name": "symfony/http-foundation",
  5376. "version": "v5.4.34",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://github.com/symfony/http-foundation.git",
  5380. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5385. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5386. "shasum": "",
  5387. "mirrors": [
  5388. {
  5389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5390. "preferred": true
  5391. }
  5392. ]
  5393. },
  5394. "require": {
  5395. "php": ">=7.2.5",
  5396. "symfony/deprecation-contracts": "^2.1|^3",
  5397. "symfony/polyfill-mbstring": "~1.1",
  5398. "symfony/polyfill-php80": "^1.16"
  5399. },
  5400. "require-dev": {
  5401. "predis/predis": "~1.0",
  5402. "symfony/cache": "^4.4|^5.0|^6.0",
  5403. "symfony/dependency-injection": "^5.4|^6.0",
  5404. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5405. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5406. "symfony/mime": "^4.4|^5.0|^6.0",
  5407. "symfony/rate-limiter": "^5.2|^6.0"
  5408. },
  5409. "suggest": {
  5410. "symfony/mime": "To use the file extension guesser"
  5411. },
  5412. "type": "library",
  5413. "autoload": {
  5414. "psr-4": {
  5415. "Symfony\\Component\\HttpFoundation\\": ""
  5416. },
  5417. "exclude-from-classmap": [
  5418. "/Tests/"
  5419. ]
  5420. },
  5421. "notification-url": "https://packagist.org/downloads/",
  5422. "license": [
  5423. "MIT"
  5424. ],
  5425. "authors": [
  5426. {
  5427. "name": "Fabien Potencier",
  5428. "email": "fabien@symfony.com"
  5429. },
  5430. {
  5431. "name": "Symfony Community",
  5432. "homepage": "https://symfony.com/contributors"
  5433. }
  5434. ],
  5435. "description": "Defines an object-oriented layer for the HTTP specification",
  5436. "homepage": "https://symfony.com",
  5437. "support": {
  5438. "source": "https://github.com/symfony/http-foundation/tree/v5.4.34"
  5439. },
  5440. "funding": [
  5441. {
  5442. "url": "https://symfony.com/sponsor",
  5443. "type": "custom"
  5444. },
  5445. {
  5446. "url": "https://github.com/fabpot",
  5447. "type": "github"
  5448. },
  5449. {
  5450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5451. "type": "tidelift"
  5452. }
  5453. ],
  5454. "time": "2023-12-27T11:45:35+00:00"
  5455. },
  5456. {
  5457. "name": "symfony/http-kernel",
  5458. "version": "v5.4.34",
  5459. "source": {
  5460. "type": "git",
  5461. "url": "https://github.com/symfony/http-kernel.git",
  5462. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b"
  5463. },
  5464. "dist": {
  5465. "type": "zip",
  5466. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5467. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5468. "shasum": "",
  5469. "mirrors": [
  5470. {
  5471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5472. "preferred": true
  5473. }
  5474. ]
  5475. },
  5476. "require": {
  5477. "php": ">=7.2.5",
  5478. "psr/log": "^1|^2",
  5479. "symfony/deprecation-contracts": "^2.1|^3",
  5480. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5481. "symfony/event-dispatcher": "^5.0|^6.0",
  5482. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5483. "symfony/polyfill-ctype": "^1.8",
  5484. "symfony/polyfill-php73": "^1.9",
  5485. "symfony/polyfill-php80": "^1.16"
  5486. },
  5487. "conflict": {
  5488. "symfony/browser-kit": "<5.4",
  5489. "symfony/cache": "<5.0",
  5490. "symfony/config": "<5.0",
  5491. "symfony/console": "<4.4",
  5492. "symfony/dependency-injection": "<5.3",
  5493. "symfony/doctrine-bridge": "<5.0",
  5494. "symfony/form": "<5.0",
  5495. "symfony/http-client": "<5.0",
  5496. "symfony/mailer": "<5.0",
  5497. "symfony/messenger": "<5.0",
  5498. "symfony/translation": "<5.0",
  5499. "symfony/twig-bridge": "<5.0",
  5500. "symfony/validator": "<5.0",
  5501. "twig/twig": "<2.13"
  5502. },
  5503. "provide": {
  5504. "psr/log-implementation": "1.0|2.0"
  5505. },
  5506. "require-dev": {
  5507. "psr/cache": "^1.0|^2.0|^3.0",
  5508. "symfony/browser-kit": "^5.4|^6.0",
  5509. "symfony/config": "^5.0|^6.0",
  5510. "symfony/console": "^4.4|^5.0|^6.0",
  5511. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5512. "symfony/dependency-injection": "^5.3|^6.0",
  5513. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5514. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5515. "symfony/finder": "^4.4|^5.0|^6.0",
  5516. "symfony/http-client-contracts": "^1.1|^2|^3",
  5517. "symfony/process": "^4.4|^5.0|^6.0",
  5518. "symfony/routing": "^4.4|^5.0|^6.0",
  5519. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5520. "symfony/translation": "^4.4|^5.0|^6.0",
  5521. "symfony/translation-contracts": "^1.1|^2|^3",
  5522. "twig/twig": "^2.13|^3.0.4"
  5523. },
  5524. "suggest": {
  5525. "symfony/browser-kit": "",
  5526. "symfony/config": "",
  5527. "symfony/console": "",
  5528. "symfony/dependency-injection": ""
  5529. },
  5530. "type": "library",
  5531. "autoload": {
  5532. "psr-4": {
  5533. "Symfony\\Component\\HttpKernel\\": ""
  5534. },
  5535. "exclude-from-classmap": [
  5536. "/Tests/"
  5537. ]
  5538. },
  5539. "notification-url": "https://packagist.org/downloads/",
  5540. "license": [
  5541. "MIT"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Fabien Potencier",
  5546. "email": "fabien@symfony.com"
  5547. },
  5548. {
  5549. "name": "Symfony Community",
  5550. "homepage": "https://symfony.com/contributors"
  5551. }
  5552. ],
  5553. "description": "Provides a structured process for converting a Request into a Response",
  5554. "homepage": "https://symfony.com",
  5555. "support": {
  5556. "source": "https://github.com/symfony/http-kernel/tree/v5.4.34"
  5557. },
  5558. "funding": [
  5559. {
  5560. "url": "https://symfony.com/sponsor",
  5561. "type": "custom"
  5562. },
  5563. {
  5564. "url": "https://github.com/fabpot",
  5565. "type": "github"
  5566. },
  5567. {
  5568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5569. "type": "tidelift"
  5570. }
  5571. ],
  5572. "time": "2023-12-30T13:02:02+00:00"
  5573. },
  5574. {
  5575. "name": "symfony/mime",
  5576. "version": "v5.4.26",
  5577. "source": {
  5578. "type": "git",
  5579. "url": "https://github.com/symfony/mime.git",
  5580. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  5581. },
  5582. "dist": {
  5583. "type": "zip",
  5584. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5585. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5586. "shasum": "",
  5587. "mirrors": [
  5588. {
  5589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5590. "preferred": true
  5591. }
  5592. ]
  5593. },
  5594. "require": {
  5595. "php": ">=7.2.5",
  5596. "symfony/deprecation-contracts": "^2.1|^3",
  5597. "symfony/polyfill-intl-idn": "^1.10",
  5598. "symfony/polyfill-mbstring": "^1.0",
  5599. "symfony/polyfill-php80": "^1.16"
  5600. },
  5601. "conflict": {
  5602. "egulias/email-validator": "~3.0.0",
  5603. "phpdocumentor/reflection-docblock": "<3.2.2",
  5604. "phpdocumentor/type-resolver": "<1.4.0",
  5605. "symfony/mailer": "<4.4",
  5606. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  5607. },
  5608. "require-dev": {
  5609. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5610. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5611. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5612. "symfony/property-access": "^4.4|^5.1|^6.0",
  5613. "symfony/property-info": "^4.4|^5.1|^6.0",
  5614. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  5615. },
  5616. "type": "library",
  5617. "autoload": {
  5618. "psr-4": {
  5619. "Symfony\\Component\\Mime\\": ""
  5620. },
  5621. "exclude-from-classmap": [
  5622. "/Tests/"
  5623. ]
  5624. },
  5625. "notification-url": "https://packagist.org/downloads/",
  5626. "license": [
  5627. "MIT"
  5628. ],
  5629. "authors": [
  5630. {
  5631. "name": "Fabien Potencier",
  5632. "email": "fabien@symfony.com"
  5633. },
  5634. {
  5635. "name": "Symfony Community",
  5636. "homepage": "https://symfony.com/contributors"
  5637. }
  5638. ],
  5639. "description": "Allows manipulating MIME messages",
  5640. "homepage": "https://symfony.com",
  5641. "keywords": [
  5642. "mime",
  5643. "mime-type"
  5644. ],
  5645. "support": {
  5646. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  5647. },
  5648. "funding": [
  5649. {
  5650. "url": "https://symfony.com/sponsor",
  5651. "type": "custom"
  5652. },
  5653. {
  5654. "url": "https://github.com/fabpot",
  5655. "type": "github"
  5656. },
  5657. {
  5658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5659. "type": "tidelift"
  5660. }
  5661. ],
  5662. "time": "2023-07-27T06:29:31+00:00"
  5663. },
  5664. {
  5665. "name": "symfony/polyfill-ctype",
  5666. "version": "v1.28.0",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://github.com/symfony/polyfill-ctype.git",
  5670. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5675. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5676. "shasum": "",
  5677. "mirrors": [
  5678. {
  5679. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5680. "preferred": true
  5681. }
  5682. ]
  5683. },
  5684. "require": {
  5685. "php": ">=7.1"
  5686. },
  5687. "provide": {
  5688. "ext-ctype": "*"
  5689. },
  5690. "suggest": {
  5691. "ext-ctype": "For best performance"
  5692. },
  5693. "type": "library",
  5694. "extra": {
  5695. "branch-alias": {
  5696. "dev-main": "1.28-dev"
  5697. },
  5698. "thanks": {
  5699. "name": "symfony/polyfill",
  5700. "url": "https://github.com/symfony/polyfill"
  5701. }
  5702. },
  5703. "autoload": {
  5704. "files": [
  5705. "bootstrap.php"
  5706. ],
  5707. "psr-4": {
  5708. "Symfony\\Polyfill\\Ctype\\": ""
  5709. }
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "MIT"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Gert de Pagter",
  5718. "email": "BackEndTea@gmail.com"
  5719. },
  5720. {
  5721. "name": "Symfony Community",
  5722. "homepage": "https://symfony.com/contributors"
  5723. }
  5724. ],
  5725. "description": "Symfony polyfill for ctype functions",
  5726. "homepage": "https://symfony.com",
  5727. "keywords": [
  5728. "compatibility",
  5729. "ctype",
  5730. "polyfill",
  5731. "portable"
  5732. ],
  5733. "support": {
  5734. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  5735. },
  5736. "funding": [
  5737. {
  5738. "url": "https://symfony.com/sponsor",
  5739. "type": "custom"
  5740. },
  5741. {
  5742. "url": "https://github.com/fabpot",
  5743. "type": "github"
  5744. },
  5745. {
  5746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5747. "type": "tidelift"
  5748. }
  5749. ],
  5750. "time": "2023-01-26T09:26:14+00:00"
  5751. },
  5752. {
  5753. "name": "symfony/polyfill-iconv",
  5754. "version": "v1.30.0",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/symfony/polyfill-iconv.git",
  5758. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805",
  5763. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805",
  5764. "shasum": ""
  5765. },
  5766. "require": {
  5767. "php": ">=7.1"
  5768. },
  5769. "provide": {
  5770. "ext-iconv": "*"
  5771. },
  5772. "suggest": {
  5773. "ext-iconv": "For best performance"
  5774. },
  5775. "type": "library",
  5776. "extra": {
  5777. "thanks": {
  5778. "name": "symfony/polyfill",
  5779. "url": "https://github.com/symfony/polyfill"
  5780. }
  5781. },
  5782. "autoload": {
  5783. "files": [
  5784. "bootstrap.php"
  5785. ],
  5786. "psr-4": {
  5787. "Symfony\\Polyfill\\Iconv\\": ""
  5788. }
  5789. },
  5790. "notification-url": "https://packagist.org/downloads/",
  5791. "license": [
  5792. "MIT"
  5793. ],
  5794. "authors": [
  5795. {
  5796. "name": "Nicolas Grekas",
  5797. "email": "p@tchwork.com"
  5798. },
  5799. {
  5800. "name": "Symfony Community",
  5801. "homepage": "https://symfony.com/contributors"
  5802. }
  5803. ],
  5804. "description": "Symfony polyfill for the Iconv extension",
  5805. "homepage": "https://symfony.com",
  5806. "keywords": [
  5807. "compatibility",
  5808. "iconv",
  5809. "polyfill",
  5810. "portable",
  5811. "shim"
  5812. ],
  5813. "support": {
  5814. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0"
  5815. },
  5816. "funding": [
  5817. {
  5818. "url": "https://symfony.com/sponsor",
  5819. "type": "custom"
  5820. },
  5821. {
  5822. "url": "https://github.com/fabpot",
  5823. "type": "github"
  5824. },
  5825. {
  5826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5827. "type": "tidelift"
  5828. }
  5829. ],
  5830. "time": "2024-05-31T15:07:36+00:00"
  5831. },
  5832. {
  5833. "name": "symfony/polyfill-intl-grapheme",
  5834. "version": "v1.28.0",
  5835. "source": {
  5836. "type": "git",
  5837. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5838. "reference": "875e90aeea2777b6f135677f618529449334a612"
  5839. },
  5840. "dist": {
  5841. "type": "zip",
  5842. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  5843. "reference": "875e90aeea2777b6f135677f618529449334a612",
  5844. "shasum": "",
  5845. "mirrors": [
  5846. {
  5847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5848. "preferred": true
  5849. }
  5850. ]
  5851. },
  5852. "require": {
  5853. "php": ">=7.1"
  5854. },
  5855. "suggest": {
  5856. "ext-intl": "For best performance"
  5857. },
  5858. "type": "library",
  5859. "extra": {
  5860. "branch-alias": {
  5861. "dev-main": "1.28-dev"
  5862. },
  5863. "thanks": {
  5864. "name": "symfony/polyfill",
  5865. "url": "https://github.com/symfony/polyfill"
  5866. }
  5867. },
  5868. "autoload": {
  5869. "files": [
  5870. "bootstrap.php"
  5871. ],
  5872. "psr-4": {
  5873. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5874. }
  5875. },
  5876. "notification-url": "https://packagist.org/downloads/",
  5877. "license": [
  5878. "MIT"
  5879. ],
  5880. "authors": [
  5881. {
  5882. "name": "Nicolas Grekas",
  5883. "email": "p@tchwork.com"
  5884. },
  5885. {
  5886. "name": "Symfony Community",
  5887. "homepage": "https://symfony.com/contributors"
  5888. }
  5889. ],
  5890. "description": "Symfony polyfill for intl's grapheme_* functions",
  5891. "homepage": "https://symfony.com",
  5892. "keywords": [
  5893. "compatibility",
  5894. "grapheme",
  5895. "intl",
  5896. "polyfill",
  5897. "portable",
  5898. "shim"
  5899. ],
  5900. "support": {
  5901. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  5902. },
  5903. "funding": [
  5904. {
  5905. "url": "https://symfony.com/sponsor",
  5906. "type": "custom"
  5907. },
  5908. {
  5909. "url": "https://github.com/fabpot",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2023-01-26T09:26:14+00:00"
  5918. },
  5919. {
  5920. "name": "symfony/polyfill-intl-idn",
  5921. "version": "v1.30.0",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5925. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5930. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=7.1",
  5935. "symfony/polyfill-intl-normalizer": "^1.10",
  5936. "symfony/polyfill-php72": "^1.10"
  5937. },
  5938. "suggest": {
  5939. "ext-intl": "For best performance"
  5940. },
  5941. "type": "library",
  5942. "extra": {
  5943. "thanks": {
  5944. "name": "symfony/polyfill",
  5945. "url": "https://github.com/symfony/polyfill"
  5946. }
  5947. },
  5948. "autoload": {
  5949. "files": [
  5950. "bootstrap.php"
  5951. ],
  5952. "psr-4": {
  5953. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5954. }
  5955. },
  5956. "notification-url": "https://packagist.org/downloads/",
  5957. "license": [
  5958. "MIT"
  5959. ],
  5960. "authors": [
  5961. {
  5962. "name": "Laurent Bassin",
  5963. "email": "laurent@bassin.info"
  5964. },
  5965. {
  5966. "name": "Trevor Rowbotham",
  5967. "email": "trevor.rowbotham@pm.me"
  5968. },
  5969. {
  5970. "name": "Symfony Community",
  5971. "homepage": "https://symfony.com/contributors"
  5972. }
  5973. ],
  5974. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5975. "homepage": "https://symfony.com",
  5976. "keywords": [
  5977. "compatibility",
  5978. "idn",
  5979. "intl",
  5980. "polyfill",
  5981. "portable",
  5982. "shim"
  5983. ],
  5984. "support": {
  5985. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  5986. },
  5987. "funding": [
  5988. {
  5989. "url": "https://symfony.com/sponsor",
  5990. "type": "custom"
  5991. },
  5992. {
  5993. "url": "https://github.com/fabpot",
  5994. "type": "github"
  5995. },
  5996. {
  5997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5998. "type": "tidelift"
  5999. }
  6000. ],
  6001. "time": "2024-05-31T15:07:36+00:00"
  6002. },
  6003. {
  6004. "name": "symfony/polyfill-intl-normalizer",
  6005. "version": "v1.30.0",
  6006. "source": {
  6007. "type": "git",
  6008. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6009. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  6010. },
  6011. "dist": {
  6012. "type": "zip",
  6013. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6014. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6015. "shasum": ""
  6016. },
  6017. "require": {
  6018. "php": ">=7.1"
  6019. },
  6020. "suggest": {
  6021. "ext-intl": "For best performance"
  6022. },
  6023. "type": "library",
  6024. "extra": {
  6025. "thanks": {
  6026. "name": "symfony/polyfill",
  6027. "url": "https://github.com/symfony/polyfill"
  6028. }
  6029. },
  6030. "autoload": {
  6031. "files": [
  6032. "bootstrap.php"
  6033. ],
  6034. "psr-4": {
  6035. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6036. },
  6037. "classmap": [
  6038. "Resources/stubs"
  6039. ]
  6040. },
  6041. "notification-url": "https://packagist.org/downloads/",
  6042. "license": [
  6043. "MIT"
  6044. ],
  6045. "authors": [
  6046. {
  6047. "name": "Nicolas Grekas",
  6048. "email": "p@tchwork.com"
  6049. },
  6050. {
  6051. "name": "Symfony Community",
  6052. "homepage": "https://symfony.com/contributors"
  6053. }
  6054. ],
  6055. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6056. "homepage": "https://symfony.com",
  6057. "keywords": [
  6058. "compatibility",
  6059. "intl",
  6060. "normalizer",
  6061. "polyfill",
  6062. "portable",
  6063. "shim"
  6064. ],
  6065. "support": {
  6066. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://symfony.com/sponsor",
  6071. "type": "custom"
  6072. },
  6073. {
  6074. "url": "https://github.com/fabpot",
  6075. "type": "github"
  6076. },
  6077. {
  6078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6079. "type": "tidelift"
  6080. }
  6081. ],
  6082. "time": "2024-05-31T15:07:36+00:00"
  6083. },
  6084. {
  6085. "name": "symfony/polyfill-mbstring",
  6086. "version": "v1.30.0",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6090. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6095. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6096. "shasum": ""
  6097. },
  6098. "require": {
  6099. "php": ">=7.1"
  6100. },
  6101. "provide": {
  6102. "ext-mbstring": "*"
  6103. },
  6104. "suggest": {
  6105. "ext-mbstring": "For best performance"
  6106. },
  6107. "type": "library",
  6108. "extra": {
  6109. "thanks": {
  6110. "name": "symfony/polyfill",
  6111. "url": "https://github.com/symfony/polyfill"
  6112. }
  6113. },
  6114. "autoload": {
  6115. "files": [
  6116. "bootstrap.php"
  6117. ],
  6118. "psr-4": {
  6119. "Symfony\\Polyfill\\Mbstring\\": ""
  6120. }
  6121. },
  6122. "notification-url": "https://packagist.org/downloads/",
  6123. "license": [
  6124. "MIT"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "Nicolas Grekas",
  6129. "email": "p@tchwork.com"
  6130. },
  6131. {
  6132. "name": "Symfony Community",
  6133. "homepage": "https://symfony.com/contributors"
  6134. }
  6135. ],
  6136. "description": "Symfony polyfill for the Mbstring extension",
  6137. "homepage": "https://symfony.com",
  6138. "keywords": [
  6139. "compatibility",
  6140. "mbstring",
  6141. "polyfill",
  6142. "portable",
  6143. "shim"
  6144. ],
  6145. "support": {
  6146. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  6147. },
  6148. "funding": [
  6149. {
  6150. "url": "https://symfony.com/sponsor",
  6151. "type": "custom"
  6152. },
  6153. {
  6154. "url": "https://github.com/fabpot",
  6155. "type": "github"
  6156. },
  6157. {
  6158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6159. "type": "tidelift"
  6160. }
  6161. ],
  6162. "time": "2024-06-19T12:30:46+00:00"
  6163. },
  6164. {
  6165. "name": "symfony/polyfill-php72",
  6166. "version": "v1.30.0",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/symfony/polyfill-php72.git",
  6170. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  6175. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  6176. "shasum": ""
  6177. },
  6178. "require": {
  6179. "php": ">=7.1"
  6180. },
  6181. "type": "library",
  6182. "extra": {
  6183. "thanks": {
  6184. "name": "symfony/polyfill",
  6185. "url": "https://github.com/symfony/polyfill"
  6186. }
  6187. },
  6188. "autoload": {
  6189. "files": [
  6190. "bootstrap.php"
  6191. ],
  6192. "psr-4": {
  6193. "Symfony\\Polyfill\\Php72\\": ""
  6194. }
  6195. },
  6196. "notification-url": "https://packagist.org/downloads/",
  6197. "license": [
  6198. "MIT"
  6199. ],
  6200. "authors": [
  6201. {
  6202. "name": "Nicolas Grekas",
  6203. "email": "p@tchwork.com"
  6204. },
  6205. {
  6206. "name": "Symfony Community",
  6207. "homepage": "https://symfony.com/contributors"
  6208. }
  6209. ],
  6210. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6211. "homepage": "https://symfony.com",
  6212. "keywords": [
  6213. "compatibility",
  6214. "polyfill",
  6215. "portable",
  6216. "shim"
  6217. ],
  6218. "support": {
  6219. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  6220. },
  6221. "funding": [
  6222. {
  6223. "url": "https://symfony.com/sponsor",
  6224. "type": "custom"
  6225. },
  6226. {
  6227. "url": "https://github.com/fabpot",
  6228. "type": "github"
  6229. },
  6230. {
  6231. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6232. "type": "tidelift"
  6233. }
  6234. ],
  6235. "time": "2024-06-19T12:30:46+00:00"
  6236. },
  6237. {
  6238. "name": "symfony/polyfill-php73",
  6239. "version": "v1.28.0",
  6240. "source": {
  6241. "type": "git",
  6242. "url": "https://github.com/symfony/polyfill-php73.git",
  6243. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6244. },
  6245. "dist": {
  6246. "type": "zip",
  6247. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6248. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6249. "shasum": "",
  6250. "mirrors": [
  6251. {
  6252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6253. "preferred": true
  6254. }
  6255. ]
  6256. },
  6257. "require": {
  6258. "php": ">=7.1"
  6259. },
  6260. "type": "library",
  6261. "extra": {
  6262. "branch-alias": {
  6263. "dev-main": "1.28-dev"
  6264. },
  6265. "thanks": {
  6266. "name": "symfony/polyfill",
  6267. "url": "https://github.com/symfony/polyfill"
  6268. }
  6269. },
  6270. "autoload": {
  6271. "files": [
  6272. "bootstrap.php"
  6273. ],
  6274. "psr-4": {
  6275. "Symfony\\Polyfill\\Php73\\": ""
  6276. },
  6277. "classmap": [
  6278. "Resources/stubs"
  6279. ]
  6280. },
  6281. "notification-url": "https://packagist.org/downloads/",
  6282. "license": [
  6283. "MIT"
  6284. ],
  6285. "authors": [
  6286. {
  6287. "name": "Nicolas Grekas",
  6288. "email": "p@tchwork.com"
  6289. },
  6290. {
  6291. "name": "Symfony Community",
  6292. "homepage": "https://symfony.com/contributors"
  6293. }
  6294. ],
  6295. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6296. "homepage": "https://symfony.com",
  6297. "keywords": [
  6298. "compatibility",
  6299. "polyfill",
  6300. "portable",
  6301. "shim"
  6302. ],
  6303. "support": {
  6304. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  6305. },
  6306. "funding": [
  6307. {
  6308. "url": "https://symfony.com/sponsor",
  6309. "type": "custom"
  6310. },
  6311. {
  6312. "url": "https://github.com/fabpot",
  6313. "type": "github"
  6314. },
  6315. {
  6316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6317. "type": "tidelift"
  6318. }
  6319. ],
  6320. "time": "2023-01-26T09:26:14+00:00"
  6321. },
  6322. {
  6323. "name": "symfony/polyfill-php80",
  6324. "version": "v1.28.0",
  6325. "source": {
  6326. "type": "git",
  6327. "url": "https://github.com/symfony/polyfill-php80.git",
  6328. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6329. },
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6333. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6334. "shasum": "",
  6335. "mirrors": [
  6336. {
  6337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6338. "preferred": true
  6339. }
  6340. ]
  6341. },
  6342. "require": {
  6343. "php": ">=7.1"
  6344. },
  6345. "type": "library",
  6346. "extra": {
  6347. "branch-alias": {
  6348. "dev-main": "1.28-dev"
  6349. },
  6350. "thanks": {
  6351. "name": "symfony/polyfill",
  6352. "url": "https://github.com/symfony/polyfill"
  6353. }
  6354. },
  6355. "autoload": {
  6356. "files": [
  6357. "bootstrap.php"
  6358. ],
  6359. "psr-4": {
  6360. "Symfony\\Polyfill\\Php80\\": ""
  6361. },
  6362. "classmap": [
  6363. "Resources/stubs"
  6364. ]
  6365. },
  6366. "notification-url": "https://packagist.org/downloads/",
  6367. "license": [
  6368. "MIT"
  6369. ],
  6370. "authors": [
  6371. {
  6372. "name": "Ion Bazan",
  6373. "email": "ion.bazan@gmail.com"
  6374. },
  6375. {
  6376. "name": "Nicolas Grekas",
  6377. "email": "p@tchwork.com"
  6378. },
  6379. {
  6380. "name": "Symfony Community",
  6381. "homepage": "https://symfony.com/contributors"
  6382. }
  6383. ],
  6384. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6385. "homepage": "https://symfony.com",
  6386. "keywords": [
  6387. "compatibility",
  6388. "polyfill",
  6389. "portable",
  6390. "shim"
  6391. ],
  6392. "support": {
  6393. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  6394. },
  6395. "funding": [
  6396. {
  6397. "url": "https://symfony.com/sponsor",
  6398. "type": "custom"
  6399. },
  6400. {
  6401. "url": "https://github.com/fabpot",
  6402. "type": "github"
  6403. },
  6404. {
  6405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6406. "type": "tidelift"
  6407. }
  6408. ],
  6409. "time": "2023-01-26T09:26:14+00:00"
  6410. },
  6411. {
  6412. "name": "symfony/polyfill-php81",
  6413. "version": "v1.28.0",
  6414. "source": {
  6415. "type": "git",
  6416. "url": "https://github.com/symfony/polyfill-php81.git",
  6417. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  6418. },
  6419. "dist": {
  6420. "type": "zip",
  6421. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  6422. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  6423. "shasum": "",
  6424. "mirrors": [
  6425. {
  6426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6427. "preferred": true
  6428. }
  6429. ]
  6430. },
  6431. "require": {
  6432. "php": ">=7.1"
  6433. },
  6434. "type": "library",
  6435. "extra": {
  6436. "branch-alias": {
  6437. "dev-main": "1.28-dev"
  6438. },
  6439. "thanks": {
  6440. "name": "symfony/polyfill",
  6441. "url": "https://github.com/symfony/polyfill"
  6442. }
  6443. },
  6444. "autoload": {
  6445. "files": [
  6446. "bootstrap.php"
  6447. ],
  6448. "psr-4": {
  6449. "Symfony\\Polyfill\\Php81\\": ""
  6450. },
  6451. "classmap": [
  6452. "Resources/stubs"
  6453. ]
  6454. },
  6455. "notification-url": "https://packagist.org/downloads/",
  6456. "license": [
  6457. "MIT"
  6458. ],
  6459. "authors": [
  6460. {
  6461. "name": "Nicolas Grekas",
  6462. "email": "p@tchwork.com"
  6463. },
  6464. {
  6465. "name": "Symfony Community",
  6466. "homepage": "https://symfony.com/contributors"
  6467. }
  6468. ],
  6469. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6470. "homepage": "https://symfony.com",
  6471. "keywords": [
  6472. "compatibility",
  6473. "polyfill",
  6474. "portable",
  6475. "shim"
  6476. ],
  6477. "support": {
  6478. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  6479. },
  6480. "funding": [
  6481. {
  6482. "url": "https://symfony.com/sponsor",
  6483. "type": "custom"
  6484. },
  6485. {
  6486. "url": "https://github.com/fabpot",
  6487. "type": "github"
  6488. },
  6489. {
  6490. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6491. "type": "tidelift"
  6492. }
  6493. ],
  6494. "time": "2023-01-26T09:26:14+00:00"
  6495. },
  6496. {
  6497. "name": "symfony/process",
  6498. "version": "v5.4.34",
  6499. "source": {
  6500. "type": "git",
  6501. "url": "https://github.com/symfony/process.git",
  6502. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a"
  6503. },
  6504. "dist": {
  6505. "type": "zip",
  6506. "url": "https://api.github.com/repos/symfony/process/zipball/8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6507. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6508. "shasum": "",
  6509. "mirrors": [
  6510. {
  6511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6512. "preferred": true
  6513. }
  6514. ]
  6515. },
  6516. "require": {
  6517. "php": ">=7.2.5",
  6518. "symfony/polyfill-php80": "^1.16"
  6519. },
  6520. "type": "library",
  6521. "autoload": {
  6522. "psr-4": {
  6523. "Symfony\\Component\\Process\\": ""
  6524. },
  6525. "exclude-from-classmap": [
  6526. "/Tests/"
  6527. ]
  6528. },
  6529. "notification-url": "https://packagist.org/downloads/",
  6530. "license": [
  6531. "MIT"
  6532. ],
  6533. "authors": [
  6534. {
  6535. "name": "Fabien Potencier",
  6536. "email": "fabien@symfony.com"
  6537. },
  6538. {
  6539. "name": "Symfony Community",
  6540. "homepage": "https://symfony.com/contributors"
  6541. }
  6542. ],
  6543. "description": "Executes commands in sub-processes",
  6544. "homepage": "https://symfony.com",
  6545. "support": {
  6546. "source": "https://github.com/symfony/process/tree/v5.4.34"
  6547. },
  6548. "funding": [
  6549. {
  6550. "url": "https://symfony.com/sponsor",
  6551. "type": "custom"
  6552. },
  6553. {
  6554. "url": "https://github.com/fabpot",
  6555. "type": "github"
  6556. },
  6557. {
  6558. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6559. "type": "tidelift"
  6560. }
  6561. ],
  6562. "time": "2023-12-02T08:41:43+00:00"
  6563. },
  6564. {
  6565. "name": "symfony/psr-http-message-bridge",
  6566. "version": "v2.3.1",
  6567. "source": {
  6568. "type": "git",
  6569. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6570. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6571. },
  6572. "dist": {
  6573. "type": "zip",
  6574. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6575. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6576. "shasum": ""
  6577. },
  6578. "require": {
  6579. "php": ">=7.2.5",
  6580. "psr/http-message": "^1.0 || ^2.0",
  6581. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6582. "symfony/http-foundation": "^5.4 || ^6.0"
  6583. },
  6584. "require-dev": {
  6585. "nyholm/psr7": "^1.1",
  6586. "psr/log": "^1.1 || ^2 || ^3",
  6587. "symfony/browser-kit": "^5.4 || ^6.0",
  6588. "symfony/config": "^5.4 || ^6.0",
  6589. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6590. "symfony/framework-bundle": "^5.4 || ^6.0",
  6591. "symfony/http-kernel": "^5.4 || ^6.0",
  6592. "symfony/phpunit-bridge": "^6.2"
  6593. },
  6594. "suggest": {
  6595. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6596. },
  6597. "type": "symfony-bridge",
  6598. "extra": {
  6599. "branch-alias": {
  6600. "dev-main": "2.3-dev"
  6601. }
  6602. },
  6603. "autoload": {
  6604. "psr-4": {
  6605. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6606. },
  6607. "exclude-from-classmap": [
  6608. "/Tests/"
  6609. ]
  6610. },
  6611. "notification-url": "https://packagist.org/downloads/",
  6612. "license": [
  6613. "MIT"
  6614. ],
  6615. "authors": [
  6616. {
  6617. "name": "Fabien Potencier",
  6618. "email": "fabien@symfony.com"
  6619. },
  6620. {
  6621. "name": "Symfony Community",
  6622. "homepage": "http://symfony.com/contributors"
  6623. }
  6624. ],
  6625. "description": "PSR HTTP message bridge",
  6626. "homepage": "http://symfony.com",
  6627. "keywords": [
  6628. "http",
  6629. "http-message",
  6630. "psr-17",
  6631. "psr-7"
  6632. ],
  6633. "support": {
  6634. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6635. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  6636. },
  6637. "funding": [
  6638. {
  6639. "url": "https://symfony.com/sponsor",
  6640. "type": "custom"
  6641. },
  6642. {
  6643. "url": "https://github.com/fabpot",
  6644. "type": "github"
  6645. },
  6646. {
  6647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6648. "type": "tidelift"
  6649. }
  6650. ],
  6651. "time": "2023-07-26T11:53:26+00:00"
  6652. },
  6653. {
  6654. "name": "symfony/routing",
  6655. "version": "v5.4.34",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/symfony/routing.git",
  6659. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/symfony/routing/zipball/f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  6664. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  6665. "shasum": "",
  6666. "mirrors": [
  6667. {
  6668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6669. "preferred": true
  6670. }
  6671. ]
  6672. },
  6673. "require": {
  6674. "php": ">=7.2.5",
  6675. "symfony/deprecation-contracts": "^2.1|^3",
  6676. "symfony/polyfill-php80": "^1.16"
  6677. },
  6678. "conflict": {
  6679. "doctrine/annotations": "<1.12",
  6680. "symfony/config": "<5.3",
  6681. "symfony/dependency-injection": "<4.4",
  6682. "symfony/yaml": "<4.4"
  6683. },
  6684. "require-dev": {
  6685. "doctrine/annotations": "^1.12|^2",
  6686. "psr/log": "^1|^2|^3",
  6687. "symfony/config": "^5.3|^6.0",
  6688. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6689. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6690. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6691. "symfony/yaml": "^4.4|^5.0|^6.0"
  6692. },
  6693. "suggest": {
  6694. "symfony/config": "For using the all-in-one router or any loader",
  6695. "symfony/expression-language": "For using expression matching",
  6696. "symfony/http-foundation": "For using a Symfony Request object",
  6697. "symfony/yaml": "For using the YAML loader"
  6698. },
  6699. "type": "library",
  6700. "autoload": {
  6701. "psr-4": {
  6702. "Symfony\\Component\\Routing\\": ""
  6703. },
  6704. "exclude-from-classmap": [
  6705. "/Tests/"
  6706. ]
  6707. },
  6708. "notification-url": "https://packagist.org/downloads/",
  6709. "license": [
  6710. "MIT"
  6711. ],
  6712. "authors": [
  6713. {
  6714. "name": "Fabien Potencier",
  6715. "email": "fabien@symfony.com"
  6716. },
  6717. {
  6718. "name": "Symfony Community",
  6719. "homepage": "https://symfony.com/contributors"
  6720. }
  6721. ],
  6722. "description": "Maps an HTTP request to a set of configuration variables",
  6723. "homepage": "https://symfony.com",
  6724. "keywords": [
  6725. "router",
  6726. "routing",
  6727. "uri",
  6728. "url"
  6729. ],
  6730. "support": {
  6731. "source": "https://github.com/symfony/routing/tree/v5.4.34"
  6732. },
  6733. "funding": [
  6734. {
  6735. "url": "https://symfony.com/sponsor",
  6736. "type": "custom"
  6737. },
  6738. {
  6739. "url": "https://github.com/fabpot",
  6740. "type": "github"
  6741. },
  6742. {
  6743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6744. "type": "tidelift"
  6745. }
  6746. ],
  6747. "time": "2023-12-27T12:51:02+00:00"
  6748. },
  6749. {
  6750. "name": "symfony/service-contracts",
  6751. "version": "v2.5.2",
  6752. "source": {
  6753. "type": "git",
  6754. "url": "https://github.com/symfony/service-contracts.git",
  6755. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6756. },
  6757. "dist": {
  6758. "type": "zip",
  6759. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6760. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6761. "shasum": "",
  6762. "mirrors": [
  6763. {
  6764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6765. "preferred": true
  6766. }
  6767. ]
  6768. },
  6769. "require": {
  6770. "php": ">=7.2.5",
  6771. "psr/container": "^1.1",
  6772. "symfony/deprecation-contracts": "^2.1|^3"
  6773. },
  6774. "conflict": {
  6775. "ext-psr": "<1.1|>=2"
  6776. },
  6777. "suggest": {
  6778. "symfony/service-implementation": ""
  6779. },
  6780. "type": "library",
  6781. "extra": {
  6782. "branch-alias": {
  6783. "dev-main": "2.5-dev"
  6784. },
  6785. "thanks": {
  6786. "name": "symfony/contracts",
  6787. "url": "https://github.com/symfony/contracts"
  6788. }
  6789. },
  6790. "autoload": {
  6791. "psr-4": {
  6792. "Symfony\\Contracts\\Service\\": ""
  6793. }
  6794. },
  6795. "notification-url": "https://packagist.org/downloads/",
  6796. "license": [
  6797. "MIT"
  6798. ],
  6799. "authors": [
  6800. {
  6801. "name": "Nicolas Grekas",
  6802. "email": "p@tchwork.com"
  6803. },
  6804. {
  6805. "name": "Symfony Community",
  6806. "homepage": "https://symfony.com/contributors"
  6807. }
  6808. ],
  6809. "description": "Generic abstractions related to writing services",
  6810. "homepage": "https://symfony.com",
  6811. "keywords": [
  6812. "abstractions",
  6813. "contracts",
  6814. "decoupling",
  6815. "interfaces",
  6816. "interoperability",
  6817. "standards"
  6818. ],
  6819. "support": {
  6820. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6821. },
  6822. "funding": [
  6823. {
  6824. "url": "https://symfony.com/sponsor",
  6825. "type": "custom"
  6826. },
  6827. {
  6828. "url": "https://github.com/fabpot",
  6829. "type": "github"
  6830. },
  6831. {
  6832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6833. "type": "tidelift"
  6834. }
  6835. ],
  6836. "time": "2022-05-30T19:17:29+00:00"
  6837. },
  6838. {
  6839. "name": "symfony/string",
  6840. "version": "v5.4.34",
  6841. "source": {
  6842. "type": "git",
  6843. "url": "https://github.com/symfony/string.git",
  6844. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061"
  6845. },
  6846. "dist": {
  6847. "type": "zip",
  6848. "url": "https://api.github.com/repos/symfony/string/zipball/e3f98bfc7885c957488f443df82d97814a3ce061",
  6849. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061",
  6850. "shasum": "",
  6851. "mirrors": [
  6852. {
  6853. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6854. "preferred": true
  6855. }
  6856. ]
  6857. },
  6858. "require": {
  6859. "php": ">=7.2.5",
  6860. "symfony/polyfill-ctype": "~1.8",
  6861. "symfony/polyfill-intl-grapheme": "~1.0",
  6862. "symfony/polyfill-intl-normalizer": "~1.0",
  6863. "symfony/polyfill-mbstring": "~1.0",
  6864. "symfony/polyfill-php80": "~1.15"
  6865. },
  6866. "conflict": {
  6867. "symfony/translation-contracts": ">=3.0"
  6868. },
  6869. "require-dev": {
  6870. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6871. "symfony/http-client": "^4.4|^5.0|^6.0",
  6872. "symfony/translation-contracts": "^1.1|^2",
  6873. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6874. },
  6875. "type": "library",
  6876. "autoload": {
  6877. "files": [
  6878. "Resources/functions.php"
  6879. ],
  6880. "psr-4": {
  6881. "Symfony\\Component\\String\\": ""
  6882. },
  6883. "exclude-from-classmap": [
  6884. "/Tests/"
  6885. ]
  6886. },
  6887. "notification-url": "https://packagist.org/downloads/",
  6888. "license": [
  6889. "MIT"
  6890. ],
  6891. "authors": [
  6892. {
  6893. "name": "Nicolas Grekas",
  6894. "email": "p@tchwork.com"
  6895. },
  6896. {
  6897. "name": "Symfony Community",
  6898. "homepage": "https://symfony.com/contributors"
  6899. }
  6900. ],
  6901. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6902. "homepage": "https://symfony.com",
  6903. "keywords": [
  6904. "grapheme",
  6905. "i18n",
  6906. "string",
  6907. "unicode",
  6908. "utf-8",
  6909. "utf8"
  6910. ],
  6911. "support": {
  6912. "source": "https://github.com/symfony/string/tree/v5.4.34"
  6913. },
  6914. "funding": [
  6915. {
  6916. "url": "https://symfony.com/sponsor",
  6917. "type": "custom"
  6918. },
  6919. {
  6920. "url": "https://github.com/fabpot",
  6921. "type": "github"
  6922. },
  6923. {
  6924. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6925. "type": "tidelift"
  6926. }
  6927. ],
  6928. "time": "2023-12-09T13:20:28+00:00"
  6929. },
  6930. {
  6931. "name": "symfony/translation",
  6932. "version": "v5.4.31",
  6933. "source": {
  6934. "type": "git",
  6935. "url": "https://github.com/symfony/translation.git",
  6936. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f"
  6937. },
  6938. "dist": {
  6939. "type": "zip",
  6940. "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  6941. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  6942. "shasum": "",
  6943. "mirrors": [
  6944. {
  6945. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6946. "preferred": true
  6947. }
  6948. ]
  6949. },
  6950. "require": {
  6951. "php": ">=7.2.5",
  6952. "symfony/deprecation-contracts": "^2.1|^3",
  6953. "symfony/polyfill-mbstring": "~1.0",
  6954. "symfony/polyfill-php80": "^1.16",
  6955. "symfony/translation-contracts": "^2.3"
  6956. },
  6957. "conflict": {
  6958. "symfony/config": "<4.4",
  6959. "symfony/console": "<5.3",
  6960. "symfony/dependency-injection": "<5.0",
  6961. "symfony/http-kernel": "<5.0",
  6962. "symfony/twig-bundle": "<5.0",
  6963. "symfony/yaml": "<4.4"
  6964. },
  6965. "provide": {
  6966. "symfony/translation-implementation": "2.3"
  6967. },
  6968. "require-dev": {
  6969. "psr/log": "^1|^2|^3",
  6970. "symfony/config": "^4.4|^5.0|^6.0",
  6971. "symfony/console": "^5.4|^6.0",
  6972. "symfony/dependency-injection": "^5.0|^6.0",
  6973. "symfony/finder": "^4.4|^5.0|^6.0",
  6974. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6975. "symfony/http-kernel": "^5.0|^6.0",
  6976. "symfony/intl": "^4.4|^5.0|^6.0",
  6977. "symfony/polyfill-intl-icu": "^1.21",
  6978. "symfony/service-contracts": "^1.1.2|^2|^3",
  6979. "symfony/yaml": "^4.4|^5.0|^6.0"
  6980. },
  6981. "suggest": {
  6982. "psr/log-implementation": "To use logging capability in translator",
  6983. "symfony/config": "",
  6984. "symfony/yaml": ""
  6985. },
  6986. "type": "library",
  6987. "autoload": {
  6988. "files": [
  6989. "Resources/functions.php"
  6990. ],
  6991. "psr-4": {
  6992. "Symfony\\Component\\Translation\\": ""
  6993. },
  6994. "exclude-from-classmap": [
  6995. "/Tests/"
  6996. ]
  6997. },
  6998. "notification-url": "https://packagist.org/downloads/",
  6999. "license": [
  7000. "MIT"
  7001. ],
  7002. "authors": [
  7003. {
  7004. "name": "Fabien Potencier",
  7005. "email": "fabien@symfony.com"
  7006. },
  7007. {
  7008. "name": "Symfony Community",
  7009. "homepage": "https://symfony.com/contributors"
  7010. }
  7011. ],
  7012. "description": "Provides tools to internationalize your application",
  7013. "homepage": "https://symfony.com",
  7014. "support": {
  7015. "source": "https://github.com/symfony/translation/tree/v5.4.31"
  7016. },
  7017. "funding": [
  7018. {
  7019. "url": "https://symfony.com/sponsor",
  7020. "type": "custom"
  7021. },
  7022. {
  7023. "url": "https://github.com/fabpot",
  7024. "type": "github"
  7025. },
  7026. {
  7027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7028. "type": "tidelift"
  7029. }
  7030. ],
  7031. "time": "2023-11-03T16:16:43+00:00"
  7032. },
  7033. {
  7034. "name": "symfony/translation-contracts",
  7035. "version": "v2.5.2",
  7036. "source": {
  7037. "type": "git",
  7038. "url": "https://github.com/symfony/translation-contracts.git",
  7039. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7040. },
  7041. "dist": {
  7042. "type": "zip",
  7043. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7044. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7045. "shasum": "",
  7046. "mirrors": [
  7047. {
  7048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7049. "preferred": true
  7050. }
  7051. ]
  7052. },
  7053. "require": {
  7054. "php": ">=7.2.5"
  7055. },
  7056. "suggest": {
  7057. "symfony/translation-implementation": ""
  7058. },
  7059. "type": "library",
  7060. "extra": {
  7061. "branch-alias": {
  7062. "dev-main": "2.5-dev"
  7063. },
  7064. "thanks": {
  7065. "name": "symfony/contracts",
  7066. "url": "https://github.com/symfony/contracts"
  7067. }
  7068. },
  7069. "autoload": {
  7070. "psr-4": {
  7071. "Symfony\\Contracts\\Translation\\": ""
  7072. }
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "license": [
  7076. "MIT"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Nicolas Grekas",
  7081. "email": "p@tchwork.com"
  7082. },
  7083. {
  7084. "name": "Symfony Community",
  7085. "homepage": "https://symfony.com/contributors"
  7086. }
  7087. ],
  7088. "description": "Generic abstractions related to translation",
  7089. "homepage": "https://symfony.com",
  7090. "keywords": [
  7091. "abstractions",
  7092. "contracts",
  7093. "decoupling",
  7094. "interfaces",
  7095. "interoperability",
  7096. "standards"
  7097. ],
  7098. "support": {
  7099. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7100. },
  7101. "funding": [
  7102. {
  7103. "url": "https://symfony.com/sponsor",
  7104. "type": "custom"
  7105. },
  7106. {
  7107. "url": "https://github.com/fabpot",
  7108. "type": "github"
  7109. },
  7110. {
  7111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7112. "type": "tidelift"
  7113. }
  7114. ],
  7115. "time": "2022-06-27T16:58:25+00:00"
  7116. },
  7117. {
  7118. "name": "symfony/var-dumper",
  7119. "version": "v5.4.29",
  7120. "source": {
  7121. "type": "git",
  7122. "url": "https://github.com/symfony/var-dumper.git",
  7123. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  7124. },
  7125. "dist": {
  7126. "type": "zip",
  7127. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7128. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7129. "shasum": "",
  7130. "mirrors": [
  7131. {
  7132. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7133. "preferred": true
  7134. }
  7135. ]
  7136. },
  7137. "require": {
  7138. "php": ">=7.2.5",
  7139. "symfony/polyfill-mbstring": "~1.0",
  7140. "symfony/polyfill-php80": "^1.16"
  7141. },
  7142. "conflict": {
  7143. "symfony/console": "<4.4"
  7144. },
  7145. "require-dev": {
  7146. "ext-iconv": "*",
  7147. "symfony/console": "^4.4|^5.0|^6.0",
  7148. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7149. "symfony/process": "^4.4|^5.0|^6.0",
  7150. "symfony/uid": "^5.1|^6.0",
  7151. "twig/twig": "^2.13|^3.0.4"
  7152. },
  7153. "suggest": {
  7154. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7155. "ext-intl": "To show region name in time zone dump",
  7156. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7157. },
  7158. "bin": [
  7159. "Resources/bin/var-dump-server"
  7160. ],
  7161. "type": "library",
  7162. "autoload": {
  7163. "files": [
  7164. "Resources/functions/dump.php"
  7165. ],
  7166. "psr-4": {
  7167. "Symfony\\Component\\VarDumper\\": ""
  7168. },
  7169. "exclude-from-classmap": [
  7170. "/Tests/"
  7171. ]
  7172. },
  7173. "notification-url": "https://packagist.org/downloads/",
  7174. "license": [
  7175. "MIT"
  7176. ],
  7177. "authors": [
  7178. {
  7179. "name": "Nicolas Grekas",
  7180. "email": "p@tchwork.com"
  7181. },
  7182. {
  7183. "name": "Symfony Community",
  7184. "homepage": "https://symfony.com/contributors"
  7185. }
  7186. ],
  7187. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7188. "homepage": "https://symfony.com",
  7189. "keywords": [
  7190. "debug",
  7191. "dump"
  7192. ],
  7193. "support": {
  7194. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7195. },
  7196. "funding": [
  7197. {
  7198. "url": "https://symfony.com/sponsor",
  7199. "type": "custom"
  7200. },
  7201. {
  7202. "url": "https://github.com/fabpot",
  7203. "type": "github"
  7204. },
  7205. {
  7206. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7207. "type": "tidelift"
  7208. }
  7209. ],
  7210. "time": "2023-09-12T10:09:58+00:00"
  7211. },
  7212. {
  7213. "name": "symfony/var-exporter",
  7214. "version": "v5.4.40",
  7215. "source": {
  7216. "type": "git",
  7217. "url": "https://github.com/symfony/var-exporter.git",
  7218. "reference": "6a13d37336d512927986e09f19a4bed24178baa6"
  7219. },
  7220. "dist": {
  7221. "type": "zip",
  7222. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6a13d37336d512927986e09f19a4bed24178baa6",
  7223. "reference": "6a13d37336d512927986e09f19a4bed24178baa6",
  7224. "shasum": ""
  7225. },
  7226. "require": {
  7227. "php": ">=7.2.5",
  7228. "symfony/polyfill-php80": "^1.16"
  7229. },
  7230. "require-dev": {
  7231. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7232. },
  7233. "type": "library",
  7234. "autoload": {
  7235. "psr-4": {
  7236. "Symfony\\Component\\VarExporter\\": ""
  7237. },
  7238. "exclude-from-classmap": [
  7239. "/Tests/"
  7240. ]
  7241. },
  7242. "notification-url": "https://packagist.org/downloads/",
  7243. "license": [
  7244. "MIT"
  7245. ],
  7246. "authors": [
  7247. {
  7248. "name": "Nicolas Grekas",
  7249. "email": "p@tchwork.com"
  7250. },
  7251. {
  7252. "name": "Symfony Community",
  7253. "homepage": "https://symfony.com/contributors"
  7254. }
  7255. ],
  7256. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7257. "homepage": "https://symfony.com",
  7258. "keywords": [
  7259. "clone",
  7260. "construct",
  7261. "export",
  7262. "hydrate",
  7263. "instantiate",
  7264. "serialize"
  7265. ],
  7266. "support": {
  7267. "source": "https://github.com/symfony/var-exporter/tree/v5.4.40"
  7268. },
  7269. "funding": [
  7270. {
  7271. "url": "https://symfony.com/sponsor",
  7272. "type": "custom"
  7273. },
  7274. {
  7275. "url": "https://github.com/fabpot",
  7276. "type": "github"
  7277. },
  7278. {
  7279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7280. "type": "tidelift"
  7281. }
  7282. ],
  7283. "time": "2024-05-31T14:33:22+00:00"
  7284. },
  7285. {
  7286. "name": "tencentcloud/common",
  7287. "version": "3.0.1067",
  7288. "source": {
  7289. "type": "git",
  7290. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  7291. "reference": "17d88323aaf68906984caa33b61559295a4837a0"
  7292. },
  7293. "dist": {
  7294. "type": "zip",
  7295. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/17d88323aaf68906984caa33b61559295a4837a0",
  7296. "reference": "17d88323aaf68906984caa33b61559295a4837a0",
  7297. "shasum": "",
  7298. "mirrors": [
  7299. {
  7300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7301. "preferred": true
  7302. }
  7303. ]
  7304. },
  7305. "require": {
  7306. "guzzlehttp/guzzle": "^6.3||^7.0",
  7307. "php": ">=5.6.0"
  7308. },
  7309. "type": "library",
  7310. "autoload": {
  7311. "psr-4": {
  7312. "TencentCloud\\": "./src/TencentCloud"
  7313. }
  7314. },
  7315. "notification-url": "https://packagist.org/downloads/",
  7316. "license": [
  7317. "Apache-2.0"
  7318. ],
  7319. "authors": [
  7320. {
  7321. "name": "tencentcloudapi",
  7322. "email": "tencentcloudapi@tencent.com",
  7323. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7324. "role": "Developer"
  7325. }
  7326. ],
  7327. "description": "TencentCloudApi php sdk",
  7328. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7329. "support": {
  7330. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  7331. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1067"
  7332. },
  7333. "time": "2024-01-12T07:53:31+00:00"
  7334. },
  7335. {
  7336. "name": "tencentcloud/sms",
  7337. "version": "3.0.1067",
  7338. "source": {
  7339. "type": "git",
  7340. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  7341. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a"
  7342. },
  7343. "dist": {
  7344. "type": "zip",
  7345. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7346. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7347. "shasum": "",
  7348. "mirrors": [
  7349. {
  7350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7351. "preferred": true
  7352. }
  7353. ]
  7354. },
  7355. "require": {
  7356. "tencentcloud/common": "3.0.1067"
  7357. },
  7358. "type": "library",
  7359. "autoload": {
  7360. "psr-4": {
  7361. "TencentCloud\\": "./src/TencentCloud"
  7362. }
  7363. },
  7364. "notification-url": "https://packagist.org/downloads/",
  7365. "license": [
  7366. "Apache-2.0"
  7367. ],
  7368. "authors": [
  7369. {
  7370. "name": "tencentcloudapi",
  7371. "email": "tencentcloudapi@tencent.com",
  7372. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7373. "role": "Developer"
  7374. }
  7375. ],
  7376. "description": "TencentCloudApi php sdk sms",
  7377. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7378. "support": {
  7379. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  7380. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1067"
  7381. },
  7382. "time": "2024-01-12T08:16:39+00:00"
  7383. },
  7384. {
  7385. "name": "tijsverkoyen/css-to-inline-styles",
  7386. "version": "v2.2.7",
  7387. "source": {
  7388. "type": "git",
  7389. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7390. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7391. },
  7392. "dist": {
  7393. "type": "zip",
  7394. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7395. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7396. "shasum": "",
  7397. "mirrors": [
  7398. {
  7399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7400. "preferred": true
  7401. }
  7402. ]
  7403. },
  7404. "require": {
  7405. "ext-dom": "*",
  7406. "ext-libxml": "*",
  7407. "php": "^5.5 || ^7.0 || ^8.0",
  7408. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7409. },
  7410. "require-dev": {
  7411. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7412. },
  7413. "type": "library",
  7414. "extra": {
  7415. "branch-alias": {
  7416. "dev-master": "2.2.x-dev"
  7417. }
  7418. },
  7419. "autoload": {
  7420. "psr-4": {
  7421. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7422. }
  7423. },
  7424. "notification-url": "https://packagist.org/downloads/",
  7425. "license": [
  7426. "BSD-3-Clause"
  7427. ],
  7428. "authors": [
  7429. {
  7430. "name": "Tijs Verkoyen",
  7431. "email": "css_to_inline_styles@verkoyen.eu",
  7432. "role": "Developer"
  7433. }
  7434. ],
  7435. "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.",
  7436. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7437. "support": {
  7438. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7439. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7440. },
  7441. "time": "2023-12-08T13:03:43+00:00"
  7442. },
  7443. {
  7444. "name": "vinkla/hashids",
  7445. "version": "9.1.0",
  7446. "source": {
  7447. "type": "git",
  7448. "url": "https://github.com/vinkla/laravel-hashids.git",
  7449. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7450. },
  7451. "dist": {
  7452. "type": "zip",
  7453. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7454. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7455. "shasum": "",
  7456. "mirrors": [
  7457. {
  7458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7459. "preferred": true
  7460. }
  7461. ]
  7462. },
  7463. "require": {
  7464. "graham-campbell/manager": "^4.4",
  7465. "hashids/hashids": "^4.1",
  7466. "illuminate/contracts": "^8.0",
  7467. "illuminate/support": "^8.0",
  7468. "php": "^7.3 || ^8.0"
  7469. },
  7470. "require-dev": {
  7471. "graham-campbell/analyzer": "^3.0",
  7472. "graham-campbell/testbench": "^5.4",
  7473. "mockery/mockery": "^1.3",
  7474. "phpunit/phpunit": "^9.3",
  7475. "squizlabs/php_codesniffer": "^3.5"
  7476. },
  7477. "type": "library",
  7478. "extra": {
  7479. "branch-alias": {
  7480. "dev-master": "9.1-dev"
  7481. },
  7482. "laravel": {
  7483. "providers": [
  7484. "Vinkla\\Hashids\\HashidsServiceProvider"
  7485. ],
  7486. "aliases": {
  7487. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7488. }
  7489. }
  7490. },
  7491. "autoload": {
  7492. "psr-4": {
  7493. "Vinkla\\Hashids\\": "src/"
  7494. }
  7495. },
  7496. "notification-url": "https://packagist.org/downloads/",
  7497. "license": [
  7498. "MIT"
  7499. ],
  7500. "authors": [
  7501. {
  7502. "name": "Vincent Klaiber",
  7503. "email": "hello@doubledip.se"
  7504. }
  7505. ],
  7506. "description": "A Hashids bridge for Laravel",
  7507. "keywords": [
  7508. "hashids",
  7509. "laravel"
  7510. ],
  7511. "support": {
  7512. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7513. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7514. },
  7515. "time": "2020-11-26T19:38:22+00:00"
  7516. },
  7517. {
  7518. "name": "vlucas/phpdotenv",
  7519. "version": "v5.5.0",
  7520. "source": {
  7521. "type": "git",
  7522. "url": "https://github.com/vlucas/phpdotenv.git",
  7523. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7524. },
  7525. "dist": {
  7526. "type": "zip",
  7527. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7528. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7529. "shasum": "",
  7530. "mirrors": [
  7531. {
  7532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7533. "preferred": true
  7534. }
  7535. ]
  7536. },
  7537. "require": {
  7538. "ext-pcre": "*",
  7539. "graham-campbell/result-type": "^1.0.2",
  7540. "php": "^7.1.3 || ^8.0",
  7541. "phpoption/phpoption": "^1.8",
  7542. "symfony/polyfill-ctype": "^1.23",
  7543. "symfony/polyfill-mbstring": "^1.23.1",
  7544. "symfony/polyfill-php80": "^1.23.1"
  7545. },
  7546. "require-dev": {
  7547. "bamarni/composer-bin-plugin": "^1.4.1",
  7548. "ext-filter": "*",
  7549. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7550. },
  7551. "suggest": {
  7552. "ext-filter": "Required to use the boolean validator."
  7553. },
  7554. "type": "library",
  7555. "extra": {
  7556. "bamarni-bin": {
  7557. "bin-links": true,
  7558. "forward-command": true
  7559. },
  7560. "branch-alias": {
  7561. "dev-master": "5.5-dev"
  7562. }
  7563. },
  7564. "autoload": {
  7565. "psr-4": {
  7566. "Dotenv\\": "src/"
  7567. }
  7568. },
  7569. "notification-url": "https://packagist.org/downloads/",
  7570. "license": [
  7571. "BSD-3-Clause"
  7572. ],
  7573. "authors": [
  7574. {
  7575. "name": "Graham Campbell",
  7576. "email": "hello@gjcampbell.co.uk",
  7577. "homepage": "https://github.com/GrahamCampbell"
  7578. },
  7579. {
  7580. "name": "Vance Lucas",
  7581. "email": "vance@vancelucas.com",
  7582. "homepage": "https://github.com/vlucas"
  7583. }
  7584. ],
  7585. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7586. "keywords": [
  7587. "dotenv",
  7588. "env",
  7589. "environment"
  7590. ],
  7591. "support": {
  7592. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7593. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7594. },
  7595. "funding": [
  7596. {
  7597. "url": "https://github.com/GrahamCampbell",
  7598. "type": "github"
  7599. },
  7600. {
  7601. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7602. "type": "tidelift"
  7603. }
  7604. ],
  7605. "time": "2022-10-16T01:01:54+00:00"
  7606. },
  7607. {
  7608. "name": "voku/portable-ascii",
  7609. "version": "1.6.1",
  7610. "source": {
  7611. "type": "git",
  7612. "url": "https://github.com/voku/portable-ascii.git",
  7613. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7614. },
  7615. "dist": {
  7616. "type": "zip",
  7617. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7618. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7619. "shasum": "",
  7620. "mirrors": [
  7621. {
  7622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7623. "preferred": true
  7624. }
  7625. ]
  7626. },
  7627. "require": {
  7628. "php": ">=7.0.0"
  7629. },
  7630. "require-dev": {
  7631. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7632. },
  7633. "suggest": {
  7634. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7635. },
  7636. "type": "library",
  7637. "autoload": {
  7638. "psr-4": {
  7639. "voku\\": "src/voku/"
  7640. }
  7641. },
  7642. "notification-url": "https://packagist.org/downloads/",
  7643. "license": [
  7644. "MIT"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "Lars Moelleken",
  7649. "homepage": "http://www.moelleken.org/"
  7650. }
  7651. ],
  7652. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7653. "homepage": "https://github.com/voku/portable-ascii",
  7654. "keywords": [
  7655. "ascii",
  7656. "clean",
  7657. "php"
  7658. ],
  7659. "support": {
  7660. "issues": "https://github.com/voku/portable-ascii/issues",
  7661. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7662. },
  7663. "funding": [
  7664. {
  7665. "url": "https://www.paypal.me/moelleken",
  7666. "type": "custom"
  7667. },
  7668. {
  7669. "url": "https://github.com/voku",
  7670. "type": "github"
  7671. },
  7672. {
  7673. "url": "https://opencollective.com/portable-ascii",
  7674. "type": "open_collective"
  7675. },
  7676. {
  7677. "url": "https://www.patreon.com/voku",
  7678. "type": "patreon"
  7679. },
  7680. {
  7681. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7682. "type": "tidelift"
  7683. }
  7684. ],
  7685. "time": "2022-01-24T18:55:24+00:00"
  7686. },
  7687. {
  7688. "name": "w7corp/easywechat",
  7689. "version": "5.35.2",
  7690. "source": {
  7691. "type": "git",
  7692. "url": "https://github.com/w7corp/easywechat.git",
  7693. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f"
  7694. },
  7695. "dist": {
  7696. "type": "zip",
  7697. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/a9235a1d236a1892fccc989bd73008f2fe20094f",
  7698. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f",
  7699. "shasum": ""
  7700. },
  7701. "require": {
  7702. "easywechat-composer/easywechat-composer": "^1.1",
  7703. "ext-fileinfo": "*",
  7704. "ext-libxml": "*",
  7705. "ext-openssl": "*",
  7706. "ext-simplexml": "*",
  7707. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  7708. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  7709. "overtrue/socialite": "^3.2 || ^4.0",
  7710. "php": ">=7.4",
  7711. "pimple/pimple": "^3.0",
  7712. "psr/simple-cache": "^1.0||^2.0||^3.0",
  7713. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  7714. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  7715. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7716. },
  7717. "require-dev": {
  7718. "brainmaestro/composer-git-hooks": "^2.7",
  7719. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  7720. "friendsofphp/php-cs-fixer": "^3.5.0",
  7721. "mikey179/vfsstream": "^1.6",
  7722. "mockery/mockery": "^1.2.3",
  7723. "phpstan/phpstan": "^0.12.0",
  7724. "phpunit/phpunit": "^9.3"
  7725. },
  7726. "type": "library",
  7727. "extra": {
  7728. "hooks": {
  7729. "pre-commit": [
  7730. "composer test",
  7731. "composer fix-style"
  7732. ],
  7733. "pre-push": [
  7734. "composer test",
  7735. "composer fix-style"
  7736. ]
  7737. }
  7738. },
  7739. "autoload": {
  7740. "files": [
  7741. "src/Kernel/Support/Helpers.php",
  7742. "src/Kernel/Helpers.php"
  7743. ],
  7744. "psr-4": {
  7745. "EasyWeChat\\": "src/"
  7746. }
  7747. },
  7748. "notification-url": "https://packagist.org/downloads/",
  7749. "license": [
  7750. "MIT"
  7751. ],
  7752. "authors": [
  7753. {
  7754. "name": "overtrue",
  7755. "email": "anzhengchao@gmail.com"
  7756. }
  7757. ],
  7758. "description": "微信SDK",
  7759. "keywords": [
  7760. "easywechat",
  7761. "sdk",
  7762. "wechat",
  7763. "weixin",
  7764. "weixin-sdk"
  7765. ],
  7766. "support": {
  7767. "issues": "https://github.com/w7corp/easywechat/issues",
  7768. "source": "https://github.com/w7corp/easywechat/tree/5.35.2"
  7769. },
  7770. "funding": [
  7771. {
  7772. "url": "https://github.com/overtrue",
  7773. "type": "github"
  7774. }
  7775. ],
  7776. "time": "2024-08-06T13:21:05+00:00"
  7777. },
  7778. {
  7779. "name": "wantp/snowflake",
  7780. "version": "v1.2.0",
  7781. "source": {
  7782. "type": "git",
  7783. "url": "https://github.com/wantp/snowflake.git",
  7784. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  7785. },
  7786. "dist": {
  7787. "type": "zip",
  7788. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  7789. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  7790. "shasum": "",
  7791. "mirrors": [
  7792. {
  7793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7794. "preferred": true
  7795. }
  7796. ]
  7797. },
  7798. "require": {
  7799. "php": ">=7.0.0"
  7800. },
  7801. "type": "library",
  7802. "autoload": {
  7803. "psr-4": {
  7804. "wantp\\Snowflake\\": "src/Snowflake/"
  7805. }
  7806. },
  7807. "notification-url": "https://packagist.org/downloads/",
  7808. "license": [
  7809. "MIT"
  7810. ],
  7811. "authors": [
  7812. {
  7813. "name": "zhangrongwang",
  7814. "email": "zhangrongwang798@gmail.com"
  7815. }
  7816. ],
  7817. "description": "A package for create unique id by snowflake",
  7818. "keywords": [
  7819. "snowflake",
  7820. "uniqueId"
  7821. ],
  7822. "support": {
  7823. "issues": "https://github.com/wantp/snowflake/issues",
  7824. "source": "https://github.com/wantp/snowflake/tree/master"
  7825. },
  7826. "time": "2019-08-05T07:14:56+00:00"
  7827. },
  7828. {
  7829. "name": "webmozart/assert",
  7830. "version": "1.11.0",
  7831. "source": {
  7832. "type": "git",
  7833. "url": "https://github.com/webmozarts/assert.git",
  7834. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7835. },
  7836. "dist": {
  7837. "type": "zip",
  7838. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7839. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7840. "shasum": "",
  7841. "mirrors": [
  7842. {
  7843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7844. "preferred": true
  7845. }
  7846. ]
  7847. },
  7848. "require": {
  7849. "ext-ctype": "*",
  7850. "php": "^7.2 || ^8.0"
  7851. },
  7852. "conflict": {
  7853. "phpstan/phpstan": "<0.12.20",
  7854. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7855. },
  7856. "require-dev": {
  7857. "phpunit/phpunit": "^8.5.13"
  7858. },
  7859. "type": "library",
  7860. "extra": {
  7861. "branch-alias": {
  7862. "dev-master": "1.10-dev"
  7863. }
  7864. },
  7865. "autoload": {
  7866. "psr-4": {
  7867. "Webmozart\\Assert\\": "src/"
  7868. }
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "MIT"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Bernhard Schussek",
  7877. "email": "bschussek@gmail.com"
  7878. }
  7879. ],
  7880. "description": "Assertions to validate method input/output with nice error messages.",
  7881. "keywords": [
  7882. "assert",
  7883. "check",
  7884. "validate"
  7885. ],
  7886. "support": {
  7887. "issues": "https://github.com/webmozarts/assert/issues",
  7888. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7889. },
  7890. "time": "2022-06-03T18:03:27+00:00"
  7891. },
  7892. {
  7893. "name": "wechatpay/wechatpay",
  7894. "version": "1.4.10",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  7898. "reference": "9c364872bd2063bf3f10efc3765e96e3e1b20e2e"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/9c364872bd2063bf3f10efc3765e96e3e1b20e2e",
  7903. "reference": "9c364872bd2063bf3f10efc3765e96e3e1b20e2e",
  7904. "shasum": ""
  7905. },
  7906. "require": {
  7907. "ext-curl": "*",
  7908. "ext-libxml": "*",
  7909. "ext-openssl": "*",
  7910. "ext-simplexml": "*",
  7911. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7912. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  7913. "php": ">=7.1.2"
  7914. },
  7915. "require-dev": {
  7916. "phpstan/phpstan": "^0.12.89 || ^1.0",
  7917. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  7918. },
  7919. "bin": [
  7920. "bin/CertificateDownloader.php"
  7921. ],
  7922. "type": "library",
  7923. "autoload": {
  7924. "psr-4": {
  7925. "WeChatPay\\": "src/"
  7926. }
  7927. },
  7928. "notification-url": "https://packagist.org/downloads/",
  7929. "license": [
  7930. "Apache-2.0"
  7931. ],
  7932. "authors": [
  7933. {
  7934. "name": "James ZHANG",
  7935. "homepage": "https://github.com/TheNorthMemory"
  7936. },
  7937. {
  7938. "name": "WeChatPay Community",
  7939. "homepage": "https://developers.weixin.qq.com/community/pay"
  7940. }
  7941. ],
  7942. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  7943. "homepage": "https://pay.weixin.qq.com/",
  7944. "keywords": [
  7945. "AES-GCM",
  7946. "aes-ecb",
  7947. "openapi-chainable",
  7948. "rsa-oaep",
  7949. "wechatpay",
  7950. "xml-builder",
  7951. "xml-parser"
  7952. ],
  7953. "support": {
  7954. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  7955. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.10"
  7956. },
  7957. "time": "2024-09-19T04:22:06+00:00"
  7958. },
  7959. {
  7960. "name": "wechatpay/wechatpay-guzzle-middleware",
  7961. "version": "0.2.2",
  7962. "source": {
  7963. "type": "git",
  7964. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  7965. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  7966. },
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  7970. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  7971. "shasum": "",
  7972. "mirrors": [
  7973. {
  7974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7975. "preferred": true
  7976. }
  7977. ]
  7978. },
  7979. "require": {
  7980. "ext-openssl": "*",
  7981. "php": ">=5.5"
  7982. },
  7983. "require-dev": {
  7984. "guzzlehttp/guzzle": "^6.3"
  7985. },
  7986. "suggest": {
  7987. "ext-bcmath": "Require bcmath in php 5.* version.",
  7988. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  7989. },
  7990. "bin": [
  7991. "tool/CertificateDownloader.php"
  7992. ],
  7993. "type": "library",
  7994. "autoload": {
  7995. "psr-4": {
  7996. "WechatPay\\GuzzleMiddleware\\": "src/"
  7997. }
  7998. },
  7999. "notification-url": "https://packagist.org/downloads/",
  8000. "license": [
  8001. "Apache-2.0"
  8002. ],
  8003. "description": "WechatPay API V3 Guzzle Middleware",
  8004. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  8005. "keywords": [
  8006. "wechatpay"
  8007. ],
  8008. "support": {
  8009. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  8010. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  8011. },
  8012. "time": "2021-03-05T03:09:29+00:00"
  8013. }
  8014. ],
  8015. "packages-dev": [
  8016. {
  8017. "name": "doctrine/instantiator",
  8018. "version": "1.5.0",
  8019. "source": {
  8020. "type": "git",
  8021. "url": "https://github.com/doctrine/instantiator.git",
  8022. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8023. },
  8024. "dist": {
  8025. "type": "zip",
  8026. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8027. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8028. "shasum": "",
  8029. "mirrors": [
  8030. {
  8031. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8032. "preferred": true
  8033. }
  8034. ]
  8035. },
  8036. "require": {
  8037. "php": "^7.1 || ^8.0"
  8038. },
  8039. "require-dev": {
  8040. "doctrine/coding-standard": "^9 || ^11",
  8041. "ext-pdo": "*",
  8042. "ext-phar": "*",
  8043. "phpbench/phpbench": "^0.16 || ^1",
  8044. "phpstan/phpstan": "^1.4",
  8045. "phpstan/phpstan-phpunit": "^1",
  8046. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8047. "vimeo/psalm": "^4.30 || ^5.4"
  8048. },
  8049. "type": "library",
  8050. "autoload": {
  8051. "psr-4": {
  8052. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8053. }
  8054. },
  8055. "notification-url": "https://packagist.org/downloads/",
  8056. "license": [
  8057. "MIT"
  8058. ],
  8059. "authors": [
  8060. {
  8061. "name": "Marco Pivetta",
  8062. "email": "ocramius@gmail.com",
  8063. "homepage": "https://ocramius.github.io/"
  8064. }
  8065. ],
  8066. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8067. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8068. "keywords": [
  8069. "constructor",
  8070. "instantiate"
  8071. ],
  8072. "support": {
  8073. "issues": "https://github.com/doctrine/instantiator/issues",
  8074. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8075. },
  8076. "funding": [
  8077. {
  8078. "url": "https://www.doctrine-project.org/sponsorship.html",
  8079. "type": "custom"
  8080. },
  8081. {
  8082. "url": "https://www.patreon.com/phpdoctrine",
  8083. "type": "patreon"
  8084. },
  8085. {
  8086. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8087. "type": "tidelift"
  8088. }
  8089. ],
  8090. "time": "2022-12-30T00:15:36+00:00"
  8091. },
  8092. {
  8093. "name": "facade/flare-client-php",
  8094. "version": "1.10.0",
  8095. "source": {
  8096. "type": "git",
  8097. "url": "https://github.com/facade/flare-client-php.git",
  8098. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8099. },
  8100. "dist": {
  8101. "type": "zip",
  8102. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8103. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8104. "shasum": "",
  8105. "mirrors": [
  8106. {
  8107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8108. "preferred": true
  8109. }
  8110. ]
  8111. },
  8112. "require": {
  8113. "facade/ignition-contracts": "~1.0",
  8114. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8115. "php": "^7.1|^8.0",
  8116. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8117. "symfony/mime": "^3.4|^4.0|^5.1",
  8118. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8119. },
  8120. "require-dev": {
  8121. "friendsofphp/php-cs-fixer": "^2.14",
  8122. "phpunit/phpunit": "^7.5",
  8123. "spatie/phpunit-snapshot-assertions": "^2.0"
  8124. },
  8125. "type": "library",
  8126. "extra": {
  8127. "branch-alias": {
  8128. "dev-master": "1.0-dev"
  8129. }
  8130. },
  8131. "autoload": {
  8132. "files": [
  8133. "src/helpers.php"
  8134. ],
  8135. "psr-4": {
  8136. "Facade\\FlareClient\\": "src"
  8137. }
  8138. },
  8139. "notification-url": "https://packagist.org/downloads/",
  8140. "license": [
  8141. "MIT"
  8142. ],
  8143. "description": "Send PHP errors to Flare",
  8144. "homepage": "https://github.com/facade/flare-client-php",
  8145. "keywords": [
  8146. "exception",
  8147. "facade",
  8148. "flare",
  8149. "reporting"
  8150. ],
  8151. "support": {
  8152. "issues": "https://github.com/facade/flare-client-php/issues",
  8153. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8154. },
  8155. "funding": [
  8156. {
  8157. "url": "https://github.com/spatie",
  8158. "type": "github"
  8159. }
  8160. ],
  8161. "time": "2022-08-09T11:23:57+00:00"
  8162. },
  8163. {
  8164. "name": "facade/ignition",
  8165. "version": "2.17.7",
  8166. "source": {
  8167. "type": "git",
  8168. "url": "https://github.com/facade/ignition.git",
  8169. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8170. },
  8171. "dist": {
  8172. "type": "zip",
  8173. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8174. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8175. "shasum": "",
  8176. "mirrors": [
  8177. {
  8178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8179. "preferred": true
  8180. }
  8181. ]
  8182. },
  8183. "require": {
  8184. "ext-curl": "*",
  8185. "ext-json": "*",
  8186. "ext-mbstring": "*",
  8187. "facade/flare-client-php": "^1.9.1",
  8188. "facade/ignition-contracts": "^1.0.2",
  8189. "illuminate/support": "^7.0|^8.0",
  8190. "monolog/monolog": "^2.0",
  8191. "php": "^7.2.5|^8.0",
  8192. "symfony/console": "^5.0",
  8193. "symfony/var-dumper": "^5.0"
  8194. },
  8195. "require-dev": {
  8196. "friendsofphp/php-cs-fixer": "^2.14",
  8197. "livewire/livewire": "^2.4",
  8198. "mockery/mockery": "^1.3",
  8199. "orchestra/testbench": "^5.0|^6.0",
  8200. "psalm/plugin-laravel": "^1.2"
  8201. },
  8202. "suggest": {
  8203. "laravel/telescope": "^3.1"
  8204. },
  8205. "type": "library",
  8206. "extra": {
  8207. "branch-alias": {
  8208. "dev-master": "2.x-dev"
  8209. },
  8210. "laravel": {
  8211. "providers": [
  8212. "Facade\\Ignition\\IgnitionServiceProvider"
  8213. ],
  8214. "aliases": {
  8215. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8216. }
  8217. }
  8218. },
  8219. "autoload": {
  8220. "files": [
  8221. "src/helpers.php"
  8222. ],
  8223. "psr-4": {
  8224. "Facade\\Ignition\\": "src"
  8225. }
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "MIT"
  8230. ],
  8231. "description": "A beautiful error page for Laravel applications.",
  8232. "homepage": "https://github.com/facade/ignition",
  8233. "keywords": [
  8234. "error",
  8235. "flare",
  8236. "laravel",
  8237. "page"
  8238. ],
  8239. "support": {
  8240. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8241. "forum": "https://twitter.com/flareappio",
  8242. "issues": "https://github.com/facade/ignition/issues",
  8243. "source": "https://github.com/facade/ignition"
  8244. },
  8245. "time": "2023-01-26T12:34:59+00:00"
  8246. },
  8247. {
  8248. "name": "facade/ignition-contracts",
  8249. "version": "1.0.2",
  8250. "source": {
  8251. "type": "git",
  8252. "url": "https://github.com/facade/ignition-contracts.git",
  8253. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8254. },
  8255. "dist": {
  8256. "type": "zip",
  8257. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8258. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8259. "shasum": "",
  8260. "mirrors": [
  8261. {
  8262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8263. "preferred": true
  8264. }
  8265. ]
  8266. },
  8267. "require": {
  8268. "php": "^7.3|^8.0"
  8269. },
  8270. "require-dev": {
  8271. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8272. "phpunit/phpunit": "^9.3.11",
  8273. "vimeo/psalm": "^3.17.1"
  8274. },
  8275. "type": "library",
  8276. "autoload": {
  8277. "psr-4": {
  8278. "Facade\\IgnitionContracts\\": "src"
  8279. }
  8280. },
  8281. "notification-url": "https://packagist.org/downloads/",
  8282. "license": [
  8283. "MIT"
  8284. ],
  8285. "authors": [
  8286. {
  8287. "name": "Freek Van der Herten",
  8288. "email": "freek@spatie.be",
  8289. "homepage": "https://flareapp.io",
  8290. "role": "Developer"
  8291. }
  8292. ],
  8293. "description": "Solution contracts for Ignition",
  8294. "homepage": "https://github.com/facade/ignition-contracts",
  8295. "keywords": [
  8296. "contracts",
  8297. "flare",
  8298. "ignition"
  8299. ],
  8300. "support": {
  8301. "issues": "https://github.com/facade/ignition-contracts/issues",
  8302. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8303. },
  8304. "time": "2020-10-16T08:27:54+00:00"
  8305. },
  8306. {
  8307. "name": "fakerphp/faker",
  8308. "version": "v1.23.0",
  8309. "source": {
  8310. "type": "git",
  8311. "url": "https://github.com/FakerPHP/Faker.git",
  8312. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8313. },
  8314. "dist": {
  8315. "type": "zip",
  8316. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8317. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8318. "shasum": "",
  8319. "mirrors": [
  8320. {
  8321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8322. "preferred": true
  8323. }
  8324. ]
  8325. },
  8326. "require": {
  8327. "php": "^7.4 || ^8.0",
  8328. "psr/container": "^1.0 || ^2.0",
  8329. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8330. },
  8331. "conflict": {
  8332. "fzaninotto/faker": "*"
  8333. },
  8334. "require-dev": {
  8335. "bamarni/composer-bin-plugin": "^1.4.1",
  8336. "doctrine/persistence": "^1.3 || ^2.0",
  8337. "ext-intl": "*",
  8338. "phpunit/phpunit": "^9.5.26",
  8339. "symfony/phpunit-bridge": "^5.4.16"
  8340. },
  8341. "suggest": {
  8342. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8343. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8344. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8345. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8346. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8347. },
  8348. "type": "library",
  8349. "extra": {
  8350. "branch-alias": {
  8351. "dev-main": "v1.21-dev"
  8352. }
  8353. },
  8354. "autoload": {
  8355. "psr-4": {
  8356. "Faker\\": "src/Faker/"
  8357. }
  8358. },
  8359. "notification-url": "https://packagist.org/downloads/",
  8360. "license": [
  8361. "MIT"
  8362. ],
  8363. "authors": [
  8364. {
  8365. "name": "François Zaninotto"
  8366. }
  8367. ],
  8368. "description": "Faker is a PHP library that generates fake data for you.",
  8369. "keywords": [
  8370. "data",
  8371. "faker",
  8372. "fixtures"
  8373. ],
  8374. "support": {
  8375. "issues": "https://github.com/FakerPHP/Faker/issues",
  8376. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8377. },
  8378. "time": "2023-06-12T08:44:38+00:00"
  8379. },
  8380. {
  8381. "name": "filp/whoops",
  8382. "version": "2.15.4",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/filp/whoops.git",
  8386. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8391. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8392. "shasum": "",
  8393. "mirrors": [
  8394. {
  8395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8396. "preferred": true
  8397. }
  8398. ]
  8399. },
  8400. "require": {
  8401. "php": "^5.5.9 || ^7.0 || ^8.0",
  8402. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8403. },
  8404. "require-dev": {
  8405. "mockery/mockery": "^0.9 || ^1.0",
  8406. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8407. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8408. },
  8409. "suggest": {
  8410. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8411. "whoops/soap": "Formats errors as SOAP responses"
  8412. },
  8413. "type": "library",
  8414. "extra": {
  8415. "branch-alias": {
  8416. "dev-master": "2.7-dev"
  8417. }
  8418. },
  8419. "autoload": {
  8420. "psr-4": {
  8421. "Whoops\\": "src/Whoops/"
  8422. }
  8423. },
  8424. "notification-url": "https://packagist.org/downloads/",
  8425. "license": [
  8426. "MIT"
  8427. ],
  8428. "authors": [
  8429. {
  8430. "name": "Filipe Dobreira",
  8431. "homepage": "https://github.com/filp",
  8432. "role": "Developer"
  8433. }
  8434. ],
  8435. "description": "php error handling for cool kids",
  8436. "homepage": "https://filp.github.io/whoops/",
  8437. "keywords": [
  8438. "error",
  8439. "exception",
  8440. "handling",
  8441. "library",
  8442. "throwable",
  8443. "whoops"
  8444. ],
  8445. "support": {
  8446. "issues": "https://github.com/filp/whoops/issues",
  8447. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8448. },
  8449. "funding": [
  8450. {
  8451. "url": "https://github.com/denis-sokolov",
  8452. "type": "github"
  8453. }
  8454. ],
  8455. "time": "2023-11-03T12:00:00+00:00"
  8456. },
  8457. {
  8458. "name": "hamcrest/hamcrest-php",
  8459. "version": "v2.0.1",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8463. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8468. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8469. "shasum": "",
  8470. "mirrors": [
  8471. {
  8472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8473. "preferred": true
  8474. }
  8475. ]
  8476. },
  8477. "require": {
  8478. "php": "^5.3|^7.0|^8.0"
  8479. },
  8480. "replace": {
  8481. "cordoval/hamcrest-php": "*",
  8482. "davedevelopment/hamcrest-php": "*",
  8483. "kodova/hamcrest-php": "*"
  8484. },
  8485. "require-dev": {
  8486. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8487. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8488. },
  8489. "type": "library",
  8490. "extra": {
  8491. "branch-alias": {
  8492. "dev-master": "2.1-dev"
  8493. }
  8494. },
  8495. "autoload": {
  8496. "classmap": [
  8497. "hamcrest"
  8498. ]
  8499. },
  8500. "notification-url": "https://packagist.org/downloads/",
  8501. "license": [
  8502. "BSD-3-Clause"
  8503. ],
  8504. "description": "This is the PHP port of Hamcrest Matchers",
  8505. "keywords": [
  8506. "test"
  8507. ],
  8508. "support": {
  8509. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8510. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8511. },
  8512. "time": "2020-07-09T08:09:16+00:00"
  8513. },
  8514. {
  8515. "name": "laravel/sail",
  8516. "version": "v1.19.0",
  8517. "source": {
  8518. "type": "git",
  8519. "url": "https://github.com/laravel/sail.git",
  8520. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  8521. },
  8522. "dist": {
  8523. "type": "zip",
  8524. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8525. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8526. "shasum": "",
  8527. "mirrors": [
  8528. {
  8529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8530. "preferred": true
  8531. }
  8532. ]
  8533. },
  8534. "require": {
  8535. "illuminate/console": "^8.0|^9.0|^10.0",
  8536. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8537. "illuminate/support": "^8.0|^9.0|^10.0",
  8538. "php": "^7.3|^8.0"
  8539. },
  8540. "bin": [
  8541. "bin/sail"
  8542. ],
  8543. "type": "library",
  8544. "extra": {
  8545. "branch-alias": {
  8546. "dev-master": "1.x-dev"
  8547. },
  8548. "laravel": {
  8549. "providers": [
  8550. "Laravel\\Sail\\SailServiceProvider"
  8551. ]
  8552. }
  8553. },
  8554. "autoload": {
  8555. "psr-4": {
  8556. "Laravel\\Sail\\": "src/"
  8557. }
  8558. },
  8559. "notification-url": "https://packagist.org/downloads/",
  8560. "license": [
  8561. "MIT"
  8562. ],
  8563. "authors": [
  8564. {
  8565. "name": "Taylor Otwell",
  8566. "email": "taylor@laravel.com"
  8567. }
  8568. ],
  8569. "description": "Docker files for running a basic Laravel application.",
  8570. "keywords": [
  8571. "docker",
  8572. "laravel"
  8573. ],
  8574. "support": {
  8575. "issues": "https://github.com/laravel/sail/issues",
  8576. "source": "https://github.com/laravel/sail"
  8577. },
  8578. "time": "2023-01-31T13:37:57+00:00"
  8579. },
  8580. {
  8581. "name": "mockery/mockery",
  8582. "version": "1.6.6",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/mockery/mockery.git",
  8586. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  8591. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  8592. "shasum": "",
  8593. "mirrors": [
  8594. {
  8595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8596. "preferred": true
  8597. }
  8598. ]
  8599. },
  8600. "require": {
  8601. "hamcrest/hamcrest-php": "^2.0.1",
  8602. "lib-pcre": ">=7.0",
  8603. "php": ">=7.3"
  8604. },
  8605. "conflict": {
  8606. "phpunit/phpunit": "<8.0"
  8607. },
  8608. "require-dev": {
  8609. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8610. "psalm/plugin-phpunit": "^0.18.4",
  8611. "symplify/easy-coding-standard": "^11.5.0",
  8612. "vimeo/psalm": "^4.30"
  8613. },
  8614. "type": "library",
  8615. "autoload": {
  8616. "files": [
  8617. "library/helpers.php",
  8618. "library/Mockery.php"
  8619. ],
  8620. "psr-4": {
  8621. "Mockery\\": "library/Mockery"
  8622. }
  8623. },
  8624. "notification-url": "https://packagist.org/downloads/",
  8625. "license": [
  8626. "BSD-3-Clause"
  8627. ],
  8628. "authors": [
  8629. {
  8630. "name": "Pádraic Brady",
  8631. "email": "padraic.brady@gmail.com",
  8632. "homepage": "https://github.com/padraic",
  8633. "role": "Author"
  8634. },
  8635. {
  8636. "name": "Dave Marshall",
  8637. "email": "dave.marshall@atstsolutions.co.uk",
  8638. "homepage": "https://davedevelopment.co.uk",
  8639. "role": "Developer"
  8640. },
  8641. {
  8642. "name": "Nathanael Esayeas",
  8643. "email": "nathanael.esayeas@protonmail.com",
  8644. "homepage": "https://github.com/ghostwriter",
  8645. "role": "Lead Developer"
  8646. }
  8647. ],
  8648. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8649. "homepage": "https://github.com/mockery/mockery",
  8650. "keywords": [
  8651. "BDD",
  8652. "TDD",
  8653. "library",
  8654. "mock",
  8655. "mock objects",
  8656. "mockery",
  8657. "stub",
  8658. "test",
  8659. "test double",
  8660. "testing"
  8661. ],
  8662. "support": {
  8663. "docs": "https://docs.mockery.io/",
  8664. "issues": "https://github.com/mockery/mockery/issues",
  8665. "rss": "https://github.com/mockery/mockery/releases.atom",
  8666. "security": "https://github.com/mockery/mockery/security/advisories",
  8667. "source": "https://github.com/mockery/mockery"
  8668. },
  8669. "time": "2023-08-09T00:03:52+00:00"
  8670. },
  8671. {
  8672. "name": "myclabs/deep-copy",
  8673. "version": "1.11.1",
  8674. "source": {
  8675. "type": "git",
  8676. "url": "https://github.com/myclabs/DeepCopy.git",
  8677. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8678. },
  8679. "dist": {
  8680. "type": "zip",
  8681. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8682. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8683. "shasum": "",
  8684. "mirrors": [
  8685. {
  8686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8687. "preferred": true
  8688. }
  8689. ]
  8690. },
  8691. "require": {
  8692. "php": "^7.1 || ^8.0"
  8693. },
  8694. "conflict": {
  8695. "doctrine/collections": "<1.6.8",
  8696. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8697. },
  8698. "require-dev": {
  8699. "doctrine/collections": "^1.6.8",
  8700. "doctrine/common": "^2.13.3 || ^3.2.2",
  8701. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8702. },
  8703. "type": "library",
  8704. "autoload": {
  8705. "files": [
  8706. "src/DeepCopy/deep_copy.php"
  8707. ],
  8708. "psr-4": {
  8709. "DeepCopy\\": "src/DeepCopy/"
  8710. }
  8711. },
  8712. "notification-url": "https://packagist.org/downloads/",
  8713. "license": [
  8714. "MIT"
  8715. ],
  8716. "description": "Create deep copies (clones) of your objects",
  8717. "keywords": [
  8718. "clone",
  8719. "copy",
  8720. "duplicate",
  8721. "object",
  8722. "object graph"
  8723. ],
  8724. "support": {
  8725. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8726. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8727. },
  8728. "funding": [
  8729. {
  8730. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8731. "type": "tidelift"
  8732. }
  8733. ],
  8734. "time": "2023-03-08T13:26:56+00:00"
  8735. },
  8736. {
  8737. "name": "nunomaduro/collision",
  8738. "version": "v5.11.0",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/nunomaduro/collision.git",
  8742. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8747. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8748. "shasum": "",
  8749. "mirrors": [
  8750. {
  8751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8752. "preferred": true
  8753. }
  8754. ]
  8755. },
  8756. "require": {
  8757. "facade/ignition-contracts": "^1.0",
  8758. "filp/whoops": "^2.14.3",
  8759. "php": "^7.3 || ^8.0",
  8760. "symfony/console": "^5.0"
  8761. },
  8762. "require-dev": {
  8763. "brianium/paratest": "^6.1",
  8764. "fideloper/proxy": "^4.4.1",
  8765. "fruitcake/laravel-cors": "^2.0.3",
  8766. "laravel/framework": "8.x-dev",
  8767. "nunomaduro/larastan": "^0.6.2",
  8768. "nunomaduro/mock-final-classes": "^1.0",
  8769. "orchestra/testbench": "^6.0",
  8770. "phpstan/phpstan": "^0.12.64",
  8771. "phpunit/phpunit": "^9.5.0"
  8772. },
  8773. "type": "library",
  8774. "extra": {
  8775. "laravel": {
  8776. "providers": [
  8777. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8778. ]
  8779. }
  8780. },
  8781. "autoload": {
  8782. "psr-4": {
  8783. "NunoMaduro\\Collision\\": "src/"
  8784. }
  8785. },
  8786. "notification-url": "https://packagist.org/downloads/",
  8787. "license": [
  8788. "MIT"
  8789. ],
  8790. "authors": [
  8791. {
  8792. "name": "Nuno Maduro",
  8793. "email": "enunomaduro@gmail.com"
  8794. }
  8795. ],
  8796. "description": "Cli error handling for console/command-line PHP applications.",
  8797. "keywords": [
  8798. "artisan",
  8799. "cli",
  8800. "command-line",
  8801. "console",
  8802. "error",
  8803. "handling",
  8804. "laravel",
  8805. "laravel-zero",
  8806. "php",
  8807. "symfony"
  8808. ],
  8809. "support": {
  8810. "issues": "https://github.com/nunomaduro/collision/issues",
  8811. "source": "https://github.com/nunomaduro/collision"
  8812. },
  8813. "funding": [
  8814. {
  8815. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8816. "type": "custom"
  8817. },
  8818. {
  8819. "url": "https://github.com/nunomaduro",
  8820. "type": "github"
  8821. },
  8822. {
  8823. "url": "https://www.patreon.com/nunomaduro",
  8824. "type": "patreon"
  8825. }
  8826. ],
  8827. "time": "2022-01-10T16:22:52+00:00"
  8828. },
  8829. {
  8830. "name": "phar-io/manifest",
  8831. "version": "2.0.3",
  8832. "source": {
  8833. "type": "git",
  8834. "url": "https://github.com/phar-io/manifest.git",
  8835. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8836. },
  8837. "dist": {
  8838. "type": "zip",
  8839. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8840. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8841. "shasum": "",
  8842. "mirrors": [
  8843. {
  8844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8845. "preferred": true
  8846. }
  8847. ]
  8848. },
  8849. "require": {
  8850. "ext-dom": "*",
  8851. "ext-phar": "*",
  8852. "ext-xmlwriter": "*",
  8853. "phar-io/version": "^3.0.1",
  8854. "php": "^7.2 || ^8.0"
  8855. },
  8856. "type": "library",
  8857. "extra": {
  8858. "branch-alias": {
  8859. "dev-master": "2.0.x-dev"
  8860. }
  8861. },
  8862. "autoload": {
  8863. "classmap": [
  8864. "src/"
  8865. ]
  8866. },
  8867. "notification-url": "https://packagist.org/downloads/",
  8868. "license": [
  8869. "BSD-3-Clause"
  8870. ],
  8871. "authors": [
  8872. {
  8873. "name": "Arne Blankerts",
  8874. "email": "arne@blankerts.de",
  8875. "role": "Developer"
  8876. },
  8877. {
  8878. "name": "Sebastian Heuer",
  8879. "email": "sebastian@phpeople.de",
  8880. "role": "Developer"
  8881. },
  8882. {
  8883. "name": "Sebastian Bergmann",
  8884. "email": "sebastian@phpunit.de",
  8885. "role": "Developer"
  8886. }
  8887. ],
  8888. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8889. "support": {
  8890. "issues": "https://github.com/phar-io/manifest/issues",
  8891. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8892. },
  8893. "time": "2021-07-20T11:28:43+00:00"
  8894. },
  8895. {
  8896. "name": "phar-io/version",
  8897. "version": "3.2.1",
  8898. "source": {
  8899. "type": "git",
  8900. "url": "https://github.com/phar-io/version.git",
  8901. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8902. },
  8903. "dist": {
  8904. "type": "zip",
  8905. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8906. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8907. "shasum": "",
  8908. "mirrors": [
  8909. {
  8910. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8911. "preferred": true
  8912. }
  8913. ]
  8914. },
  8915. "require": {
  8916. "php": "^7.2 || ^8.0"
  8917. },
  8918. "type": "library",
  8919. "autoload": {
  8920. "classmap": [
  8921. "src/"
  8922. ]
  8923. },
  8924. "notification-url": "https://packagist.org/downloads/",
  8925. "license": [
  8926. "BSD-3-Clause"
  8927. ],
  8928. "authors": [
  8929. {
  8930. "name": "Arne Blankerts",
  8931. "email": "arne@blankerts.de",
  8932. "role": "Developer"
  8933. },
  8934. {
  8935. "name": "Sebastian Heuer",
  8936. "email": "sebastian@phpeople.de",
  8937. "role": "Developer"
  8938. },
  8939. {
  8940. "name": "Sebastian Bergmann",
  8941. "email": "sebastian@phpunit.de",
  8942. "role": "Developer"
  8943. }
  8944. ],
  8945. "description": "Library for handling version information and constraints",
  8946. "support": {
  8947. "issues": "https://github.com/phar-io/version/issues",
  8948. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8949. },
  8950. "time": "2022-02-21T01:04:05+00:00"
  8951. },
  8952. {
  8953. "name": "phpunit/php-code-coverage",
  8954. "version": "9.2.30",
  8955. "source": {
  8956. "type": "git",
  8957. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8958. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  8959. },
  8960. "dist": {
  8961. "type": "zip",
  8962. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8963. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8964. "shasum": "",
  8965. "mirrors": [
  8966. {
  8967. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8968. "preferred": true
  8969. }
  8970. ]
  8971. },
  8972. "require": {
  8973. "ext-dom": "*",
  8974. "ext-libxml": "*",
  8975. "ext-xmlwriter": "*",
  8976. "nikic/php-parser": "^4.18 || ^5.0",
  8977. "php": ">=7.3",
  8978. "phpunit/php-file-iterator": "^3.0.3",
  8979. "phpunit/php-text-template": "^2.0.2",
  8980. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8981. "sebastian/complexity": "^2.0",
  8982. "sebastian/environment": "^5.1.2",
  8983. "sebastian/lines-of-code": "^1.0.3",
  8984. "sebastian/version": "^3.0.1",
  8985. "theseer/tokenizer": "^1.2.0"
  8986. },
  8987. "require-dev": {
  8988. "phpunit/phpunit": "^9.3"
  8989. },
  8990. "suggest": {
  8991. "ext-pcov": "PHP extension that provides line coverage",
  8992. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8993. },
  8994. "type": "library",
  8995. "extra": {
  8996. "branch-alias": {
  8997. "dev-master": "9.2-dev"
  8998. }
  8999. },
  9000. "autoload": {
  9001. "classmap": [
  9002. "src/"
  9003. ]
  9004. },
  9005. "notification-url": "https://packagist.org/downloads/",
  9006. "license": [
  9007. "BSD-3-Clause"
  9008. ],
  9009. "authors": [
  9010. {
  9011. "name": "Sebastian Bergmann",
  9012. "email": "sebastian@phpunit.de",
  9013. "role": "lead"
  9014. }
  9015. ],
  9016. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9017. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9018. "keywords": [
  9019. "coverage",
  9020. "testing",
  9021. "xunit"
  9022. ],
  9023. "support": {
  9024. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9025. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9026. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9027. },
  9028. "funding": [
  9029. {
  9030. "url": "https://github.com/sebastianbergmann",
  9031. "type": "github"
  9032. }
  9033. ],
  9034. "time": "2023-12-22T06:47:57+00:00"
  9035. },
  9036. {
  9037. "name": "phpunit/php-file-iterator",
  9038. "version": "3.0.6",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9042. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9047. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9048. "shasum": "",
  9049. "mirrors": [
  9050. {
  9051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9052. "preferred": true
  9053. }
  9054. ]
  9055. },
  9056. "require": {
  9057. "php": ">=7.3"
  9058. },
  9059. "require-dev": {
  9060. "phpunit/phpunit": "^9.3"
  9061. },
  9062. "type": "library",
  9063. "extra": {
  9064. "branch-alias": {
  9065. "dev-master": "3.0-dev"
  9066. }
  9067. },
  9068. "autoload": {
  9069. "classmap": [
  9070. "src/"
  9071. ]
  9072. },
  9073. "notification-url": "https://packagist.org/downloads/",
  9074. "license": [
  9075. "BSD-3-Clause"
  9076. ],
  9077. "authors": [
  9078. {
  9079. "name": "Sebastian Bergmann",
  9080. "email": "sebastian@phpunit.de",
  9081. "role": "lead"
  9082. }
  9083. ],
  9084. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9085. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9086. "keywords": [
  9087. "filesystem",
  9088. "iterator"
  9089. ],
  9090. "support": {
  9091. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9092. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9093. },
  9094. "funding": [
  9095. {
  9096. "url": "https://github.com/sebastianbergmann",
  9097. "type": "github"
  9098. }
  9099. ],
  9100. "time": "2021-12-02T12:48:52+00:00"
  9101. },
  9102. {
  9103. "name": "phpunit/php-invoker",
  9104. "version": "3.1.1",
  9105. "source": {
  9106. "type": "git",
  9107. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9108. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9109. },
  9110. "dist": {
  9111. "type": "zip",
  9112. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9113. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9114. "shasum": "",
  9115. "mirrors": [
  9116. {
  9117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9118. "preferred": true
  9119. }
  9120. ]
  9121. },
  9122. "require": {
  9123. "php": ">=7.3"
  9124. },
  9125. "require-dev": {
  9126. "ext-pcntl": "*",
  9127. "phpunit/phpunit": "^9.3"
  9128. },
  9129. "suggest": {
  9130. "ext-pcntl": "*"
  9131. },
  9132. "type": "library",
  9133. "extra": {
  9134. "branch-alias": {
  9135. "dev-master": "3.1-dev"
  9136. }
  9137. },
  9138. "autoload": {
  9139. "classmap": [
  9140. "src/"
  9141. ]
  9142. },
  9143. "notification-url": "https://packagist.org/downloads/",
  9144. "license": [
  9145. "BSD-3-Clause"
  9146. ],
  9147. "authors": [
  9148. {
  9149. "name": "Sebastian Bergmann",
  9150. "email": "sebastian@phpunit.de",
  9151. "role": "lead"
  9152. }
  9153. ],
  9154. "description": "Invoke callables with a timeout",
  9155. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9156. "keywords": [
  9157. "process"
  9158. ],
  9159. "support": {
  9160. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9161. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9162. },
  9163. "funding": [
  9164. {
  9165. "url": "https://github.com/sebastianbergmann",
  9166. "type": "github"
  9167. }
  9168. ],
  9169. "time": "2020-09-28T05:58:55+00:00"
  9170. },
  9171. {
  9172. "name": "phpunit/php-text-template",
  9173. "version": "2.0.4",
  9174. "source": {
  9175. "type": "git",
  9176. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9177. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9178. },
  9179. "dist": {
  9180. "type": "zip",
  9181. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9182. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9183. "shasum": "",
  9184. "mirrors": [
  9185. {
  9186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9187. "preferred": true
  9188. }
  9189. ]
  9190. },
  9191. "require": {
  9192. "php": ">=7.3"
  9193. },
  9194. "require-dev": {
  9195. "phpunit/phpunit": "^9.3"
  9196. },
  9197. "type": "library",
  9198. "extra": {
  9199. "branch-alias": {
  9200. "dev-master": "2.0-dev"
  9201. }
  9202. },
  9203. "autoload": {
  9204. "classmap": [
  9205. "src/"
  9206. ]
  9207. },
  9208. "notification-url": "https://packagist.org/downloads/",
  9209. "license": [
  9210. "BSD-3-Clause"
  9211. ],
  9212. "authors": [
  9213. {
  9214. "name": "Sebastian Bergmann",
  9215. "email": "sebastian@phpunit.de",
  9216. "role": "lead"
  9217. }
  9218. ],
  9219. "description": "Simple template engine.",
  9220. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9221. "keywords": [
  9222. "template"
  9223. ],
  9224. "support": {
  9225. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9226. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9227. },
  9228. "funding": [
  9229. {
  9230. "url": "https://github.com/sebastianbergmann",
  9231. "type": "github"
  9232. }
  9233. ],
  9234. "time": "2020-10-26T05:33:50+00:00"
  9235. },
  9236. {
  9237. "name": "phpunit/php-timer",
  9238. "version": "5.0.3",
  9239. "source": {
  9240. "type": "git",
  9241. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9242. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9243. },
  9244. "dist": {
  9245. "type": "zip",
  9246. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9247. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9248. "shasum": "",
  9249. "mirrors": [
  9250. {
  9251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9252. "preferred": true
  9253. }
  9254. ]
  9255. },
  9256. "require": {
  9257. "php": ">=7.3"
  9258. },
  9259. "require-dev": {
  9260. "phpunit/phpunit": "^9.3"
  9261. },
  9262. "type": "library",
  9263. "extra": {
  9264. "branch-alias": {
  9265. "dev-master": "5.0-dev"
  9266. }
  9267. },
  9268. "autoload": {
  9269. "classmap": [
  9270. "src/"
  9271. ]
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "BSD-3-Clause"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Sebastian Bergmann",
  9280. "email": "sebastian@phpunit.de",
  9281. "role": "lead"
  9282. }
  9283. ],
  9284. "description": "Utility class for timing",
  9285. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9286. "keywords": [
  9287. "timer"
  9288. ],
  9289. "support": {
  9290. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9291. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9292. },
  9293. "funding": [
  9294. {
  9295. "url": "https://github.com/sebastianbergmann",
  9296. "type": "github"
  9297. }
  9298. ],
  9299. "time": "2020-10-26T13:16:10+00:00"
  9300. },
  9301. {
  9302. "name": "phpunit/phpunit",
  9303. "version": "9.6.15",
  9304. "source": {
  9305. "type": "git",
  9306. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9307. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9308. },
  9309. "dist": {
  9310. "type": "zip",
  9311. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9312. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9313. "shasum": "",
  9314. "mirrors": [
  9315. {
  9316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9317. "preferred": true
  9318. }
  9319. ]
  9320. },
  9321. "require": {
  9322. "doctrine/instantiator": "^1.3.1 || ^2",
  9323. "ext-dom": "*",
  9324. "ext-json": "*",
  9325. "ext-libxml": "*",
  9326. "ext-mbstring": "*",
  9327. "ext-xml": "*",
  9328. "ext-xmlwriter": "*",
  9329. "myclabs/deep-copy": "^1.10.1",
  9330. "phar-io/manifest": "^2.0.3",
  9331. "phar-io/version": "^3.0.2",
  9332. "php": ">=7.3",
  9333. "phpunit/php-code-coverage": "^9.2.28",
  9334. "phpunit/php-file-iterator": "^3.0.5",
  9335. "phpunit/php-invoker": "^3.1.1",
  9336. "phpunit/php-text-template": "^2.0.3",
  9337. "phpunit/php-timer": "^5.0.2",
  9338. "sebastian/cli-parser": "^1.0.1",
  9339. "sebastian/code-unit": "^1.0.6",
  9340. "sebastian/comparator": "^4.0.8",
  9341. "sebastian/diff": "^4.0.3",
  9342. "sebastian/environment": "^5.1.3",
  9343. "sebastian/exporter": "^4.0.5",
  9344. "sebastian/global-state": "^5.0.1",
  9345. "sebastian/object-enumerator": "^4.0.3",
  9346. "sebastian/resource-operations": "^3.0.3",
  9347. "sebastian/type": "^3.2",
  9348. "sebastian/version": "^3.0.2"
  9349. },
  9350. "suggest": {
  9351. "ext-soap": "To be able to generate mocks based on WSDL files",
  9352. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9353. },
  9354. "bin": [
  9355. "phpunit"
  9356. ],
  9357. "type": "library",
  9358. "extra": {
  9359. "branch-alias": {
  9360. "dev-master": "9.6-dev"
  9361. }
  9362. },
  9363. "autoload": {
  9364. "files": [
  9365. "src/Framework/Assert/Functions.php"
  9366. ],
  9367. "classmap": [
  9368. "src/"
  9369. ]
  9370. },
  9371. "notification-url": "https://packagist.org/downloads/",
  9372. "license": [
  9373. "BSD-3-Clause"
  9374. ],
  9375. "authors": [
  9376. {
  9377. "name": "Sebastian Bergmann",
  9378. "email": "sebastian@phpunit.de",
  9379. "role": "lead"
  9380. }
  9381. ],
  9382. "description": "The PHP Unit Testing framework.",
  9383. "homepage": "https://phpunit.de/",
  9384. "keywords": [
  9385. "phpunit",
  9386. "testing",
  9387. "xunit"
  9388. ],
  9389. "support": {
  9390. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9391. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9392. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://phpunit.de/sponsors.html",
  9397. "type": "custom"
  9398. },
  9399. {
  9400. "url": "https://github.com/sebastianbergmann",
  9401. "type": "github"
  9402. },
  9403. {
  9404. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9405. "type": "tidelift"
  9406. }
  9407. ],
  9408. "time": "2023-12-01T16:55:19+00:00"
  9409. },
  9410. {
  9411. "name": "sebastian/cli-parser",
  9412. "version": "1.0.1",
  9413. "source": {
  9414. "type": "git",
  9415. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9416. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9417. },
  9418. "dist": {
  9419. "type": "zip",
  9420. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9421. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9422. "shasum": "",
  9423. "mirrors": [
  9424. {
  9425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9426. "preferred": true
  9427. }
  9428. ]
  9429. },
  9430. "require": {
  9431. "php": ">=7.3"
  9432. },
  9433. "require-dev": {
  9434. "phpunit/phpunit": "^9.3"
  9435. },
  9436. "type": "library",
  9437. "extra": {
  9438. "branch-alias": {
  9439. "dev-master": "1.0-dev"
  9440. }
  9441. },
  9442. "autoload": {
  9443. "classmap": [
  9444. "src/"
  9445. ]
  9446. },
  9447. "notification-url": "https://packagist.org/downloads/",
  9448. "license": [
  9449. "BSD-3-Clause"
  9450. ],
  9451. "authors": [
  9452. {
  9453. "name": "Sebastian Bergmann",
  9454. "email": "sebastian@phpunit.de",
  9455. "role": "lead"
  9456. }
  9457. ],
  9458. "description": "Library for parsing CLI options",
  9459. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9460. "support": {
  9461. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9462. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9463. },
  9464. "funding": [
  9465. {
  9466. "url": "https://github.com/sebastianbergmann",
  9467. "type": "github"
  9468. }
  9469. ],
  9470. "time": "2020-09-28T06:08:49+00:00"
  9471. },
  9472. {
  9473. "name": "sebastian/code-unit",
  9474. "version": "1.0.8",
  9475. "source": {
  9476. "type": "git",
  9477. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9478. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9479. },
  9480. "dist": {
  9481. "type": "zip",
  9482. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9483. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9484. "shasum": "",
  9485. "mirrors": [
  9486. {
  9487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9488. "preferred": true
  9489. }
  9490. ]
  9491. },
  9492. "require": {
  9493. "php": ">=7.3"
  9494. },
  9495. "require-dev": {
  9496. "phpunit/phpunit": "^9.3"
  9497. },
  9498. "type": "library",
  9499. "extra": {
  9500. "branch-alias": {
  9501. "dev-master": "1.0-dev"
  9502. }
  9503. },
  9504. "autoload": {
  9505. "classmap": [
  9506. "src/"
  9507. ]
  9508. },
  9509. "notification-url": "https://packagist.org/downloads/",
  9510. "license": [
  9511. "BSD-3-Clause"
  9512. ],
  9513. "authors": [
  9514. {
  9515. "name": "Sebastian Bergmann",
  9516. "email": "sebastian@phpunit.de",
  9517. "role": "lead"
  9518. }
  9519. ],
  9520. "description": "Collection of value objects that represent the PHP code units",
  9521. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9522. "support": {
  9523. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9524. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9525. },
  9526. "funding": [
  9527. {
  9528. "url": "https://github.com/sebastianbergmann",
  9529. "type": "github"
  9530. }
  9531. ],
  9532. "time": "2020-10-26T13:08:54+00:00"
  9533. },
  9534. {
  9535. "name": "sebastian/code-unit-reverse-lookup",
  9536. "version": "2.0.3",
  9537. "source": {
  9538. "type": "git",
  9539. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9540. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9541. },
  9542. "dist": {
  9543. "type": "zip",
  9544. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9545. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9546. "shasum": "",
  9547. "mirrors": [
  9548. {
  9549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9550. "preferred": true
  9551. }
  9552. ]
  9553. },
  9554. "require": {
  9555. "php": ">=7.3"
  9556. },
  9557. "require-dev": {
  9558. "phpunit/phpunit": "^9.3"
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-master": "2.0-dev"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "classmap": [
  9568. "src/"
  9569. ]
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "BSD-3-Clause"
  9574. ],
  9575. "authors": [
  9576. {
  9577. "name": "Sebastian Bergmann",
  9578. "email": "sebastian@phpunit.de"
  9579. }
  9580. ],
  9581. "description": "Looks up which function or method a line of code belongs to",
  9582. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9583. "support": {
  9584. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9585. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9586. },
  9587. "funding": [
  9588. {
  9589. "url": "https://github.com/sebastianbergmann",
  9590. "type": "github"
  9591. }
  9592. ],
  9593. "time": "2020-09-28T05:30:19+00:00"
  9594. },
  9595. {
  9596. "name": "sebastian/comparator",
  9597. "version": "4.0.8",
  9598. "source": {
  9599. "type": "git",
  9600. "url": "https://github.com/sebastianbergmann/comparator.git",
  9601. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9602. },
  9603. "dist": {
  9604. "type": "zip",
  9605. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9606. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9607. "shasum": "",
  9608. "mirrors": [
  9609. {
  9610. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9611. "preferred": true
  9612. }
  9613. ]
  9614. },
  9615. "require": {
  9616. "php": ">=7.3",
  9617. "sebastian/diff": "^4.0",
  9618. "sebastian/exporter": "^4.0"
  9619. },
  9620. "require-dev": {
  9621. "phpunit/phpunit": "^9.3"
  9622. },
  9623. "type": "library",
  9624. "extra": {
  9625. "branch-alias": {
  9626. "dev-master": "4.0-dev"
  9627. }
  9628. },
  9629. "autoload": {
  9630. "classmap": [
  9631. "src/"
  9632. ]
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "BSD-3-Clause"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Sebastian Bergmann",
  9641. "email": "sebastian@phpunit.de"
  9642. },
  9643. {
  9644. "name": "Jeff Welch",
  9645. "email": "whatthejeff@gmail.com"
  9646. },
  9647. {
  9648. "name": "Volker Dusch",
  9649. "email": "github@wallbash.com"
  9650. },
  9651. {
  9652. "name": "Bernhard Schussek",
  9653. "email": "bschussek@2bepublished.at"
  9654. }
  9655. ],
  9656. "description": "Provides the functionality to compare PHP values for equality",
  9657. "homepage": "https://github.com/sebastianbergmann/comparator",
  9658. "keywords": [
  9659. "comparator",
  9660. "compare",
  9661. "equality"
  9662. ],
  9663. "support": {
  9664. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9665. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9666. },
  9667. "funding": [
  9668. {
  9669. "url": "https://github.com/sebastianbergmann",
  9670. "type": "github"
  9671. }
  9672. ],
  9673. "time": "2022-09-14T12:41:17+00:00"
  9674. },
  9675. {
  9676. "name": "sebastian/complexity",
  9677. "version": "2.0.3",
  9678. "source": {
  9679. "type": "git",
  9680. "url": "https://github.com/sebastianbergmann/complexity.git",
  9681. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9682. },
  9683. "dist": {
  9684. "type": "zip",
  9685. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9686. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9687. "shasum": "",
  9688. "mirrors": [
  9689. {
  9690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9691. "preferred": true
  9692. }
  9693. ]
  9694. },
  9695. "require": {
  9696. "nikic/php-parser": "^4.18 || ^5.0",
  9697. "php": ">=7.3"
  9698. },
  9699. "require-dev": {
  9700. "phpunit/phpunit": "^9.3"
  9701. },
  9702. "type": "library",
  9703. "extra": {
  9704. "branch-alias": {
  9705. "dev-master": "2.0-dev"
  9706. }
  9707. },
  9708. "autoload": {
  9709. "classmap": [
  9710. "src/"
  9711. ]
  9712. },
  9713. "notification-url": "https://packagist.org/downloads/",
  9714. "license": [
  9715. "BSD-3-Clause"
  9716. ],
  9717. "authors": [
  9718. {
  9719. "name": "Sebastian Bergmann",
  9720. "email": "sebastian@phpunit.de",
  9721. "role": "lead"
  9722. }
  9723. ],
  9724. "description": "Library for calculating the complexity of PHP code units",
  9725. "homepage": "https://github.com/sebastianbergmann/complexity",
  9726. "support": {
  9727. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9728. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9729. },
  9730. "funding": [
  9731. {
  9732. "url": "https://github.com/sebastianbergmann",
  9733. "type": "github"
  9734. }
  9735. ],
  9736. "time": "2023-12-22T06:19:30+00:00"
  9737. },
  9738. {
  9739. "name": "sebastian/diff",
  9740. "version": "4.0.5",
  9741. "source": {
  9742. "type": "git",
  9743. "url": "https://github.com/sebastianbergmann/diff.git",
  9744. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9745. },
  9746. "dist": {
  9747. "type": "zip",
  9748. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9749. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9750. "shasum": "",
  9751. "mirrors": [
  9752. {
  9753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9754. "preferred": true
  9755. }
  9756. ]
  9757. },
  9758. "require": {
  9759. "php": ">=7.3"
  9760. },
  9761. "require-dev": {
  9762. "phpunit/phpunit": "^9.3",
  9763. "symfony/process": "^4.2 || ^5"
  9764. },
  9765. "type": "library",
  9766. "extra": {
  9767. "branch-alias": {
  9768. "dev-master": "4.0-dev"
  9769. }
  9770. },
  9771. "autoload": {
  9772. "classmap": [
  9773. "src/"
  9774. ]
  9775. },
  9776. "notification-url": "https://packagist.org/downloads/",
  9777. "license": [
  9778. "BSD-3-Clause"
  9779. ],
  9780. "authors": [
  9781. {
  9782. "name": "Sebastian Bergmann",
  9783. "email": "sebastian@phpunit.de"
  9784. },
  9785. {
  9786. "name": "Kore Nordmann",
  9787. "email": "mail@kore-nordmann.de"
  9788. }
  9789. ],
  9790. "description": "Diff implementation",
  9791. "homepage": "https://github.com/sebastianbergmann/diff",
  9792. "keywords": [
  9793. "diff",
  9794. "udiff",
  9795. "unidiff",
  9796. "unified diff"
  9797. ],
  9798. "support": {
  9799. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9800. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9801. },
  9802. "funding": [
  9803. {
  9804. "url": "https://github.com/sebastianbergmann",
  9805. "type": "github"
  9806. }
  9807. ],
  9808. "time": "2023-05-07T05:35:17+00:00"
  9809. },
  9810. {
  9811. "name": "sebastian/environment",
  9812. "version": "5.1.5",
  9813. "source": {
  9814. "type": "git",
  9815. "url": "https://github.com/sebastianbergmann/environment.git",
  9816. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9817. },
  9818. "dist": {
  9819. "type": "zip",
  9820. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9821. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9822. "shasum": "",
  9823. "mirrors": [
  9824. {
  9825. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9826. "preferred": true
  9827. }
  9828. ]
  9829. },
  9830. "require": {
  9831. "php": ">=7.3"
  9832. },
  9833. "require-dev": {
  9834. "phpunit/phpunit": "^9.3"
  9835. },
  9836. "suggest": {
  9837. "ext-posix": "*"
  9838. },
  9839. "type": "library",
  9840. "extra": {
  9841. "branch-alias": {
  9842. "dev-master": "5.1-dev"
  9843. }
  9844. },
  9845. "autoload": {
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de"
  9858. }
  9859. ],
  9860. "description": "Provides functionality to handle HHVM/PHP environments",
  9861. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9862. "keywords": [
  9863. "Xdebug",
  9864. "environment",
  9865. "hhvm"
  9866. ],
  9867. "support": {
  9868. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9869. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9870. },
  9871. "funding": [
  9872. {
  9873. "url": "https://github.com/sebastianbergmann",
  9874. "type": "github"
  9875. }
  9876. ],
  9877. "time": "2023-02-03T06:03:51+00:00"
  9878. },
  9879. {
  9880. "name": "sebastian/exporter",
  9881. "version": "4.0.5",
  9882. "source": {
  9883. "type": "git",
  9884. "url": "https://github.com/sebastianbergmann/exporter.git",
  9885. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9886. },
  9887. "dist": {
  9888. "type": "zip",
  9889. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9890. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9891. "shasum": "",
  9892. "mirrors": [
  9893. {
  9894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9895. "preferred": true
  9896. }
  9897. ]
  9898. },
  9899. "require": {
  9900. "php": ">=7.3",
  9901. "sebastian/recursion-context": "^4.0"
  9902. },
  9903. "require-dev": {
  9904. "ext-mbstring": "*",
  9905. "phpunit/phpunit": "^9.3"
  9906. },
  9907. "type": "library",
  9908. "extra": {
  9909. "branch-alias": {
  9910. "dev-master": "4.0-dev"
  9911. }
  9912. },
  9913. "autoload": {
  9914. "classmap": [
  9915. "src/"
  9916. ]
  9917. },
  9918. "notification-url": "https://packagist.org/downloads/",
  9919. "license": [
  9920. "BSD-3-Clause"
  9921. ],
  9922. "authors": [
  9923. {
  9924. "name": "Sebastian Bergmann",
  9925. "email": "sebastian@phpunit.de"
  9926. },
  9927. {
  9928. "name": "Jeff Welch",
  9929. "email": "whatthejeff@gmail.com"
  9930. },
  9931. {
  9932. "name": "Volker Dusch",
  9933. "email": "github@wallbash.com"
  9934. },
  9935. {
  9936. "name": "Adam Harvey",
  9937. "email": "aharvey@php.net"
  9938. },
  9939. {
  9940. "name": "Bernhard Schussek",
  9941. "email": "bschussek@gmail.com"
  9942. }
  9943. ],
  9944. "description": "Provides the functionality to export PHP variables for visualization",
  9945. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9946. "keywords": [
  9947. "export",
  9948. "exporter"
  9949. ],
  9950. "support": {
  9951. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9952. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9953. },
  9954. "funding": [
  9955. {
  9956. "url": "https://github.com/sebastianbergmann",
  9957. "type": "github"
  9958. }
  9959. ],
  9960. "time": "2022-09-14T06:03:37+00:00"
  9961. },
  9962. {
  9963. "name": "sebastian/global-state",
  9964. "version": "5.0.6",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/sebastianbergmann/global-state.git",
  9968. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  9973. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  9974. "shasum": "",
  9975. "mirrors": [
  9976. {
  9977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9978. "preferred": true
  9979. }
  9980. ]
  9981. },
  9982. "require": {
  9983. "php": ">=7.3",
  9984. "sebastian/object-reflector": "^2.0",
  9985. "sebastian/recursion-context": "^4.0"
  9986. },
  9987. "require-dev": {
  9988. "ext-dom": "*",
  9989. "phpunit/phpunit": "^9.3"
  9990. },
  9991. "suggest": {
  9992. "ext-uopz": "*"
  9993. },
  9994. "type": "library",
  9995. "extra": {
  9996. "branch-alias": {
  9997. "dev-master": "5.0-dev"
  9998. }
  9999. },
  10000. "autoload": {
  10001. "classmap": [
  10002. "src/"
  10003. ]
  10004. },
  10005. "notification-url": "https://packagist.org/downloads/",
  10006. "license": [
  10007. "BSD-3-Clause"
  10008. ],
  10009. "authors": [
  10010. {
  10011. "name": "Sebastian Bergmann",
  10012. "email": "sebastian@phpunit.de"
  10013. }
  10014. ],
  10015. "description": "Snapshotting of global state",
  10016. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10017. "keywords": [
  10018. "global state"
  10019. ],
  10020. "support": {
  10021. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10022. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://github.com/sebastianbergmann",
  10027. "type": "github"
  10028. }
  10029. ],
  10030. "time": "2023-08-02T09:26:13+00:00"
  10031. },
  10032. {
  10033. "name": "sebastian/lines-of-code",
  10034. "version": "1.0.x-dev",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10038. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10043. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10044. "shasum": "",
  10045. "mirrors": [
  10046. {
  10047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10048. "preferred": true
  10049. }
  10050. ]
  10051. },
  10052. "require": {
  10053. "nikic/php-parser": "^4.18 || ^5.0",
  10054. "php": ">=7.3"
  10055. },
  10056. "require-dev": {
  10057. "phpunit/phpunit": "^9.3"
  10058. },
  10059. "type": "library",
  10060. "extra": {
  10061. "branch-alias": {
  10062. "dev-master": "1.0-dev"
  10063. }
  10064. },
  10065. "autoload": {
  10066. "classmap": [
  10067. "src/"
  10068. ]
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "BSD-3-Clause"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Sebastian Bergmann",
  10077. "email": "sebastian@phpunit.de",
  10078. "role": "lead"
  10079. }
  10080. ],
  10081. "description": "Library for counting the lines of code in PHP source code",
  10082. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10083. "support": {
  10084. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10085. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10086. },
  10087. "funding": [
  10088. {
  10089. "url": "https://github.com/sebastianbergmann",
  10090. "type": "github"
  10091. }
  10092. ],
  10093. "time": "2023-12-22T06:20:34+00:00"
  10094. },
  10095. {
  10096. "name": "sebastian/object-enumerator",
  10097. "version": "4.0.4",
  10098. "source": {
  10099. "type": "git",
  10100. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10101. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10102. },
  10103. "dist": {
  10104. "type": "zip",
  10105. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10106. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10107. "shasum": "",
  10108. "mirrors": [
  10109. {
  10110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10111. "preferred": true
  10112. }
  10113. ]
  10114. },
  10115. "require": {
  10116. "php": ">=7.3",
  10117. "sebastian/object-reflector": "^2.0",
  10118. "sebastian/recursion-context": "^4.0"
  10119. },
  10120. "require-dev": {
  10121. "phpunit/phpunit": "^9.3"
  10122. },
  10123. "type": "library",
  10124. "extra": {
  10125. "branch-alias": {
  10126. "dev-master": "4.0-dev"
  10127. }
  10128. },
  10129. "autoload": {
  10130. "classmap": [
  10131. "src/"
  10132. ]
  10133. },
  10134. "notification-url": "https://packagist.org/downloads/",
  10135. "license": [
  10136. "BSD-3-Clause"
  10137. ],
  10138. "authors": [
  10139. {
  10140. "name": "Sebastian Bergmann",
  10141. "email": "sebastian@phpunit.de"
  10142. }
  10143. ],
  10144. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10145. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10146. "support": {
  10147. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10148. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://github.com/sebastianbergmann",
  10153. "type": "github"
  10154. }
  10155. ],
  10156. "time": "2020-10-26T13:12:34+00:00"
  10157. },
  10158. {
  10159. "name": "sebastian/object-reflector",
  10160. "version": "2.0.4",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10164. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10169. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10170. "shasum": "",
  10171. "mirrors": [
  10172. {
  10173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10174. "preferred": true
  10175. }
  10176. ]
  10177. },
  10178. "require": {
  10179. "php": ">=7.3"
  10180. },
  10181. "require-dev": {
  10182. "phpunit/phpunit": "^9.3"
  10183. },
  10184. "type": "library",
  10185. "extra": {
  10186. "branch-alias": {
  10187. "dev-master": "2.0-dev"
  10188. }
  10189. },
  10190. "autoload": {
  10191. "classmap": [
  10192. "src/"
  10193. ]
  10194. },
  10195. "notification-url": "https://packagist.org/downloads/",
  10196. "license": [
  10197. "BSD-3-Clause"
  10198. ],
  10199. "authors": [
  10200. {
  10201. "name": "Sebastian Bergmann",
  10202. "email": "sebastian@phpunit.de"
  10203. }
  10204. ],
  10205. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10206. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10207. "support": {
  10208. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10209. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10210. },
  10211. "funding": [
  10212. {
  10213. "url": "https://github.com/sebastianbergmann",
  10214. "type": "github"
  10215. }
  10216. ],
  10217. "time": "2020-10-26T13:14:26+00:00"
  10218. },
  10219. {
  10220. "name": "sebastian/recursion-context",
  10221. "version": "4.0.5",
  10222. "source": {
  10223. "type": "git",
  10224. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10225. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10226. },
  10227. "dist": {
  10228. "type": "zip",
  10229. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10230. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10231. "shasum": "",
  10232. "mirrors": [
  10233. {
  10234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10235. "preferred": true
  10236. }
  10237. ]
  10238. },
  10239. "require": {
  10240. "php": ">=7.3"
  10241. },
  10242. "require-dev": {
  10243. "phpunit/phpunit": "^9.3"
  10244. },
  10245. "type": "library",
  10246. "extra": {
  10247. "branch-alias": {
  10248. "dev-master": "4.0-dev"
  10249. }
  10250. },
  10251. "autoload": {
  10252. "classmap": [
  10253. "src/"
  10254. ]
  10255. },
  10256. "notification-url": "https://packagist.org/downloads/",
  10257. "license": [
  10258. "BSD-3-Clause"
  10259. ],
  10260. "authors": [
  10261. {
  10262. "name": "Sebastian Bergmann",
  10263. "email": "sebastian@phpunit.de"
  10264. },
  10265. {
  10266. "name": "Jeff Welch",
  10267. "email": "whatthejeff@gmail.com"
  10268. },
  10269. {
  10270. "name": "Adam Harvey",
  10271. "email": "aharvey@php.net"
  10272. }
  10273. ],
  10274. "description": "Provides functionality to recursively process PHP variables",
  10275. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10276. "support": {
  10277. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10278. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10279. },
  10280. "funding": [
  10281. {
  10282. "url": "https://github.com/sebastianbergmann",
  10283. "type": "github"
  10284. }
  10285. ],
  10286. "time": "2023-02-03T06:07:39+00:00"
  10287. },
  10288. {
  10289. "name": "sebastian/resource-operations",
  10290. "version": "3.0.3",
  10291. "source": {
  10292. "type": "git",
  10293. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10294. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10295. },
  10296. "dist": {
  10297. "type": "zip",
  10298. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10299. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10300. "shasum": "",
  10301. "mirrors": [
  10302. {
  10303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10304. "preferred": true
  10305. }
  10306. ]
  10307. },
  10308. "require": {
  10309. "php": ">=7.3"
  10310. },
  10311. "require-dev": {
  10312. "phpunit/phpunit": "^9.0"
  10313. },
  10314. "type": "library",
  10315. "extra": {
  10316. "branch-alias": {
  10317. "dev-master": "3.0-dev"
  10318. }
  10319. },
  10320. "autoload": {
  10321. "classmap": [
  10322. "src/"
  10323. ]
  10324. },
  10325. "notification-url": "https://packagist.org/downloads/",
  10326. "license": [
  10327. "BSD-3-Clause"
  10328. ],
  10329. "authors": [
  10330. {
  10331. "name": "Sebastian Bergmann",
  10332. "email": "sebastian@phpunit.de"
  10333. }
  10334. ],
  10335. "description": "Provides a list of PHP built-in functions that operate on resources",
  10336. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10337. "support": {
  10338. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10339. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10340. },
  10341. "funding": [
  10342. {
  10343. "url": "https://github.com/sebastianbergmann",
  10344. "type": "github"
  10345. }
  10346. ],
  10347. "time": "2020-09-28T06:45:17+00:00"
  10348. },
  10349. {
  10350. "name": "sebastian/type",
  10351. "version": "3.2.1",
  10352. "source": {
  10353. "type": "git",
  10354. "url": "https://github.com/sebastianbergmann/type.git",
  10355. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10356. },
  10357. "dist": {
  10358. "type": "zip",
  10359. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10360. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10361. "shasum": "",
  10362. "mirrors": [
  10363. {
  10364. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10365. "preferred": true
  10366. }
  10367. ]
  10368. },
  10369. "require": {
  10370. "php": ">=7.3"
  10371. },
  10372. "require-dev": {
  10373. "phpunit/phpunit": "^9.5"
  10374. },
  10375. "type": "library",
  10376. "extra": {
  10377. "branch-alias": {
  10378. "dev-master": "3.2-dev"
  10379. }
  10380. },
  10381. "autoload": {
  10382. "classmap": [
  10383. "src/"
  10384. ]
  10385. },
  10386. "notification-url": "https://packagist.org/downloads/",
  10387. "license": [
  10388. "BSD-3-Clause"
  10389. ],
  10390. "authors": [
  10391. {
  10392. "name": "Sebastian Bergmann",
  10393. "email": "sebastian@phpunit.de",
  10394. "role": "lead"
  10395. }
  10396. ],
  10397. "description": "Collection of value objects that represent the types of the PHP type system",
  10398. "homepage": "https://github.com/sebastianbergmann/type",
  10399. "support": {
  10400. "issues": "https://github.com/sebastianbergmann/type/issues",
  10401. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10402. },
  10403. "funding": [
  10404. {
  10405. "url": "https://github.com/sebastianbergmann",
  10406. "type": "github"
  10407. }
  10408. ],
  10409. "time": "2023-02-03T06:13:03+00:00"
  10410. },
  10411. {
  10412. "name": "sebastian/version",
  10413. "version": "3.0.2",
  10414. "source": {
  10415. "type": "git",
  10416. "url": "https://github.com/sebastianbergmann/version.git",
  10417. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10418. },
  10419. "dist": {
  10420. "type": "zip",
  10421. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10422. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10423. "shasum": "",
  10424. "mirrors": [
  10425. {
  10426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10427. "preferred": true
  10428. }
  10429. ]
  10430. },
  10431. "require": {
  10432. "php": ">=7.3"
  10433. },
  10434. "type": "library",
  10435. "extra": {
  10436. "branch-alias": {
  10437. "dev-master": "3.0-dev"
  10438. }
  10439. },
  10440. "autoload": {
  10441. "classmap": [
  10442. "src/"
  10443. ]
  10444. },
  10445. "notification-url": "https://packagist.org/downloads/",
  10446. "license": [
  10447. "BSD-3-Clause"
  10448. ],
  10449. "authors": [
  10450. {
  10451. "name": "Sebastian Bergmann",
  10452. "email": "sebastian@phpunit.de",
  10453. "role": "lead"
  10454. }
  10455. ],
  10456. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10457. "homepage": "https://github.com/sebastianbergmann/version",
  10458. "support": {
  10459. "issues": "https://github.com/sebastianbergmann/version/issues",
  10460. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10461. },
  10462. "funding": [
  10463. {
  10464. "url": "https://github.com/sebastianbergmann",
  10465. "type": "github"
  10466. }
  10467. ],
  10468. "time": "2020-09-28T06:39:44+00:00"
  10469. },
  10470. {
  10471. "name": "theseer/tokenizer",
  10472. "version": "1.2.1",
  10473. "source": {
  10474. "type": "git",
  10475. "url": "https://github.com/theseer/tokenizer.git",
  10476. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10477. },
  10478. "dist": {
  10479. "type": "zip",
  10480. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10481. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10482. "shasum": "",
  10483. "mirrors": [
  10484. {
  10485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10486. "preferred": true
  10487. }
  10488. ]
  10489. },
  10490. "require": {
  10491. "ext-dom": "*",
  10492. "ext-tokenizer": "*",
  10493. "ext-xmlwriter": "*",
  10494. "php": "^7.2 || ^8.0"
  10495. },
  10496. "type": "library",
  10497. "autoload": {
  10498. "classmap": [
  10499. "src/"
  10500. ]
  10501. },
  10502. "notification-url": "https://packagist.org/downloads/",
  10503. "license": [
  10504. "BSD-3-Clause"
  10505. ],
  10506. "authors": [
  10507. {
  10508. "name": "Arne Blankerts",
  10509. "email": "arne@blankerts.de",
  10510. "role": "Developer"
  10511. }
  10512. ],
  10513. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10514. "support": {
  10515. "issues": "https://github.com/theseer/tokenizer/issues",
  10516. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10517. },
  10518. "funding": [
  10519. {
  10520. "url": "https://github.com/theseer",
  10521. "type": "github"
  10522. }
  10523. ],
  10524. "time": "2021-07-28T10:34:58+00:00"
  10525. }
  10526. ],
  10527. "aliases": [],
  10528. "minimum-stability": "dev",
  10529. "stability-flags": {},
  10530. "prefer-stable": true,
  10531. "prefer-lowest": false,
  10532. "platform": {
  10533. "php": "^7.3|^8.0"
  10534. },
  10535. "platform-dev": {},
  10536. "plugin-api-version": "2.6.0"
  10537. }