composer.lock 383 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579
  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": "86d4d8eff097d0e398a26028af6aed0f",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  20. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  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.3|^8.0",
  31. "symfony/http-foundation": "^5.3|^6|^7",
  32. "symfony/http-kernel": "^5.3|^6|^7"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.2-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.2.0"
  68. },
  69. "time": "2023-11-14T13:51:46+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.3",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  218. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  223. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  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.3"
  290. },
  291. "time": "2024-07-08T12:26:09+00:00"
  292. },
  293. {
  294. "name": "doctrine/inflector",
  295. "version": "2.0.10",
  296. "source": {
  297. "type": "git",
  298. "url": "https://github.com/doctrine/inflector.git",
  299. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  300. },
  301. "dist": {
  302. "type": "zip",
  303. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  304. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  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.10"
  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": "2024-02-18T20:23:39+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. "mirrors": [
  404. {
  405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  406. "preferred": true
  407. }
  408. ]
  409. },
  410. "require": {
  411. "php": "^7.1 || ^8.0"
  412. },
  413. "require-dev": {
  414. "doctrine/coding-standard": "^9.0",
  415. "phpstan/phpstan": "^1.3",
  416. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  417. "vimeo/psalm": "^4.11"
  418. },
  419. "type": "library",
  420. "autoload": {
  421. "psr-4": {
  422. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Guilherme Blanco",
  432. "email": "guilhermeblanco@gmail.com"
  433. },
  434. {
  435. "name": "Roman Borschel",
  436. "email": "roman@code-factory.org"
  437. },
  438. {
  439. "name": "Johannes Schmitt",
  440. "email": "schmittjoh@gmail.com"
  441. }
  442. ],
  443. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  444. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  445. "keywords": [
  446. "annotations",
  447. "docblock",
  448. "lexer",
  449. "parser",
  450. "php"
  451. ],
  452. "support": {
  453. "issues": "https://github.com/doctrine/lexer/issues",
  454. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  455. },
  456. "funding": [
  457. {
  458. "url": "https://www.doctrine-project.org/sponsorship.html",
  459. "type": "custom"
  460. },
  461. {
  462. "url": "https://www.patreon.com/phpdoctrine",
  463. "type": "patreon"
  464. },
  465. {
  466. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  467. "type": "tidelift"
  468. }
  469. ],
  470. "time": "2022-02-28T11:07:21+00:00"
  471. },
  472. {
  473. "name": "dragonmantank/cron-expression",
  474. "version": "v3.4.0",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/dragonmantank/cron-expression.git",
  478. "reference": "8c784d071debd117328803d86b2097615b457500"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  483. "reference": "8c784d071debd117328803d86b2097615b457500",
  484. "shasum": "",
  485. "mirrors": [
  486. {
  487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  488. "preferred": true
  489. }
  490. ]
  491. },
  492. "require": {
  493. "php": "^7.2|^8.0",
  494. "webmozart/assert": "^1.0"
  495. },
  496. "replace": {
  497. "mtdowling/cron-expression": "^1.0"
  498. },
  499. "require-dev": {
  500. "phpstan/extension-installer": "^1.0",
  501. "phpstan/phpstan": "^1.0",
  502. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  503. },
  504. "type": "library",
  505. "extra": {
  506. "branch-alias": {
  507. "dev-master": "3.x-dev"
  508. }
  509. },
  510. "autoload": {
  511. "psr-4": {
  512. "Cron\\": "src/Cron/"
  513. }
  514. },
  515. "notification-url": "https://packagist.org/downloads/",
  516. "license": [
  517. "MIT"
  518. ],
  519. "authors": [
  520. {
  521. "name": "Chris Tankersley",
  522. "email": "chris@ctankersley.com",
  523. "homepage": "https://github.com/dragonmantank"
  524. }
  525. ],
  526. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  527. "keywords": [
  528. "cron",
  529. "schedule"
  530. ],
  531. "support": {
  532. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  533. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  534. },
  535. "funding": [
  536. {
  537. "url": "https://github.com/dragonmantank",
  538. "type": "github"
  539. }
  540. ],
  541. "time": "2024-10-09T13:47:03+00:00"
  542. },
  543. {
  544. "name": "easywechat-composer/easywechat-composer",
  545. "version": "1.4.1",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/mingyoung/easywechat-composer.git",
  549. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  554. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  555. "shasum": "",
  556. "mirrors": [
  557. {
  558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  559. "preferred": true
  560. }
  561. ]
  562. },
  563. "require": {
  564. "composer-plugin-api": "^1.0 || ^2.0",
  565. "php": ">=7.0"
  566. },
  567. "require-dev": {
  568. "composer/composer": "^1.0 || ^2.0",
  569. "phpunit/phpunit": "^6.5 || ^7.0"
  570. },
  571. "type": "composer-plugin",
  572. "extra": {
  573. "class": "EasyWeChatComposer\\Plugin"
  574. },
  575. "autoload": {
  576. "psr-4": {
  577. "EasyWeChatComposer\\": "src/"
  578. }
  579. },
  580. "notification-url": "https://packagist.org/downloads/",
  581. "license": [
  582. "MIT"
  583. ],
  584. "authors": [
  585. {
  586. "name": "张铭阳",
  587. "email": "mingyoungcheung@gmail.com"
  588. }
  589. ],
  590. "description": "The composer plugin for EasyWeChat",
  591. "support": {
  592. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  593. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  594. },
  595. "time": "2021-07-05T04:03:22+00:00"
  596. },
  597. {
  598. "name": "egulias/email-validator",
  599. "version": "2.1.25",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/egulias/EmailValidator.git",
  603. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  608. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  609. "shasum": "",
  610. "mirrors": [
  611. {
  612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  613. "preferred": true
  614. }
  615. ]
  616. },
  617. "require": {
  618. "doctrine/lexer": "^1.0.1",
  619. "php": ">=5.5",
  620. "symfony/polyfill-intl-idn": "^1.10"
  621. },
  622. "require-dev": {
  623. "dominicsayers/isemail": "^3.0.7",
  624. "phpunit/phpunit": "^4.8.36|^7.5.15",
  625. "satooshi/php-coveralls": "^1.0.1"
  626. },
  627. "suggest": {
  628. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  629. },
  630. "type": "library",
  631. "extra": {
  632. "branch-alias": {
  633. "dev-master": "2.1.x-dev"
  634. }
  635. },
  636. "autoload": {
  637. "psr-4": {
  638. "Egulias\\EmailValidator\\": "src"
  639. }
  640. },
  641. "notification-url": "https://packagist.org/downloads/",
  642. "license": [
  643. "MIT"
  644. ],
  645. "authors": [
  646. {
  647. "name": "Eduardo Gulias Davis"
  648. }
  649. ],
  650. "description": "A library for validating emails against several RFCs",
  651. "homepage": "https://github.com/egulias/EmailValidator",
  652. "keywords": [
  653. "email",
  654. "emailvalidation",
  655. "emailvalidator",
  656. "validation",
  657. "validator"
  658. ],
  659. "support": {
  660. "issues": "https://github.com/egulias/EmailValidator/issues",
  661. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  662. },
  663. "funding": [
  664. {
  665. "url": "https://github.com/egulias",
  666. "type": "github"
  667. }
  668. ],
  669. "time": "2020-12-29T14:50:06+00:00"
  670. },
  671. {
  672. "name": "ezyang/htmlpurifier",
  673. "version": "v4.18.0",
  674. "source": {
  675. "type": "git",
  676. "url": "https://github.com/ezyang/htmlpurifier.git",
  677. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  678. },
  679. "dist": {
  680. "type": "zip",
  681. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  682. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  683. "shasum": "",
  684. "mirrors": [
  685. {
  686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  687. "preferred": true
  688. }
  689. ]
  690. },
  691. "require": {
  692. "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 || ~8.3.0 || ~8.4.0"
  693. },
  694. "require-dev": {
  695. "cerdic/css-tidy": "^1.7 || ^2.0",
  696. "simpletest/simpletest": "dev-master"
  697. },
  698. "suggest": {
  699. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  700. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  701. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  702. "ext-tidy": "Used for pretty-printing HTML"
  703. },
  704. "type": "library",
  705. "autoload": {
  706. "files": [
  707. "library/HTMLPurifier.composer.php"
  708. ],
  709. "psr-0": {
  710. "HTMLPurifier": "library/"
  711. },
  712. "exclude-from-classmap": [
  713. "/library/HTMLPurifier/Language/"
  714. ]
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "LGPL-2.1-or-later"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Edward Z. Yang",
  723. "email": "admin@htmlpurifier.org",
  724. "homepage": "http://ezyang.com"
  725. }
  726. ],
  727. "description": "Standards compliant HTML filter written in PHP",
  728. "homepage": "http://htmlpurifier.org/",
  729. "keywords": [
  730. "html"
  731. ],
  732. "support": {
  733. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  734. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  735. },
  736. "time": "2024-11-01T03:51:45+00:00"
  737. },
  738. {
  739. "name": "fideloper/proxy",
  740. "version": "4.4.2",
  741. "source": {
  742. "type": "git",
  743. "url": "https://github.com/fideloper/TrustedProxy.git",
  744. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  745. },
  746. "dist": {
  747. "type": "zip",
  748. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  749. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  750. "shasum": "",
  751. "mirrors": [
  752. {
  753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  754. "preferred": true
  755. }
  756. ]
  757. },
  758. "require": {
  759. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  760. "php": ">=5.4.0"
  761. },
  762. "require-dev": {
  763. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  764. "mockery/mockery": "^1.0",
  765. "phpunit/phpunit": "^8.5.8|^9.3.3"
  766. },
  767. "type": "library",
  768. "extra": {
  769. "laravel": {
  770. "providers": [
  771. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  772. ]
  773. }
  774. },
  775. "autoload": {
  776. "psr-4": {
  777. "Fideloper\\Proxy\\": "src/"
  778. }
  779. },
  780. "notification-url": "https://packagist.org/downloads/",
  781. "license": [
  782. "MIT"
  783. ],
  784. "authors": [
  785. {
  786. "name": "Chris Fidao",
  787. "email": "fideloper@gmail.com"
  788. }
  789. ],
  790. "description": "Set trusted proxies for Laravel",
  791. "keywords": [
  792. "load balancing",
  793. "proxy",
  794. "trusted proxy"
  795. ],
  796. "support": {
  797. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  798. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  799. },
  800. "time": "2022-02-09T13:33:34+00:00"
  801. },
  802. {
  803. "name": "firebase/php-jwt",
  804. "version": "v6.10.0",
  805. "source": {
  806. "type": "git",
  807. "url": "https://github.com/firebase/php-jwt.git",
  808. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  809. },
  810. "dist": {
  811. "type": "zip",
  812. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  813. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  814. "shasum": "",
  815. "mirrors": [
  816. {
  817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  818. "preferred": true
  819. }
  820. ]
  821. },
  822. "require": {
  823. "php": "^7.4||^8.0"
  824. },
  825. "require-dev": {
  826. "guzzlehttp/guzzle": "^6.5||^7.4",
  827. "phpspec/prophecy-phpunit": "^2.0",
  828. "phpunit/phpunit": "^9.5",
  829. "psr/cache": "^1.0||^2.0",
  830. "psr/http-client": "^1.0",
  831. "psr/http-factory": "^1.0"
  832. },
  833. "suggest": {
  834. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  835. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  836. },
  837. "type": "library",
  838. "autoload": {
  839. "psr-4": {
  840. "Firebase\\JWT\\": "src"
  841. }
  842. },
  843. "notification-url": "https://packagist.org/downloads/",
  844. "license": [
  845. "BSD-3-Clause"
  846. ],
  847. "authors": [
  848. {
  849. "name": "Neuman Vong",
  850. "email": "neuman+pear@twilio.com",
  851. "role": "Developer"
  852. },
  853. {
  854. "name": "Anant Narayanan",
  855. "email": "anant@php.net",
  856. "role": "Developer"
  857. }
  858. ],
  859. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  860. "homepage": "https://github.com/firebase/php-jwt",
  861. "keywords": [
  862. "jwt",
  863. "php"
  864. ],
  865. "support": {
  866. "issues": "https://github.com/firebase/php-jwt/issues",
  867. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  868. },
  869. "time": "2023-12-01T16:26:39+00:00"
  870. },
  871. {
  872. "name": "fruitcake/laravel-cors",
  873. "version": "v2.2.0",
  874. "source": {
  875. "type": "git",
  876. "url": "https://github.com/fruitcake/laravel-cors.git",
  877. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  882. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  883. "shasum": "",
  884. "mirrors": [
  885. {
  886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  887. "preferred": true
  888. }
  889. ]
  890. },
  891. "require": {
  892. "asm89/stack-cors": "^2.0.1",
  893. "illuminate/contracts": "^6|^7|^8|^9",
  894. "illuminate/support": "^6|^7|^8|^9",
  895. "php": ">=7.2"
  896. },
  897. "require-dev": {
  898. "laravel/framework": "^6|^7.24|^8",
  899. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  900. "phpunit/phpunit": "^6|^7|^8|^9",
  901. "squizlabs/php_codesniffer": "^3.5"
  902. },
  903. "type": "library",
  904. "extra": {
  905. "branch-alias": {
  906. "dev-master": "2.1-dev"
  907. },
  908. "laravel": {
  909. "providers": [
  910. "Fruitcake\\Cors\\CorsServiceProvider"
  911. ]
  912. }
  913. },
  914. "autoload": {
  915. "psr-4": {
  916. "Fruitcake\\Cors\\": "src/"
  917. }
  918. },
  919. "notification-url": "https://packagist.org/downloads/",
  920. "license": [
  921. "MIT"
  922. ],
  923. "authors": [
  924. {
  925. "name": "Fruitcake",
  926. "homepage": "https://fruitcake.nl"
  927. },
  928. {
  929. "name": "Barry vd. Heuvel",
  930. "email": "barryvdh@gmail.com"
  931. }
  932. ],
  933. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  934. "keywords": [
  935. "api",
  936. "cors",
  937. "crossdomain",
  938. "laravel"
  939. ],
  940. "support": {
  941. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  942. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  943. },
  944. "funding": [
  945. {
  946. "url": "https://fruitcake.nl",
  947. "type": "custom"
  948. },
  949. {
  950. "url": "https://github.com/barryvdh",
  951. "type": "github"
  952. }
  953. ],
  954. "abandoned": true,
  955. "time": "2022-02-23T14:25:13+00:00"
  956. },
  957. {
  958. "name": "graham-campbell/manager",
  959. "version": "v4.7.0",
  960. "source": {
  961. "type": "git",
  962. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  963. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  964. },
  965. "dist": {
  966. "type": "zip",
  967. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  968. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  969. "shasum": "",
  970. "mirrors": [
  971. {
  972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  973. "preferred": true
  974. }
  975. ]
  976. },
  977. "require": {
  978. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  979. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  980. "php": "^7.1.3 || ^8.0"
  981. },
  982. "require-dev": {
  983. "graham-campbell/analyzer": "^2.4 || ^3.0",
  984. "graham-campbell/testbench-core": "^3.4",
  985. "mockery/mockery": "^1.3.1",
  986. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  987. },
  988. "type": "library",
  989. "autoload": {
  990. "psr-4": {
  991. "GrahamCampbell\\Manager\\": "src/"
  992. }
  993. },
  994. "notification-url": "https://packagist.org/downloads/",
  995. "license": [
  996. "MIT"
  997. ],
  998. "authors": [
  999. {
  1000. "name": "Graham Campbell",
  1001. "email": "hello@gjcampbell.co.uk",
  1002. "homepage": "https://github.com/GrahamCampbell"
  1003. }
  1004. ],
  1005. "description": "Manager Provides Some Manager Functionality For Laravel",
  1006. "keywords": [
  1007. "Graham Campbell",
  1008. "GrahamCampbell",
  1009. "Laravel Manager",
  1010. "Laravel-Manager",
  1011. "connector",
  1012. "framework",
  1013. "interface",
  1014. "laravel",
  1015. "manager"
  1016. ],
  1017. "support": {
  1018. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  1019. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  1020. },
  1021. "funding": [
  1022. {
  1023. "url": "https://github.com/GrahamCampbell",
  1024. "type": "github"
  1025. },
  1026. {
  1027. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1028. "type": "tidelift"
  1029. }
  1030. ],
  1031. "time": "2022-01-24T01:59:19+00:00"
  1032. },
  1033. {
  1034. "name": "graham-campbell/result-type",
  1035. "version": "1.1.x-dev",
  1036. "source": {
  1037. "type": "git",
  1038. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1039. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1040. },
  1041. "dist": {
  1042. "type": "zip",
  1043. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1044. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1045. "shasum": "",
  1046. "mirrors": [
  1047. {
  1048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1049. "preferred": true
  1050. }
  1051. ]
  1052. },
  1053. "require": {
  1054. "php": "^7.2.5 || ^8.0",
  1055. "phpoption/phpoption": "^1.9.3"
  1056. },
  1057. "require-dev": {
  1058. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1059. },
  1060. "default-branch": true,
  1061. "type": "library",
  1062. "autoload": {
  1063. "psr-4": {
  1064. "GrahamCampbell\\ResultType\\": "src/"
  1065. }
  1066. },
  1067. "notification-url": "https://packagist.org/downloads/",
  1068. "license": [
  1069. "MIT"
  1070. ],
  1071. "authors": [
  1072. {
  1073. "name": "Graham Campbell",
  1074. "email": "hello@gjcampbell.co.uk",
  1075. "homepage": "https://github.com/GrahamCampbell"
  1076. }
  1077. ],
  1078. "description": "An Implementation Of The Result Type",
  1079. "keywords": [
  1080. "Graham Campbell",
  1081. "GrahamCampbell",
  1082. "Result Type",
  1083. "Result-Type",
  1084. "result"
  1085. ],
  1086. "support": {
  1087. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1088. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1089. },
  1090. "funding": [
  1091. {
  1092. "url": "https://github.com/GrahamCampbell",
  1093. "type": "github"
  1094. },
  1095. {
  1096. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1097. "type": "tidelift"
  1098. }
  1099. ],
  1100. "time": "2024-07-20T21:45:45+00:00"
  1101. },
  1102. {
  1103. "name": "guzzlehttp/guzzle",
  1104. "version": "7.9.2",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/guzzle/guzzle.git",
  1108. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1113. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1114. "shasum": "",
  1115. "mirrors": [
  1116. {
  1117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1118. "preferred": true
  1119. }
  1120. ]
  1121. },
  1122. "require": {
  1123. "ext-json": "*",
  1124. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1125. "guzzlehttp/psr7": "^2.7.0",
  1126. "php": "^7.2.5 || ^8.0",
  1127. "psr/http-client": "^1.0",
  1128. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1129. },
  1130. "provide": {
  1131. "psr/http-client-implementation": "1.0"
  1132. },
  1133. "require-dev": {
  1134. "bamarni/composer-bin-plugin": "^1.8.2",
  1135. "ext-curl": "*",
  1136. "guzzle/client-integration-tests": "3.0.2",
  1137. "php-http/message-factory": "^1.1",
  1138. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1139. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1140. },
  1141. "suggest": {
  1142. "ext-curl": "Required for CURL handler support",
  1143. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1144. "psr/log": "Required for using the Log middleware"
  1145. },
  1146. "type": "library",
  1147. "extra": {
  1148. "bamarni-bin": {
  1149. "bin-links": true,
  1150. "forward-command": false
  1151. }
  1152. },
  1153. "autoload": {
  1154. "files": [
  1155. "src/functions_include.php"
  1156. ],
  1157. "psr-4": {
  1158. "GuzzleHttp\\": "src/"
  1159. }
  1160. },
  1161. "notification-url": "https://packagist.org/downloads/",
  1162. "license": [
  1163. "MIT"
  1164. ],
  1165. "authors": [
  1166. {
  1167. "name": "Graham Campbell",
  1168. "email": "hello@gjcampbell.co.uk",
  1169. "homepage": "https://github.com/GrahamCampbell"
  1170. },
  1171. {
  1172. "name": "Michael Dowling",
  1173. "email": "mtdowling@gmail.com",
  1174. "homepage": "https://github.com/mtdowling"
  1175. },
  1176. {
  1177. "name": "Jeremy Lindblom",
  1178. "email": "jeremeamia@gmail.com",
  1179. "homepage": "https://github.com/jeremeamia"
  1180. },
  1181. {
  1182. "name": "George Mponos",
  1183. "email": "gmponos@gmail.com",
  1184. "homepage": "https://github.com/gmponos"
  1185. },
  1186. {
  1187. "name": "Tobias Nyholm",
  1188. "email": "tobias.nyholm@gmail.com",
  1189. "homepage": "https://github.com/Nyholm"
  1190. },
  1191. {
  1192. "name": "Márk Sági-Kazár",
  1193. "email": "mark.sagikazar@gmail.com",
  1194. "homepage": "https://github.com/sagikazarmark"
  1195. },
  1196. {
  1197. "name": "Tobias Schultze",
  1198. "email": "webmaster@tubo-world.de",
  1199. "homepage": "https://github.com/Tobion"
  1200. }
  1201. ],
  1202. "description": "Guzzle is a PHP HTTP client library",
  1203. "keywords": [
  1204. "client",
  1205. "curl",
  1206. "framework",
  1207. "http",
  1208. "http client",
  1209. "psr-18",
  1210. "psr-7",
  1211. "rest",
  1212. "web service"
  1213. ],
  1214. "support": {
  1215. "issues": "https://github.com/guzzle/guzzle/issues",
  1216. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1217. },
  1218. "funding": [
  1219. {
  1220. "url": "https://github.com/GrahamCampbell",
  1221. "type": "github"
  1222. },
  1223. {
  1224. "url": "https://github.com/Nyholm",
  1225. "type": "github"
  1226. },
  1227. {
  1228. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1229. "type": "tidelift"
  1230. }
  1231. ],
  1232. "time": "2024-07-24T11:22:20+00:00"
  1233. },
  1234. {
  1235. "name": "guzzlehttp/promises",
  1236. "version": "2.0.3",
  1237. "source": {
  1238. "type": "git",
  1239. "url": "https://github.com/guzzle/promises.git",
  1240. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  1241. },
  1242. "dist": {
  1243. "type": "zip",
  1244. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1245. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1246. "shasum": "",
  1247. "mirrors": [
  1248. {
  1249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1250. "preferred": true
  1251. }
  1252. ]
  1253. },
  1254. "require": {
  1255. "php": "^7.2.5 || ^8.0"
  1256. },
  1257. "require-dev": {
  1258. "bamarni/composer-bin-plugin": "^1.8.2",
  1259. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1260. },
  1261. "type": "library",
  1262. "extra": {
  1263. "bamarni-bin": {
  1264. "bin-links": true,
  1265. "forward-command": false
  1266. }
  1267. },
  1268. "autoload": {
  1269. "psr-4": {
  1270. "GuzzleHttp\\Promise\\": "src/"
  1271. }
  1272. },
  1273. "notification-url": "https://packagist.org/downloads/",
  1274. "license": [
  1275. "MIT"
  1276. ],
  1277. "authors": [
  1278. {
  1279. "name": "Graham Campbell",
  1280. "email": "hello@gjcampbell.co.uk",
  1281. "homepage": "https://github.com/GrahamCampbell"
  1282. },
  1283. {
  1284. "name": "Michael Dowling",
  1285. "email": "mtdowling@gmail.com",
  1286. "homepage": "https://github.com/mtdowling"
  1287. },
  1288. {
  1289. "name": "Tobias Nyholm",
  1290. "email": "tobias.nyholm@gmail.com",
  1291. "homepage": "https://github.com/Nyholm"
  1292. },
  1293. {
  1294. "name": "Tobias Schultze",
  1295. "email": "webmaster@tubo-world.de",
  1296. "homepage": "https://github.com/Tobion"
  1297. }
  1298. ],
  1299. "description": "Guzzle promises library",
  1300. "keywords": [
  1301. "promise"
  1302. ],
  1303. "support": {
  1304. "issues": "https://github.com/guzzle/promises/issues",
  1305. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  1306. },
  1307. "funding": [
  1308. {
  1309. "url": "https://github.com/GrahamCampbell",
  1310. "type": "github"
  1311. },
  1312. {
  1313. "url": "https://github.com/Nyholm",
  1314. "type": "github"
  1315. },
  1316. {
  1317. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1318. "type": "tidelift"
  1319. }
  1320. ],
  1321. "time": "2024-07-18T10:29:17+00:00"
  1322. },
  1323. {
  1324. "name": "guzzlehttp/psr7",
  1325. "version": "2.7.0",
  1326. "source": {
  1327. "type": "git",
  1328. "url": "https://github.com/guzzle/psr7.git",
  1329. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1330. },
  1331. "dist": {
  1332. "type": "zip",
  1333. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1334. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1335. "shasum": "",
  1336. "mirrors": [
  1337. {
  1338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1339. "preferred": true
  1340. }
  1341. ]
  1342. },
  1343. "require": {
  1344. "php": "^7.2.5 || ^8.0",
  1345. "psr/http-factory": "^1.0",
  1346. "psr/http-message": "^1.1 || ^2.0",
  1347. "ralouphie/getallheaders": "^3.0"
  1348. },
  1349. "provide": {
  1350. "psr/http-factory-implementation": "1.0",
  1351. "psr/http-message-implementation": "1.0"
  1352. },
  1353. "require-dev": {
  1354. "bamarni/composer-bin-plugin": "^1.8.2",
  1355. "http-interop/http-factory-tests": "0.9.0",
  1356. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1357. },
  1358. "suggest": {
  1359. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1360. },
  1361. "type": "library",
  1362. "extra": {
  1363. "bamarni-bin": {
  1364. "bin-links": true,
  1365. "forward-command": false
  1366. }
  1367. },
  1368. "autoload": {
  1369. "psr-4": {
  1370. "GuzzleHttp\\Psr7\\": "src/"
  1371. }
  1372. },
  1373. "notification-url": "https://packagist.org/downloads/",
  1374. "license": [
  1375. "MIT"
  1376. ],
  1377. "authors": [
  1378. {
  1379. "name": "Graham Campbell",
  1380. "email": "hello@gjcampbell.co.uk",
  1381. "homepage": "https://github.com/GrahamCampbell"
  1382. },
  1383. {
  1384. "name": "Michael Dowling",
  1385. "email": "mtdowling@gmail.com",
  1386. "homepage": "https://github.com/mtdowling"
  1387. },
  1388. {
  1389. "name": "George Mponos",
  1390. "email": "gmponos@gmail.com",
  1391. "homepage": "https://github.com/gmponos"
  1392. },
  1393. {
  1394. "name": "Tobias Nyholm",
  1395. "email": "tobias.nyholm@gmail.com",
  1396. "homepage": "https://github.com/Nyholm"
  1397. },
  1398. {
  1399. "name": "Márk Sági-Kazár",
  1400. "email": "mark.sagikazar@gmail.com",
  1401. "homepage": "https://github.com/sagikazarmark"
  1402. },
  1403. {
  1404. "name": "Tobias Schultze",
  1405. "email": "webmaster@tubo-world.de",
  1406. "homepage": "https://github.com/Tobion"
  1407. },
  1408. {
  1409. "name": "Márk Sági-Kazár",
  1410. "email": "mark.sagikazar@gmail.com",
  1411. "homepage": "https://sagikazarmark.hu"
  1412. }
  1413. ],
  1414. "description": "PSR-7 message implementation that also provides common utility methods",
  1415. "keywords": [
  1416. "http",
  1417. "message",
  1418. "psr-7",
  1419. "request",
  1420. "response",
  1421. "stream",
  1422. "uri",
  1423. "url"
  1424. ],
  1425. "support": {
  1426. "issues": "https://github.com/guzzle/psr7/issues",
  1427. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1428. },
  1429. "funding": [
  1430. {
  1431. "url": "https://github.com/GrahamCampbell",
  1432. "type": "github"
  1433. },
  1434. {
  1435. "url": "https://github.com/Nyholm",
  1436. "type": "github"
  1437. },
  1438. {
  1439. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1440. "type": "tidelift"
  1441. }
  1442. ],
  1443. "time": "2024-07-18T11:15:46+00:00"
  1444. },
  1445. {
  1446. "name": "guzzlehttp/uri-template",
  1447. "version": "v1.0.3",
  1448. "source": {
  1449. "type": "git",
  1450. "url": "https://github.com/guzzle/uri-template.git",
  1451. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1452. },
  1453. "dist": {
  1454. "type": "zip",
  1455. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1456. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1457. "shasum": "",
  1458. "mirrors": [
  1459. {
  1460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1461. "preferred": true
  1462. }
  1463. ]
  1464. },
  1465. "require": {
  1466. "php": "^7.2.5 || ^8.0",
  1467. "symfony/polyfill-php80": "^1.24"
  1468. },
  1469. "require-dev": {
  1470. "bamarni/composer-bin-plugin": "^1.8.2",
  1471. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1472. "uri-template/tests": "1.0.0"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "bamarni-bin": {
  1477. "bin-links": true,
  1478. "forward-command": false
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "GuzzleHttp\\UriTemplate\\": "src"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Graham Campbell",
  1493. "email": "hello@gjcampbell.co.uk",
  1494. "homepage": "https://github.com/GrahamCampbell"
  1495. },
  1496. {
  1497. "name": "Michael Dowling",
  1498. "email": "mtdowling@gmail.com",
  1499. "homepage": "https://github.com/mtdowling"
  1500. },
  1501. {
  1502. "name": "George Mponos",
  1503. "email": "gmponos@gmail.com",
  1504. "homepage": "https://github.com/gmponos"
  1505. },
  1506. {
  1507. "name": "Tobias Nyholm",
  1508. "email": "tobias.nyholm@gmail.com",
  1509. "homepage": "https://github.com/Nyholm"
  1510. }
  1511. ],
  1512. "description": "A polyfill class for uri_template of PHP",
  1513. "keywords": [
  1514. "guzzlehttp",
  1515. "uri-template"
  1516. ],
  1517. "support": {
  1518. "issues": "https://github.com/guzzle/uri-template/issues",
  1519. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1520. },
  1521. "funding": [
  1522. {
  1523. "url": "https://github.com/GrahamCampbell",
  1524. "type": "github"
  1525. },
  1526. {
  1527. "url": "https://github.com/Nyholm",
  1528. "type": "github"
  1529. },
  1530. {
  1531. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1532. "type": "tidelift"
  1533. }
  1534. ],
  1535. "time": "2023-12-03T19:50:20+00:00"
  1536. },
  1537. {
  1538. "name": "hashids/hashids",
  1539. "version": "4.1.0",
  1540. "source": {
  1541. "type": "git",
  1542. "url": "https://github.com/vinkla/hashids.git",
  1543. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1544. },
  1545. "dist": {
  1546. "type": "zip",
  1547. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1548. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1549. "shasum": "",
  1550. "mirrors": [
  1551. {
  1552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1553. "preferred": true
  1554. }
  1555. ]
  1556. },
  1557. "require": {
  1558. "ext-mbstring": "*",
  1559. "php": "^7.2 || ^8.0"
  1560. },
  1561. "require-dev": {
  1562. "phpunit/phpunit": "^8.0 || ^9.4",
  1563. "squizlabs/php_codesniffer": "^3.5"
  1564. },
  1565. "suggest": {
  1566. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1567. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1568. },
  1569. "type": "library",
  1570. "extra": {
  1571. "branch-alias": {
  1572. "dev-master": "4.1-dev"
  1573. }
  1574. },
  1575. "autoload": {
  1576. "psr-4": {
  1577. "Hashids\\": "src/"
  1578. }
  1579. },
  1580. "notification-url": "https://packagist.org/downloads/",
  1581. "license": [
  1582. "MIT"
  1583. ],
  1584. "authors": [
  1585. {
  1586. "name": "Ivan Akimov",
  1587. "email": "ivan@barreleye.com"
  1588. },
  1589. {
  1590. "name": "Vincent Klaiber",
  1591. "email": "hello@doubledip.se"
  1592. }
  1593. ],
  1594. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1595. "homepage": "https://hashids.org/php",
  1596. "keywords": [
  1597. "bitly",
  1598. "decode",
  1599. "encode",
  1600. "hash",
  1601. "hashid",
  1602. "hashids",
  1603. "ids",
  1604. "obfuscate",
  1605. "youtube"
  1606. ],
  1607. "support": {
  1608. "issues": "https://github.com/vinkla/hashids/issues",
  1609. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1610. },
  1611. "time": "2020-11-26T19:24:33+00:00"
  1612. },
  1613. {
  1614. "name": "intervention/image",
  1615. "version": "2.7.2",
  1616. "source": {
  1617. "type": "git",
  1618. "url": "https://github.com/Intervention/image.git",
  1619. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1620. },
  1621. "dist": {
  1622. "type": "zip",
  1623. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1624. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1625. "shasum": "",
  1626. "mirrors": [
  1627. {
  1628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1629. "preferred": true
  1630. }
  1631. ]
  1632. },
  1633. "require": {
  1634. "ext-fileinfo": "*",
  1635. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1636. "php": ">=5.4.0"
  1637. },
  1638. "require-dev": {
  1639. "mockery/mockery": "~0.9.2",
  1640. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1641. },
  1642. "suggest": {
  1643. "ext-gd": "to use GD library based image processing.",
  1644. "ext-imagick": "to use Imagick based image processing.",
  1645. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "laravel": {
  1650. "aliases": {
  1651. "Image": "Intervention\\Image\\Facades\\Image"
  1652. },
  1653. "providers": [
  1654. "Intervention\\Image\\ImageServiceProvider"
  1655. ]
  1656. },
  1657. "branch-alias": {
  1658. "dev-master": "2.4-dev"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Intervention\\Image\\": "src/Intervention/Image"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Oliver Vogel",
  1673. "email": "oliver@intervention.io",
  1674. "homepage": "https://intervention.io/"
  1675. }
  1676. ],
  1677. "description": "Image handling and manipulation library with support for Laravel integration",
  1678. "homepage": "http://image.intervention.io/",
  1679. "keywords": [
  1680. "gd",
  1681. "image",
  1682. "imagick",
  1683. "laravel",
  1684. "thumbnail",
  1685. "watermark"
  1686. ],
  1687. "support": {
  1688. "issues": "https://github.com/Intervention/image/issues",
  1689. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1690. },
  1691. "funding": [
  1692. {
  1693. "url": "https://paypal.me/interventionio",
  1694. "type": "custom"
  1695. },
  1696. {
  1697. "url": "https://github.com/Intervention",
  1698. "type": "github"
  1699. }
  1700. ],
  1701. "time": "2022-05-21T17:30:32+00:00"
  1702. },
  1703. {
  1704. "name": "ixudra/curl",
  1705. "version": "6.22.1",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/ixudra/curl.git",
  1709. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1714. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1715. "shasum": "",
  1716. "mirrors": [
  1717. {
  1718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1719. "preferred": true
  1720. }
  1721. ]
  1722. },
  1723. "require": {
  1724. "ext-curl": "*",
  1725. "illuminate/support": ">=4.0",
  1726. "php": ">=5.4.0"
  1727. },
  1728. "type": "library",
  1729. "extra": {
  1730. "laravel": {
  1731. "providers": [
  1732. "Ixudra\\Curl\\CurlServiceProvider"
  1733. ],
  1734. "aliases": {
  1735. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  1736. }
  1737. }
  1738. },
  1739. "autoload": {
  1740. "psr-4": {
  1741. "Ixudra\\Curl\\": "src/"
  1742. }
  1743. },
  1744. "notification-url": "https://packagist.org/downloads/",
  1745. "license": [
  1746. "MIT"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Jan Oris",
  1751. "email": "jan.oris@ixudra.be"
  1752. }
  1753. ],
  1754. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  1755. "homepage": "http://ixudra.be",
  1756. "keywords": [
  1757. "Ixudra",
  1758. "curl",
  1759. "laravel"
  1760. ],
  1761. "support": {
  1762. "issues": "https://github.com/ixudra/curl/issues",
  1763. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  1764. },
  1765. "time": "2022-07-31T09:58:52+00:00"
  1766. },
  1767. {
  1768. "name": "kra8/laravel-snowflake",
  1769. "version": "v2.1.0",
  1770. "source": {
  1771. "type": "git",
  1772. "url": "https://github.com/kra8/laravel-snowflake.git",
  1773. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed"
  1774. },
  1775. "dist": {
  1776. "type": "zip",
  1777. "url": "https://api.github.com/repos/kra8/laravel-snowflake/zipball/c56250c9e5b75eb26864f298039a74720b2ab1ed",
  1778. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed",
  1779. "shasum": "",
  1780. "mirrors": [
  1781. {
  1782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1783. "preferred": true
  1784. }
  1785. ]
  1786. },
  1787. "require": {
  1788. "illuminate/support": "^6.3|^7.0|^8.0|^9.0",
  1789. "php": "^7.2.5|^8.0"
  1790. },
  1791. "require-dev": {
  1792. "orchestra/testbench": "^5.0|^6.0|^7.0",
  1793. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1794. },
  1795. "type": "library",
  1796. "extra": {
  1797. "laravel": {
  1798. "providers": [
  1799. "Kra8\\Snowflake\\Providers\\LaravelServiceProvider"
  1800. ]
  1801. }
  1802. },
  1803. "autoload": {
  1804. "psr-4": {
  1805. "Kra8\\Snowflake\\": "src/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Koki Asai",
  1815. "email": "me@kra.dev"
  1816. }
  1817. ],
  1818. "description": "Snowflake for Laravel and Lumen.",
  1819. "homepage": "https://github.com/kra8/laravel-snowflake",
  1820. "keywords": [
  1821. "laravel",
  1822. "lumen",
  1823. "php",
  1824. "snowflake"
  1825. ],
  1826. "support": {
  1827. "issues": "https://github.com/kra8/laravel-snowflake/issues",
  1828. "source": "https://github.com/kra8/laravel-snowflake/tree/v2.1.0"
  1829. },
  1830. "time": "2022-02-28T04:04:37+00:00"
  1831. },
  1832. {
  1833. "name": "laravel/framework",
  1834. "version": "v8.83.29",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/laravel/framework.git",
  1838. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  1843. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  1844. "shasum": "",
  1845. "mirrors": [
  1846. {
  1847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1848. "preferred": true
  1849. }
  1850. ]
  1851. },
  1852. "require": {
  1853. "doctrine/inflector": "^1.4|^2.0",
  1854. "dragonmantank/cron-expression": "^3.0.2",
  1855. "egulias/email-validator": "^2.1.10",
  1856. "ext-json": "*",
  1857. "ext-mbstring": "*",
  1858. "ext-openssl": "*",
  1859. "laravel/serializable-closure": "^1.0",
  1860. "league/commonmark": "^1.3|^2.0.2",
  1861. "league/flysystem": "^1.1",
  1862. "monolog/monolog": "^2.0",
  1863. "nesbot/carbon": "^2.53.1",
  1864. "opis/closure": "^3.6",
  1865. "php": "^7.3|^8.0",
  1866. "psr/container": "^1.0",
  1867. "psr/log": "^1.0|^2.0",
  1868. "psr/simple-cache": "^1.0",
  1869. "ramsey/uuid": "^4.2.2",
  1870. "swiftmailer/swiftmailer": "^6.3",
  1871. "symfony/console": "^5.4",
  1872. "symfony/error-handler": "^5.4",
  1873. "symfony/finder": "^5.4",
  1874. "symfony/http-foundation": "^5.4",
  1875. "symfony/http-kernel": "^5.4",
  1876. "symfony/mime": "^5.4",
  1877. "symfony/process": "^5.4",
  1878. "symfony/routing": "^5.4",
  1879. "symfony/var-dumper": "^5.4",
  1880. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1881. "vlucas/phpdotenv": "^5.4.1",
  1882. "voku/portable-ascii": "^1.6.1"
  1883. },
  1884. "conflict": {
  1885. "tightenco/collect": "<5.5.33"
  1886. },
  1887. "provide": {
  1888. "psr/container-implementation": "1.0",
  1889. "psr/simple-cache-implementation": "1.0"
  1890. },
  1891. "replace": {
  1892. "illuminate/auth": "self.version",
  1893. "illuminate/broadcasting": "self.version",
  1894. "illuminate/bus": "self.version",
  1895. "illuminate/cache": "self.version",
  1896. "illuminate/collections": "self.version",
  1897. "illuminate/config": "self.version",
  1898. "illuminate/console": "self.version",
  1899. "illuminate/container": "self.version",
  1900. "illuminate/contracts": "self.version",
  1901. "illuminate/cookie": "self.version",
  1902. "illuminate/database": "self.version",
  1903. "illuminate/encryption": "self.version",
  1904. "illuminate/events": "self.version",
  1905. "illuminate/filesystem": "self.version",
  1906. "illuminate/hashing": "self.version",
  1907. "illuminate/http": "self.version",
  1908. "illuminate/log": "self.version",
  1909. "illuminate/macroable": "self.version",
  1910. "illuminate/mail": "self.version",
  1911. "illuminate/notifications": "self.version",
  1912. "illuminate/pagination": "self.version",
  1913. "illuminate/pipeline": "self.version",
  1914. "illuminate/queue": "self.version",
  1915. "illuminate/redis": "self.version",
  1916. "illuminate/routing": "self.version",
  1917. "illuminate/session": "self.version",
  1918. "illuminate/support": "self.version",
  1919. "illuminate/testing": "self.version",
  1920. "illuminate/translation": "self.version",
  1921. "illuminate/validation": "self.version",
  1922. "illuminate/view": "self.version"
  1923. },
  1924. "require-dev": {
  1925. "aws/aws-sdk-php": "^3.198.1",
  1926. "doctrine/dbal": "^2.13.3|^3.1.4",
  1927. "filp/whoops": "^2.14.3",
  1928. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1929. "league/flysystem-cached-adapter": "^1.0",
  1930. "mockery/mockery": "^1.4.4",
  1931. "orchestra/testbench-core": "^6.27",
  1932. "pda/pheanstalk": "^4.0",
  1933. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1934. "predis/predis": "^1.1.9",
  1935. "symfony/cache": "^5.4"
  1936. },
  1937. "suggest": {
  1938. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1939. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1940. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1941. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1942. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1943. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1944. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1945. "ext-memcached": "Required to use the memcache cache driver.",
  1946. "ext-pcntl": "Required to use all features of the queue worker.",
  1947. "ext-posix": "Required to use all features of the queue worker.",
  1948. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1949. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1950. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1951. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1952. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1953. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1954. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1955. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1956. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1957. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1958. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1959. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1960. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1961. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1962. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1963. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1964. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1965. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1966. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1967. },
  1968. "type": "library",
  1969. "extra": {
  1970. "branch-alias": {
  1971. "dev-master": "8.x-dev"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "files": [
  1976. "src/Illuminate/Collections/helpers.php",
  1977. "src/Illuminate/Events/functions.php",
  1978. "src/Illuminate/Foundation/helpers.php",
  1979. "src/Illuminate/Support/helpers.php"
  1980. ],
  1981. "psr-4": {
  1982. "Illuminate\\": "src/Illuminate/",
  1983. "Illuminate\\Support\\": [
  1984. "src/Illuminate/Macroable/",
  1985. "src/Illuminate/Collections/"
  1986. ]
  1987. }
  1988. },
  1989. "notification-url": "https://packagist.org/downloads/",
  1990. "license": [
  1991. "MIT"
  1992. ],
  1993. "authors": [
  1994. {
  1995. "name": "Taylor Otwell",
  1996. "email": "taylor@laravel.com"
  1997. }
  1998. ],
  1999. "description": "The Laravel Framework.",
  2000. "homepage": "https://laravel.com",
  2001. "keywords": [
  2002. "framework",
  2003. "laravel"
  2004. ],
  2005. "support": {
  2006. "issues": "https://github.com/laravel/framework/issues",
  2007. "source": "https://github.com/laravel/framework"
  2008. },
  2009. "time": "2024-11-20T15:55:41+00:00"
  2010. },
  2011. {
  2012. "name": "laravel/serializable-closure",
  2013. "version": "v1.3.7",
  2014. "source": {
  2015. "type": "git",
  2016. "url": "https://github.com/laravel/serializable-closure.git",
  2017. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2018. },
  2019. "dist": {
  2020. "type": "zip",
  2021. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2022. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2023. "shasum": "",
  2024. "mirrors": [
  2025. {
  2026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2027. "preferred": true
  2028. }
  2029. ]
  2030. },
  2031. "require": {
  2032. "php": "^7.3|^8.0"
  2033. },
  2034. "require-dev": {
  2035. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2036. "nesbot/carbon": "^2.61|^3.0",
  2037. "pestphp/pest": "^1.21.3",
  2038. "phpstan/phpstan": "^1.8.2",
  2039. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2040. },
  2041. "type": "library",
  2042. "extra": {
  2043. "branch-alias": {
  2044. "dev-master": "1.x-dev"
  2045. }
  2046. },
  2047. "autoload": {
  2048. "psr-4": {
  2049. "Laravel\\SerializableClosure\\": "src/"
  2050. }
  2051. },
  2052. "notification-url": "https://packagist.org/downloads/",
  2053. "license": [
  2054. "MIT"
  2055. ],
  2056. "authors": [
  2057. {
  2058. "name": "Taylor Otwell",
  2059. "email": "taylor@laravel.com"
  2060. },
  2061. {
  2062. "name": "Nuno Maduro",
  2063. "email": "nuno@laravel.com"
  2064. }
  2065. ],
  2066. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2067. "keywords": [
  2068. "closure",
  2069. "laravel",
  2070. "serializable"
  2071. ],
  2072. "support": {
  2073. "issues": "https://github.com/laravel/serializable-closure/issues",
  2074. "source": "https://github.com/laravel/serializable-closure"
  2075. },
  2076. "time": "2024-11-14T18:34:49+00:00"
  2077. },
  2078. {
  2079. "name": "laravel/tinker",
  2080. "version": "v2.10.0",
  2081. "source": {
  2082. "type": "git",
  2083. "url": "https://github.com/laravel/tinker.git",
  2084. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2085. },
  2086. "dist": {
  2087. "type": "zip",
  2088. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2089. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2090. "shasum": "",
  2091. "mirrors": [
  2092. {
  2093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2094. "preferred": true
  2095. }
  2096. ]
  2097. },
  2098. "require": {
  2099. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2100. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2101. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2102. "php": "^7.2.5|^8.0",
  2103. "psy/psysh": "^0.11.1|^0.12.0",
  2104. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2105. },
  2106. "require-dev": {
  2107. "mockery/mockery": "~1.3.3|^1.4.2",
  2108. "phpstan/phpstan": "^1.10",
  2109. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2110. },
  2111. "suggest": {
  2112. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2113. },
  2114. "type": "library",
  2115. "extra": {
  2116. "laravel": {
  2117. "providers": [
  2118. "Laravel\\Tinker\\TinkerServiceProvider"
  2119. ]
  2120. }
  2121. },
  2122. "autoload": {
  2123. "psr-4": {
  2124. "Laravel\\Tinker\\": "src/"
  2125. }
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "MIT"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Taylor Otwell",
  2134. "email": "taylor@laravel.com"
  2135. }
  2136. ],
  2137. "description": "Powerful REPL for the Laravel framework.",
  2138. "keywords": [
  2139. "REPL",
  2140. "Tinker",
  2141. "laravel",
  2142. "psysh"
  2143. ],
  2144. "support": {
  2145. "issues": "https://github.com/laravel/tinker/issues",
  2146. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2147. },
  2148. "time": "2024-09-23T13:32:56+00:00"
  2149. },
  2150. {
  2151. "name": "league/commonmark",
  2152. "version": "2.6.0",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://github.com/thephpleague/commonmark.git",
  2156. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2161. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2162. "shasum": "",
  2163. "mirrors": [
  2164. {
  2165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2166. "preferred": true
  2167. }
  2168. ]
  2169. },
  2170. "require": {
  2171. "ext-mbstring": "*",
  2172. "league/config": "^1.1.1",
  2173. "php": "^7.4 || ^8.0",
  2174. "psr/event-dispatcher": "^1.0",
  2175. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2176. "symfony/polyfill-php80": "^1.16"
  2177. },
  2178. "require-dev": {
  2179. "cebe/markdown": "^1.0",
  2180. "commonmark/cmark": "0.31.1",
  2181. "commonmark/commonmark.js": "0.31.1",
  2182. "composer/package-versions-deprecated": "^1.8",
  2183. "embed/embed": "^4.4",
  2184. "erusev/parsedown": "^1.0",
  2185. "ext-json": "*",
  2186. "github/gfm": "0.29.0",
  2187. "michelf/php-markdown": "^1.4 || ^2.0",
  2188. "nyholm/psr7": "^1.5",
  2189. "phpstan/phpstan": "^1.8.2",
  2190. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2191. "scrutinizer/ocular": "^1.8.1",
  2192. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2193. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2194. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2195. "unleashedtech/php-coding-standard": "^3.1.1",
  2196. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2197. },
  2198. "suggest": {
  2199. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2200. },
  2201. "type": "library",
  2202. "extra": {
  2203. "branch-alias": {
  2204. "dev-main": "2.7-dev"
  2205. }
  2206. },
  2207. "autoload": {
  2208. "psr-4": {
  2209. "League\\CommonMark\\": "src"
  2210. }
  2211. },
  2212. "notification-url": "https://packagist.org/downloads/",
  2213. "license": [
  2214. "BSD-3-Clause"
  2215. ],
  2216. "authors": [
  2217. {
  2218. "name": "Colin O'Dell",
  2219. "email": "colinodell@gmail.com",
  2220. "homepage": "https://www.colinodell.com",
  2221. "role": "Lead Developer"
  2222. }
  2223. ],
  2224. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2225. "homepage": "https://commonmark.thephpleague.com",
  2226. "keywords": [
  2227. "commonmark",
  2228. "flavored",
  2229. "gfm",
  2230. "github",
  2231. "github-flavored",
  2232. "markdown",
  2233. "md",
  2234. "parser"
  2235. ],
  2236. "support": {
  2237. "docs": "https://commonmark.thephpleague.com/",
  2238. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2239. "issues": "https://github.com/thephpleague/commonmark/issues",
  2240. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2241. "source": "https://github.com/thephpleague/commonmark"
  2242. },
  2243. "funding": [
  2244. {
  2245. "url": "https://www.colinodell.com/sponsor",
  2246. "type": "custom"
  2247. },
  2248. {
  2249. "url": "https://www.paypal.me/colinpodell/10.00",
  2250. "type": "custom"
  2251. },
  2252. {
  2253. "url": "https://github.com/colinodell",
  2254. "type": "github"
  2255. },
  2256. {
  2257. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2258. "type": "tidelift"
  2259. }
  2260. ],
  2261. "time": "2024-12-07T15:34:16+00:00"
  2262. },
  2263. {
  2264. "name": "league/config",
  2265. "version": "v1.2.0",
  2266. "source": {
  2267. "type": "git",
  2268. "url": "https://github.com/thephpleague/config.git",
  2269. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2270. },
  2271. "dist": {
  2272. "type": "zip",
  2273. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2274. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2275. "shasum": "",
  2276. "mirrors": [
  2277. {
  2278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2279. "preferred": true
  2280. }
  2281. ]
  2282. },
  2283. "require": {
  2284. "dflydev/dot-access-data": "^3.0.1",
  2285. "nette/schema": "^1.2",
  2286. "php": "^7.4 || ^8.0"
  2287. },
  2288. "require-dev": {
  2289. "phpstan/phpstan": "^1.8.2",
  2290. "phpunit/phpunit": "^9.5.5",
  2291. "scrutinizer/ocular": "^1.8.1",
  2292. "unleashedtech/php-coding-standard": "^3.1",
  2293. "vimeo/psalm": "^4.7.3"
  2294. },
  2295. "type": "library",
  2296. "extra": {
  2297. "branch-alias": {
  2298. "dev-main": "1.2-dev"
  2299. }
  2300. },
  2301. "autoload": {
  2302. "psr-4": {
  2303. "League\\Config\\": "src"
  2304. }
  2305. },
  2306. "notification-url": "https://packagist.org/downloads/",
  2307. "license": [
  2308. "BSD-3-Clause"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Colin O'Dell",
  2313. "email": "colinodell@gmail.com",
  2314. "homepage": "https://www.colinodell.com",
  2315. "role": "Lead Developer"
  2316. }
  2317. ],
  2318. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2319. "homepage": "https://config.thephpleague.com",
  2320. "keywords": [
  2321. "array",
  2322. "config",
  2323. "configuration",
  2324. "dot",
  2325. "dot-access",
  2326. "nested",
  2327. "schema"
  2328. ],
  2329. "support": {
  2330. "docs": "https://config.thephpleague.com/",
  2331. "issues": "https://github.com/thephpleague/config/issues",
  2332. "rss": "https://github.com/thephpleague/config/releases.atom",
  2333. "source": "https://github.com/thephpleague/config"
  2334. },
  2335. "funding": [
  2336. {
  2337. "url": "https://www.colinodell.com/sponsor",
  2338. "type": "custom"
  2339. },
  2340. {
  2341. "url": "https://www.paypal.me/colinpodell/10.00",
  2342. "type": "custom"
  2343. },
  2344. {
  2345. "url": "https://github.com/colinodell",
  2346. "type": "github"
  2347. }
  2348. ],
  2349. "time": "2022-12-11T20:36:23+00:00"
  2350. },
  2351. {
  2352. "name": "league/flysystem",
  2353. "version": "1.1.10",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/thephpleague/flysystem.git",
  2357. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2362. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2363. "shasum": "",
  2364. "mirrors": [
  2365. {
  2366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2367. "preferred": true
  2368. }
  2369. ]
  2370. },
  2371. "require": {
  2372. "ext-fileinfo": "*",
  2373. "league/mime-type-detection": "^1.3",
  2374. "php": "^7.2.5 || ^8.0"
  2375. },
  2376. "conflict": {
  2377. "league/flysystem-sftp": "<1.0.6"
  2378. },
  2379. "require-dev": {
  2380. "phpspec/prophecy": "^1.11.1",
  2381. "phpunit/phpunit": "^8.5.8"
  2382. },
  2383. "suggest": {
  2384. "ext-ftp": "Allows you to use FTP server storage",
  2385. "ext-openssl": "Allows you to use FTPS server storage",
  2386. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2387. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2388. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2389. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2390. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2391. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2392. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2393. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2394. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2395. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2396. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2397. },
  2398. "type": "library",
  2399. "extra": {
  2400. "branch-alias": {
  2401. "dev-master": "1.1-dev"
  2402. }
  2403. },
  2404. "autoload": {
  2405. "psr-4": {
  2406. "League\\Flysystem\\": "src/"
  2407. }
  2408. },
  2409. "notification-url": "https://packagist.org/downloads/",
  2410. "license": [
  2411. "MIT"
  2412. ],
  2413. "authors": [
  2414. {
  2415. "name": "Frank de Jonge",
  2416. "email": "info@frenky.net"
  2417. }
  2418. ],
  2419. "description": "Filesystem abstraction: Many filesystems, one API.",
  2420. "keywords": [
  2421. "Cloud Files",
  2422. "WebDAV",
  2423. "abstraction",
  2424. "aws",
  2425. "cloud",
  2426. "copy.com",
  2427. "dropbox",
  2428. "file systems",
  2429. "files",
  2430. "filesystem",
  2431. "filesystems",
  2432. "ftp",
  2433. "rackspace",
  2434. "remote",
  2435. "s3",
  2436. "sftp",
  2437. "storage"
  2438. ],
  2439. "support": {
  2440. "issues": "https://github.com/thephpleague/flysystem/issues",
  2441. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2442. },
  2443. "funding": [
  2444. {
  2445. "url": "https://offset.earth/frankdejonge",
  2446. "type": "other"
  2447. }
  2448. ],
  2449. "time": "2022-10-04T09:16:37+00:00"
  2450. },
  2451. {
  2452. "name": "league/mime-type-detection",
  2453. "version": "1.15.0",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2457. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2462. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2463. "shasum": "",
  2464. "mirrors": [
  2465. {
  2466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2467. "preferred": true
  2468. }
  2469. ]
  2470. },
  2471. "require": {
  2472. "ext-fileinfo": "*",
  2473. "php": "^7.4 || ^8.0"
  2474. },
  2475. "require-dev": {
  2476. "friendsofphp/php-cs-fixer": "^3.2",
  2477. "phpstan/phpstan": "^0.12.68",
  2478. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2479. },
  2480. "type": "library",
  2481. "autoload": {
  2482. "psr-4": {
  2483. "League\\MimeTypeDetection\\": "src"
  2484. }
  2485. },
  2486. "notification-url": "https://packagist.org/downloads/",
  2487. "license": [
  2488. "MIT"
  2489. ],
  2490. "authors": [
  2491. {
  2492. "name": "Frank de Jonge",
  2493. "email": "info@frankdejonge.nl"
  2494. }
  2495. ],
  2496. "description": "Mime-type detection for Flysystem",
  2497. "support": {
  2498. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2499. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2500. },
  2501. "funding": [
  2502. {
  2503. "url": "https://github.com/frankdejonge",
  2504. "type": "github"
  2505. },
  2506. {
  2507. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2508. "type": "tidelift"
  2509. }
  2510. ],
  2511. "time": "2024-01-28T23:22:08+00:00"
  2512. },
  2513. {
  2514. "name": "maennchen/zipstream-php",
  2515. "version": "2.2.6",
  2516. "source": {
  2517. "type": "git",
  2518. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2519. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2520. },
  2521. "dist": {
  2522. "type": "zip",
  2523. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2524. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2525. "shasum": "",
  2526. "mirrors": [
  2527. {
  2528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2529. "preferred": true
  2530. }
  2531. ]
  2532. },
  2533. "require": {
  2534. "myclabs/php-enum": "^1.5",
  2535. "php": "^7.4 || ^8.0",
  2536. "psr/http-message": "^1.0",
  2537. "symfony/polyfill-mbstring": "^1.0"
  2538. },
  2539. "require-dev": {
  2540. "ext-zip": "*",
  2541. "friendsofphp/php-cs-fixer": "^3.9",
  2542. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2543. "mikey179/vfsstream": "^1.6",
  2544. "php-coveralls/php-coveralls": "^2.4",
  2545. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2546. "vimeo/psalm": "^4.1"
  2547. },
  2548. "type": "library",
  2549. "autoload": {
  2550. "psr-4": {
  2551. "ZipStream\\": "src/"
  2552. }
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "MIT"
  2557. ],
  2558. "authors": [
  2559. {
  2560. "name": "Paul Duncan",
  2561. "email": "pabs@pablotron.org"
  2562. },
  2563. {
  2564. "name": "Jonatan Männchen",
  2565. "email": "jonatan@maennchen.ch"
  2566. },
  2567. {
  2568. "name": "Jesse Donat",
  2569. "email": "donatj@gmail.com"
  2570. },
  2571. {
  2572. "name": "András Kolesár",
  2573. "email": "kolesar@kolesar.hu"
  2574. }
  2575. ],
  2576. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2577. "keywords": [
  2578. "stream",
  2579. "zip"
  2580. ],
  2581. "support": {
  2582. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2583. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2584. },
  2585. "funding": [
  2586. {
  2587. "url": "https://github.com/maennchen",
  2588. "type": "github"
  2589. },
  2590. {
  2591. "url": "https://opencollective.com/zipstream",
  2592. "type": "open_collective"
  2593. }
  2594. ],
  2595. "time": "2022-11-25T18:57:19+00:00"
  2596. },
  2597. {
  2598. "name": "markbaker/complex",
  2599. "version": "3.0.2",
  2600. "source": {
  2601. "type": "git",
  2602. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2603. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2604. },
  2605. "dist": {
  2606. "type": "zip",
  2607. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2608. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2609. "shasum": "",
  2610. "mirrors": [
  2611. {
  2612. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2613. "preferred": true
  2614. }
  2615. ]
  2616. },
  2617. "require": {
  2618. "php": "^7.2 || ^8.0"
  2619. },
  2620. "require-dev": {
  2621. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2622. "phpcompatibility/php-compatibility": "^9.3",
  2623. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2624. "squizlabs/php_codesniffer": "^3.7"
  2625. },
  2626. "type": "library",
  2627. "autoload": {
  2628. "psr-4": {
  2629. "Complex\\": "classes/src/"
  2630. }
  2631. },
  2632. "notification-url": "https://packagist.org/downloads/",
  2633. "license": [
  2634. "MIT"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "Mark Baker",
  2639. "email": "mark@lange.demon.co.uk"
  2640. }
  2641. ],
  2642. "description": "PHP Class for working with complex numbers",
  2643. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2644. "keywords": [
  2645. "complex",
  2646. "mathematics"
  2647. ],
  2648. "support": {
  2649. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2650. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2651. },
  2652. "time": "2022-12-06T16:21:08+00:00"
  2653. },
  2654. {
  2655. "name": "markbaker/matrix",
  2656. "version": "3.0.1",
  2657. "source": {
  2658. "type": "git",
  2659. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2660. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2661. },
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2665. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2666. "shasum": "",
  2667. "mirrors": [
  2668. {
  2669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2670. "preferred": true
  2671. }
  2672. ]
  2673. },
  2674. "require": {
  2675. "php": "^7.1 || ^8.0"
  2676. },
  2677. "require-dev": {
  2678. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2679. "phpcompatibility/php-compatibility": "^9.3",
  2680. "phpdocumentor/phpdocumentor": "2.*",
  2681. "phploc/phploc": "^4.0",
  2682. "phpmd/phpmd": "2.*",
  2683. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2684. "sebastian/phpcpd": "^4.0",
  2685. "squizlabs/php_codesniffer": "^3.7"
  2686. },
  2687. "type": "library",
  2688. "autoload": {
  2689. "psr-4": {
  2690. "Matrix\\": "classes/src/"
  2691. }
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "Mark Baker",
  2700. "email": "mark@demon-angel.eu"
  2701. }
  2702. ],
  2703. "description": "PHP Class for working with matrices",
  2704. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2705. "keywords": [
  2706. "mathematics",
  2707. "matrix",
  2708. "vector"
  2709. ],
  2710. "support": {
  2711. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2712. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2713. },
  2714. "time": "2022-12-02T22:17:43+00:00"
  2715. },
  2716. {
  2717. "name": "monolog/monolog",
  2718. "version": "2.10.0",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/Seldaek/monolog.git",
  2722. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2727. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2728. "shasum": "",
  2729. "mirrors": [
  2730. {
  2731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2732. "preferred": true
  2733. }
  2734. ]
  2735. },
  2736. "require": {
  2737. "php": ">=7.2",
  2738. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2739. },
  2740. "provide": {
  2741. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2742. },
  2743. "require-dev": {
  2744. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2745. "doctrine/couchdb": "~1.0@dev",
  2746. "elasticsearch/elasticsearch": "^7 || ^8",
  2747. "ext-json": "*",
  2748. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2749. "guzzlehttp/guzzle": "^7.4",
  2750. "guzzlehttp/psr7": "^2.2",
  2751. "mongodb/mongodb": "^1.8",
  2752. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2753. "phpspec/prophecy": "^1.15",
  2754. "phpstan/phpstan": "^1.10",
  2755. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2756. "predis/predis": "^1.1 || ^2.0",
  2757. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2758. "ruflin/elastica": "^7",
  2759. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2760. "symfony/mailer": "^5.4 || ^6",
  2761. "symfony/mime": "^5.4 || ^6"
  2762. },
  2763. "suggest": {
  2764. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2765. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2766. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2767. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2768. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2769. "ext-mbstring": "Allow to work properly with unicode symbols",
  2770. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2771. "ext-openssl": "Required to send log messages using SSL",
  2772. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2773. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2774. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2775. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2776. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2777. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2778. },
  2779. "type": "library",
  2780. "extra": {
  2781. "branch-alias": {
  2782. "dev-main": "2.x-dev"
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Monolog\\": "src/Monolog"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Jordi Boggiano",
  2797. "email": "j.boggiano@seld.be",
  2798. "homepage": "https://seld.be"
  2799. }
  2800. ],
  2801. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2802. "homepage": "https://github.com/Seldaek/monolog",
  2803. "keywords": [
  2804. "log",
  2805. "logging",
  2806. "psr-3"
  2807. ],
  2808. "support": {
  2809. "issues": "https://github.com/Seldaek/monolog/issues",
  2810. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2811. },
  2812. "funding": [
  2813. {
  2814. "url": "https://github.com/Seldaek",
  2815. "type": "github"
  2816. },
  2817. {
  2818. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2819. "type": "tidelift"
  2820. }
  2821. ],
  2822. "time": "2024-11-12T12:43:37+00:00"
  2823. },
  2824. {
  2825. "name": "myclabs/php-enum",
  2826. "version": "1.8.4",
  2827. "source": {
  2828. "type": "git",
  2829. "url": "https://github.com/myclabs/php-enum.git",
  2830. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2831. },
  2832. "dist": {
  2833. "type": "zip",
  2834. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2835. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2836. "shasum": "",
  2837. "mirrors": [
  2838. {
  2839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2840. "preferred": true
  2841. }
  2842. ]
  2843. },
  2844. "require": {
  2845. "ext-json": "*",
  2846. "php": "^7.3 || ^8.0"
  2847. },
  2848. "require-dev": {
  2849. "phpunit/phpunit": "^9.5",
  2850. "squizlabs/php_codesniffer": "1.*",
  2851. "vimeo/psalm": "^4.6.2"
  2852. },
  2853. "type": "library",
  2854. "autoload": {
  2855. "psr-4": {
  2856. "MyCLabs\\Enum\\": "src/"
  2857. },
  2858. "classmap": [
  2859. "stubs/Stringable.php"
  2860. ]
  2861. },
  2862. "notification-url": "https://packagist.org/downloads/",
  2863. "license": [
  2864. "MIT"
  2865. ],
  2866. "authors": [
  2867. {
  2868. "name": "PHP Enum contributors",
  2869. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2870. }
  2871. ],
  2872. "description": "PHP Enum implementation",
  2873. "homepage": "http://github.com/myclabs/php-enum",
  2874. "keywords": [
  2875. "enum"
  2876. ],
  2877. "support": {
  2878. "issues": "https://github.com/myclabs/php-enum/issues",
  2879. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2880. },
  2881. "funding": [
  2882. {
  2883. "url": "https://github.com/mnapoli",
  2884. "type": "github"
  2885. },
  2886. {
  2887. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2888. "type": "tidelift"
  2889. }
  2890. ],
  2891. "time": "2022-08-04T09:53:51+00:00"
  2892. },
  2893. {
  2894. "name": "nesbot/carbon",
  2895. "version": "2.72.5",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/briannesbitt/Carbon.git",
  2899. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  2904. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  2905. "shasum": "",
  2906. "mirrors": [
  2907. {
  2908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2909. "preferred": true
  2910. }
  2911. ]
  2912. },
  2913. "require": {
  2914. "carbonphp/carbon-doctrine-types": "*",
  2915. "ext-json": "*",
  2916. "php": "^7.1.8 || ^8.0",
  2917. "psr/clock": "^1.0",
  2918. "symfony/polyfill-mbstring": "^1.0",
  2919. "symfony/polyfill-php80": "^1.16",
  2920. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2921. },
  2922. "provide": {
  2923. "psr/clock-implementation": "1.0"
  2924. },
  2925. "require-dev": {
  2926. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2927. "doctrine/orm": "^2.7 || ^3.0",
  2928. "friendsofphp/php-cs-fixer": "^3.0",
  2929. "kylekatarnls/multi-tester": "^2.0",
  2930. "ondrejmirtes/better-reflection": "*",
  2931. "phpmd/phpmd": "^2.9",
  2932. "phpstan/extension-installer": "^1.0",
  2933. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2934. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2935. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2936. "squizlabs/php_codesniffer": "^3.4"
  2937. },
  2938. "bin": [
  2939. "bin/carbon"
  2940. ],
  2941. "type": "library",
  2942. "extra": {
  2943. "laravel": {
  2944. "providers": [
  2945. "Carbon\\Laravel\\ServiceProvider"
  2946. ]
  2947. },
  2948. "phpstan": {
  2949. "includes": [
  2950. "extension.neon"
  2951. ]
  2952. },
  2953. "branch-alias": {
  2954. "dev-2.x": "2.x-dev",
  2955. "dev-master": "3.x-dev"
  2956. }
  2957. },
  2958. "autoload": {
  2959. "psr-4": {
  2960. "Carbon\\": "src/Carbon/"
  2961. }
  2962. },
  2963. "notification-url": "https://packagist.org/downloads/",
  2964. "license": [
  2965. "MIT"
  2966. ],
  2967. "authors": [
  2968. {
  2969. "name": "Brian Nesbitt",
  2970. "email": "brian@nesbot.com",
  2971. "homepage": "https://markido.com"
  2972. },
  2973. {
  2974. "name": "kylekatarnls",
  2975. "homepage": "https://github.com/kylekatarnls"
  2976. }
  2977. ],
  2978. "description": "An API extension for DateTime that supports 281 different languages.",
  2979. "homepage": "https://carbon.nesbot.com",
  2980. "keywords": [
  2981. "date",
  2982. "datetime",
  2983. "time"
  2984. ],
  2985. "support": {
  2986. "docs": "https://carbon.nesbot.com/docs",
  2987. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2988. "source": "https://github.com/briannesbitt/Carbon"
  2989. },
  2990. "funding": [
  2991. {
  2992. "url": "https://github.com/sponsors/kylekatarnls",
  2993. "type": "github"
  2994. },
  2995. {
  2996. "url": "https://opencollective.com/Carbon#sponsor",
  2997. "type": "opencollective"
  2998. },
  2999. {
  3000. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3001. "type": "tidelift"
  3002. }
  3003. ],
  3004. "time": "2024-06-03T19:18:41+00:00"
  3005. },
  3006. {
  3007. "name": "nette/schema",
  3008. "version": "v1.2.5",
  3009. "source": {
  3010. "type": "git",
  3011. "url": "https://github.com/nette/schema.git",
  3012. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3013. },
  3014. "dist": {
  3015. "type": "zip",
  3016. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3017. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3018. "shasum": "",
  3019. "mirrors": [
  3020. {
  3021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3022. "preferred": true
  3023. }
  3024. ]
  3025. },
  3026. "require": {
  3027. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3028. "php": "7.1 - 8.3"
  3029. },
  3030. "require-dev": {
  3031. "nette/tester": "^2.3 || ^2.4",
  3032. "phpstan/phpstan-nette": "^1.0",
  3033. "tracy/tracy": "^2.7"
  3034. },
  3035. "type": "library",
  3036. "extra": {
  3037. "branch-alias": {
  3038. "dev-master": "1.2-dev"
  3039. }
  3040. },
  3041. "autoload": {
  3042. "classmap": [
  3043. "src/"
  3044. ]
  3045. },
  3046. "notification-url": "https://packagist.org/downloads/",
  3047. "license": [
  3048. "BSD-3-Clause",
  3049. "GPL-2.0-only",
  3050. "GPL-3.0-only"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "David Grudl",
  3055. "homepage": "https://davidgrudl.com"
  3056. },
  3057. {
  3058. "name": "Nette Community",
  3059. "homepage": "https://nette.org/contributors"
  3060. }
  3061. ],
  3062. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3063. "homepage": "https://nette.org",
  3064. "keywords": [
  3065. "config",
  3066. "nette"
  3067. ],
  3068. "support": {
  3069. "issues": "https://github.com/nette/schema/issues",
  3070. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3071. },
  3072. "time": "2023-10-05T20:37:59+00:00"
  3073. },
  3074. {
  3075. "name": "nette/utils",
  3076. "version": "v3.2.10",
  3077. "source": {
  3078. "type": "git",
  3079. "url": "https://github.com/nette/utils.git",
  3080. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  3081. },
  3082. "dist": {
  3083. "type": "zip",
  3084. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3085. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3086. "shasum": "",
  3087. "mirrors": [
  3088. {
  3089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3090. "preferred": true
  3091. }
  3092. ]
  3093. },
  3094. "require": {
  3095. "php": ">=7.2 <8.4"
  3096. },
  3097. "conflict": {
  3098. "nette/di": "<3.0.6"
  3099. },
  3100. "require-dev": {
  3101. "jetbrains/phpstorm-attributes": "dev-master",
  3102. "nette/tester": "~2.0",
  3103. "phpstan/phpstan": "^1.0",
  3104. "tracy/tracy": "^2.3"
  3105. },
  3106. "suggest": {
  3107. "ext-gd": "to use Image",
  3108. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3109. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3110. "ext-json": "to use Nette\\Utils\\Json",
  3111. "ext-mbstring": "to use Strings::lower() etc...",
  3112. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3113. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3114. },
  3115. "type": "library",
  3116. "extra": {
  3117. "branch-alias": {
  3118. "dev-master": "3.2-dev"
  3119. }
  3120. },
  3121. "autoload": {
  3122. "classmap": [
  3123. "src/"
  3124. ]
  3125. },
  3126. "notification-url": "https://packagist.org/downloads/",
  3127. "license": [
  3128. "BSD-3-Clause",
  3129. "GPL-2.0-only",
  3130. "GPL-3.0-only"
  3131. ],
  3132. "authors": [
  3133. {
  3134. "name": "David Grudl",
  3135. "homepage": "https://davidgrudl.com"
  3136. },
  3137. {
  3138. "name": "Nette Community",
  3139. "homepage": "https://nette.org/contributors"
  3140. }
  3141. ],
  3142. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3143. "homepage": "https://nette.org",
  3144. "keywords": [
  3145. "array",
  3146. "core",
  3147. "datetime",
  3148. "images",
  3149. "json",
  3150. "nette",
  3151. "paginator",
  3152. "password",
  3153. "slugify",
  3154. "string",
  3155. "unicode",
  3156. "utf-8",
  3157. "utility",
  3158. "validation"
  3159. ],
  3160. "support": {
  3161. "issues": "https://github.com/nette/utils/issues",
  3162. "source": "https://github.com/nette/utils/tree/v3.2.10"
  3163. },
  3164. "time": "2023-07-30T15:38:18+00:00"
  3165. },
  3166. {
  3167. "name": "nikic/php-parser",
  3168. "version": "v5.3.0",
  3169. "source": {
  3170. "type": "git",
  3171. "url": "https://github.com/nikic/PHP-Parser.git",
  3172. "reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a"
  3173. },
  3174. "dist": {
  3175. "type": "zip",
  3176. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/3abf7425cd284141dc5d8d14a9ee444de3345d1a",
  3177. "reference": "3abf7425cd284141dc5d8d14a9ee444de3345d1a",
  3178. "shasum": "",
  3179. "mirrors": [
  3180. {
  3181. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3182. "preferred": true
  3183. }
  3184. ]
  3185. },
  3186. "require": {
  3187. "ext-ctype": "*",
  3188. "ext-json": "*",
  3189. "ext-tokenizer": "*",
  3190. "php": ">=7.4"
  3191. },
  3192. "require-dev": {
  3193. "ircmaxell/php-yacc": "^0.0.7",
  3194. "phpunit/phpunit": "^9.0"
  3195. },
  3196. "bin": [
  3197. "bin/php-parse"
  3198. ],
  3199. "type": "library",
  3200. "extra": {
  3201. "branch-alias": {
  3202. "dev-master": "5.0-dev"
  3203. }
  3204. },
  3205. "autoload": {
  3206. "psr-4": {
  3207. "PhpParser\\": "lib/PhpParser"
  3208. }
  3209. },
  3210. "notification-url": "https://packagist.org/downloads/",
  3211. "license": [
  3212. "BSD-3-Clause"
  3213. ],
  3214. "authors": [
  3215. {
  3216. "name": "Nikita Popov"
  3217. }
  3218. ],
  3219. "description": "A PHP parser written in PHP",
  3220. "keywords": [
  3221. "parser",
  3222. "php"
  3223. ],
  3224. "support": {
  3225. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3226. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.0"
  3227. },
  3228. "time": "2024-09-29T13:56:26+00:00"
  3229. },
  3230. {
  3231. "name": "opis/closure",
  3232. "version": "3.6.3",
  3233. "source": {
  3234. "type": "git",
  3235. "url": "https://github.com/opis/closure.git",
  3236. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3237. },
  3238. "dist": {
  3239. "type": "zip",
  3240. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3241. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3242. "shasum": "",
  3243. "mirrors": [
  3244. {
  3245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3246. "preferred": true
  3247. }
  3248. ]
  3249. },
  3250. "require": {
  3251. "php": "^5.4 || ^7.0 || ^8.0"
  3252. },
  3253. "require-dev": {
  3254. "jeremeamia/superclosure": "^2.0",
  3255. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3256. },
  3257. "type": "library",
  3258. "extra": {
  3259. "branch-alias": {
  3260. "dev-master": "3.6.x-dev"
  3261. }
  3262. },
  3263. "autoload": {
  3264. "files": [
  3265. "functions.php"
  3266. ],
  3267. "psr-4": {
  3268. "Opis\\Closure\\": "src/"
  3269. }
  3270. },
  3271. "notification-url": "https://packagist.org/downloads/",
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "Marius Sarca",
  3278. "email": "marius.sarca@gmail.com"
  3279. },
  3280. {
  3281. "name": "Sorin Sarca",
  3282. "email": "sarca_sorin@hotmail.com"
  3283. }
  3284. ],
  3285. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3286. "homepage": "https://opis.io/closure",
  3287. "keywords": [
  3288. "anonymous functions",
  3289. "closure",
  3290. "function",
  3291. "serializable",
  3292. "serialization",
  3293. "serialize"
  3294. ],
  3295. "support": {
  3296. "issues": "https://github.com/opis/closure/issues",
  3297. "source": "https://github.com/opis/closure/tree/3.6.3"
  3298. },
  3299. "time": "2022-01-27T09:35:39+00:00"
  3300. },
  3301. {
  3302. "name": "overtrue/qcloud-cos-client",
  3303. "version": "1.0.4",
  3304. "source": {
  3305. "type": "git",
  3306. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  3307. "reference": "64ca47881afe4fd0961958f85674dcae71421913"
  3308. },
  3309. "dist": {
  3310. "type": "zip",
  3311. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/64ca47881afe4fd0961958f85674dcae71421913",
  3312. "reference": "64ca47881afe4fd0961958f85674dcae71421913",
  3313. "shasum": "",
  3314. "mirrors": [
  3315. {
  3316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3317. "preferred": true
  3318. }
  3319. ]
  3320. },
  3321. "require": {
  3322. "ext-dom": "*",
  3323. "ext-json": "*",
  3324. "ext-libxml": "*",
  3325. "ext-simplexml": "*",
  3326. "guzzlehttp/guzzle": "^7.2",
  3327. "php": ">=7.4",
  3328. "psr/http-message": "^1.0"
  3329. },
  3330. "require-dev": {
  3331. "brainmaestro/composer-git-hooks": "^2.7",
  3332. "friendsofphp/php-cs-fixer": "^3.4.0",
  3333. "mockery/mockery": "^1.0",
  3334. "monolog/monolog": "^2.1",
  3335. "phpunit/phpunit": "^9.0"
  3336. },
  3337. "type": "library",
  3338. "extra": {
  3339. "hooks": {
  3340. "pre-push": [
  3341. "composer test",
  3342. "composer check-style"
  3343. ],
  3344. "pre-commit": [
  3345. "composer test",
  3346. "composer check-style"
  3347. ]
  3348. }
  3349. },
  3350. "autoload": {
  3351. "psr-4": {
  3352. "Overtrue\\CosClient\\": "src"
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "overtrue",
  3362. "email": "anzhengchao@gmail.com"
  3363. }
  3364. ],
  3365. "description": "Client of QCloud.com COS",
  3366. "support": {
  3367. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  3368. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.4"
  3369. },
  3370. "funding": [
  3371. {
  3372. "url": "https://github.com/overtrue",
  3373. "type": "github"
  3374. }
  3375. ],
  3376. "time": "2022-11-07T00:18:25+00:00"
  3377. },
  3378. {
  3379. "name": "overtrue/socialite",
  3380. "version": "3.5.4",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://github.com/overtrue/socialite.git",
  3384. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://api.github.com/repos/overtrue/socialite/zipball/6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  3389. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  3390. "shasum": "",
  3391. "mirrors": [
  3392. {
  3393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3394. "preferred": true
  3395. }
  3396. ]
  3397. },
  3398. "require": {
  3399. "ext-json": "*",
  3400. "ext-openssl": "*",
  3401. "guzzlehttp/guzzle": "~6.0|~7.0",
  3402. "php": ">=7.4",
  3403. "symfony/http-foundation": "^5.0",
  3404. "symfony/psr-http-message-bridge": "^2.0"
  3405. },
  3406. "require-dev": {
  3407. "friendsofphp/php-cs-fixer": "^3.0",
  3408. "mockery/mockery": "~1.2",
  3409. "phpunit/phpunit": "~9.0"
  3410. },
  3411. "type": "library",
  3412. "autoload": {
  3413. "psr-4": {
  3414. "Overtrue\\Socialite\\": "src/"
  3415. }
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "overtrue",
  3424. "email": "anzhengchao@gmail.com"
  3425. }
  3426. ],
  3427. "description": "A collection of OAuth 2 packages.",
  3428. "keywords": [
  3429. "Feishu",
  3430. "login",
  3431. "oauth",
  3432. "qcloud",
  3433. "qq",
  3434. "social",
  3435. "wechat",
  3436. "weibo"
  3437. ],
  3438. "support": {
  3439. "issues": "https://github.com/overtrue/socialite/issues",
  3440. "source": "https://github.com/overtrue/socialite/tree/3.5.4"
  3441. },
  3442. "funding": [
  3443. {
  3444. "url": "https://github.com/overtrue",
  3445. "type": "github"
  3446. }
  3447. ],
  3448. "time": "2022-11-19T13:32:42+00:00"
  3449. },
  3450. {
  3451. "name": "phpoffice/phpspreadsheet",
  3452. "version": "1.29.6",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3456. "reference": "08597725b84570cd6f32bf0ea92e75a803ef28c2"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/08597725b84570cd6f32bf0ea92e75a803ef28c2",
  3461. "reference": "08597725b84570cd6f32bf0ea92e75a803ef28c2",
  3462. "shasum": "",
  3463. "mirrors": [
  3464. {
  3465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3466. "preferred": true
  3467. }
  3468. ]
  3469. },
  3470. "require": {
  3471. "ext-ctype": "*",
  3472. "ext-dom": "*",
  3473. "ext-fileinfo": "*",
  3474. "ext-gd": "*",
  3475. "ext-iconv": "*",
  3476. "ext-libxml": "*",
  3477. "ext-mbstring": "*",
  3478. "ext-simplexml": "*",
  3479. "ext-xml": "*",
  3480. "ext-xmlreader": "*",
  3481. "ext-xmlwriter": "*",
  3482. "ext-zip": "*",
  3483. "ext-zlib": "*",
  3484. "ezyang/htmlpurifier": "^4.15",
  3485. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3486. "markbaker/complex": "^3.0",
  3487. "markbaker/matrix": "^3.0",
  3488. "php": "^7.4 || ^8.0",
  3489. "psr/http-client": "^1.0",
  3490. "psr/http-factory": "^1.0",
  3491. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3492. },
  3493. "require-dev": {
  3494. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3495. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3496. "friendsofphp/php-cs-fixer": "^3.2",
  3497. "mitoteam/jpgraph": "^10.3",
  3498. "mpdf/mpdf": "^8.1.1",
  3499. "phpcompatibility/php-compatibility": "^9.3",
  3500. "phpstan/phpstan": "^1.1",
  3501. "phpstan/phpstan-phpunit": "^1.0",
  3502. "phpunit/phpunit": "^8.5 || ^9.0",
  3503. "squizlabs/php_codesniffer": "^3.7",
  3504. "tecnickcom/tcpdf": "^6.5"
  3505. },
  3506. "suggest": {
  3507. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3508. "ext-intl": "PHP Internationalization Functions",
  3509. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3510. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3511. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3512. },
  3513. "type": "library",
  3514. "autoload": {
  3515. "psr-4": {
  3516. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3517. }
  3518. },
  3519. "notification-url": "https://packagist.org/downloads/",
  3520. "license": [
  3521. "MIT"
  3522. ],
  3523. "authors": [
  3524. {
  3525. "name": "Maarten Balliauw",
  3526. "homepage": "https://blog.maartenballiauw.be"
  3527. },
  3528. {
  3529. "name": "Mark Baker",
  3530. "homepage": "https://markbakeruk.net"
  3531. },
  3532. {
  3533. "name": "Franck Lefevre",
  3534. "homepage": "https://rootslabs.net"
  3535. },
  3536. {
  3537. "name": "Erik Tilt"
  3538. },
  3539. {
  3540. "name": "Adrien Crivelli"
  3541. }
  3542. ],
  3543. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3544. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3545. "keywords": [
  3546. "OpenXML",
  3547. "excel",
  3548. "gnumeric",
  3549. "ods",
  3550. "php",
  3551. "spreadsheet",
  3552. "xls",
  3553. "xlsx"
  3554. ],
  3555. "support": {
  3556. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3557. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.6"
  3558. },
  3559. "time": "2024-12-08T05:49:00+00:00"
  3560. },
  3561. {
  3562. "name": "phpoption/phpoption",
  3563. "version": "1.9.3",
  3564. "source": {
  3565. "type": "git",
  3566. "url": "https://github.com/schmittjoh/php-option.git",
  3567. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3568. },
  3569. "dist": {
  3570. "type": "zip",
  3571. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3572. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3573. "shasum": "",
  3574. "mirrors": [
  3575. {
  3576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3577. "preferred": true
  3578. }
  3579. ]
  3580. },
  3581. "require": {
  3582. "php": "^7.2.5 || ^8.0"
  3583. },
  3584. "require-dev": {
  3585. "bamarni/composer-bin-plugin": "^1.8.2",
  3586. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3587. },
  3588. "type": "library",
  3589. "extra": {
  3590. "bamarni-bin": {
  3591. "bin-links": true,
  3592. "forward-command": false
  3593. },
  3594. "branch-alias": {
  3595. "dev-master": "1.9-dev"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "psr-4": {
  3600. "PhpOption\\": "src/PhpOption/"
  3601. }
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "Apache-2.0"
  3606. ],
  3607. "authors": [
  3608. {
  3609. "name": "Johannes M. Schmitt",
  3610. "email": "schmittjoh@gmail.com",
  3611. "homepage": "https://github.com/schmittjoh"
  3612. },
  3613. {
  3614. "name": "Graham Campbell",
  3615. "email": "hello@gjcampbell.co.uk",
  3616. "homepage": "https://github.com/GrahamCampbell"
  3617. }
  3618. ],
  3619. "description": "Option Type for PHP",
  3620. "keywords": [
  3621. "language",
  3622. "option",
  3623. "php",
  3624. "type"
  3625. ],
  3626. "support": {
  3627. "issues": "https://github.com/schmittjoh/php-option/issues",
  3628. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3629. },
  3630. "funding": [
  3631. {
  3632. "url": "https://github.com/GrahamCampbell",
  3633. "type": "github"
  3634. },
  3635. {
  3636. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3637. "type": "tidelift"
  3638. }
  3639. ],
  3640. "time": "2024-07-20T21:41:07+00:00"
  3641. },
  3642. {
  3643. "name": "pimple/pimple",
  3644. "version": "v3.5.0",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://github.com/silexphp/Pimple.git",
  3648. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3653. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3654. "shasum": "",
  3655. "mirrors": [
  3656. {
  3657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3658. "preferred": true
  3659. }
  3660. ]
  3661. },
  3662. "require": {
  3663. "php": ">=7.2.5",
  3664. "psr/container": "^1.1 || ^2.0"
  3665. },
  3666. "require-dev": {
  3667. "symfony/phpunit-bridge": "^5.4@dev"
  3668. },
  3669. "type": "library",
  3670. "extra": {
  3671. "branch-alias": {
  3672. "dev-master": "3.4.x-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-0": {
  3677. "Pimple": "src/"
  3678. }
  3679. },
  3680. "notification-url": "https://packagist.org/downloads/",
  3681. "license": [
  3682. "MIT"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "Fabien Potencier",
  3687. "email": "fabien@symfony.com"
  3688. }
  3689. ],
  3690. "description": "Pimple, a simple Dependency Injection Container",
  3691. "homepage": "https://pimple.symfony.com",
  3692. "keywords": [
  3693. "container",
  3694. "dependency injection"
  3695. ],
  3696. "support": {
  3697. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3698. },
  3699. "time": "2021-10-28T11:13:42+00:00"
  3700. },
  3701. {
  3702. "name": "predis/predis",
  3703. "version": "v1.1.10",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/predis/predis.git",
  3707. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3712. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3713. "shasum": "",
  3714. "mirrors": [
  3715. {
  3716. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3717. "preferred": true
  3718. }
  3719. ]
  3720. },
  3721. "require": {
  3722. "php": ">=5.3.9"
  3723. },
  3724. "require-dev": {
  3725. "phpunit/phpunit": "~4.8"
  3726. },
  3727. "suggest": {
  3728. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3729. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3730. },
  3731. "type": "library",
  3732. "autoload": {
  3733. "psr-4": {
  3734. "Predis\\": "src/"
  3735. }
  3736. },
  3737. "notification-url": "https://packagist.org/downloads/",
  3738. "license": [
  3739. "MIT"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Daniele Alessandri",
  3744. "email": "suppakilla@gmail.com",
  3745. "homepage": "http://clorophilla.net",
  3746. "role": "Creator & Maintainer"
  3747. },
  3748. {
  3749. "name": "Till Krüss",
  3750. "homepage": "https://till.im",
  3751. "role": "Maintainer"
  3752. }
  3753. ],
  3754. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3755. "homepage": "http://github.com/predis/predis",
  3756. "keywords": [
  3757. "nosql",
  3758. "predis",
  3759. "redis"
  3760. ],
  3761. "support": {
  3762. "issues": "https://github.com/predis/predis/issues",
  3763. "source": "https://github.com/predis/predis/tree/v1.1.10"
  3764. },
  3765. "funding": [
  3766. {
  3767. "url": "https://github.com/sponsors/tillkruss",
  3768. "type": "github"
  3769. }
  3770. ],
  3771. "time": "2022-01-05T17:46:08+00:00"
  3772. },
  3773. {
  3774. "name": "psr/cache",
  3775. "version": "1.0.1",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://github.com/php-fig/cache.git",
  3779. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3784. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3785. "shasum": "",
  3786. "mirrors": [
  3787. {
  3788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3789. "preferred": true
  3790. }
  3791. ]
  3792. },
  3793. "require": {
  3794. "php": ">=5.3.0"
  3795. },
  3796. "type": "library",
  3797. "extra": {
  3798. "branch-alias": {
  3799. "dev-master": "1.0.x-dev"
  3800. }
  3801. },
  3802. "autoload": {
  3803. "psr-4": {
  3804. "Psr\\Cache\\": "src/"
  3805. }
  3806. },
  3807. "notification-url": "https://packagist.org/downloads/",
  3808. "license": [
  3809. "MIT"
  3810. ],
  3811. "authors": [
  3812. {
  3813. "name": "PHP-FIG",
  3814. "homepage": "http://www.php-fig.org/"
  3815. }
  3816. ],
  3817. "description": "Common interface for caching libraries",
  3818. "keywords": [
  3819. "cache",
  3820. "psr",
  3821. "psr-6"
  3822. ],
  3823. "support": {
  3824. "source": "https://github.com/php-fig/cache/tree/master"
  3825. },
  3826. "time": "2016-08-06T20:24:11+00:00"
  3827. },
  3828. {
  3829. "name": "psr/clock",
  3830. "version": "1.0.0",
  3831. "source": {
  3832. "type": "git",
  3833. "url": "https://github.com/php-fig/clock.git",
  3834. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3835. },
  3836. "dist": {
  3837. "type": "zip",
  3838. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3839. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3840. "shasum": "",
  3841. "mirrors": [
  3842. {
  3843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3844. "preferred": true
  3845. }
  3846. ]
  3847. },
  3848. "require": {
  3849. "php": "^7.0 || ^8.0"
  3850. },
  3851. "type": "library",
  3852. "autoload": {
  3853. "psr-4": {
  3854. "Psr\\Clock\\": "src/"
  3855. }
  3856. },
  3857. "notification-url": "https://packagist.org/downloads/",
  3858. "license": [
  3859. "MIT"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "PHP-FIG",
  3864. "homepage": "https://www.php-fig.org/"
  3865. }
  3866. ],
  3867. "description": "Common interface for reading the clock.",
  3868. "homepage": "https://github.com/php-fig/clock",
  3869. "keywords": [
  3870. "clock",
  3871. "now",
  3872. "psr",
  3873. "psr-20",
  3874. "time"
  3875. ],
  3876. "support": {
  3877. "issues": "https://github.com/php-fig/clock/issues",
  3878. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3879. },
  3880. "time": "2022-11-25T14:36:26+00:00"
  3881. },
  3882. {
  3883. "name": "psr/container",
  3884. "version": "1.1.2",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/php-fig/container.git",
  3888. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3893. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3894. "shasum": "",
  3895. "mirrors": [
  3896. {
  3897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3898. "preferred": true
  3899. }
  3900. ]
  3901. },
  3902. "require": {
  3903. "php": ">=7.4.0"
  3904. },
  3905. "type": "library",
  3906. "autoload": {
  3907. "psr-4": {
  3908. "Psr\\Container\\": "src/"
  3909. }
  3910. },
  3911. "notification-url": "https://packagist.org/downloads/",
  3912. "license": [
  3913. "MIT"
  3914. ],
  3915. "authors": [
  3916. {
  3917. "name": "PHP-FIG",
  3918. "homepage": "https://www.php-fig.org/"
  3919. }
  3920. ],
  3921. "description": "Common Container Interface (PHP FIG PSR-11)",
  3922. "homepage": "https://github.com/php-fig/container",
  3923. "keywords": [
  3924. "PSR-11",
  3925. "container",
  3926. "container-interface",
  3927. "container-interop",
  3928. "psr"
  3929. ],
  3930. "support": {
  3931. "issues": "https://github.com/php-fig/container/issues",
  3932. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3933. },
  3934. "time": "2021-11-05T16:50:12+00:00"
  3935. },
  3936. {
  3937. "name": "psr/event-dispatcher",
  3938. "version": "1.0.0",
  3939. "source": {
  3940. "type": "git",
  3941. "url": "https://github.com/php-fig/event-dispatcher.git",
  3942. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3943. },
  3944. "dist": {
  3945. "type": "zip",
  3946. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3947. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3948. "shasum": "",
  3949. "mirrors": [
  3950. {
  3951. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3952. "preferred": true
  3953. }
  3954. ]
  3955. },
  3956. "require": {
  3957. "php": ">=7.2.0"
  3958. },
  3959. "type": "library",
  3960. "extra": {
  3961. "branch-alias": {
  3962. "dev-master": "1.0.x-dev"
  3963. }
  3964. },
  3965. "autoload": {
  3966. "psr-4": {
  3967. "Psr\\EventDispatcher\\": "src/"
  3968. }
  3969. },
  3970. "notification-url": "https://packagist.org/downloads/",
  3971. "license": [
  3972. "MIT"
  3973. ],
  3974. "authors": [
  3975. {
  3976. "name": "PHP-FIG",
  3977. "homepage": "http://www.php-fig.org/"
  3978. }
  3979. ],
  3980. "description": "Standard interfaces for event handling.",
  3981. "keywords": [
  3982. "events",
  3983. "psr",
  3984. "psr-14"
  3985. ],
  3986. "support": {
  3987. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3988. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3989. },
  3990. "time": "2019-01-08T18:20:26+00:00"
  3991. },
  3992. {
  3993. "name": "psr/http-client",
  3994. "version": "1.0.3",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/php-fig/http-client.git",
  3998. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4003. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4004. "shasum": "",
  4005. "mirrors": [
  4006. {
  4007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4008. "preferred": true
  4009. }
  4010. ]
  4011. },
  4012. "require": {
  4013. "php": "^7.0 || ^8.0",
  4014. "psr/http-message": "^1.0 || ^2.0"
  4015. },
  4016. "type": "library",
  4017. "extra": {
  4018. "branch-alias": {
  4019. "dev-master": "1.0.x-dev"
  4020. }
  4021. },
  4022. "autoload": {
  4023. "psr-4": {
  4024. "Psr\\Http\\Client\\": "src/"
  4025. }
  4026. },
  4027. "notification-url": "https://packagist.org/downloads/",
  4028. "license": [
  4029. "MIT"
  4030. ],
  4031. "authors": [
  4032. {
  4033. "name": "PHP-FIG",
  4034. "homepage": "https://www.php-fig.org/"
  4035. }
  4036. ],
  4037. "description": "Common interface for HTTP clients",
  4038. "homepage": "https://github.com/php-fig/http-client",
  4039. "keywords": [
  4040. "http",
  4041. "http-client",
  4042. "psr",
  4043. "psr-18"
  4044. ],
  4045. "support": {
  4046. "source": "https://github.com/php-fig/http-client"
  4047. },
  4048. "time": "2023-09-23T14:17:50+00:00"
  4049. },
  4050. {
  4051. "name": "psr/http-factory",
  4052. "version": "1.0.2",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://github.com/php-fig/http-factory.git",
  4056. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4061. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4062. "shasum": "",
  4063. "mirrors": [
  4064. {
  4065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4066. "preferred": true
  4067. }
  4068. ]
  4069. },
  4070. "require": {
  4071. "php": ">=7.0.0",
  4072. "psr/http-message": "^1.0 || ^2.0"
  4073. },
  4074. "type": "library",
  4075. "extra": {
  4076. "branch-alias": {
  4077. "dev-master": "1.0.x-dev"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Psr\\Http\\Message\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "authors": [
  4090. {
  4091. "name": "PHP-FIG",
  4092. "homepage": "https://www.php-fig.org/"
  4093. }
  4094. ],
  4095. "description": "Common interfaces for PSR-7 HTTP message factories",
  4096. "keywords": [
  4097. "factory",
  4098. "http",
  4099. "message",
  4100. "psr",
  4101. "psr-17",
  4102. "psr-7",
  4103. "request",
  4104. "response"
  4105. ],
  4106. "support": {
  4107. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4108. },
  4109. "time": "2023-04-10T20:10:41+00:00"
  4110. },
  4111. {
  4112. "name": "psr/http-message",
  4113. "version": "1.1",
  4114. "source": {
  4115. "type": "git",
  4116. "url": "https://github.com/php-fig/http-message.git",
  4117. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4118. },
  4119. "dist": {
  4120. "type": "zip",
  4121. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4122. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4123. "shasum": "",
  4124. "mirrors": [
  4125. {
  4126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4127. "preferred": true
  4128. }
  4129. ]
  4130. },
  4131. "require": {
  4132. "php": "^7.2 || ^8.0"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "1.1.x-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "psr-4": {
  4142. "Psr\\Http\\Message\\": "src/"
  4143. }
  4144. },
  4145. "notification-url": "https://packagist.org/downloads/",
  4146. "license": [
  4147. "MIT"
  4148. ],
  4149. "authors": [
  4150. {
  4151. "name": "PHP-FIG",
  4152. "homepage": "http://www.php-fig.org/"
  4153. }
  4154. ],
  4155. "description": "Common interface for HTTP messages",
  4156. "homepage": "https://github.com/php-fig/http-message",
  4157. "keywords": [
  4158. "http",
  4159. "http-message",
  4160. "psr",
  4161. "psr-7",
  4162. "request",
  4163. "response"
  4164. ],
  4165. "support": {
  4166. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4167. },
  4168. "time": "2023-04-04T09:50:52+00:00"
  4169. },
  4170. {
  4171. "name": "psr/log",
  4172. "version": "1.1.4",
  4173. "source": {
  4174. "type": "git",
  4175. "url": "https://github.com/php-fig/log.git",
  4176. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4177. },
  4178. "dist": {
  4179. "type": "zip",
  4180. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4181. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4182. "shasum": "",
  4183. "mirrors": [
  4184. {
  4185. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4186. "preferred": true
  4187. }
  4188. ]
  4189. },
  4190. "require": {
  4191. "php": ">=5.3.0"
  4192. },
  4193. "type": "library",
  4194. "extra": {
  4195. "branch-alias": {
  4196. "dev-master": "1.1.x-dev"
  4197. }
  4198. },
  4199. "autoload": {
  4200. "psr-4": {
  4201. "Psr\\Log\\": "Psr/Log/"
  4202. }
  4203. },
  4204. "notification-url": "https://packagist.org/downloads/",
  4205. "license": [
  4206. "MIT"
  4207. ],
  4208. "authors": [
  4209. {
  4210. "name": "PHP-FIG",
  4211. "homepage": "https://www.php-fig.org/"
  4212. }
  4213. ],
  4214. "description": "Common interface for logging libraries",
  4215. "homepage": "https://github.com/php-fig/log",
  4216. "keywords": [
  4217. "log",
  4218. "psr",
  4219. "psr-3"
  4220. ],
  4221. "support": {
  4222. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4223. },
  4224. "time": "2021-05-03T11:20:27+00:00"
  4225. },
  4226. {
  4227. "name": "psr/simple-cache",
  4228. "version": "1.0.1",
  4229. "source": {
  4230. "type": "git",
  4231. "url": "https://github.com/php-fig/simple-cache.git",
  4232. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4233. },
  4234. "dist": {
  4235. "type": "zip",
  4236. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4237. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4238. "shasum": "",
  4239. "mirrors": [
  4240. {
  4241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4242. "preferred": true
  4243. }
  4244. ]
  4245. },
  4246. "require": {
  4247. "php": ">=5.3.0"
  4248. },
  4249. "type": "library",
  4250. "extra": {
  4251. "branch-alias": {
  4252. "dev-master": "1.0.x-dev"
  4253. }
  4254. },
  4255. "autoload": {
  4256. "psr-4": {
  4257. "Psr\\SimpleCache\\": "src/"
  4258. }
  4259. },
  4260. "notification-url": "https://packagist.org/downloads/",
  4261. "license": [
  4262. "MIT"
  4263. ],
  4264. "authors": [
  4265. {
  4266. "name": "PHP-FIG",
  4267. "homepage": "http://www.php-fig.org/"
  4268. }
  4269. ],
  4270. "description": "Common interfaces for simple caching",
  4271. "keywords": [
  4272. "cache",
  4273. "caching",
  4274. "psr",
  4275. "psr-16",
  4276. "simple-cache"
  4277. ],
  4278. "support": {
  4279. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4280. },
  4281. "time": "2017-10-23T01:57:42+00:00"
  4282. },
  4283. {
  4284. "name": "psy/psysh",
  4285. "version": "v0.12.7",
  4286. "source": {
  4287. "type": "git",
  4288. "url": "https://github.com/bobthecow/psysh.git",
  4289. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
  4290. },
  4291. "dist": {
  4292. "type": "zip",
  4293. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  4294. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  4295. "shasum": "",
  4296. "mirrors": [
  4297. {
  4298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4299. "preferred": true
  4300. }
  4301. ]
  4302. },
  4303. "require": {
  4304. "ext-json": "*",
  4305. "ext-tokenizer": "*",
  4306. "nikic/php-parser": "^5.0 || ^4.0",
  4307. "php": "^8.0 || ^7.4",
  4308. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4309. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4310. },
  4311. "conflict": {
  4312. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4313. },
  4314. "require-dev": {
  4315. "bamarni/composer-bin-plugin": "^1.2"
  4316. },
  4317. "suggest": {
  4318. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4319. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4320. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4321. },
  4322. "bin": [
  4323. "bin/psysh"
  4324. ],
  4325. "type": "library",
  4326. "extra": {
  4327. "bamarni-bin": {
  4328. "bin-links": false,
  4329. "forward-command": false
  4330. },
  4331. "branch-alias": {
  4332. "dev-main": "0.12.x-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "files": [
  4337. "src/functions.php"
  4338. ],
  4339. "psr-4": {
  4340. "Psy\\": "src/"
  4341. }
  4342. },
  4343. "notification-url": "https://packagist.org/downloads/",
  4344. "license": [
  4345. "MIT"
  4346. ],
  4347. "authors": [
  4348. {
  4349. "name": "Justin Hileman",
  4350. "email": "justin@justinhileman.info",
  4351. "homepage": "http://justinhileman.com"
  4352. }
  4353. ],
  4354. "description": "An interactive shell for modern PHP.",
  4355. "homepage": "http://psysh.org",
  4356. "keywords": [
  4357. "REPL",
  4358. "console",
  4359. "interactive",
  4360. "shell"
  4361. ],
  4362. "support": {
  4363. "issues": "https://github.com/bobthecow/psysh/issues",
  4364. "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
  4365. },
  4366. "time": "2024-12-10T01:58:33+00:00"
  4367. },
  4368. {
  4369. "name": "ralouphie/getallheaders",
  4370. "version": "3.0.3",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://github.com/ralouphie/getallheaders.git",
  4374. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4375. },
  4376. "dist": {
  4377. "type": "zip",
  4378. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4379. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4380. "shasum": "",
  4381. "mirrors": [
  4382. {
  4383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4384. "preferred": true
  4385. }
  4386. ]
  4387. },
  4388. "require": {
  4389. "php": ">=5.6"
  4390. },
  4391. "require-dev": {
  4392. "php-coveralls/php-coveralls": "^2.1",
  4393. "phpunit/phpunit": "^5 || ^6.5"
  4394. },
  4395. "type": "library",
  4396. "autoload": {
  4397. "files": [
  4398. "src/getallheaders.php"
  4399. ]
  4400. },
  4401. "notification-url": "https://packagist.org/downloads/",
  4402. "license": [
  4403. "MIT"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "Ralph Khattar",
  4408. "email": "ralph.khattar@gmail.com"
  4409. }
  4410. ],
  4411. "description": "A polyfill for getallheaders.",
  4412. "support": {
  4413. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4414. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4415. },
  4416. "time": "2019-03-08T08:55:37+00:00"
  4417. },
  4418. {
  4419. "name": "ramsey/collection",
  4420. "version": "1.3.0",
  4421. "source": {
  4422. "type": "git",
  4423. "url": "https://github.com/ramsey/collection.git",
  4424. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4425. },
  4426. "dist": {
  4427. "type": "zip",
  4428. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4429. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4430. "shasum": "",
  4431. "mirrors": [
  4432. {
  4433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4434. "preferred": true
  4435. }
  4436. ]
  4437. },
  4438. "require": {
  4439. "php": "^7.4 || ^8.0",
  4440. "symfony/polyfill-php81": "^1.23"
  4441. },
  4442. "require-dev": {
  4443. "captainhook/plugin-composer": "^5.3",
  4444. "ergebnis/composer-normalize": "^2.28.3",
  4445. "fakerphp/faker": "^1.21",
  4446. "hamcrest/hamcrest-php": "^2.0",
  4447. "jangregor/phpstan-prophecy": "^1.0",
  4448. "mockery/mockery": "^1.5",
  4449. "php-parallel-lint/php-console-highlighter": "^1.0",
  4450. "php-parallel-lint/php-parallel-lint": "^1.3",
  4451. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4452. "phpspec/prophecy-phpunit": "^2.0",
  4453. "phpstan/extension-installer": "^1.2",
  4454. "phpstan/phpstan": "^1.9",
  4455. "phpstan/phpstan-mockery": "^1.1",
  4456. "phpstan/phpstan-phpunit": "^1.3",
  4457. "phpunit/phpunit": "^9.5",
  4458. "psalm/plugin-mockery": "^1.1",
  4459. "psalm/plugin-phpunit": "^0.18.4",
  4460. "ramsey/coding-standard": "^2.0.3",
  4461. "ramsey/conventional-commits": "^1.3",
  4462. "vimeo/psalm": "^5.4"
  4463. },
  4464. "type": "library",
  4465. "extra": {
  4466. "captainhook": {
  4467. "force-install": true
  4468. },
  4469. "ramsey/conventional-commits": {
  4470. "configFile": "conventional-commits.json"
  4471. }
  4472. },
  4473. "autoload": {
  4474. "psr-4": {
  4475. "Ramsey\\Collection\\": "src/"
  4476. }
  4477. },
  4478. "notification-url": "https://packagist.org/downloads/",
  4479. "license": [
  4480. "MIT"
  4481. ],
  4482. "authors": [
  4483. {
  4484. "name": "Ben Ramsey",
  4485. "email": "ben@benramsey.com",
  4486. "homepage": "https://benramsey.com"
  4487. }
  4488. ],
  4489. "description": "A PHP library for representing and manipulating collections.",
  4490. "keywords": [
  4491. "array",
  4492. "collection",
  4493. "hash",
  4494. "map",
  4495. "queue",
  4496. "set"
  4497. ],
  4498. "support": {
  4499. "issues": "https://github.com/ramsey/collection/issues",
  4500. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4501. },
  4502. "funding": [
  4503. {
  4504. "url": "https://github.com/ramsey",
  4505. "type": "github"
  4506. },
  4507. {
  4508. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4509. "type": "tidelift"
  4510. }
  4511. ],
  4512. "time": "2022-12-27T19:12:24+00:00"
  4513. },
  4514. {
  4515. "name": "ramsey/uuid",
  4516. "version": "4.2.3",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://github.com/ramsey/uuid.git",
  4520. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4525. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4526. "shasum": "",
  4527. "mirrors": [
  4528. {
  4529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4530. "preferred": true
  4531. }
  4532. ]
  4533. },
  4534. "require": {
  4535. "brick/math": "^0.8 || ^0.9",
  4536. "ext-json": "*",
  4537. "php": "^7.2 || ^8.0",
  4538. "ramsey/collection": "^1.0",
  4539. "symfony/polyfill-ctype": "^1.8",
  4540. "symfony/polyfill-php80": "^1.14"
  4541. },
  4542. "replace": {
  4543. "rhumsaa/uuid": "self.version"
  4544. },
  4545. "require-dev": {
  4546. "captainhook/captainhook": "^5.10",
  4547. "captainhook/plugin-composer": "^5.3",
  4548. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4549. "doctrine/annotations": "^1.8",
  4550. "ergebnis/composer-normalize": "^2.15",
  4551. "mockery/mockery": "^1.3",
  4552. "moontoast/math": "^1.1",
  4553. "paragonie/random-lib": "^2",
  4554. "php-mock/php-mock": "^2.2",
  4555. "php-mock/php-mock-mockery": "^1.3",
  4556. "php-parallel-lint/php-parallel-lint": "^1.1",
  4557. "phpbench/phpbench": "^1.0",
  4558. "phpstan/extension-installer": "^1.0",
  4559. "phpstan/phpstan": "^0.12",
  4560. "phpstan/phpstan-mockery": "^0.12",
  4561. "phpstan/phpstan-phpunit": "^0.12",
  4562. "phpunit/phpunit": "^8.5 || ^9",
  4563. "slevomat/coding-standard": "^7.0",
  4564. "squizlabs/php_codesniffer": "^3.5",
  4565. "vimeo/psalm": "^4.9"
  4566. },
  4567. "suggest": {
  4568. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4569. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4570. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4571. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4572. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4573. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4574. },
  4575. "type": "library",
  4576. "extra": {
  4577. "captainhook": {
  4578. "force-install": true
  4579. },
  4580. "branch-alias": {
  4581. "dev-main": "4.x-dev"
  4582. }
  4583. },
  4584. "autoload": {
  4585. "files": [
  4586. "src/functions.php"
  4587. ],
  4588. "psr-4": {
  4589. "Ramsey\\Uuid\\": "src/"
  4590. }
  4591. },
  4592. "notification-url": "https://packagist.org/downloads/",
  4593. "license": [
  4594. "MIT"
  4595. ],
  4596. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4597. "keywords": [
  4598. "guid",
  4599. "identifier",
  4600. "uuid"
  4601. ],
  4602. "support": {
  4603. "issues": "https://github.com/ramsey/uuid/issues",
  4604. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4605. },
  4606. "funding": [
  4607. {
  4608. "url": "https://github.com/ramsey",
  4609. "type": "github"
  4610. },
  4611. {
  4612. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4613. "type": "tidelift"
  4614. }
  4615. ],
  4616. "time": "2021-09-25T23:10:38+00:00"
  4617. },
  4618. {
  4619. "name": "swiftmailer/swiftmailer",
  4620. "version": "v6.3.0",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4624. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4629. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4630. "shasum": "",
  4631. "mirrors": [
  4632. {
  4633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4634. "preferred": true
  4635. }
  4636. ]
  4637. },
  4638. "require": {
  4639. "egulias/email-validator": "^2.0|^3.1",
  4640. "php": ">=7.0.0",
  4641. "symfony/polyfill-iconv": "^1.0",
  4642. "symfony/polyfill-intl-idn": "^1.10",
  4643. "symfony/polyfill-mbstring": "^1.0"
  4644. },
  4645. "require-dev": {
  4646. "mockery/mockery": "^1.0",
  4647. "symfony/phpunit-bridge": "^4.4|^5.4"
  4648. },
  4649. "suggest": {
  4650. "ext-intl": "Needed to support internationalized email addresses"
  4651. },
  4652. "type": "library",
  4653. "extra": {
  4654. "branch-alias": {
  4655. "dev-master": "6.2-dev"
  4656. }
  4657. },
  4658. "autoload": {
  4659. "files": [
  4660. "lib/swift_required.php"
  4661. ]
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "MIT"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Chris Corbyn"
  4670. },
  4671. {
  4672. "name": "Fabien Potencier",
  4673. "email": "fabien@symfony.com"
  4674. }
  4675. ],
  4676. "description": "Swiftmailer, free feature-rich PHP mailer",
  4677. "homepage": "https://swiftmailer.symfony.com",
  4678. "keywords": [
  4679. "email",
  4680. "mail",
  4681. "mailer"
  4682. ],
  4683. "support": {
  4684. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4685. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4686. },
  4687. "funding": [
  4688. {
  4689. "url": "https://github.com/fabpot",
  4690. "type": "github"
  4691. },
  4692. {
  4693. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4694. "type": "tidelift"
  4695. }
  4696. ],
  4697. "abandoned": "symfony/mailer",
  4698. "time": "2021-10-18T15:26:12+00:00"
  4699. },
  4700. {
  4701. "name": "symfony/cache",
  4702. "version": "v5.4.46",
  4703. "source": {
  4704. "type": "git",
  4705. "url": "https://github.com/symfony/cache.git",
  4706. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b"
  4707. },
  4708. "dist": {
  4709. "type": "zip",
  4710. "url": "https://api.github.com/repos/symfony/cache/zipball/0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  4711. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  4712. "shasum": "",
  4713. "mirrors": [
  4714. {
  4715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4716. "preferred": true
  4717. }
  4718. ]
  4719. },
  4720. "require": {
  4721. "php": ">=7.2.5",
  4722. "psr/cache": "^1.0|^2.0",
  4723. "psr/log": "^1.1|^2|^3",
  4724. "symfony/cache-contracts": "^1.1.7|^2",
  4725. "symfony/deprecation-contracts": "^2.1|^3",
  4726. "symfony/polyfill-php73": "^1.9",
  4727. "symfony/polyfill-php80": "^1.16",
  4728. "symfony/service-contracts": "^1.1|^2|^3",
  4729. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4730. },
  4731. "conflict": {
  4732. "doctrine/dbal": "<2.13.1",
  4733. "symfony/dependency-injection": "<4.4",
  4734. "symfony/http-kernel": "<4.4",
  4735. "symfony/var-dumper": "<4.4"
  4736. },
  4737. "provide": {
  4738. "psr/cache-implementation": "1.0|2.0",
  4739. "psr/simple-cache-implementation": "1.0|2.0",
  4740. "symfony/cache-implementation": "1.0|2.0"
  4741. },
  4742. "require-dev": {
  4743. "cache/integration-tests": "dev-master",
  4744. "doctrine/cache": "^1.6|^2.0",
  4745. "doctrine/dbal": "^2.13.1|^3|^4",
  4746. "predis/predis": "^1.1|^2.0",
  4747. "psr/simple-cache": "^1.0|^2.0",
  4748. "symfony/config": "^4.4|^5.0|^6.0",
  4749. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4750. "symfony/filesystem": "^4.4|^5.0|^6.0",
  4751. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4752. "symfony/messenger": "^4.4|^5.0|^6.0",
  4753. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4754. },
  4755. "type": "library",
  4756. "autoload": {
  4757. "psr-4": {
  4758. "Symfony\\Component\\Cache\\": ""
  4759. },
  4760. "exclude-from-classmap": [
  4761. "/Tests/"
  4762. ]
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "Nicolas Grekas",
  4771. "email": "p@tchwork.com"
  4772. },
  4773. {
  4774. "name": "Symfony Community",
  4775. "homepage": "https://symfony.com/contributors"
  4776. }
  4777. ],
  4778. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4779. "homepage": "https://symfony.com",
  4780. "keywords": [
  4781. "caching",
  4782. "psr6"
  4783. ],
  4784. "support": {
  4785. "source": "https://github.com/symfony/cache/tree/v5.4.46"
  4786. },
  4787. "funding": [
  4788. {
  4789. "url": "https://symfony.com/sponsor",
  4790. "type": "custom"
  4791. },
  4792. {
  4793. "url": "https://github.com/fabpot",
  4794. "type": "github"
  4795. },
  4796. {
  4797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4798. "type": "tidelift"
  4799. }
  4800. ],
  4801. "time": "2024-11-04T11:43:55+00:00"
  4802. },
  4803. {
  4804. "name": "symfony/cache-contracts",
  4805. "version": "v2.5.4",
  4806. "source": {
  4807. "type": "git",
  4808. "url": "https://github.com/symfony/cache-contracts.git",
  4809. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e"
  4810. },
  4811. "dist": {
  4812. "type": "zip",
  4813. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/517c3a3619dadfa6952c4651767fcadffb4df65e",
  4814. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e",
  4815. "shasum": "",
  4816. "mirrors": [
  4817. {
  4818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4819. "preferred": true
  4820. }
  4821. ]
  4822. },
  4823. "require": {
  4824. "php": ">=7.2.5",
  4825. "psr/cache": "^1.0|^2.0|^3.0"
  4826. },
  4827. "suggest": {
  4828. "symfony/cache-implementation": ""
  4829. },
  4830. "type": "library",
  4831. "extra": {
  4832. "branch-alias": {
  4833. "dev-main": "2.5-dev"
  4834. },
  4835. "thanks": {
  4836. "name": "symfony/contracts",
  4837. "url": "https://github.com/symfony/contracts"
  4838. }
  4839. },
  4840. "autoload": {
  4841. "psr-4": {
  4842. "Symfony\\Contracts\\Cache\\": ""
  4843. }
  4844. },
  4845. "notification-url": "https://packagist.org/downloads/",
  4846. "license": [
  4847. "MIT"
  4848. ],
  4849. "authors": [
  4850. {
  4851. "name": "Nicolas Grekas",
  4852. "email": "p@tchwork.com"
  4853. },
  4854. {
  4855. "name": "Symfony Community",
  4856. "homepage": "https://symfony.com/contributors"
  4857. }
  4858. ],
  4859. "description": "Generic abstractions related to caching",
  4860. "homepage": "https://symfony.com",
  4861. "keywords": [
  4862. "abstractions",
  4863. "contracts",
  4864. "decoupling",
  4865. "interfaces",
  4866. "interoperability",
  4867. "standards"
  4868. ],
  4869. "support": {
  4870. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.4"
  4871. },
  4872. "funding": [
  4873. {
  4874. "url": "https://symfony.com/sponsor",
  4875. "type": "custom"
  4876. },
  4877. {
  4878. "url": "https://github.com/fabpot",
  4879. "type": "github"
  4880. },
  4881. {
  4882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4883. "type": "tidelift"
  4884. }
  4885. ],
  4886. "time": "2024-09-25T14:11:13+00:00"
  4887. },
  4888. {
  4889. "name": "symfony/console",
  4890. "version": "v5.4.47",
  4891. "source": {
  4892. "type": "git",
  4893. "url": "https://github.com/symfony/console.git",
  4894. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  4895. },
  4896. "dist": {
  4897. "type": "zip",
  4898. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  4899. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  4900. "shasum": "",
  4901. "mirrors": [
  4902. {
  4903. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4904. "preferred": true
  4905. }
  4906. ]
  4907. },
  4908. "require": {
  4909. "php": ">=7.2.5",
  4910. "symfony/deprecation-contracts": "^2.1|^3",
  4911. "symfony/polyfill-mbstring": "~1.0",
  4912. "symfony/polyfill-php73": "^1.9",
  4913. "symfony/polyfill-php80": "^1.16",
  4914. "symfony/service-contracts": "^1.1|^2|^3",
  4915. "symfony/string": "^5.1|^6.0"
  4916. },
  4917. "conflict": {
  4918. "psr/log": ">=3",
  4919. "symfony/dependency-injection": "<4.4",
  4920. "symfony/dotenv": "<5.1",
  4921. "symfony/event-dispatcher": "<4.4",
  4922. "symfony/lock": "<4.4",
  4923. "symfony/process": "<4.4"
  4924. },
  4925. "provide": {
  4926. "psr/log-implementation": "1.0|2.0"
  4927. },
  4928. "require-dev": {
  4929. "psr/log": "^1|^2",
  4930. "symfony/config": "^4.4|^5.0|^6.0",
  4931. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4932. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4933. "symfony/lock": "^4.4|^5.0|^6.0",
  4934. "symfony/process": "^4.4|^5.0|^6.0",
  4935. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4936. },
  4937. "suggest": {
  4938. "psr/log": "For using the console logger",
  4939. "symfony/event-dispatcher": "",
  4940. "symfony/lock": "",
  4941. "symfony/process": ""
  4942. },
  4943. "type": "library",
  4944. "autoload": {
  4945. "psr-4": {
  4946. "Symfony\\Component\\Console\\": ""
  4947. },
  4948. "exclude-from-classmap": [
  4949. "/Tests/"
  4950. ]
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "MIT"
  4955. ],
  4956. "authors": [
  4957. {
  4958. "name": "Fabien Potencier",
  4959. "email": "fabien@symfony.com"
  4960. },
  4961. {
  4962. "name": "Symfony Community",
  4963. "homepage": "https://symfony.com/contributors"
  4964. }
  4965. ],
  4966. "description": "Eases the creation of beautiful and testable command line interfaces",
  4967. "homepage": "https://symfony.com",
  4968. "keywords": [
  4969. "cli",
  4970. "command-line",
  4971. "console",
  4972. "terminal"
  4973. ],
  4974. "support": {
  4975. "source": "https://github.com/symfony/console/tree/v5.4.47"
  4976. },
  4977. "funding": [
  4978. {
  4979. "url": "https://symfony.com/sponsor",
  4980. "type": "custom"
  4981. },
  4982. {
  4983. "url": "https://github.com/fabpot",
  4984. "type": "github"
  4985. },
  4986. {
  4987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4988. "type": "tidelift"
  4989. }
  4990. ],
  4991. "time": "2024-11-06T11:30:55+00:00"
  4992. },
  4993. {
  4994. "name": "symfony/css-selector",
  4995. "version": "v5.4.45",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://github.com/symfony/css-selector.git",
  4999. "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4f7f3c35fba88146b56d0025d20ace3f3901f097",
  5004. "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097",
  5005. "shasum": "",
  5006. "mirrors": [
  5007. {
  5008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5009. "preferred": true
  5010. }
  5011. ]
  5012. },
  5013. "require": {
  5014. "php": ">=7.2.5",
  5015. "symfony/polyfill-php80": "^1.16"
  5016. },
  5017. "type": "library",
  5018. "autoload": {
  5019. "psr-4": {
  5020. "Symfony\\Component\\CssSelector\\": ""
  5021. },
  5022. "exclude-from-classmap": [
  5023. "/Tests/"
  5024. ]
  5025. },
  5026. "notification-url": "https://packagist.org/downloads/",
  5027. "license": [
  5028. "MIT"
  5029. ],
  5030. "authors": [
  5031. {
  5032. "name": "Fabien Potencier",
  5033. "email": "fabien@symfony.com"
  5034. },
  5035. {
  5036. "name": "Jean-François Simon",
  5037. "email": "jeanfrancois.simon@sensiolabs.com"
  5038. },
  5039. {
  5040. "name": "Symfony Community",
  5041. "homepage": "https://symfony.com/contributors"
  5042. }
  5043. ],
  5044. "description": "Converts CSS selectors to XPath expressions",
  5045. "homepage": "https://symfony.com",
  5046. "support": {
  5047. "source": "https://github.com/symfony/css-selector/tree/v5.4.45"
  5048. },
  5049. "funding": [
  5050. {
  5051. "url": "https://symfony.com/sponsor",
  5052. "type": "custom"
  5053. },
  5054. {
  5055. "url": "https://github.com/fabpot",
  5056. "type": "github"
  5057. },
  5058. {
  5059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5060. "type": "tidelift"
  5061. }
  5062. ],
  5063. "time": "2024-09-25T14:11:13+00:00"
  5064. },
  5065. {
  5066. "name": "symfony/deprecation-contracts",
  5067. "version": "v2.5.4",
  5068. "source": {
  5069. "type": "git",
  5070. "url": "https://github.com/symfony/deprecation-contracts.git",
  5071. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
  5072. },
  5073. "dist": {
  5074. "type": "zip",
  5075. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
  5076. "reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
  5077. "shasum": "",
  5078. "mirrors": [
  5079. {
  5080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5081. "preferred": true
  5082. }
  5083. ]
  5084. },
  5085. "require": {
  5086. "php": ">=7.1"
  5087. },
  5088. "type": "library",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-main": "2.5-dev"
  5092. },
  5093. "thanks": {
  5094. "name": "symfony/contracts",
  5095. "url": "https://github.com/symfony/contracts"
  5096. }
  5097. },
  5098. "autoload": {
  5099. "files": [
  5100. "function.php"
  5101. ]
  5102. },
  5103. "notification-url": "https://packagist.org/downloads/",
  5104. "license": [
  5105. "MIT"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Nicolas Grekas",
  5110. "email": "p@tchwork.com"
  5111. },
  5112. {
  5113. "name": "Symfony Community",
  5114. "homepage": "https://symfony.com/contributors"
  5115. }
  5116. ],
  5117. "description": "A generic function and convention to trigger deprecation notices",
  5118. "homepage": "https://symfony.com",
  5119. "support": {
  5120. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
  5121. },
  5122. "funding": [
  5123. {
  5124. "url": "https://symfony.com/sponsor",
  5125. "type": "custom"
  5126. },
  5127. {
  5128. "url": "https://github.com/fabpot",
  5129. "type": "github"
  5130. },
  5131. {
  5132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5133. "type": "tidelift"
  5134. }
  5135. ],
  5136. "time": "2024-09-25T14:11:13+00:00"
  5137. },
  5138. {
  5139. "name": "symfony/error-handler",
  5140. "version": "v5.4.46",
  5141. "source": {
  5142. "type": "git",
  5143. "url": "https://github.com/symfony/error-handler.git",
  5144. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5145. },
  5146. "dist": {
  5147. "type": "zip",
  5148. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5149. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5150. "shasum": "",
  5151. "mirrors": [
  5152. {
  5153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5154. "preferred": true
  5155. }
  5156. ]
  5157. },
  5158. "require": {
  5159. "php": ">=7.2.5",
  5160. "psr/log": "^1|^2|^3",
  5161. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5162. },
  5163. "require-dev": {
  5164. "symfony/deprecation-contracts": "^2.1|^3",
  5165. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5166. "symfony/serializer": "^4.4|^5.0|^6.0"
  5167. },
  5168. "bin": [
  5169. "Resources/bin/patch-type-declarations"
  5170. ],
  5171. "type": "library",
  5172. "autoload": {
  5173. "psr-4": {
  5174. "Symfony\\Component\\ErrorHandler\\": ""
  5175. },
  5176. "exclude-from-classmap": [
  5177. "/Tests/"
  5178. ]
  5179. },
  5180. "notification-url": "https://packagist.org/downloads/",
  5181. "license": [
  5182. "MIT"
  5183. ],
  5184. "authors": [
  5185. {
  5186. "name": "Fabien Potencier",
  5187. "email": "fabien@symfony.com"
  5188. },
  5189. {
  5190. "name": "Symfony Community",
  5191. "homepage": "https://symfony.com/contributors"
  5192. }
  5193. ],
  5194. "description": "Provides tools to manage errors and ease debugging PHP code",
  5195. "homepage": "https://symfony.com",
  5196. "support": {
  5197. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5198. },
  5199. "funding": [
  5200. {
  5201. "url": "https://symfony.com/sponsor",
  5202. "type": "custom"
  5203. },
  5204. {
  5205. "url": "https://github.com/fabpot",
  5206. "type": "github"
  5207. },
  5208. {
  5209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5210. "type": "tidelift"
  5211. }
  5212. ],
  5213. "time": "2024-11-05T14:17:06+00:00"
  5214. },
  5215. {
  5216. "name": "symfony/event-dispatcher",
  5217. "version": "v5.4.45",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/symfony/event-dispatcher.git",
  5221. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  5226. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  5227. "shasum": "",
  5228. "mirrors": [
  5229. {
  5230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5231. "preferred": true
  5232. }
  5233. ]
  5234. },
  5235. "require": {
  5236. "php": ">=7.2.5",
  5237. "symfony/deprecation-contracts": "^2.1|^3",
  5238. "symfony/event-dispatcher-contracts": "^2|^3",
  5239. "symfony/polyfill-php80": "^1.16"
  5240. },
  5241. "conflict": {
  5242. "symfony/dependency-injection": "<4.4"
  5243. },
  5244. "provide": {
  5245. "psr/event-dispatcher-implementation": "1.0",
  5246. "symfony/event-dispatcher-implementation": "2.0"
  5247. },
  5248. "require-dev": {
  5249. "psr/log": "^1|^2|^3",
  5250. "symfony/config": "^4.4|^5.0|^6.0",
  5251. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5252. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5253. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5254. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5255. "symfony/service-contracts": "^1.1|^2|^3",
  5256. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5257. },
  5258. "suggest": {
  5259. "symfony/dependency-injection": "",
  5260. "symfony/http-kernel": ""
  5261. },
  5262. "type": "library",
  5263. "autoload": {
  5264. "psr-4": {
  5265. "Symfony\\Component\\EventDispatcher\\": ""
  5266. },
  5267. "exclude-from-classmap": [
  5268. "/Tests/"
  5269. ]
  5270. },
  5271. "notification-url": "https://packagist.org/downloads/",
  5272. "license": [
  5273. "MIT"
  5274. ],
  5275. "authors": [
  5276. {
  5277. "name": "Fabien Potencier",
  5278. "email": "fabien@symfony.com"
  5279. },
  5280. {
  5281. "name": "Symfony Community",
  5282. "homepage": "https://symfony.com/contributors"
  5283. }
  5284. ],
  5285. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5286. "homepage": "https://symfony.com",
  5287. "support": {
  5288. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45"
  5289. },
  5290. "funding": [
  5291. {
  5292. "url": "https://symfony.com/sponsor",
  5293. "type": "custom"
  5294. },
  5295. {
  5296. "url": "https://github.com/fabpot",
  5297. "type": "github"
  5298. },
  5299. {
  5300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5301. "type": "tidelift"
  5302. }
  5303. ],
  5304. "time": "2024-09-25T14:11:13+00:00"
  5305. },
  5306. {
  5307. "name": "symfony/event-dispatcher-contracts",
  5308. "version": "v2.5.4",
  5309. "source": {
  5310. "type": "git",
  5311. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5312. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f"
  5313. },
  5314. "dist": {
  5315. "type": "zip",
  5316. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  5317. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  5318. "shasum": "",
  5319. "mirrors": [
  5320. {
  5321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5322. "preferred": true
  5323. }
  5324. ]
  5325. },
  5326. "require": {
  5327. "php": ">=7.2.5",
  5328. "psr/event-dispatcher": "^1"
  5329. },
  5330. "suggest": {
  5331. "symfony/event-dispatcher-implementation": ""
  5332. },
  5333. "type": "library",
  5334. "extra": {
  5335. "branch-alias": {
  5336. "dev-main": "2.5-dev"
  5337. },
  5338. "thanks": {
  5339. "name": "symfony/contracts",
  5340. "url": "https://github.com/symfony/contracts"
  5341. }
  5342. },
  5343. "autoload": {
  5344. "psr-4": {
  5345. "Symfony\\Contracts\\EventDispatcher\\": ""
  5346. }
  5347. },
  5348. "notification-url": "https://packagist.org/downloads/",
  5349. "license": [
  5350. "MIT"
  5351. ],
  5352. "authors": [
  5353. {
  5354. "name": "Nicolas Grekas",
  5355. "email": "p@tchwork.com"
  5356. },
  5357. {
  5358. "name": "Symfony Community",
  5359. "homepage": "https://symfony.com/contributors"
  5360. }
  5361. ],
  5362. "description": "Generic abstractions related to dispatching event",
  5363. "homepage": "https://symfony.com",
  5364. "keywords": [
  5365. "abstractions",
  5366. "contracts",
  5367. "decoupling",
  5368. "interfaces",
  5369. "interoperability",
  5370. "standards"
  5371. ],
  5372. "support": {
  5373. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.4"
  5374. },
  5375. "funding": [
  5376. {
  5377. "url": "https://symfony.com/sponsor",
  5378. "type": "custom"
  5379. },
  5380. {
  5381. "url": "https://github.com/fabpot",
  5382. "type": "github"
  5383. },
  5384. {
  5385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5386. "type": "tidelift"
  5387. }
  5388. ],
  5389. "time": "2024-09-25T14:11:13+00:00"
  5390. },
  5391. {
  5392. "name": "symfony/finder",
  5393. "version": "v5.4.45",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://github.com/symfony/finder.git",
  5397. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5402. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5403. "shasum": "",
  5404. "mirrors": [
  5405. {
  5406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5407. "preferred": true
  5408. }
  5409. ]
  5410. },
  5411. "require": {
  5412. "php": ">=7.2.5",
  5413. "symfony/deprecation-contracts": "^2.1|^3",
  5414. "symfony/polyfill-php80": "^1.16"
  5415. },
  5416. "type": "library",
  5417. "autoload": {
  5418. "psr-4": {
  5419. "Symfony\\Component\\Finder\\": ""
  5420. },
  5421. "exclude-from-classmap": [
  5422. "/Tests/"
  5423. ]
  5424. },
  5425. "notification-url": "https://packagist.org/downloads/",
  5426. "license": [
  5427. "MIT"
  5428. ],
  5429. "authors": [
  5430. {
  5431. "name": "Fabien Potencier",
  5432. "email": "fabien@symfony.com"
  5433. },
  5434. {
  5435. "name": "Symfony Community",
  5436. "homepage": "https://symfony.com/contributors"
  5437. }
  5438. ],
  5439. "description": "Finds files and directories via an intuitive fluent interface",
  5440. "homepage": "https://symfony.com",
  5441. "support": {
  5442. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5443. },
  5444. "funding": [
  5445. {
  5446. "url": "https://symfony.com/sponsor",
  5447. "type": "custom"
  5448. },
  5449. {
  5450. "url": "https://github.com/fabpot",
  5451. "type": "github"
  5452. },
  5453. {
  5454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5455. "type": "tidelift"
  5456. }
  5457. ],
  5458. "time": "2024-09-28T13:32:08+00:00"
  5459. },
  5460. {
  5461. "name": "symfony/http-foundation",
  5462. "version": "v5.4.48",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/symfony/http-foundation.git",
  5466. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  5471. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  5472. "shasum": "",
  5473. "mirrors": [
  5474. {
  5475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5476. "preferred": true
  5477. }
  5478. ]
  5479. },
  5480. "require": {
  5481. "php": ">=7.2.5",
  5482. "symfony/deprecation-contracts": "^2.1|^3",
  5483. "symfony/polyfill-mbstring": "~1.1",
  5484. "symfony/polyfill-php80": "^1.16"
  5485. },
  5486. "require-dev": {
  5487. "predis/predis": "^1.0|^2.0",
  5488. "symfony/cache": "^4.4|^5.0|^6.0",
  5489. "symfony/dependency-injection": "^5.4|^6.0",
  5490. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5491. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5492. "symfony/mime": "^4.4|^5.0|^6.0",
  5493. "symfony/rate-limiter": "^5.2|^6.0"
  5494. },
  5495. "suggest": {
  5496. "symfony/mime": "To use the file extension guesser"
  5497. },
  5498. "type": "library",
  5499. "autoload": {
  5500. "psr-4": {
  5501. "Symfony\\Component\\HttpFoundation\\": ""
  5502. },
  5503. "exclude-from-classmap": [
  5504. "/Tests/"
  5505. ]
  5506. },
  5507. "notification-url": "https://packagist.org/downloads/",
  5508. "license": [
  5509. "MIT"
  5510. ],
  5511. "authors": [
  5512. {
  5513. "name": "Fabien Potencier",
  5514. "email": "fabien@symfony.com"
  5515. },
  5516. {
  5517. "name": "Symfony Community",
  5518. "homepage": "https://symfony.com/contributors"
  5519. }
  5520. ],
  5521. "description": "Defines an object-oriented layer for the HTTP specification",
  5522. "homepage": "https://symfony.com",
  5523. "support": {
  5524. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  5525. },
  5526. "funding": [
  5527. {
  5528. "url": "https://symfony.com/sponsor",
  5529. "type": "custom"
  5530. },
  5531. {
  5532. "url": "https://github.com/fabpot",
  5533. "type": "github"
  5534. },
  5535. {
  5536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5537. "type": "tidelift"
  5538. }
  5539. ],
  5540. "time": "2024-11-13T18:58:02+00:00"
  5541. },
  5542. {
  5543. "name": "symfony/http-kernel",
  5544. "version": "v5.4.48",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://github.com/symfony/http-kernel.git",
  5548. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  5553. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  5554. "shasum": "",
  5555. "mirrors": [
  5556. {
  5557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5558. "preferred": true
  5559. }
  5560. ]
  5561. },
  5562. "require": {
  5563. "php": ">=7.2.5",
  5564. "psr/log": "^1|^2",
  5565. "symfony/deprecation-contracts": "^2.1|^3",
  5566. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5567. "symfony/event-dispatcher": "^5.0|^6.0",
  5568. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5569. "symfony/polyfill-ctype": "^1.8",
  5570. "symfony/polyfill-php73": "^1.9",
  5571. "symfony/polyfill-php80": "^1.16"
  5572. },
  5573. "conflict": {
  5574. "symfony/browser-kit": "<5.4",
  5575. "symfony/cache": "<5.0",
  5576. "symfony/config": "<5.0",
  5577. "symfony/console": "<4.4",
  5578. "symfony/dependency-injection": "<5.3",
  5579. "symfony/doctrine-bridge": "<5.0",
  5580. "symfony/form": "<5.0",
  5581. "symfony/http-client": "<5.0",
  5582. "symfony/mailer": "<5.0",
  5583. "symfony/messenger": "<5.0",
  5584. "symfony/translation": "<5.0",
  5585. "symfony/twig-bridge": "<5.0",
  5586. "symfony/validator": "<5.0",
  5587. "twig/twig": "<2.13"
  5588. },
  5589. "provide": {
  5590. "psr/log-implementation": "1.0|2.0"
  5591. },
  5592. "require-dev": {
  5593. "psr/cache": "^1.0|^2.0|^3.0",
  5594. "symfony/browser-kit": "^5.4|^6.0",
  5595. "symfony/config": "^5.0|^6.0",
  5596. "symfony/console": "^4.4|^5.0|^6.0",
  5597. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5598. "symfony/dependency-injection": "^5.3|^6.0",
  5599. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5600. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5601. "symfony/finder": "^4.4|^5.0|^6.0",
  5602. "symfony/http-client-contracts": "^1.1|^2|^3",
  5603. "symfony/process": "^4.4|^5.0|^6.0",
  5604. "symfony/routing": "^4.4|^5.0|^6.0",
  5605. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5606. "symfony/translation": "^4.4|^5.0|^6.0",
  5607. "symfony/translation-contracts": "^1.1|^2|^3",
  5608. "symfony/var-dumper": "^4.4.31|^5.4",
  5609. "twig/twig": "^2.13|^3.0.4"
  5610. },
  5611. "suggest": {
  5612. "symfony/browser-kit": "",
  5613. "symfony/config": "",
  5614. "symfony/console": "",
  5615. "symfony/dependency-injection": ""
  5616. },
  5617. "type": "library",
  5618. "autoload": {
  5619. "psr-4": {
  5620. "Symfony\\Component\\HttpKernel\\": ""
  5621. },
  5622. "exclude-from-classmap": [
  5623. "/Tests/"
  5624. ]
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "MIT"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Fabien Potencier",
  5633. "email": "fabien@symfony.com"
  5634. },
  5635. {
  5636. "name": "Symfony Community",
  5637. "homepage": "https://symfony.com/contributors"
  5638. }
  5639. ],
  5640. "description": "Provides a structured process for converting a Request into a Response",
  5641. "homepage": "https://symfony.com",
  5642. "support": {
  5643. "source": "https://github.com/symfony/http-kernel/tree/v5.4.48"
  5644. },
  5645. "funding": [
  5646. {
  5647. "url": "https://symfony.com/sponsor",
  5648. "type": "custom"
  5649. },
  5650. {
  5651. "url": "https://github.com/fabpot",
  5652. "type": "github"
  5653. },
  5654. {
  5655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5656. "type": "tidelift"
  5657. }
  5658. ],
  5659. "time": "2024-11-27T12:43:17+00:00"
  5660. },
  5661. {
  5662. "name": "symfony/mime",
  5663. "version": "v5.4.45",
  5664. "source": {
  5665. "type": "git",
  5666. "url": "https://github.com/symfony/mime.git",
  5667. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  5668. },
  5669. "dist": {
  5670. "type": "zip",
  5671. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  5672. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  5673. "shasum": "",
  5674. "mirrors": [
  5675. {
  5676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5677. "preferred": true
  5678. }
  5679. ]
  5680. },
  5681. "require": {
  5682. "php": ">=7.2.5",
  5683. "symfony/deprecation-contracts": "^2.1|^3",
  5684. "symfony/polyfill-intl-idn": "^1.10",
  5685. "symfony/polyfill-mbstring": "^1.0",
  5686. "symfony/polyfill-php80": "^1.16"
  5687. },
  5688. "conflict": {
  5689. "egulias/email-validator": "~3.0.0",
  5690. "phpdocumentor/reflection-docblock": "<3.2.2",
  5691. "phpdocumentor/type-resolver": "<1.4.0",
  5692. "symfony/mailer": "<4.4",
  5693. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  5694. },
  5695. "require-dev": {
  5696. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5697. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5698. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5699. "symfony/process": "^5.4|^6.4",
  5700. "symfony/property-access": "^4.4|^5.1|^6.0",
  5701. "symfony/property-info": "^4.4|^5.1|^6.0",
  5702. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  5703. },
  5704. "type": "library",
  5705. "autoload": {
  5706. "psr-4": {
  5707. "Symfony\\Component\\Mime\\": ""
  5708. },
  5709. "exclude-from-classmap": [
  5710. "/Tests/"
  5711. ]
  5712. },
  5713. "notification-url": "https://packagist.org/downloads/",
  5714. "license": [
  5715. "MIT"
  5716. ],
  5717. "authors": [
  5718. {
  5719. "name": "Fabien Potencier",
  5720. "email": "fabien@symfony.com"
  5721. },
  5722. {
  5723. "name": "Symfony Community",
  5724. "homepage": "https://symfony.com/contributors"
  5725. }
  5726. ],
  5727. "description": "Allows manipulating MIME messages",
  5728. "homepage": "https://symfony.com",
  5729. "keywords": [
  5730. "mime",
  5731. "mime-type"
  5732. ],
  5733. "support": {
  5734. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  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": "2024-10-23T20:18:32+00:00"
  5751. },
  5752. {
  5753. "name": "symfony/polyfill-ctype",
  5754. "version": "v1.31.0",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/symfony/polyfill-ctype.git",
  5758. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5763. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5764. "shasum": "",
  5765. "mirrors": [
  5766. {
  5767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5768. "preferred": true
  5769. }
  5770. ]
  5771. },
  5772. "require": {
  5773. "php": ">=7.2"
  5774. },
  5775. "provide": {
  5776. "ext-ctype": "*"
  5777. },
  5778. "suggest": {
  5779. "ext-ctype": "For best performance"
  5780. },
  5781. "type": "library",
  5782. "extra": {
  5783. "thanks": {
  5784. "url": "https://github.com/symfony/polyfill",
  5785. "name": "symfony/polyfill"
  5786. }
  5787. },
  5788. "autoload": {
  5789. "files": [
  5790. "bootstrap.php"
  5791. ],
  5792. "psr-4": {
  5793. "Symfony\\Polyfill\\Ctype\\": ""
  5794. }
  5795. },
  5796. "notification-url": "https://packagist.org/downloads/",
  5797. "license": [
  5798. "MIT"
  5799. ],
  5800. "authors": [
  5801. {
  5802. "name": "Gert de Pagter",
  5803. "email": "BackEndTea@gmail.com"
  5804. },
  5805. {
  5806. "name": "Symfony Community",
  5807. "homepage": "https://symfony.com/contributors"
  5808. }
  5809. ],
  5810. "description": "Symfony polyfill for ctype functions",
  5811. "homepage": "https://symfony.com",
  5812. "keywords": [
  5813. "compatibility",
  5814. "ctype",
  5815. "polyfill",
  5816. "portable"
  5817. ],
  5818. "support": {
  5819. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  5820. },
  5821. "funding": [
  5822. {
  5823. "url": "https://symfony.com/sponsor",
  5824. "type": "custom"
  5825. },
  5826. {
  5827. "url": "https://github.com/fabpot",
  5828. "type": "github"
  5829. },
  5830. {
  5831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5832. "type": "tidelift"
  5833. }
  5834. ],
  5835. "time": "2024-09-09T11:45:10+00:00"
  5836. },
  5837. {
  5838. "name": "symfony/polyfill-iconv",
  5839. "version": "v1.31.0",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/symfony/polyfill-iconv.git",
  5843. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  5848. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  5849. "shasum": "",
  5850. "mirrors": [
  5851. {
  5852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5853. "preferred": true
  5854. }
  5855. ]
  5856. },
  5857. "require": {
  5858. "php": ">=7.2"
  5859. },
  5860. "provide": {
  5861. "ext-iconv": "*"
  5862. },
  5863. "suggest": {
  5864. "ext-iconv": "For best performance"
  5865. },
  5866. "type": "library",
  5867. "extra": {
  5868. "thanks": {
  5869. "name": "symfony/polyfill",
  5870. "url": "https://github.com/symfony/polyfill"
  5871. }
  5872. },
  5873. "autoload": {
  5874. "files": [
  5875. "bootstrap.php"
  5876. ],
  5877. "psr-4": {
  5878. "Symfony\\Polyfill\\Iconv\\": ""
  5879. }
  5880. },
  5881. "notification-url": "https://packagist.org/downloads/",
  5882. "license": [
  5883. "MIT"
  5884. ],
  5885. "authors": [
  5886. {
  5887. "name": "Nicolas Grekas",
  5888. "email": "p@tchwork.com"
  5889. },
  5890. {
  5891. "name": "Symfony Community",
  5892. "homepage": "https://symfony.com/contributors"
  5893. }
  5894. ],
  5895. "description": "Symfony polyfill for the Iconv extension",
  5896. "homepage": "https://symfony.com",
  5897. "keywords": [
  5898. "compatibility",
  5899. "iconv",
  5900. "polyfill",
  5901. "portable",
  5902. "shim"
  5903. ],
  5904. "support": {
  5905. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  5906. },
  5907. "funding": [
  5908. {
  5909. "url": "https://symfony.com/sponsor",
  5910. "type": "custom"
  5911. },
  5912. {
  5913. "url": "https://github.com/fabpot",
  5914. "type": "github"
  5915. },
  5916. {
  5917. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5918. "type": "tidelift"
  5919. }
  5920. ],
  5921. "time": "2024-09-09T11:45:10+00:00"
  5922. },
  5923. {
  5924. "name": "symfony/polyfill-intl-grapheme",
  5925. "version": "v1.31.0",
  5926. "source": {
  5927. "type": "git",
  5928. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5929. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5930. },
  5931. "dist": {
  5932. "type": "zip",
  5933. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5934. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5935. "shasum": "",
  5936. "mirrors": [
  5937. {
  5938. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5939. "preferred": true
  5940. }
  5941. ]
  5942. },
  5943. "require": {
  5944. "php": ">=7.2"
  5945. },
  5946. "suggest": {
  5947. "ext-intl": "For best performance"
  5948. },
  5949. "type": "library",
  5950. "extra": {
  5951. "thanks": {
  5952. "name": "symfony/polyfill",
  5953. "url": "https://github.com/symfony/polyfill"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "files": [
  5958. "bootstrap.php"
  5959. ],
  5960. "psr-4": {
  5961. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Nicolas Grekas",
  5971. "email": "p@tchwork.com"
  5972. },
  5973. {
  5974. "name": "Symfony Community",
  5975. "homepage": "https://symfony.com/contributors"
  5976. }
  5977. ],
  5978. "description": "Symfony polyfill for intl's grapheme_* functions",
  5979. "homepage": "https://symfony.com",
  5980. "keywords": [
  5981. "compatibility",
  5982. "grapheme",
  5983. "intl",
  5984. "polyfill",
  5985. "portable",
  5986. "shim"
  5987. ],
  5988. "support": {
  5989. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5990. },
  5991. "funding": [
  5992. {
  5993. "url": "https://symfony.com/sponsor",
  5994. "type": "custom"
  5995. },
  5996. {
  5997. "url": "https://github.com/fabpot",
  5998. "type": "github"
  5999. },
  6000. {
  6001. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6002. "type": "tidelift"
  6003. }
  6004. ],
  6005. "time": "2024-09-09T11:45:10+00:00"
  6006. },
  6007. {
  6008. "name": "symfony/polyfill-intl-idn",
  6009. "version": "v1.31.0",
  6010. "source": {
  6011. "type": "git",
  6012. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6013. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  6014. },
  6015. "dist": {
  6016. "type": "zip",
  6017. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  6018. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  6019. "shasum": "",
  6020. "mirrors": [
  6021. {
  6022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6023. "preferred": true
  6024. }
  6025. ]
  6026. },
  6027. "require": {
  6028. "php": ">=7.2",
  6029. "symfony/polyfill-intl-normalizer": "^1.10"
  6030. },
  6031. "suggest": {
  6032. "ext-intl": "For best performance"
  6033. },
  6034. "type": "library",
  6035. "extra": {
  6036. "thanks": {
  6037. "name": "symfony/polyfill",
  6038. "url": "https://github.com/symfony/polyfill"
  6039. }
  6040. },
  6041. "autoload": {
  6042. "files": [
  6043. "bootstrap.php"
  6044. ],
  6045. "psr-4": {
  6046. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6047. }
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "MIT"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Laurent Bassin",
  6056. "email": "laurent@bassin.info"
  6057. },
  6058. {
  6059. "name": "Trevor Rowbotham",
  6060. "email": "trevor.rowbotham@pm.me"
  6061. },
  6062. {
  6063. "name": "Symfony Community",
  6064. "homepage": "https://symfony.com/contributors"
  6065. }
  6066. ],
  6067. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6068. "homepage": "https://symfony.com",
  6069. "keywords": [
  6070. "compatibility",
  6071. "idn",
  6072. "intl",
  6073. "polyfill",
  6074. "portable",
  6075. "shim"
  6076. ],
  6077. "support": {
  6078. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  6079. },
  6080. "funding": [
  6081. {
  6082. "url": "https://symfony.com/sponsor",
  6083. "type": "custom"
  6084. },
  6085. {
  6086. "url": "https://github.com/fabpot",
  6087. "type": "github"
  6088. },
  6089. {
  6090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6091. "type": "tidelift"
  6092. }
  6093. ],
  6094. "time": "2024-09-09T11:45:10+00:00"
  6095. },
  6096. {
  6097. "name": "symfony/polyfill-intl-normalizer",
  6098. "version": "v1.31.0",
  6099. "source": {
  6100. "type": "git",
  6101. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6102. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6103. },
  6104. "dist": {
  6105. "type": "zip",
  6106. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6107. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6108. "shasum": "",
  6109. "mirrors": [
  6110. {
  6111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6112. "preferred": true
  6113. }
  6114. ]
  6115. },
  6116. "require": {
  6117. "php": ">=7.2"
  6118. },
  6119. "suggest": {
  6120. "ext-intl": "For best performance"
  6121. },
  6122. "type": "library",
  6123. "extra": {
  6124. "thanks": {
  6125. "name": "symfony/polyfill",
  6126. "url": "https://github.com/symfony/polyfill"
  6127. }
  6128. },
  6129. "autoload": {
  6130. "files": [
  6131. "bootstrap.php"
  6132. ],
  6133. "psr-4": {
  6134. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6135. },
  6136. "classmap": [
  6137. "Resources/stubs"
  6138. ]
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "MIT"
  6143. ],
  6144. "authors": [
  6145. {
  6146. "name": "Nicolas Grekas",
  6147. "email": "p@tchwork.com"
  6148. },
  6149. {
  6150. "name": "Symfony Community",
  6151. "homepage": "https://symfony.com/contributors"
  6152. }
  6153. ],
  6154. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6155. "homepage": "https://symfony.com",
  6156. "keywords": [
  6157. "compatibility",
  6158. "intl",
  6159. "normalizer",
  6160. "polyfill",
  6161. "portable",
  6162. "shim"
  6163. ],
  6164. "support": {
  6165. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6166. },
  6167. "funding": [
  6168. {
  6169. "url": "https://symfony.com/sponsor",
  6170. "type": "custom"
  6171. },
  6172. {
  6173. "url": "https://github.com/fabpot",
  6174. "type": "github"
  6175. },
  6176. {
  6177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6178. "type": "tidelift"
  6179. }
  6180. ],
  6181. "time": "2024-09-09T11:45:10+00:00"
  6182. },
  6183. {
  6184. "name": "symfony/polyfill-mbstring",
  6185. "version": "v1.31.0",
  6186. "source": {
  6187. "type": "git",
  6188. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6189. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6190. },
  6191. "dist": {
  6192. "type": "zip",
  6193. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6194. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6195. "shasum": "",
  6196. "mirrors": [
  6197. {
  6198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6199. "preferred": true
  6200. }
  6201. ]
  6202. },
  6203. "require": {
  6204. "php": ">=7.2"
  6205. },
  6206. "provide": {
  6207. "ext-mbstring": "*"
  6208. },
  6209. "suggest": {
  6210. "ext-mbstring": "For best performance"
  6211. },
  6212. "type": "library",
  6213. "extra": {
  6214. "thanks": {
  6215. "name": "symfony/polyfill",
  6216. "url": "https://github.com/symfony/polyfill"
  6217. }
  6218. },
  6219. "autoload": {
  6220. "files": [
  6221. "bootstrap.php"
  6222. ],
  6223. "psr-4": {
  6224. "Symfony\\Polyfill\\Mbstring\\": ""
  6225. }
  6226. },
  6227. "notification-url": "https://packagist.org/downloads/",
  6228. "license": [
  6229. "MIT"
  6230. ],
  6231. "authors": [
  6232. {
  6233. "name": "Nicolas Grekas",
  6234. "email": "p@tchwork.com"
  6235. },
  6236. {
  6237. "name": "Symfony Community",
  6238. "homepage": "https://symfony.com/contributors"
  6239. }
  6240. ],
  6241. "description": "Symfony polyfill for the Mbstring extension",
  6242. "homepage": "https://symfony.com",
  6243. "keywords": [
  6244. "compatibility",
  6245. "mbstring",
  6246. "polyfill",
  6247. "portable",
  6248. "shim"
  6249. ],
  6250. "support": {
  6251. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6252. },
  6253. "funding": [
  6254. {
  6255. "url": "https://symfony.com/sponsor",
  6256. "type": "custom"
  6257. },
  6258. {
  6259. "url": "https://github.com/fabpot",
  6260. "type": "github"
  6261. },
  6262. {
  6263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6264. "type": "tidelift"
  6265. }
  6266. ],
  6267. "time": "2024-09-09T11:45:10+00:00"
  6268. },
  6269. {
  6270. "name": "symfony/polyfill-php73",
  6271. "version": "v1.31.0",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/symfony/polyfill-php73.git",
  6275. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6280. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6281. "shasum": "",
  6282. "mirrors": [
  6283. {
  6284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6285. "preferred": true
  6286. }
  6287. ]
  6288. },
  6289. "require": {
  6290. "php": ">=7.2"
  6291. },
  6292. "type": "library",
  6293. "extra": {
  6294. "thanks": {
  6295. "url": "https://github.com/symfony/polyfill",
  6296. "name": "symfony/polyfill"
  6297. }
  6298. },
  6299. "autoload": {
  6300. "files": [
  6301. "bootstrap.php"
  6302. ],
  6303. "psr-4": {
  6304. "Symfony\\Polyfill\\Php73\\": ""
  6305. },
  6306. "classmap": [
  6307. "Resources/stubs"
  6308. ]
  6309. },
  6310. "notification-url": "https://packagist.org/downloads/",
  6311. "license": [
  6312. "MIT"
  6313. ],
  6314. "authors": [
  6315. {
  6316. "name": "Nicolas Grekas",
  6317. "email": "p@tchwork.com"
  6318. },
  6319. {
  6320. "name": "Symfony Community",
  6321. "homepage": "https://symfony.com/contributors"
  6322. }
  6323. ],
  6324. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6325. "homepage": "https://symfony.com",
  6326. "keywords": [
  6327. "compatibility",
  6328. "polyfill",
  6329. "portable",
  6330. "shim"
  6331. ],
  6332. "support": {
  6333. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  6334. },
  6335. "funding": [
  6336. {
  6337. "url": "https://symfony.com/sponsor",
  6338. "type": "custom"
  6339. },
  6340. {
  6341. "url": "https://github.com/fabpot",
  6342. "type": "github"
  6343. },
  6344. {
  6345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6346. "type": "tidelift"
  6347. }
  6348. ],
  6349. "time": "2024-09-09T11:45:10+00:00"
  6350. },
  6351. {
  6352. "name": "symfony/polyfill-php80",
  6353. "version": "v1.31.0",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://github.com/symfony/polyfill-php80.git",
  6357. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6362. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6363. "shasum": "",
  6364. "mirrors": [
  6365. {
  6366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6367. "preferred": true
  6368. }
  6369. ]
  6370. },
  6371. "require": {
  6372. "php": ">=7.2"
  6373. },
  6374. "type": "library",
  6375. "extra": {
  6376. "thanks": {
  6377. "url": "https://github.com/symfony/polyfill",
  6378. "name": "symfony/polyfill"
  6379. }
  6380. },
  6381. "autoload": {
  6382. "files": [
  6383. "bootstrap.php"
  6384. ],
  6385. "psr-4": {
  6386. "Symfony\\Polyfill\\Php80\\": ""
  6387. },
  6388. "classmap": [
  6389. "Resources/stubs"
  6390. ]
  6391. },
  6392. "notification-url": "https://packagist.org/downloads/",
  6393. "license": [
  6394. "MIT"
  6395. ],
  6396. "authors": [
  6397. {
  6398. "name": "Ion Bazan",
  6399. "email": "ion.bazan@gmail.com"
  6400. },
  6401. {
  6402. "name": "Nicolas Grekas",
  6403. "email": "p@tchwork.com"
  6404. },
  6405. {
  6406. "name": "Symfony Community",
  6407. "homepage": "https://symfony.com/contributors"
  6408. }
  6409. ],
  6410. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6411. "homepage": "https://symfony.com",
  6412. "keywords": [
  6413. "compatibility",
  6414. "polyfill",
  6415. "portable",
  6416. "shim"
  6417. ],
  6418. "support": {
  6419. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6420. },
  6421. "funding": [
  6422. {
  6423. "url": "https://symfony.com/sponsor",
  6424. "type": "custom"
  6425. },
  6426. {
  6427. "url": "https://github.com/fabpot",
  6428. "type": "github"
  6429. },
  6430. {
  6431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6432. "type": "tidelift"
  6433. }
  6434. ],
  6435. "time": "2024-09-09T11:45:10+00:00"
  6436. },
  6437. {
  6438. "name": "symfony/polyfill-php81",
  6439. "version": "v1.31.0",
  6440. "source": {
  6441. "type": "git",
  6442. "url": "https://github.com/symfony/polyfill-php81.git",
  6443. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6444. },
  6445. "dist": {
  6446. "type": "zip",
  6447. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6448. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6449. "shasum": "",
  6450. "mirrors": [
  6451. {
  6452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6453. "preferred": true
  6454. }
  6455. ]
  6456. },
  6457. "require": {
  6458. "php": ">=7.2"
  6459. },
  6460. "type": "library",
  6461. "extra": {
  6462. "thanks": {
  6463. "url": "https://github.com/symfony/polyfill",
  6464. "name": "symfony/polyfill"
  6465. }
  6466. },
  6467. "autoload": {
  6468. "files": [
  6469. "bootstrap.php"
  6470. ],
  6471. "psr-4": {
  6472. "Symfony\\Polyfill\\Php81\\": ""
  6473. },
  6474. "classmap": [
  6475. "Resources/stubs"
  6476. ]
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Nicolas Grekas",
  6485. "email": "p@tchwork.com"
  6486. },
  6487. {
  6488. "name": "Symfony Community",
  6489. "homepage": "https://symfony.com/contributors"
  6490. }
  6491. ],
  6492. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6493. "homepage": "https://symfony.com",
  6494. "keywords": [
  6495. "compatibility",
  6496. "polyfill",
  6497. "portable",
  6498. "shim"
  6499. ],
  6500. "support": {
  6501. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  6502. },
  6503. "funding": [
  6504. {
  6505. "url": "https://symfony.com/sponsor",
  6506. "type": "custom"
  6507. },
  6508. {
  6509. "url": "https://github.com/fabpot",
  6510. "type": "github"
  6511. },
  6512. {
  6513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6514. "type": "tidelift"
  6515. }
  6516. ],
  6517. "time": "2024-09-09T11:45:10+00:00"
  6518. },
  6519. {
  6520. "name": "symfony/process",
  6521. "version": "v5.4.46",
  6522. "source": {
  6523. "type": "git",
  6524. "url": "https://github.com/symfony/process.git",
  6525. "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4"
  6526. },
  6527. "dist": {
  6528. "type": "zip",
  6529. "url": "https://api.github.com/repos/symfony/process/zipball/01906871cb9b5e3cf872863b91aba4ec9767daf4",
  6530. "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4",
  6531. "shasum": "",
  6532. "mirrors": [
  6533. {
  6534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6535. "preferred": true
  6536. }
  6537. ]
  6538. },
  6539. "require": {
  6540. "php": ">=7.2.5",
  6541. "symfony/polyfill-php80": "^1.16"
  6542. },
  6543. "type": "library",
  6544. "autoload": {
  6545. "psr-4": {
  6546. "Symfony\\Component\\Process\\": ""
  6547. },
  6548. "exclude-from-classmap": [
  6549. "/Tests/"
  6550. ]
  6551. },
  6552. "notification-url": "https://packagist.org/downloads/",
  6553. "license": [
  6554. "MIT"
  6555. ],
  6556. "authors": [
  6557. {
  6558. "name": "Fabien Potencier",
  6559. "email": "fabien@symfony.com"
  6560. },
  6561. {
  6562. "name": "Symfony Community",
  6563. "homepage": "https://symfony.com/contributors"
  6564. }
  6565. ],
  6566. "description": "Executes commands in sub-processes",
  6567. "homepage": "https://symfony.com",
  6568. "support": {
  6569. "source": "https://github.com/symfony/process/tree/v5.4.46"
  6570. },
  6571. "funding": [
  6572. {
  6573. "url": "https://symfony.com/sponsor",
  6574. "type": "custom"
  6575. },
  6576. {
  6577. "url": "https://github.com/fabpot",
  6578. "type": "github"
  6579. },
  6580. {
  6581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6582. "type": "tidelift"
  6583. }
  6584. ],
  6585. "time": "2024-11-06T09:18:28+00:00"
  6586. },
  6587. {
  6588. "name": "symfony/psr-http-message-bridge",
  6589. "version": "v2.3.1",
  6590. "source": {
  6591. "type": "git",
  6592. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6593. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6594. },
  6595. "dist": {
  6596. "type": "zip",
  6597. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6598. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6599. "shasum": "",
  6600. "mirrors": [
  6601. {
  6602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6603. "preferred": true
  6604. }
  6605. ]
  6606. },
  6607. "require": {
  6608. "php": ">=7.2.5",
  6609. "psr/http-message": "^1.0 || ^2.0",
  6610. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6611. "symfony/http-foundation": "^5.4 || ^6.0"
  6612. },
  6613. "require-dev": {
  6614. "nyholm/psr7": "^1.1",
  6615. "psr/log": "^1.1 || ^2 || ^3",
  6616. "symfony/browser-kit": "^5.4 || ^6.0",
  6617. "symfony/config": "^5.4 || ^6.0",
  6618. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6619. "symfony/framework-bundle": "^5.4 || ^6.0",
  6620. "symfony/http-kernel": "^5.4 || ^6.0",
  6621. "symfony/phpunit-bridge": "^6.2"
  6622. },
  6623. "suggest": {
  6624. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6625. },
  6626. "type": "symfony-bridge",
  6627. "extra": {
  6628. "branch-alias": {
  6629. "dev-main": "2.3-dev"
  6630. }
  6631. },
  6632. "autoload": {
  6633. "psr-4": {
  6634. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6635. },
  6636. "exclude-from-classmap": [
  6637. "/Tests/"
  6638. ]
  6639. },
  6640. "notification-url": "https://packagist.org/downloads/",
  6641. "license": [
  6642. "MIT"
  6643. ],
  6644. "authors": [
  6645. {
  6646. "name": "Fabien Potencier",
  6647. "email": "fabien@symfony.com"
  6648. },
  6649. {
  6650. "name": "Symfony Community",
  6651. "homepage": "http://symfony.com/contributors"
  6652. }
  6653. ],
  6654. "description": "PSR HTTP message bridge",
  6655. "homepage": "http://symfony.com",
  6656. "keywords": [
  6657. "http",
  6658. "http-message",
  6659. "psr-17",
  6660. "psr-7"
  6661. ],
  6662. "support": {
  6663. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6664. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  6665. },
  6666. "funding": [
  6667. {
  6668. "url": "https://symfony.com/sponsor",
  6669. "type": "custom"
  6670. },
  6671. {
  6672. "url": "https://github.com/fabpot",
  6673. "type": "github"
  6674. },
  6675. {
  6676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6677. "type": "tidelift"
  6678. }
  6679. ],
  6680. "time": "2023-07-26T11:53:26+00:00"
  6681. },
  6682. {
  6683. "name": "symfony/routing",
  6684. "version": "v5.4.48",
  6685. "source": {
  6686. "type": "git",
  6687. "url": "https://github.com/symfony/routing.git",
  6688. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  6689. },
  6690. "dist": {
  6691. "type": "zip",
  6692. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  6693. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  6694. "shasum": "",
  6695. "mirrors": [
  6696. {
  6697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6698. "preferred": true
  6699. }
  6700. ]
  6701. },
  6702. "require": {
  6703. "php": ">=7.2.5",
  6704. "symfony/deprecation-contracts": "^2.1|^3",
  6705. "symfony/polyfill-php80": "^1.16"
  6706. },
  6707. "conflict": {
  6708. "doctrine/annotations": "<1.12",
  6709. "symfony/config": "<5.3",
  6710. "symfony/dependency-injection": "<4.4",
  6711. "symfony/yaml": "<4.4"
  6712. },
  6713. "require-dev": {
  6714. "doctrine/annotations": "^1.12|^2",
  6715. "psr/log": "^1|^2|^3",
  6716. "symfony/config": "^5.3|^6.0",
  6717. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6718. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6719. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6720. "symfony/yaml": "^4.4|^5.0|^6.0"
  6721. },
  6722. "suggest": {
  6723. "symfony/config": "For using the all-in-one router or any loader",
  6724. "symfony/expression-language": "For using expression matching",
  6725. "symfony/http-foundation": "For using a Symfony Request object",
  6726. "symfony/yaml": "For using the YAML loader"
  6727. },
  6728. "type": "library",
  6729. "autoload": {
  6730. "psr-4": {
  6731. "Symfony\\Component\\Routing\\": ""
  6732. },
  6733. "exclude-from-classmap": [
  6734. "/Tests/"
  6735. ]
  6736. },
  6737. "notification-url": "https://packagist.org/downloads/",
  6738. "license": [
  6739. "MIT"
  6740. ],
  6741. "authors": [
  6742. {
  6743. "name": "Fabien Potencier",
  6744. "email": "fabien@symfony.com"
  6745. },
  6746. {
  6747. "name": "Symfony Community",
  6748. "homepage": "https://symfony.com/contributors"
  6749. }
  6750. ],
  6751. "description": "Maps an HTTP request to a set of configuration variables",
  6752. "homepage": "https://symfony.com",
  6753. "keywords": [
  6754. "router",
  6755. "routing",
  6756. "uri",
  6757. "url"
  6758. ],
  6759. "support": {
  6760. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  6761. },
  6762. "funding": [
  6763. {
  6764. "url": "https://symfony.com/sponsor",
  6765. "type": "custom"
  6766. },
  6767. {
  6768. "url": "https://github.com/fabpot",
  6769. "type": "github"
  6770. },
  6771. {
  6772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6773. "type": "tidelift"
  6774. }
  6775. ],
  6776. "time": "2024-11-12T18:20:21+00:00"
  6777. },
  6778. {
  6779. "name": "symfony/service-contracts",
  6780. "version": "v2.5.4",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/symfony/service-contracts.git",
  6784. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  6789. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  6790. "shasum": "",
  6791. "mirrors": [
  6792. {
  6793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6794. "preferred": true
  6795. }
  6796. ]
  6797. },
  6798. "require": {
  6799. "php": ">=7.2.5",
  6800. "psr/container": "^1.1",
  6801. "symfony/deprecation-contracts": "^2.1|^3"
  6802. },
  6803. "conflict": {
  6804. "ext-psr": "<1.1|>=2"
  6805. },
  6806. "suggest": {
  6807. "symfony/service-implementation": ""
  6808. },
  6809. "type": "library",
  6810. "extra": {
  6811. "branch-alias": {
  6812. "dev-main": "2.5-dev"
  6813. },
  6814. "thanks": {
  6815. "name": "symfony/contracts",
  6816. "url": "https://github.com/symfony/contracts"
  6817. }
  6818. },
  6819. "autoload": {
  6820. "psr-4": {
  6821. "Symfony\\Contracts\\Service\\": ""
  6822. }
  6823. },
  6824. "notification-url": "https://packagist.org/downloads/",
  6825. "license": [
  6826. "MIT"
  6827. ],
  6828. "authors": [
  6829. {
  6830. "name": "Nicolas Grekas",
  6831. "email": "p@tchwork.com"
  6832. },
  6833. {
  6834. "name": "Symfony Community",
  6835. "homepage": "https://symfony.com/contributors"
  6836. }
  6837. ],
  6838. "description": "Generic abstractions related to writing services",
  6839. "homepage": "https://symfony.com",
  6840. "keywords": [
  6841. "abstractions",
  6842. "contracts",
  6843. "decoupling",
  6844. "interfaces",
  6845. "interoperability",
  6846. "standards"
  6847. ],
  6848. "support": {
  6849. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  6850. },
  6851. "funding": [
  6852. {
  6853. "url": "https://symfony.com/sponsor",
  6854. "type": "custom"
  6855. },
  6856. {
  6857. "url": "https://github.com/fabpot",
  6858. "type": "github"
  6859. },
  6860. {
  6861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6862. "type": "tidelift"
  6863. }
  6864. ],
  6865. "time": "2024-09-25T14:11:13+00:00"
  6866. },
  6867. {
  6868. "name": "symfony/string",
  6869. "version": "v5.4.45",
  6870. "source": {
  6871. "type": "git",
  6872. "url": "https://github.com/symfony/string.git",
  6873. "reference": "7f6807add88b1e2635f3c6de5e1ace631ed7cad2"
  6874. },
  6875. "dist": {
  6876. "type": "zip",
  6877. "url": "https://api.github.com/repos/symfony/string/zipball/7f6807add88b1e2635f3c6de5e1ace631ed7cad2",
  6878. "reference": "7f6807add88b1e2635f3c6de5e1ace631ed7cad2",
  6879. "shasum": "",
  6880. "mirrors": [
  6881. {
  6882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6883. "preferred": true
  6884. }
  6885. ]
  6886. },
  6887. "require": {
  6888. "php": ">=7.2.5",
  6889. "symfony/polyfill-ctype": "~1.8",
  6890. "symfony/polyfill-intl-grapheme": "~1.0",
  6891. "symfony/polyfill-intl-normalizer": "~1.0",
  6892. "symfony/polyfill-mbstring": "~1.0",
  6893. "symfony/polyfill-php80": "~1.15"
  6894. },
  6895. "conflict": {
  6896. "symfony/translation-contracts": ">=3.0"
  6897. },
  6898. "require-dev": {
  6899. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6900. "symfony/http-client": "^4.4|^5.0|^6.0",
  6901. "symfony/translation-contracts": "^1.1|^2",
  6902. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6903. },
  6904. "type": "library",
  6905. "autoload": {
  6906. "files": [
  6907. "Resources/functions.php"
  6908. ],
  6909. "psr-4": {
  6910. "Symfony\\Component\\String\\": ""
  6911. },
  6912. "exclude-from-classmap": [
  6913. "/Tests/"
  6914. ]
  6915. },
  6916. "notification-url": "https://packagist.org/downloads/",
  6917. "license": [
  6918. "MIT"
  6919. ],
  6920. "authors": [
  6921. {
  6922. "name": "Nicolas Grekas",
  6923. "email": "p@tchwork.com"
  6924. },
  6925. {
  6926. "name": "Symfony Community",
  6927. "homepage": "https://symfony.com/contributors"
  6928. }
  6929. ],
  6930. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6931. "homepage": "https://symfony.com",
  6932. "keywords": [
  6933. "grapheme",
  6934. "i18n",
  6935. "string",
  6936. "unicode",
  6937. "utf-8",
  6938. "utf8"
  6939. ],
  6940. "support": {
  6941. "source": "https://github.com/symfony/string/tree/v5.4.45"
  6942. },
  6943. "funding": [
  6944. {
  6945. "url": "https://symfony.com/sponsor",
  6946. "type": "custom"
  6947. },
  6948. {
  6949. "url": "https://github.com/fabpot",
  6950. "type": "github"
  6951. },
  6952. {
  6953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6954. "type": "tidelift"
  6955. }
  6956. ],
  6957. "time": "2024-09-25T14:11:13+00:00"
  6958. },
  6959. {
  6960. "name": "symfony/translation",
  6961. "version": "v5.4.45",
  6962. "source": {
  6963. "type": "git",
  6964. "url": "https://github.com/symfony/translation.git",
  6965. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed"
  6966. },
  6967. "dist": {
  6968. "type": "zip",
  6969. "url": "https://api.github.com/repos/symfony/translation/zipball/98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  6970. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  6971. "shasum": "",
  6972. "mirrors": [
  6973. {
  6974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6975. "preferred": true
  6976. }
  6977. ]
  6978. },
  6979. "require": {
  6980. "php": ">=7.2.5",
  6981. "symfony/deprecation-contracts": "^2.1|^3",
  6982. "symfony/polyfill-mbstring": "~1.0",
  6983. "symfony/polyfill-php80": "^1.16",
  6984. "symfony/translation-contracts": "^2.3"
  6985. },
  6986. "conflict": {
  6987. "symfony/config": "<4.4",
  6988. "symfony/console": "<5.3",
  6989. "symfony/dependency-injection": "<5.0",
  6990. "symfony/http-kernel": "<5.0",
  6991. "symfony/twig-bundle": "<5.0",
  6992. "symfony/yaml": "<4.4"
  6993. },
  6994. "provide": {
  6995. "symfony/translation-implementation": "2.3"
  6996. },
  6997. "require-dev": {
  6998. "psr/log": "^1|^2|^3",
  6999. "symfony/config": "^4.4|^5.0|^6.0",
  7000. "symfony/console": "^5.4|^6.0",
  7001. "symfony/dependency-injection": "^5.0|^6.0",
  7002. "symfony/finder": "^4.4|^5.0|^6.0",
  7003. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7004. "symfony/http-kernel": "^5.0|^6.0",
  7005. "symfony/intl": "^4.4|^5.0|^6.0",
  7006. "symfony/polyfill-intl-icu": "^1.21",
  7007. "symfony/service-contracts": "^1.1.2|^2|^3",
  7008. "symfony/yaml": "^4.4|^5.0|^6.0"
  7009. },
  7010. "suggest": {
  7011. "psr/log-implementation": "To use logging capability in translator",
  7012. "symfony/config": "",
  7013. "symfony/yaml": ""
  7014. },
  7015. "type": "library",
  7016. "autoload": {
  7017. "files": [
  7018. "Resources/functions.php"
  7019. ],
  7020. "psr-4": {
  7021. "Symfony\\Component\\Translation\\": ""
  7022. },
  7023. "exclude-from-classmap": [
  7024. "/Tests/"
  7025. ]
  7026. },
  7027. "notification-url": "https://packagist.org/downloads/",
  7028. "license": [
  7029. "MIT"
  7030. ],
  7031. "authors": [
  7032. {
  7033. "name": "Fabien Potencier",
  7034. "email": "fabien@symfony.com"
  7035. },
  7036. {
  7037. "name": "Symfony Community",
  7038. "homepage": "https://symfony.com/contributors"
  7039. }
  7040. ],
  7041. "description": "Provides tools to internationalize your application",
  7042. "homepage": "https://symfony.com",
  7043. "support": {
  7044. "source": "https://github.com/symfony/translation/tree/v5.4.45"
  7045. },
  7046. "funding": [
  7047. {
  7048. "url": "https://symfony.com/sponsor",
  7049. "type": "custom"
  7050. },
  7051. {
  7052. "url": "https://github.com/fabpot",
  7053. "type": "github"
  7054. },
  7055. {
  7056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7057. "type": "tidelift"
  7058. }
  7059. ],
  7060. "time": "2024-09-25T14:11:13+00:00"
  7061. },
  7062. {
  7063. "name": "symfony/translation-contracts",
  7064. "version": "v2.5.4",
  7065. "source": {
  7066. "type": "git",
  7067. "url": "https://github.com/symfony/translation-contracts.git",
  7068. "reference": "450d4172653f38818657022252f9d81be89ee9a8"
  7069. },
  7070. "dist": {
  7071. "type": "zip",
  7072. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8",
  7073. "reference": "450d4172653f38818657022252f9d81be89ee9a8",
  7074. "shasum": "",
  7075. "mirrors": [
  7076. {
  7077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7078. "preferred": true
  7079. }
  7080. ]
  7081. },
  7082. "require": {
  7083. "php": ">=7.2.5"
  7084. },
  7085. "suggest": {
  7086. "symfony/translation-implementation": ""
  7087. },
  7088. "type": "library",
  7089. "extra": {
  7090. "branch-alias": {
  7091. "dev-main": "2.5-dev"
  7092. },
  7093. "thanks": {
  7094. "name": "symfony/contracts",
  7095. "url": "https://github.com/symfony/contracts"
  7096. }
  7097. },
  7098. "autoload": {
  7099. "psr-4": {
  7100. "Symfony\\Contracts\\Translation\\": ""
  7101. }
  7102. },
  7103. "notification-url": "https://packagist.org/downloads/",
  7104. "license": [
  7105. "MIT"
  7106. ],
  7107. "authors": [
  7108. {
  7109. "name": "Nicolas Grekas",
  7110. "email": "p@tchwork.com"
  7111. },
  7112. {
  7113. "name": "Symfony Community",
  7114. "homepage": "https://symfony.com/contributors"
  7115. }
  7116. ],
  7117. "description": "Generic abstractions related to translation",
  7118. "homepage": "https://symfony.com",
  7119. "keywords": [
  7120. "abstractions",
  7121. "contracts",
  7122. "decoupling",
  7123. "interfaces",
  7124. "interoperability",
  7125. "standards"
  7126. ],
  7127. "support": {
  7128. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.4"
  7129. },
  7130. "funding": [
  7131. {
  7132. "url": "https://symfony.com/sponsor",
  7133. "type": "custom"
  7134. },
  7135. {
  7136. "url": "https://github.com/fabpot",
  7137. "type": "github"
  7138. },
  7139. {
  7140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7141. "type": "tidelift"
  7142. }
  7143. ],
  7144. "time": "2024-09-25T14:11:13+00:00"
  7145. },
  7146. {
  7147. "name": "symfony/var-dumper",
  7148. "version": "v5.4.48",
  7149. "source": {
  7150. "type": "git",
  7151. "url": "https://github.com/symfony/var-dumper.git",
  7152. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7153. },
  7154. "dist": {
  7155. "type": "zip",
  7156. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7157. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7158. "shasum": "",
  7159. "mirrors": [
  7160. {
  7161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7162. "preferred": true
  7163. }
  7164. ]
  7165. },
  7166. "require": {
  7167. "php": ">=7.2.5",
  7168. "symfony/polyfill-mbstring": "~1.0",
  7169. "symfony/polyfill-php80": "^1.16"
  7170. },
  7171. "conflict": {
  7172. "symfony/console": "<4.4"
  7173. },
  7174. "require-dev": {
  7175. "ext-iconv": "*",
  7176. "symfony/console": "^4.4|^5.0|^6.0",
  7177. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7178. "symfony/process": "^4.4|^5.0|^6.0",
  7179. "symfony/uid": "^5.1|^6.0",
  7180. "twig/twig": "^2.13|^3.0.4"
  7181. },
  7182. "suggest": {
  7183. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7184. "ext-intl": "To show region name in time zone dump",
  7185. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7186. },
  7187. "bin": [
  7188. "Resources/bin/var-dump-server"
  7189. ],
  7190. "type": "library",
  7191. "autoload": {
  7192. "files": [
  7193. "Resources/functions/dump.php"
  7194. ],
  7195. "psr-4": {
  7196. "Symfony\\Component\\VarDumper\\": ""
  7197. },
  7198. "exclude-from-classmap": [
  7199. "/Tests/"
  7200. ]
  7201. },
  7202. "notification-url": "https://packagist.org/downloads/",
  7203. "license": [
  7204. "MIT"
  7205. ],
  7206. "authors": [
  7207. {
  7208. "name": "Nicolas Grekas",
  7209. "email": "p@tchwork.com"
  7210. },
  7211. {
  7212. "name": "Symfony Community",
  7213. "homepage": "https://symfony.com/contributors"
  7214. }
  7215. ],
  7216. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7217. "homepage": "https://symfony.com",
  7218. "keywords": [
  7219. "debug",
  7220. "dump"
  7221. ],
  7222. "support": {
  7223. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7224. },
  7225. "funding": [
  7226. {
  7227. "url": "https://symfony.com/sponsor",
  7228. "type": "custom"
  7229. },
  7230. {
  7231. "url": "https://github.com/fabpot",
  7232. "type": "github"
  7233. },
  7234. {
  7235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7236. "type": "tidelift"
  7237. }
  7238. ],
  7239. "time": "2024-11-08T15:21:10+00:00"
  7240. },
  7241. {
  7242. "name": "symfony/var-exporter",
  7243. "version": "v5.4.45",
  7244. "source": {
  7245. "type": "git",
  7246. "url": "https://github.com/symfony/var-exporter.git",
  7247. "reference": "862700068db0ddfd8c5b850671e029a90246ec75"
  7248. },
  7249. "dist": {
  7250. "type": "zip",
  7251. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/862700068db0ddfd8c5b850671e029a90246ec75",
  7252. "reference": "862700068db0ddfd8c5b850671e029a90246ec75",
  7253. "shasum": "",
  7254. "mirrors": [
  7255. {
  7256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7257. "preferred": true
  7258. }
  7259. ]
  7260. },
  7261. "require": {
  7262. "php": ">=7.2.5",
  7263. "symfony/polyfill-php80": "^1.16"
  7264. },
  7265. "require-dev": {
  7266. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7267. },
  7268. "type": "library",
  7269. "autoload": {
  7270. "psr-4": {
  7271. "Symfony\\Component\\VarExporter\\": ""
  7272. },
  7273. "exclude-from-classmap": [
  7274. "/Tests/"
  7275. ]
  7276. },
  7277. "notification-url": "https://packagist.org/downloads/",
  7278. "license": [
  7279. "MIT"
  7280. ],
  7281. "authors": [
  7282. {
  7283. "name": "Nicolas Grekas",
  7284. "email": "p@tchwork.com"
  7285. },
  7286. {
  7287. "name": "Symfony Community",
  7288. "homepage": "https://symfony.com/contributors"
  7289. }
  7290. ],
  7291. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7292. "homepage": "https://symfony.com",
  7293. "keywords": [
  7294. "clone",
  7295. "construct",
  7296. "export",
  7297. "hydrate",
  7298. "instantiate",
  7299. "serialize"
  7300. ],
  7301. "support": {
  7302. "source": "https://github.com/symfony/var-exporter/tree/v5.4.45"
  7303. },
  7304. "funding": [
  7305. {
  7306. "url": "https://symfony.com/sponsor",
  7307. "type": "custom"
  7308. },
  7309. {
  7310. "url": "https://github.com/fabpot",
  7311. "type": "github"
  7312. },
  7313. {
  7314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7315. "type": "tidelift"
  7316. }
  7317. ],
  7318. "time": "2024-09-25T14:11:13+00:00"
  7319. },
  7320. {
  7321. "name": "tencentcloud/common",
  7322. "version": "3.0.1275",
  7323. "source": {
  7324. "type": "git",
  7325. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  7326. "reference": "1358ad29b72b4fcc49fc6ebf654981ddfb2df7c5"
  7327. },
  7328. "dist": {
  7329. "type": "zip",
  7330. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/1358ad29b72b4fcc49fc6ebf654981ddfb2df7c5",
  7331. "reference": "1358ad29b72b4fcc49fc6ebf654981ddfb2df7c5",
  7332. "shasum": "",
  7333. "mirrors": [
  7334. {
  7335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7336. "preferred": true
  7337. }
  7338. ]
  7339. },
  7340. "require": {
  7341. "guzzlehttp/guzzle": "^6.3||^7.0",
  7342. "php": ">=5.6.0"
  7343. },
  7344. "type": "library",
  7345. "autoload": {
  7346. "psr-4": {
  7347. "TencentCloud\\": "./src/TencentCloud"
  7348. }
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "Apache-2.0"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "tencentcloudapi",
  7357. "email": "tencentcloudapi@tencent.com",
  7358. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7359. "role": "Developer"
  7360. }
  7361. ],
  7362. "description": "TencentCloudApi php sdk",
  7363. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7364. "support": {
  7365. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  7366. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1275"
  7367. },
  7368. "time": "2024-12-04T20:32:08+00:00"
  7369. },
  7370. {
  7371. "name": "tencentcloud/sms",
  7372. "version": "3.0.1275",
  7373. "source": {
  7374. "type": "git",
  7375. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  7376. "reference": "6722cdc29453d91f9fdbc3770246aa2a118b4151"
  7377. },
  7378. "dist": {
  7379. "type": "zip",
  7380. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/6722cdc29453d91f9fdbc3770246aa2a118b4151",
  7381. "reference": "6722cdc29453d91f9fdbc3770246aa2a118b4151",
  7382. "shasum": "",
  7383. "mirrors": [
  7384. {
  7385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7386. "preferred": true
  7387. }
  7388. ]
  7389. },
  7390. "require": {
  7391. "tencentcloud/common": "3.0.1275"
  7392. },
  7393. "type": "library",
  7394. "autoload": {
  7395. "psr-4": {
  7396. "TencentCloud\\": "./src/TencentCloud"
  7397. }
  7398. },
  7399. "notification-url": "https://packagist.org/downloads/",
  7400. "license": [
  7401. "Apache-2.0"
  7402. ],
  7403. "authors": [
  7404. {
  7405. "name": "tencentcloudapi",
  7406. "email": "tencentcloudapi@tencent.com",
  7407. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7408. "role": "Developer"
  7409. }
  7410. ],
  7411. "description": "TencentCloudApi php sdk sms",
  7412. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7413. "support": {
  7414. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  7415. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1275"
  7416. },
  7417. "time": "2024-12-04T21:11:44+00:00"
  7418. },
  7419. {
  7420. "name": "tijsverkoyen/css-to-inline-styles",
  7421. "version": "v2.3.0",
  7422. "source": {
  7423. "type": "git",
  7424. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7425. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7426. },
  7427. "dist": {
  7428. "type": "zip",
  7429. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7430. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7431. "shasum": "",
  7432. "mirrors": [
  7433. {
  7434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7435. "preferred": true
  7436. }
  7437. ]
  7438. },
  7439. "require": {
  7440. "ext-dom": "*",
  7441. "ext-libxml": "*",
  7442. "php": "^7.4 || ^8.0",
  7443. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7444. },
  7445. "require-dev": {
  7446. "phpstan/phpstan": "^2.0",
  7447. "phpstan/phpstan-phpunit": "^2.0",
  7448. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7449. },
  7450. "type": "library",
  7451. "extra": {
  7452. "branch-alias": {
  7453. "dev-master": "2.x-dev"
  7454. }
  7455. },
  7456. "autoload": {
  7457. "psr-4": {
  7458. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7459. }
  7460. },
  7461. "notification-url": "https://packagist.org/downloads/",
  7462. "license": [
  7463. "BSD-3-Clause"
  7464. ],
  7465. "authors": [
  7466. {
  7467. "name": "Tijs Verkoyen",
  7468. "email": "css_to_inline_styles@verkoyen.eu",
  7469. "role": "Developer"
  7470. }
  7471. ],
  7472. "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.",
  7473. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7474. "support": {
  7475. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7476. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7477. },
  7478. "time": "2024-12-21T16:25:41+00:00"
  7479. },
  7480. {
  7481. "name": "vinkla/hashids",
  7482. "version": "9.1.0",
  7483. "source": {
  7484. "type": "git",
  7485. "url": "https://github.com/vinkla/laravel-hashids.git",
  7486. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7487. },
  7488. "dist": {
  7489. "type": "zip",
  7490. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7491. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7492. "shasum": "",
  7493. "mirrors": [
  7494. {
  7495. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7496. "preferred": true
  7497. }
  7498. ]
  7499. },
  7500. "require": {
  7501. "graham-campbell/manager": "^4.4",
  7502. "hashids/hashids": "^4.1",
  7503. "illuminate/contracts": "^8.0",
  7504. "illuminate/support": "^8.0",
  7505. "php": "^7.3 || ^8.0"
  7506. },
  7507. "require-dev": {
  7508. "graham-campbell/analyzer": "^3.0",
  7509. "graham-campbell/testbench": "^5.4",
  7510. "mockery/mockery": "^1.3",
  7511. "phpunit/phpunit": "^9.3",
  7512. "squizlabs/php_codesniffer": "^3.5"
  7513. },
  7514. "type": "library",
  7515. "extra": {
  7516. "laravel": {
  7517. "aliases": {
  7518. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7519. },
  7520. "providers": [
  7521. "Vinkla\\Hashids\\HashidsServiceProvider"
  7522. ]
  7523. },
  7524. "branch-alias": {
  7525. "dev-master": "9.1-dev"
  7526. }
  7527. },
  7528. "autoload": {
  7529. "psr-4": {
  7530. "Vinkla\\Hashids\\": "src/"
  7531. }
  7532. },
  7533. "notification-url": "https://packagist.org/downloads/",
  7534. "license": [
  7535. "MIT"
  7536. ],
  7537. "authors": [
  7538. {
  7539. "name": "Vincent Klaiber",
  7540. "email": "hello@doubledip.se"
  7541. }
  7542. ],
  7543. "description": "A Hashids bridge for Laravel",
  7544. "keywords": [
  7545. "hashids",
  7546. "laravel"
  7547. ],
  7548. "support": {
  7549. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7550. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7551. },
  7552. "time": "2020-11-26T19:38:22+00:00"
  7553. },
  7554. {
  7555. "name": "vlucas/phpdotenv",
  7556. "version": "v5.6.1",
  7557. "source": {
  7558. "type": "git",
  7559. "url": "https://github.com/vlucas/phpdotenv.git",
  7560. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7561. },
  7562. "dist": {
  7563. "type": "zip",
  7564. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7565. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7566. "shasum": "",
  7567. "mirrors": [
  7568. {
  7569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7570. "preferred": true
  7571. }
  7572. ]
  7573. },
  7574. "require": {
  7575. "ext-pcre": "*",
  7576. "graham-campbell/result-type": "^1.1.3",
  7577. "php": "^7.2.5 || ^8.0",
  7578. "phpoption/phpoption": "^1.9.3",
  7579. "symfony/polyfill-ctype": "^1.24",
  7580. "symfony/polyfill-mbstring": "^1.24",
  7581. "symfony/polyfill-php80": "^1.24"
  7582. },
  7583. "require-dev": {
  7584. "bamarni/composer-bin-plugin": "^1.8.2",
  7585. "ext-filter": "*",
  7586. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7587. },
  7588. "suggest": {
  7589. "ext-filter": "Required to use the boolean validator."
  7590. },
  7591. "type": "library",
  7592. "extra": {
  7593. "bamarni-bin": {
  7594. "bin-links": true,
  7595. "forward-command": false
  7596. },
  7597. "branch-alias": {
  7598. "dev-master": "5.6-dev"
  7599. }
  7600. },
  7601. "autoload": {
  7602. "psr-4": {
  7603. "Dotenv\\": "src/"
  7604. }
  7605. },
  7606. "notification-url": "https://packagist.org/downloads/",
  7607. "license": [
  7608. "BSD-3-Clause"
  7609. ],
  7610. "authors": [
  7611. {
  7612. "name": "Graham Campbell",
  7613. "email": "hello@gjcampbell.co.uk",
  7614. "homepage": "https://github.com/GrahamCampbell"
  7615. },
  7616. {
  7617. "name": "Vance Lucas",
  7618. "email": "vance@vancelucas.com",
  7619. "homepage": "https://github.com/vlucas"
  7620. }
  7621. ],
  7622. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7623. "keywords": [
  7624. "dotenv",
  7625. "env",
  7626. "environment"
  7627. ],
  7628. "support": {
  7629. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7630. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7631. },
  7632. "funding": [
  7633. {
  7634. "url": "https://github.com/GrahamCampbell",
  7635. "type": "github"
  7636. },
  7637. {
  7638. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7639. "type": "tidelift"
  7640. }
  7641. ],
  7642. "time": "2024-07-20T21:52:34+00:00"
  7643. },
  7644. {
  7645. "name": "voku/portable-ascii",
  7646. "version": "1.6.1",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/voku/portable-ascii.git",
  7650. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7655. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7656. "shasum": "",
  7657. "mirrors": [
  7658. {
  7659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7660. "preferred": true
  7661. }
  7662. ]
  7663. },
  7664. "require": {
  7665. "php": ">=7.0.0"
  7666. },
  7667. "require-dev": {
  7668. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7669. },
  7670. "suggest": {
  7671. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7672. },
  7673. "type": "library",
  7674. "autoload": {
  7675. "psr-4": {
  7676. "voku\\": "src/voku/"
  7677. }
  7678. },
  7679. "notification-url": "https://packagist.org/downloads/",
  7680. "license": [
  7681. "MIT"
  7682. ],
  7683. "authors": [
  7684. {
  7685. "name": "Lars Moelleken",
  7686. "homepage": "http://www.moelleken.org/"
  7687. }
  7688. ],
  7689. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7690. "homepage": "https://github.com/voku/portable-ascii",
  7691. "keywords": [
  7692. "ascii",
  7693. "clean",
  7694. "php"
  7695. ],
  7696. "support": {
  7697. "issues": "https://github.com/voku/portable-ascii/issues",
  7698. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7699. },
  7700. "funding": [
  7701. {
  7702. "url": "https://www.paypal.me/moelleken",
  7703. "type": "custom"
  7704. },
  7705. {
  7706. "url": "https://github.com/voku",
  7707. "type": "github"
  7708. },
  7709. {
  7710. "url": "https://opencollective.com/portable-ascii",
  7711. "type": "open_collective"
  7712. },
  7713. {
  7714. "url": "https://www.patreon.com/voku",
  7715. "type": "patreon"
  7716. },
  7717. {
  7718. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7719. "type": "tidelift"
  7720. }
  7721. ],
  7722. "time": "2022-01-24T18:55:24+00:00"
  7723. },
  7724. {
  7725. "name": "w7corp/easywechat",
  7726. "version": "5.35.3",
  7727. "source": {
  7728. "type": "git",
  7729. "url": "https://github.com/w7corp/easywechat.git",
  7730. "reference": "4e6e5760d5c6827784d7b442fabede163af46d66"
  7731. },
  7732. "dist": {
  7733. "type": "zip",
  7734. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/4e6e5760d5c6827784d7b442fabede163af46d66",
  7735. "reference": "4e6e5760d5c6827784d7b442fabede163af46d66",
  7736. "shasum": "",
  7737. "mirrors": [
  7738. {
  7739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7740. "preferred": true
  7741. }
  7742. ]
  7743. },
  7744. "require": {
  7745. "easywechat-composer/easywechat-composer": "^1.1",
  7746. "ext-fileinfo": "*",
  7747. "ext-libxml": "*",
  7748. "ext-openssl": "*",
  7749. "ext-simplexml": "*",
  7750. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  7751. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  7752. "overtrue/socialite": "^3.2 || ^4.0",
  7753. "php": ">=7.4",
  7754. "pimple/pimple": "^3.0",
  7755. "psr/simple-cache": "^1.0||^2.0||^3.0",
  7756. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  7757. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  7758. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7759. },
  7760. "require-dev": {
  7761. "brainmaestro/composer-git-hooks": "^2.7",
  7762. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  7763. "friendsofphp/php-cs-fixer": "^3.5.0",
  7764. "mikey179/vfsstream": "^1.6",
  7765. "mockery/mockery": "^1.2.3",
  7766. "phpstan/phpstan": "^0.12.0",
  7767. "phpunit/phpunit": "^9.3"
  7768. },
  7769. "type": "library",
  7770. "extra": {
  7771. "hooks": {
  7772. "pre-commit": [
  7773. "composer test",
  7774. "composer fix-style"
  7775. ],
  7776. "pre-push": [
  7777. "composer test",
  7778. "composer fix-style"
  7779. ]
  7780. }
  7781. },
  7782. "autoload": {
  7783. "files": [
  7784. "src/Kernel/Support/Helpers.php",
  7785. "src/Kernel/Helpers.php"
  7786. ],
  7787. "psr-4": {
  7788. "EasyWeChat\\": "src/"
  7789. }
  7790. },
  7791. "notification-url": "https://packagist.org/downloads/",
  7792. "license": [
  7793. "MIT"
  7794. ],
  7795. "authors": [
  7796. {
  7797. "name": "overtrue",
  7798. "email": "anzhengchao@gmail.com"
  7799. }
  7800. ],
  7801. "description": "微信SDK",
  7802. "keywords": [
  7803. "easywechat",
  7804. "sdk",
  7805. "wechat",
  7806. "weixin",
  7807. "weixin-sdk"
  7808. ],
  7809. "support": {
  7810. "issues": "https://github.com/w7corp/easywechat/issues",
  7811. "source": "https://github.com/w7corp/easywechat/tree/5.35.3"
  7812. },
  7813. "funding": [
  7814. {
  7815. "url": "https://github.com/overtrue",
  7816. "type": "github"
  7817. }
  7818. ],
  7819. "time": "2024-08-29T11:19:11+00:00"
  7820. },
  7821. {
  7822. "name": "wantp/snowflake",
  7823. "version": "v1.2.0",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://github.com/wantp/snowflake.git",
  7827. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  7832. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  7833. "shasum": "",
  7834. "mirrors": [
  7835. {
  7836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7837. "preferred": true
  7838. }
  7839. ]
  7840. },
  7841. "require": {
  7842. "php": ">=7.0.0"
  7843. },
  7844. "type": "library",
  7845. "autoload": {
  7846. "psr-4": {
  7847. "wantp\\Snowflake\\": "src/Snowflake/"
  7848. }
  7849. },
  7850. "notification-url": "https://packagist.org/downloads/",
  7851. "license": [
  7852. "MIT"
  7853. ],
  7854. "authors": [
  7855. {
  7856. "name": "zhangrongwang",
  7857. "email": "zhangrongwang798@gmail.com"
  7858. }
  7859. ],
  7860. "description": "A package for create unique id by snowflake",
  7861. "keywords": [
  7862. "snowflake",
  7863. "uniqueId"
  7864. ],
  7865. "support": {
  7866. "issues": "https://github.com/wantp/snowflake/issues",
  7867. "source": "https://github.com/wantp/snowflake/tree/master"
  7868. },
  7869. "time": "2019-08-05T07:14:56+00:00"
  7870. },
  7871. {
  7872. "name": "webmozart/assert",
  7873. "version": "1.11.0",
  7874. "source": {
  7875. "type": "git",
  7876. "url": "https://github.com/webmozarts/assert.git",
  7877. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7878. },
  7879. "dist": {
  7880. "type": "zip",
  7881. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7882. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7883. "shasum": "",
  7884. "mirrors": [
  7885. {
  7886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7887. "preferred": true
  7888. }
  7889. ]
  7890. },
  7891. "require": {
  7892. "ext-ctype": "*",
  7893. "php": "^7.2 || ^8.0"
  7894. },
  7895. "conflict": {
  7896. "phpstan/phpstan": "<0.12.20",
  7897. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7898. },
  7899. "require-dev": {
  7900. "phpunit/phpunit": "^8.5.13"
  7901. },
  7902. "type": "library",
  7903. "extra": {
  7904. "branch-alias": {
  7905. "dev-master": "1.10-dev"
  7906. }
  7907. },
  7908. "autoload": {
  7909. "psr-4": {
  7910. "Webmozart\\Assert\\": "src/"
  7911. }
  7912. },
  7913. "notification-url": "https://packagist.org/downloads/",
  7914. "license": [
  7915. "MIT"
  7916. ],
  7917. "authors": [
  7918. {
  7919. "name": "Bernhard Schussek",
  7920. "email": "bschussek@gmail.com"
  7921. }
  7922. ],
  7923. "description": "Assertions to validate method input/output with nice error messages.",
  7924. "keywords": [
  7925. "assert",
  7926. "check",
  7927. "validate"
  7928. ],
  7929. "support": {
  7930. "issues": "https://github.com/webmozarts/assert/issues",
  7931. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7932. },
  7933. "time": "2022-06-03T18:03:27+00:00"
  7934. },
  7935. {
  7936. "name": "wechatpay/wechatpay",
  7937. "version": "1.4.10",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  7941. "reference": "9c364872bd2063bf3f10efc3765e96e3e1b20e2e"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/9c364872bd2063bf3f10efc3765e96e3e1b20e2e",
  7946. "reference": "9c364872bd2063bf3f10efc3765e96e3e1b20e2e",
  7947. "shasum": "",
  7948. "mirrors": [
  7949. {
  7950. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7951. "preferred": true
  7952. }
  7953. ]
  7954. },
  7955. "require": {
  7956. "ext-curl": "*",
  7957. "ext-libxml": "*",
  7958. "ext-openssl": "*",
  7959. "ext-simplexml": "*",
  7960. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7961. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  7962. "php": ">=7.1.2"
  7963. },
  7964. "require-dev": {
  7965. "phpstan/phpstan": "^0.12.89 || ^1.0",
  7966. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  7967. },
  7968. "bin": [
  7969. "bin/CertificateDownloader.php"
  7970. ],
  7971. "type": "library",
  7972. "autoload": {
  7973. "psr-4": {
  7974. "WeChatPay\\": "src/"
  7975. }
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "Apache-2.0"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "James ZHANG",
  7984. "homepage": "https://github.com/TheNorthMemory"
  7985. },
  7986. {
  7987. "name": "WeChatPay Community",
  7988. "homepage": "https://developers.weixin.qq.com/community/pay"
  7989. }
  7990. ],
  7991. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  7992. "homepage": "https://pay.weixin.qq.com/",
  7993. "keywords": [
  7994. "AES-GCM",
  7995. "aes-ecb",
  7996. "openapi-chainable",
  7997. "rsa-oaep",
  7998. "wechatpay",
  7999. "xml-builder",
  8000. "xml-parser"
  8001. ],
  8002. "support": {
  8003. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  8004. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.10"
  8005. },
  8006. "time": "2024-09-19T04:22:06+00:00"
  8007. },
  8008. {
  8009. "name": "wechatpay/wechatpay-guzzle-middleware",
  8010. "version": "0.2.2",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  8014. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8019. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8020. "shasum": "",
  8021. "mirrors": [
  8022. {
  8023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8024. "preferred": true
  8025. }
  8026. ]
  8027. },
  8028. "require": {
  8029. "ext-openssl": "*",
  8030. "php": ">=5.5"
  8031. },
  8032. "require-dev": {
  8033. "guzzlehttp/guzzle": "^6.3"
  8034. },
  8035. "suggest": {
  8036. "ext-bcmath": "Require bcmath in php 5.* version.",
  8037. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  8038. },
  8039. "bin": [
  8040. "tool/CertificateDownloader.php"
  8041. ],
  8042. "type": "library",
  8043. "autoload": {
  8044. "psr-4": {
  8045. "WechatPay\\GuzzleMiddleware\\": "src/"
  8046. }
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "Apache-2.0"
  8051. ],
  8052. "description": "WechatPay API V3 Guzzle Middleware",
  8053. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  8054. "keywords": [
  8055. "wechatpay"
  8056. ],
  8057. "support": {
  8058. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  8059. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  8060. },
  8061. "time": "2021-03-05T03:09:29+00:00"
  8062. }
  8063. ],
  8064. "packages-dev": [
  8065. {
  8066. "name": "doctrine/instantiator",
  8067. "version": "1.5.0",
  8068. "source": {
  8069. "type": "git",
  8070. "url": "https://github.com/doctrine/instantiator.git",
  8071. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8072. },
  8073. "dist": {
  8074. "type": "zip",
  8075. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8076. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8077. "shasum": "",
  8078. "mirrors": [
  8079. {
  8080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8081. "preferred": true
  8082. }
  8083. ]
  8084. },
  8085. "require": {
  8086. "php": "^7.1 || ^8.0"
  8087. },
  8088. "require-dev": {
  8089. "doctrine/coding-standard": "^9 || ^11",
  8090. "ext-pdo": "*",
  8091. "ext-phar": "*",
  8092. "phpbench/phpbench": "^0.16 || ^1",
  8093. "phpstan/phpstan": "^1.4",
  8094. "phpstan/phpstan-phpunit": "^1",
  8095. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8096. "vimeo/psalm": "^4.30 || ^5.4"
  8097. },
  8098. "type": "library",
  8099. "autoload": {
  8100. "psr-4": {
  8101. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8102. }
  8103. },
  8104. "notification-url": "https://packagist.org/downloads/",
  8105. "license": [
  8106. "MIT"
  8107. ],
  8108. "authors": [
  8109. {
  8110. "name": "Marco Pivetta",
  8111. "email": "ocramius@gmail.com",
  8112. "homepage": "https://ocramius.github.io/"
  8113. }
  8114. ],
  8115. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8116. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8117. "keywords": [
  8118. "constructor",
  8119. "instantiate"
  8120. ],
  8121. "support": {
  8122. "issues": "https://github.com/doctrine/instantiator/issues",
  8123. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8124. },
  8125. "funding": [
  8126. {
  8127. "url": "https://www.doctrine-project.org/sponsorship.html",
  8128. "type": "custom"
  8129. },
  8130. {
  8131. "url": "https://www.patreon.com/phpdoctrine",
  8132. "type": "patreon"
  8133. },
  8134. {
  8135. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8136. "type": "tidelift"
  8137. }
  8138. ],
  8139. "time": "2022-12-30T00:15:36+00:00"
  8140. },
  8141. {
  8142. "name": "facade/flare-client-php",
  8143. "version": "1.10.0",
  8144. "source": {
  8145. "type": "git",
  8146. "url": "https://github.com/facade/flare-client-php.git",
  8147. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8148. },
  8149. "dist": {
  8150. "type": "zip",
  8151. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8152. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8153. "shasum": "",
  8154. "mirrors": [
  8155. {
  8156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8157. "preferred": true
  8158. }
  8159. ]
  8160. },
  8161. "require": {
  8162. "facade/ignition-contracts": "~1.0",
  8163. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8164. "php": "^7.1|^8.0",
  8165. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8166. "symfony/mime": "^3.4|^4.0|^5.1",
  8167. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8168. },
  8169. "require-dev": {
  8170. "friendsofphp/php-cs-fixer": "^2.14",
  8171. "phpunit/phpunit": "^7.5",
  8172. "spatie/phpunit-snapshot-assertions": "^2.0"
  8173. },
  8174. "type": "library",
  8175. "extra": {
  8176. "branch-alias": {
  8177. "dev-master": "1.0-dev"
  8178. }
  8179. },
  8180. "autoload": {
  8181. "files": [
  8182. "src/helpers.php"
  8183. ],
  8184. "psr-4": {
  8185. "Facade\\FlareClient\\": "src"
  8186. }
  8187. },
  8188. "notification-url": "https://packagist.org/downloads/",
  8189. "license": [
  8190. "MIT"
  8191. ],
  8192. "description": "Send PHP errors to Flare",
  8193. "homepage": "https://github.com/facade/flare-client-php",
  8194. "keywords": [
  8195. "exception",
  8196. "facade",
  8197. "flare",
  8198. "reporting"
  8199. ],
  8200. "support": {
  8201. "issues": "https://github.com/facade/flare-client-php/issues",
  8202. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8203. },
  8204. "funding": [
  8205. {
  8206. "url": "https://github.com/spatie",
  8207. "type": "github"
  8208. }
  8209. ],
  8210. "time": "2022-08-09T11:23:57+00:00"
  8211. },
  8212. {
  8213. "name": "facade/ignition",
  8214. "version": "2.17.7",
  8215. "source": {
  8216. "type": "git",
  8217. "url": "https://github.com/facade/ignition.git",
  8218. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8219. },
  8220. "dist": {
  8221. "type": "zip",
  8222. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8223. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8224. "shasum": "",
  8225. "mirrors": [
  8226. {
  8227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8228. "preferred": true
  8229. }
  8230. ]
  8231. },
  8232. "require": {
  8233. "ext-curl": "*",
  8234. "ext-json": "*",
  8235. "ext-mbstring": "*",
  8236. "facade/flare-client-php": "^1.9.1",
  8237. "facade/ignition-contracts": "^1.0.2",
  8238. "illuminate/support": "^7.0|^8.0",
  8239. "monolog/monolog": "^2.0",
  8240. "php": "^7.2.5|^8.0",
  8241. "symfony/console": "^5.0",
  8242. "symfony/var-dumper": "^5.0"
  8243. },
  8244. "require-dev": {
  8245. "friendsofphp/php-cs-fixer": "^2.14",
  8246. "livewire/livewire": "^2.4",
  8247. "mockery/mockery": "^1.3",
  8248. "orchestra/testbench": "^5.0|^6.0",
  8249. "psalm/plugin-laravel": "^1.2"
  8250. },
  8251. "suggest": {
  8252. "laravel/telescope": "^3.1"
  8253. },
  8254. "type": "library",
  8255. "extra": {
  8256. "branch-alias": {
  8257. "dev-master": "2.x-dev"
  8258. },
  8259. "laravel": {
  8260. "providers": [
  8261. "Facade\\Ignition\\IgnitionServiceProvider"
  8262. ],
  8263. "aliases": {
  8264. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8265. }
  8266. }
  8267. },
  8268. "autoload": {
  8269. "files": [
  8270. "src/helpers.php"
  8271. ],
  8272. "psr-4": {
  8273. "Facade\\Ignition\\": "src"
  8274. }
  8275. },
  8276. "notification-url": "https://packagist.org/downloads/",
  8277. "license": [
  8278. "MIT"
  8279. ],
  8280. "description": "A beautiful error page for Laravel applications.",
  8281. "homepage": "https://github.com/facade/ignition",
  8282. "keywords": [
  8283. "error",
  8284. "flare",
  8285. "laravel",
  8286. "page"
  8287. ],
  8288. "support": {
  8289. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8290. "forum": "https://twitter.com/flareappio",
  8291. "issues": "https://github.com/facade/ignition/issues",
  8292. "source": "https://github.com/facade/ignition"
  8293. },
  8294. "time": "2023-01-26T12:34:59+00:00"
  8295. },
  8296. {
  8297. "name": "facade/ignition-contracts",
  8298. "version": "1.0.2",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/facade/ignition-contracts.git",
  8302. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8307. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8308. "shasum": "",
  8309. "mirrors": [
  8310. {
  8311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8312. "preferred": true
  8313. }
  8314. ]
  8315. },
  8316. "require": {
  8317. "php": "^7.3|^8.0"
  8318. },
  8319. "require-dev": {
  8320. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8321. "phpunit/phpunit": "^9.3.11",
  8322. "vimeo/psalm": "^3.17.1"
  8323. },
  8324. "type": "library",
  8325. "autoload": {
  8326. "psr-4": {
  8327. "Facade\\IgnitionContracts\\": "src"
  8328. }
  8329. },
  8330. "notification-url": "https://packagist.org/downloads/",
  8331. "license": [
  8332. "MIT"
  8333. ],
  8334. "authors": [
  8335. {
  8336. "name": "Freek Van der Herten",
  8337. "email": "freek@spatie.be",
  8338. "homepage": "https://flareapp.io",
  8339. "role": "Developer"
  8340. }
  8341. ],
  8342. "description": "Solution contracts for Ignition",
  8343. "homepage": "https://github.com/facade/ignition-contracts",
  8344. "keywords": [
  8345. "contracts",
  8346. "flare",
  8347. "ignition"
  8348. ],
  8349. "support": {
  8350. "issues": "https://github.com/facade/ignition-contracts/issues",
  8351. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8352. },
  8353. "time": "2020-10-16T08:27:54+00:00"
  8354. },
  8355. {
  8356. "name": "fakerphp/faker",
  8357. "version": "v1.23.1",
  8358. "source": {
  8359. "type": "git",
  8360. "url": "https://github.com/FakerPHP/Faker.git",
  8361. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8362. },
  8363. "dist": {
  8364. "type": "zip",
  8365. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8366. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8367. "shasum": "",
  8368. "mirrors": [
  8369. {
  8370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8371. "preferred": true
  8372. }
  8373. ]
  8374. },
  8375. "require": {
  8376. "php": "^7.4 || ^8.0",
  8377. "psr/container": "^1.0 || ^2.0",
  8378. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8379. },
  8380. "conflict": {
  8381. "fzaninotto/faker": "*"
  8382. },
  8383. "require-dev": {
  8384. "bamarni/composer-bin-plugin": "^1.4.1",
  8385. "doctrine/persistence": "^1.3 || ^2.0",
  8386. "ext-intl": "*",
  8387. "phpunit/phpunit": "^9.5.26",
  8388. "symfony/phpunit-bridge": "^5.4.16"
  8389. },
  8390. "suggest": {
  8391. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8392. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8393. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8394. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8395. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8396. },
  8397. "type": "library",
  8398. "autoload": {
  8399. "psr-4": {
  8400. "Faker\\": "src/Faker/"
  8401. }
  8402. },
  8403. "notification-url": "https://packagist.org/downloads/",
  8404. "license": [
  8405. "MIT"
  8406. ],
  8407. "authors": [
  8408. {
  8409. "name": "François Zaninotto"
  8410. }
  8411. ],
  8412. "description": "Faker is a PHP library that generates fake data for you.",
  8413. "keywords": [
  8414. "data",
  8415. "faker",
  8416. "fixtures"
  8417. ],
  8418. "support": {
  8419. "issues": "https://github.com/FakerPHP/Faker/issues",
  8420. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8421. },
  8422. "time": "2024-01-02T13:46:09+00:00"
  8423. },
  8424. {
  8425. "name": "filp/whoops",
  8426. "version": "2.16.0",
  8427. "source": {
  8428. "type": "git",
  8429. "url": "https://github.com/filp/whoops.git",
  8430. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8431. },
  8432. "dist": {
  8433. "type": "zip",
  8434. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8435. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8436. "shasum": "",
  8437. "mirrors": [
  8438. {
  8439. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8440. "preferred": true
  8441. }
  8442. ]
  8443. },
  8444. "require": {
  8445. "php": "^7.1 || ^8.0",
  8446. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8447. },
  8448. "require-dev": {
  8449. "mockery/mockery": "^1.0",
  8450. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8451. "symfony/var-dumper": "^4.0 || ^5.0"
  8452. },
  8453. "suggest": {
  8454. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8455. "whoops/soap": "Formats errors as SOAP responses"
  8456. },
  8457. "type": "library",
  8458. "extra": {
  8459. "branch-alias": {
  8460. "dev-master": "2.7-dev"
  8461. }
  8462. },
  8463. "autoload": {
  8464. "psr-4": {
  8465. "Whoops\\": "src/Whoops/"
  8466. }
  8467. },
  8468. "notification-url": "https://packagist.org/downloads/",
  8469. "license": [
  8470. "MIT"
  8471. ],
  8472. "authors": [
  8473. {
  8474. "name": "Filipe Dobreira",
  8475. "homepage": "https://github.com/filp",
  8476. "role": "Developer"
  8477. }
  8478. ],
  8479. "description": "php error handling for cool kids",
  8480. "homepage": "https://filp.github.io/whoops/",
  8481. "keywords": [
  8482. "error",
  8483. "exception",
  8484. "handling",
  8485. "library",
  8486. "throwable",
  8487. "whoops"
  8488. ],
  8489. "support": {
  8490. "issues": "https://github.com/filp/whoops/issues",
  8491. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8492. },
  8493. "funding": [
  8494. {
  8495. "url": "https://github.com/denis-sokolov",
  8496. "type": "github"
  8497. }
  8498. ],
  8499. "time": "2024-09-25T12:00:00+00:00"
  8500. },
  8501. {
  8502. "name": "hamcrest/hamcrest-php",
  8503. "version": "v2.0.1",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8507. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8512. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8513. "shasum": "",
  8514. "mirrors": [
  8515. {
  8516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8517. "preferred": true
  8518. }
  8519. ]
  8520. },
  8521. "require": {
  8522. "php": "^5.3|^7.0|^8.0"
  8523. },
  8524. "replace": {
  8525. "cordoval/hamcrest-php": "*",
  8526. "davedevelopment/hamcrest-php": "*",
  8527. "kodova/hamcrest-php": "*"
  8528. },
  8529. "require-dev": {
  8530. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8531. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8532. },
  8533. "type": "library",
  8534. "extra": {
  8535. "branch-alias": {
  8536. "dev-master": "2.1-dev"
  8537. }
  8538. },
  8539. "autoload": {
  8540. "classmap": [
  8541. "hamcrest"
  8542. ]
  8543. },
  8544. "notification-url": "https://packagist.org/downloads/",
  8545. "license": [
  8546. "BSD-3-Clause"
  8547. ],
  8548. "description": "This is the PHP port of Hamcrest Matchers",
  8549. "keywords": [
  8550. "test"
  8551. ],
  8552. "support": {
  8553. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8554. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8555. },
  8556. "time": "2020-07-09T08:09:16+00:00"
  8557. },
  8558. {
  8559. "name": "laravel/sail",
  8560. "version": "v1.19.0",
  8561. "source": {
  8562. "type": "git",
  8563. "url": "https://github.com/laravel/sail.git",
  8564. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  8565. },
  8566. "dist": {
  8567. "type": "zip",
  8568. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8569. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8570. "shasum": "",
  8571. "mirrors": [
  8572. {
  8573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8574. "preferred": true
  8575. }
  8576. ]
  8577. },
  8578. "require": {
  8579. "illuminate/console": "^8.0|^9.0|^10.0",
  8580. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8581. "illuminate/support": "^8.0|^9.0|^10.0",
  8582. "php": "^7.3|^8.0"
  8583. },
  8584. "bin": [
  8585. "bin/sail"
  8586. ],
  8587. "type": "library",
  8588. "extra": {
  8589. "branch-alias": {
  8590. "dev-master": "1.x-dev"
  8591. },
  8592. "laravel": {
  8593. "providers": [
  8594. "Laravel\\Sail\\SailServiceProvider"
  8595. ]
  8596. }
  8597. },
  8598. "autoload": {
  8599. "psr-4": {
  8600. "Laravel\\Sail\\": "src/"
  8601. }
  8602. },
  8603. "notification-url": "https://packagist.org/downloads/",
  8604. "license": [
  8605. "MIT"
  8606. ],
  8607. "authors": [
  8608. {
  8609. "name": "Taylor Otwell",
  8610. "email": "taylor@laravel.com"
  8611. }
  8612. ],
  8613. "description": "Docker files for running a basic Laravel application.",
  8614. "keywords": [
  8615. "docker",
  8616. "laravel"
  8617. ],
  8618. "support": {
  8619. "issues": "https://github.com/laravel/sail/issues",
  8620. "source": "https://github.com/laravel/sail"
  8621. },
  8622. "time": "2023-01-31T13:37:57+00:00"
  8623. },
  8624. {
  8625. "name": "mockery/mockery",
  8626. "version": "1.6.12",
  8627. "source": {
  8628. "type": "git",
  8629. "url": "https://github.com/mockery/mockery.git",
  8630. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8631. },
  8632. "dist": {
  8633. "type": "zip",
  8634. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8635. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8636. "shasum": "",
  8637. "mirrors": [
  8638. {
  8639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8640. "preferred": true
  8641. }
  8642. ]
  8643. },
  8644. "require": {
  8645. "hamcrest/hamcrest-php": "^2.0.1",
  8646. "lib-pcre": ">=7.0",
  8647. "php": ">=7.3"
  8648. },
  8649. "conflict": {
  8650. "phpunit/phpunit": "<8.0"
  8651. },
  8652. "require-dev": {
  8653. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8654. "symplify/easy-coding-standard": "^12.1.14"
  8655. },
  8656. "type": "library",
  8657. "autoload": {
  8658. "files": [
  8659. "library/helpers.php",
  8660. "library/Mockery.php"
  8661. ],
  8662. "psr-4": {
  8663. "Mockery\\": "library/Mockery"
  8664. }
  8665. },
  8666. "notification-url": "https://packagist.org/downloads/",
  8667. "license": [
  8668. "BSD-3-Clause"
  8669. ],
  8670. "authors": [
  8671. {
  8672. "name": "Pádraic Brady",
  8673. "email": "padraic.brady@gmail.com",
  8674. "homepage": "https://github.com/padraic",
  8675. "role": "Author"
  8676. },
  8677. {
  8678. "name": "Dave Marshall",
  8679. "email": "dave.marshall@atstsolutions.co.uk",
  8680. "homepage": "https://davedevelopment.co.uk",
  8681. "role": "Developer"
  8682. },
  8683. {
  8684. "name": "Nathanael Esayeas",
  8685. "email": "nathanael.esayeas@protonmail.com",
  8686. "homepage": "https://github.com/ghostwriter",
  8687. "role": "Lead Developer"
  8688. }
  8689. ],
  8690. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8691. "homepage": "https://github.com/mockery/mockery",
  8692. "keywords": [
  8693. "BDD",
  8694. "TDD",
  8695. "library",
  8696. "mock",
  8697. "mock objects",
  8698. "mockery",
  8699. "stub",
  8700. "test",
  8701. "test double",
  8702. "testing"
  8703. ],
  8704. "support": {
  8705. "docs": "https://docs.mockery.io/",
  8706. "issues": "https://github.com/mockery/mockery/issues",
  8707. "rss": "https://github.com/mockery/mockery/releases.atom",
  8708. "security": "https://github.com/mockery/mockery/security/advisories",
  8709. "source": "https://github.com/mockery/mockery"
  8710. },
  8711. "time": "2024-05-16T03:13:13+00:00"
  8712. },
  8713. {
  8714. "name": "myclabs/deep-copy",
  8715. "version": "1.11.1",
  8716. "source": {
  8717. "type": "git",
  8718. "url": "https://github.com/myclabs/DeepCopy.git",
  8719. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8720. },
  8721. "dist": {
  8722. "type": "zip",
  8723. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8724. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8725. "shasum": "",
  8726. "mirrors": [
  8727. {
  8728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8729. "preferred": true
  8730. }
  8731. ]
  8732. },
  8733. "require": {
  8734. "php": "^7.1 || ^8.0"
  8735. },
  8736. "conflict": {
  8737. "doctrine/collections": "<1.6.8",
  8738. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8739. },
  8740. "require-dev": {
  8741. "doctrine/collections": "^1.6.8",
  8742. "doctrine/common": "^2.13.3 || ^3.2.2",
  8743. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8744. },
  8745. "type": "library",
  8746. "autoload": {
  8747. "files": [
  8748. "src/DeepCopy/deep_copy.php"
  8749. ],
  8750. "psr-4": {
  8751. "DeepCopy\\": "src/DeepCopy/"
  8752. }
  8753. },
  8754. "notification-url": "https://packagist.org/downloads/",
  8755. "license": [
  8756. "MIT"
  8757. ],
  8758. "description": "Create deep copies (clones) of your objects",
  8759. "keywords": [
  8760. "clone",
  8761. "copy",
  8762. "duplicate",
  8763. "object",
  8764. "object graph"
  8765. ],
  8766. "support": {
  8767. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8768. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8769. },
  8770. "funding": [
  8771. {
  8772. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8773. "type": "tidelift"
  8774. }
  8775. ],
  8776. "time": "2023-03-08T13:26:56+00:00"
  8777. },
  8778. {
  8779. "name": "nunomaduro/collision",
  8780. "version": "v5.11.0",
  8781. "source": {
  8782. "type": "git",
  8783. "url": "https://github.com/nunomaduro/collision.git",
  8784. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8785. },
  8786. "dist": {
  8787. "type": "zip",
  8788. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8789. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8790. "shasum": "",
  8791. "mirrors": [
  8792. {
  8793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8794. "preferred": true
  8795. }
  8796. ]
  8797. },
  8798. "require": {
  8799. "facade/ignition-contracts": "^1.0",
  8800. "filp/whoops": "^2.14.3",
  8801. "php": "^7.3 || ^8.0",
  8802. "symfony/console": "^5.0"
  8803. },
  8804. "require-dev": {
  8805. "brianium/paratest": "^6.1",
  8806. "fideloper/proxy": "^4.4.1",
  8807. "fruitcake/laravel-cors": "^2.0.3",
  8808. "laravel/framework": "8.x-dev",
  8809. "nunomaduro/larastan": "^0.6.2",
  8810. "nunomaduro/mock-final-classes": "^1.0",
  8811. "orchestra/testbench": "^6.0",
  8812. "phpstan/phpstan": "^0.12.64",
  8813. "phpunit/phpunit": "^9.5.0"
  8814. },
  8815. "type": "library",
  8816. "extra": {
  8817. "laravel": {
  8818. "providers": [
  8819. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8820. ]
  8821. }
  8822. },
  8823. "autoload": {
  8824. "psr-4": {
  8825. "NunoMaduro\\Collision\\": "src/"
  8826. }
  8827. },
  8828. "notification-url": "https://packagist.org/downloads/",
  8829. "license": [
  8830. "MIT"
  8831. ],
  8832. "authors": [
  8833. {
  8834. "name": "Nuno Maduro",
  8835. "email": "enunomaduro@gmail.com"
  8836. }
  8837. ],
  8838. "description": "Cli error handling for console/command-line PHP applications.",
  8839. "keywords": [
  8840. "artisan",
  8841. "cli",
  8842. "command-line",
  8843. "console",
  8844. "error",
  8845. "handling",
  8846. "laravel",
  8847. "laravel-zero",
  8848. "php",
  8849. "symfony"
  8850. ],
  8851. "support": {
  8852. "issues": "https://github.com/nunomaduro/collision/issues",
  8853. "source": "https://github.com/nunomaduro/collision"
  8854. },
  8855. "funding": [
  8856. {
  8857. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8858. "type": "custom"
  8859. },
  8860. {
  8861. "url": "https://github.com/nunomaduro",
  8862. "type": "github"
  8863. },
  8864. {
  8865. "url": "https://www.patreon.com/nunomaduro",
  8866. "type": "patreon"
  8867. }
  8868. ],
  8869. "time": "2022-01-10T16:22:52+00:00"
  8870. },
  8871. {
  8872. "name": "phar-io/manifest",
  8873. "version": "2.0.3",
  8874. "source": {
  8875. "type": "git",
  8876. "url": "https://github.com/phar-io/manifest.git",
  8877. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8878. },
  8879. "dist": {
  8880. "type": "zip",
  8881. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8882. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8883. "shasum": "",
  8884. "mirrors": [
  8885. {
  8886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8887. "preferred": true
  8888. }
  8889. ]
  8890. },
  8891. "require": {
  8892. "ext-dom": "*",
  8893. "ext-phar": "*",
  8894. "ext-xmlwriter": "*",
  8895. "phar-io/version": "^3.0.1",
  8896. "php": "^7.2 || ^8.0"
  8897. },
  8898. "type": "library",
  8899. "extra": {
  8900. "branch-alias": {
  8901. "dev-master": "2.0.x-dev"
  8902. }
  8903. },
  8904. "autoload": {
  8905. "classmap": [
  8906. "src/"
  8907. ]
  8908. },
  8909. "notification-url": "https://packagist.org/downloads/",
  8910. "license": [
  8911. "BSD-3-Clause"
  8912. ],
  8913. "authors": [
  8914. {
  8915. "name": "Arne Blankerts",
  8916. "email": "arne@blankerts.de",
  8917. "role": "Developer"
  8918. },
  8919. {
  8920. "name": "Sebastian Heuer",
  8921. "email": "sebastian@phpeople.de",
  8922. "role": "Developer"
  8923. },
  8924. {
  8925. "name": "Sebastian Bergmann",
  8926. "email": "sebastian@phpunit.de",
  8927. "role": "Developer"
  8928. }
  8929. ],
  8930. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8931. "support": {
  8932. "issues": "https://github.com/phar-io/manifest/issues",
  8933. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8934. },
  8935. "time": "2021-07-20T11:28:43+00:00"
  8936. },
  8937. {
  8938. "name": "phar-io/version",
  8939. "version": "3.2.1",
  8940. "source": {
  8941. "type": "git",
  8942. "url": "https://github.com/phar-io/version.git",
  8943. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8944. },
  8945. "dist": {
  8946. "type": "zip",
  8947. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8948. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8949. "shasum": "",
  8950. "mirrors": [
  8951. {
  8952. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8953. "preferred": true
  8954. }
  8955. ]
  8956. },
  8957. "require": {
  8958. "php": "^7.2 || ^8.0"
  8959. },
  8960. "type": "library",
  8961. "autoload": {
  8962. "classmap": [
  8963. "src/"
  8964. ]
  8965. },
  8966. "notification-url": "https://packagist.org/downloads/",
  8967. "license": [
  8968. "BSD-3-Clause"
  8969. ],
  8970. "authors": [
  8971. {
  8972. "name": "Arne Blankerts",
  8973. "email": "arne@blankerts.de",
  8974. "role": "Developer"
  8975. },
  8976. {
  8977. "name": "Sebastian Heuer",
  8978. "email": "sebastian@phpeople.de",
  8979. "role": "Developer"
  8980. },
  8981. {
  8982. "name": "Sebastian Bergmann",
  8983. "email": "sebastian@phpunit.de",
  8984. "role": "Developer"
  8985. }
  8986. ],
  8987. "description": "Library for handling version information and constraints",
  8988. "support": {
  8989. "issues": "https://github.com/phar-io/version/issues",
  8990. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8991. },
  8992. "time": "2022-02-21T01:04:05+00:00"
  8993. },
  8994. {
  8995. "name": "phpunit/php-code-coverage",
  8996. "version": "9.2.32",
  8997. "source": {
  8998. "type": "git",
  8999. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9000. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9001. },
  9002. "dist": {
  9003. "type": "zip",
  9004. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9005. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9006. "shasum": "",
  9007. "mirrors": [
  9008. {
  9009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9010. "preferred": true
  9011. }
  9012. ]
  9013. },
  9014. "require": {
  9015. "ext-dom": "*",
  9016. "ext-libxml": "*",
  9017. "ext-xmlwriter": "*",
  9018. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9019. "php": ">=7.3",
  9020. "phpunit/php-file-iterator": "^3.0.6",
  9021. "phpunit/php-text-template": "^2.0.4",
  9022. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9023. "sebastian/complexity": "^2.0.3",
  9024. "sebastian/environment": "^5.1.5",
  9025. "sebastian/lines-of-code": "^1.0.4",
  9026. "sebastian/version": "^3.0.2",
  9027. "theseer/tokenizer": "^1.2.3"
  9028. },
  9029. "require-dev": {
  9030. "phpunit/phpunit": "^9.6"
  9031. },
  9032. "suggest": {
  9033. "ext-pcov": "PHP extension that provides line coverage",
  9034. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9035. },
  9036. "type": "library",
  9037. "extra": {
  9038. "branch-alias": {
  9039. "dev-main": "9.2.x-dev"
  9040. }
  9041. },
  9042. "autoload": {
  9043. "classmap": [
  9044. "src/"
  9045. ]
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "BSD-3-Clause"
  9050. ],
  9051. "authors": [
  9052. {
  9053. "name": "Sebastian Bergmann",
  9054. "email": "sebastian@phpunit.de",
  9055. "role": "lead"
  9056. }
  9057. ],
  9058. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9059. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9060. "keywords": [
  9061. "coverage",
  9062. "testing",
  9063. "xunit"
  9064. ],
  9065. "support": {
  9066. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9067. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9068. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9069. },
  9070. "funding": [
  9071. {
  9072. "url": "https://github.com/sebastianbergmann",
  9073. "type": "github"
  9074. }
  9075. ],
  9076. "time": "2024-08-22T04:23:01+00:00"
  9077. },
  9078. {
  9079. "name": "phpunit/php-file-iterator",
  9080. "version": "3.0.6",
  9081. "source": {
  9082. "type": "git",
  9083. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9084. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9085. },
  9086. "dist": {
  9087. "type": "zip",
  9088. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9089. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9090. "shasum": "",
  9091. "mirrors": [
  9092. {
  9093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9094. "preferred": true
  9095. }
  9096. ]
  9097. },
  9098. "require": {
  9099. "php": ">=7.3"
  9100. },
  9101. "require-dev": {
  9102. "phpunit/phpunit": "^9.3"
  9103. },
  9104. "type": "library",
  9105. "extra": {
  9106. "branch-alias": {
  9107. "dev-master": "3.0-dev"
  9108. }
  9109. },
  9110. "autoload": {
  9111. "classmap": [
  9112. "src/"
  9113. ]
  9114. },
  9115. "notification-url": "https://packagist.org/downloads/",
  9116. "license": [
  9117. "BSD-3-Clause"
  9118. ],
  9119. "authors": [
  9120. {
  9121. "name": "Sebastian Bergmann",
  9122. "email": "sebastian@phpunit.de",
  9123. "role": "lead"
  9124. }
  9125. ],
  9126. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9127. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9128. "keywords": [
  9129. "filesystem",
  9130. "iterator"
  9131. ],
  9132. "support": {
  9133. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9134. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9135. },
  9136. "funding": [
  9137. {
  9138. "url": "https://github.com/sebastianbergmann",
  9139. "type": "github"
  9140. }
  9141. ],
  9142. "time": "2021-12-02T12:48:52+00:00"
  9143. },
  9144. {
  9145. "name": "phpunit/php-invoker",
  9146. "version": "3.1.1",
  9147. "source": {
  9148. "type": "git",
  9149. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9150. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9151. },
  9152. "dist": {
  9153. "type": "zip",
  9154. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9155. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9156. "shasum": "",
  9157. "mirrors": [
  9158. {
  9159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9160. "preferred": true
  9161. }
  9162. ]
  9163. },
  9164. "require": {
  9165. "php": ">=7.3"
  9166. },
  9167. "require-dev": {
  9168. "ext-pcntl": "*",
  9169. "phpunit/phpunit": "^9.3"
  9170. },
  9171. "suggest": {
  9172. "ext-pcntl": "*"
  9173. },
  9174. "type": "library",
  9175. "extra": {
  9176. "branch-alias": {
  9177. "dev-master": "3.1-dev"
  9178. }
  9179. },
  9180. "autoload": {
  9181. "classmap": [
  9182. "src/"
  9183. ]
  9184. },
  9185. "notification-url": "https://packagist.org/downloads/",
  9186. "license": [
  9187. "BSD-3-Clause"
  9188. ],
  9189. "authors": [
  9190. {
  9191. "name": "Sebastian Bergmann",
  9192. "email": "sebastian@phpunit.de",
  9193. "role": "lead"
  9194. }
  9195. ],
  9196. "description": "Invoke callables with a timeout",
  9197. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9198. "keywords": [
  9199. "process"
  9200. ],
  9201. "support": {
  9202. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9203. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9204. },
  9205. "funding": [
  9206. {
  9207. "url": "https://github.com/sebastianbergmann",
  9208. "type": "github"
  9209. }
  9210. ],
  9211. "time": "2020-09-28T05:58:55+00:00"
  9212. },
  9213. {
  9214. "name": "phpunit/php-text-template",
  9215. "version": "2.0.4",
  9216. "source": {
  9217. "type": "git",
  9218. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9219. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9220. },
  9221. "dist": {
  9222. "type": "zip",
  9223. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9224. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9225. "shasum": "",
  9226. "mirrors": [
  9227. {
  9228. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9229. "preferred": true
  9230. }
  9231. ]
  9232. },
  9233. "require": {
  9234. "php": ">=7.3"
  9235. },
  9236. "require-dev": {
  9237. "phpunit/phpunit": "^9.3"
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "branch-alias": {
  9242. "dev-master": "2.0-dev"
  9243. }
  9244. },
  9245. "autoload": {
  9246. "classmap": [
  9247. "src/"
  9248. ]
  9249. },
  9250. "notification-url": "https://packagist.org/downloads/",
  9251. "license": [
  9252. "BSD-3-Clause"
  9253. ],
  9254. "authors": [
  9255. {
  9256. "name": "Sebastian Bergmann",
  9257. "email": "sebastian@phpunit.de",
  9258. "role": "lead"
  9259. }
  9260. ],
  9261. "description": "Simple template engine.",
  9262. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9263. "keywords": [
  9264. "template"
  9265. ],
  9266. "support": {
  9267. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9268. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9269. },
  9270. "funding": [
  9271. {
  9272. "url": "https://github.com/sebastianbergmann",
  9273. "type": "github"
  9274. }
  9275. ],
  9276. "time": "2020-10-26T05:33:50+00:00"
  9277. },
  9278. {
  9279. "name": "phpunit/php-timer",
  9280. "version": "5.0.3",
  9281. "source": {
  9282. "type": "git",
  9283. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9284. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9285. },
  9286. "dist": {
  9287. "type": "zip",
  9288. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9289. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9290. "shasum": "",
  9291. "mirrors": [
  9292. {
  9293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9294. "preferred": true
  9295. }
  9296. ]
  9297. },
  9298. "require": {
  9299. "php": ">=7.3"
  9300. },
  9301. "require-dev": {
  9302. "phpunit/phpunit": "^9.3"
  9303. },
  9304. "type": "library",
  9305. "extra": {
  9306. "branch-alias": {
  9307. "dev-master": "5.0-dev"
  9308. }
  9309. },
  9310. "autoload": {
  9311. "classmap": [
  9312. "src/"
  9313. ]
  9314. },
  9315. "notification-url": "https://packagist.org/downloads/",
  9316. "license": [
  9317. "BSD-3-Clause"
  9318. ],
  9319. "authors": [
  9320. {
  9321. "name": "Sebastian Bergmann",
  9322. "email": "sebastian@phpunit.de",
  9323. "role": "lead"
  9324. }
  9325. ],
  9326. "description": "Utility class for timing",
  9327. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9328. "keywords": [
  9329. "timer"
  9330. ],
  9331. "support": {
  9332. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9333. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9334. },
  9335. "funding": [
  9336. {
  9337. "url": "https://github.com/sebastianbergmann",
  9338. "type": "github"
  9339. }
  9340. ],
  9341. "time": "2020-10-26T13:16:10+00:00"
  9342. },
  9343. {
  9344. "name": "phpunit/phpunit",
  9345. "version": "9.6.19",
  9346. "source": {
  9347. "type": "git",
  9348. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9349. "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8"
  9350. },
  9351. "dist": {
  9352. "type": "zip",
  9353. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1a54a473501ef4cdeaae4e06891674114d79db8",
  9354. "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8",
  9355. "shasum": "",
  9356. "mirrors": [
  9357. {
  9358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9359. "preferred": true
  9360. }
  9361. ]
  9362. },
  9363. "require": {
  9364. "doctrine/instantiator": "^1.3.1 || ^2",
  9365. "ext-dom": "*",
  9366. "ext-json": "*",
  9367. "ext-libxml": "*",
  9368. "ext-mbstring": "*",
  9369. "ext-xml": "*",
  9370. "ext-xmlwriter": "*",
  9371. "myclabs/deep-copy": "^1.10.1",
  9372. "phar-io/manifest": "^2.0.3",
  9373. "phar-io/version": "^3.0.2",
  9374. "php": ">=7.3",
  9375. "phpunit/php-code-coverage": "^9.2.28",
  9376. "phpunit/php-file-iterator": "^3.0.5",
  9377. "phpunit/php-invoker": "^3.1.1",
  9378. "phpunit/php-text-template": "^2.0.3",
  9379. "phpunit/php-timer": "^5.0.2",
  9380. "sebastian/cli-parser": "^1.0.1",
  9381. "sebastian/code-unit": "^1.0.6",
  9382. "sebastian/comparator": "^4.0.8",
  9383. "sebastian/diff": "^4.0.3",
  9384. "sebastian/environment": "^5.1.3",
  9385. "sebastian/exporter": "^4.0.5",
  9386. "sebastian/global-state": "^5.0.1",
  9387. "sebastian/object-enumerator": "^4.0.3",
  9388. "sebastian/resource-operations": "^3.0.3",
  9389. "sebastian/type": "^3.2",
  9390. "sebastian/version": "^3.0.2"
  9391. },
  9392. "suggest": {
  9393. "ext-soap": "To be able to generate mocks based on WSDL files",
  9394. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9395. },
  9396. "bin": [
  9397. "phpunit"
  9398. ],
  9399. "type": "library",
  9400. "extra": {
  9401. "branch-alias": {
  9402. "dev-master": "9.6-dev"
  9403. }
  9404. },
  9405. "autoload": {
  9406. "files": [
  9407. "src/Framework/Assert/Functions.php"
  9408. ],
  9409. "classmap": [
  9410. "src/"
  9411. ]
  9412. },
  9413. "notification-url": "https://packagist.org/downloads/",
  9414. "license": [
  9415. "BSD-3-Clause"
  9416. ],
  9417. "authors": [
  9418. {
  9419. "name": "Sebastian Bergmann",
  9420. "email": "sebastian@phpunit.de",
  9421. "role": "lead"
  9422. }
  9423. ],
  9424. "description": "The PHP Unit Testing framework.",
  9425. "homepage": "https://phpunit.de/",
  9426. "keywords": [
  9427. "phpunit",
  9428. "testing",
  9429. "xunit"
  9430. ],
  9431. "support": {
  9432. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9433. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9434. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.19"
  9435. },
  9436. "funding": [
  9437. {
  9438. "url": "https://phpunit.de/sponsors.html",
  9439. "type": "custom"
  9440. },
  9441. {
  9442. "url": "https://github.com/sebastianbergmann",
  9443. "type": "github"
  9444. },
  9445. {
  9446. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9447. "type": "tidelift"
  9448. }
  9449. ],
  9450. "time": "2024-04-05T04:35:58+00:00"
  9451. },
  9452. {
  9453. "name": "sebastian/cli-parser",
  9454. "version": "1.0.2",
  9455. "source": {
  9456. "type": "git",
  9457. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9458. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9459. },
  9460. "dist": {
  9461. "type": "zip",
  9462. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9463. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9464. "shasum": "",
  9465. "mirrors": [
  9466. {
  9467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9468. "preferred": true
  9469. }
  9470. ]
  9471. },
  9472. "require": {
  9473. "php": ">=7.3"
  9474. },
  9475. "require-dev": {
  9476. "phpunit/phpunit": "^9.3"
  9477. },
  9478. "type": "library",
  9479. "extra": {
  9480. "branch-alias": {
  9481. "dev-master": "1.0-dev"
  9482. }
  9483. },
  9484. "autoload": {
  9485. "classmap": [
  9486. "src/"
  9487. ]
  9488. },
  9489. "notification-url": "https://packagist.org/downloads/",
  9490. "license": [
  9491. "BSD-3-Clause"
  9492. ],
  9493. "authors": [
  9494. {
  9495. "name": "Sebastian Bergmann",
  9496. "email": "sebastian@phpunit.de",
  9497. "role": "lead"
  9498. }
  9499. ],
  9500. "description": "Library for parsing CLI options",
  9501. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9502. "support": {
  9503. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9504. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9505. },
  9506. "funding": [
  9507. {
  9508. "url": "https://github.com/sebastianbergmann",
  9509. "type": "github"
  9510. }
  9511. ],
  9512. "time": "2024-03-02T06:27:43+00:00"
  9513. },
  9514. {
  9515. "name": "sebastian/code-unit",
  9516. "version": "1.0.8",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9520. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9525. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9526. "shasum": "",
  9527. "mirrors": [
  9528. {
  9529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9530. "preferred": true
  9531. }
  9532. ]
  9533. },
  9534. "require": {
  9535. "php": ">=7.3"
  9536. },
  9537. "require-dev": {
  9538. "phpunit/phpunit": "^9.3"
  9539. },
  9540. "type": "library",
  9541. "extra": {
  9542. "branch-alias": {
  9543. "dev-master": "1.0-dev"
  9544. }
  9545. },
  9546. "autoload": {
  9547. "classmap": [
  9548. "src/"
  9549. ]
  9550. },
  9551. "notification-url": "https://packagist.org/downloads/",
  9552. "license": [
  9553. "BSD-3-Clause"
  9554. ],
  9555. "authors": [
  9556. {
  9557. "name": "Sebastian Bergmann",
  9558. "email": "sebastian@phpunit.de",
  9559. "role": "lead"
  9560. }
  9561. ],
  9562. "description": "Collection of value objects that represent the PHP code units",
  9563. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9564. "support": {
  9565. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9566. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9567. },
  9568. "funding": [
  9569. {
  9570. "url": "https://github.com/sebastianbergmann",
  9571. "type": "github"
  9572. }
  9573. ],
  9574. "time": "2020-10-26T13:08:54+00:00"
  9575. },
  9576. {
  9577. "name": "sebastian/code-unit-reverse-lookup",
  9578. "version": "2.0.3",
  9579. "source": {
  9580. "type": "git",
  9581. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9582. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9583. },
  9584. "dist": {
  9585. "type": "zip",
  9586. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9587. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9588. "shasum": "",
  9589. "mirrors": [
  9590. {
  9591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9592. "preferred": true
  9593. }
  9594. ]
  9595. },
  9596. "require": {
  9597. "php": ">=7.3"
  9598. },
  9599. "require-dev": {
  9600. "phpunit/phpunit": "^9.3"
  9601. },
  9602. "type": "library",
  9603. "extra": {
  9604. "branch-alias": {
  9605. "dev-master": "2.0-dev"
  9606. }
  9607. },
  9608. "autoload": {
  9609. "classmap": [
  9610. "src/"
  9611. ]
  9612. },
  9613. "notification-url": "https://packagist.org/downloads/",
  9614. "license": [
  9615. "BSD-3-Clause"
  9616. ],
  9617. "authors": [
  9618. {
  9619. "name": "Sebastian Bergmann",
  9620. "email": "sebastian@phpunit.de"
  9621. }
  9622. ],
  9623. "description": "Looks up which function or method a line of code belongs to",
  9624. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9625. "support": {
  9626. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9627. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9628. },
  9629. "funding": [
  9630. {
  9631. "url": "https://github.com/sebastianbergmann",
  9632. "type": "github"
  9633. }
  9634. ],
  9635. "time": "2020-09-28T05:30:19+00:00"
  9636. },
  9637. {
  9638. "name": "sebastian/comparator",
  9639. "version": "4.0.8",
  9640. "source": {
  9641. "type": "git",
  9642. "url": "https://github.com/sebastianbergmann/comparator.git",
  9643. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9644. },
  9645. "dist": {
  9646. "type": "zip",
  9647. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9648. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9649. "shasum": "",
  9650. "mirrors": [
  9651. {
  9652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9653. "preferred": true
  9654. }
  9655. ]
  9656. },
  9657. "require": {
  9658. "php": ">=7.3",
  9659. "sebastian/diff": "^4.0",
  9660. "sebastian/exporter": "^4.0"
  9661. },
  9662. "require-dev": {
  9663. "phpunit/phpunit": "^9.3"
  9664. },
  9665. "type": "library",
  9666. "extra": {
  9667. "branch-alias": {
  9668. "dev-master": "4.0-dev"
  9669. }
  9670. },
  9671. "autoload": {
  9672. "classmap": [
  9673. "src/"
  9674. ]
  9675. },
  9676. "notification-url": "https://packagist.org/downloads/",
  9677. "license": [
  9678. "BSD-3-Clause"
  9679. ],
  9680. "authors": [
  9681. {
  9682. "name": "Sebastian Bergmann",
  9683. "email": "sebastian@phpunit.de"
  9684. },
  9685. {
  9686. "name": "Jeff Welch",
  9687. "email": "whatthejeff@gmail.com"
  9688. },
  9689. {
  9690. "name": "Volker Dusch",
  9691. "email": "github@wallbash.com"
  9692. },
  9693. {
  9694. "name": "Bernhard Schussek",
  9695. "email": "bschussek@2bepublished.at"
  9696. }
  9697. ],
  9698. "description": "Provides the functionality to compare PHP values for equality",
  9699. "homepage": "https://github.com/sebastianbergmann/comparator",
  9700. "keywords": [
  9701. "comparator",
  9702. "compare",
  9703. "equality"
  9704. ],
  9705. "support": {
  9706. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9707. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9708. },
  9709. "funding": [
  9710. {
  9711. "url": "https://github.com/sebastianbergmann",
  9712. "type": "github"
  9713. }
  9714. ],
  9715. "time": "2022-09-14T12:41:17+00:00"
  9716. },
  9717. {
  9718. "name": "sebastian/complexity",
  9719. "version": "2.0.3",
  9720. "source": {
  9721. "type": "git",
  9722. "url": "https://github.com/sebastianbergmann/complexity.git",
  9723. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9724. },
  9725. "dist": {
  9726. "type": "zip",
  9727. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9728. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9729. "shasum": "",
  9730. "mirrors": [
  9731. {
  9732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9733. "preferred": true
  9734. }
  9735. ]
  9736. },
  9737. "require": {
  9738. "nikic/php-parser": "^4.18 || ^5.0",
  9739. "php": ">=7.3"
  9740. },
  9741. "require-dev": {
  9742. "phpunit/phpunit": "^9.3"
  9743. },
  9744. "type": "library",
  9745. "extra": {
  9746. "branch-alias": {
  9747. "dev-master": "2.0-dev"
  9748. }
  9749. },
  9750. "autoload": {
  9751. "classmap": [
  9752. "src/"
  9753. ]
  9754. },
  9755. "notification-url": "https://packagist.org/downloads/",
  9756. "license": [
  9757. "BSD-3-Clause"
  9758. ],
  9759. "authors": [
  9760. {
  9761. "name": "Sebastian Bergmann",
  9762. "email": "sebastian@phpunit.de",
  9763. "role": "lead"
  9764. }
  9765. ],
  9766. "description": "Library for calculating the complexity of PHP code units",
  9767. "homepage": "https://github.com/sebastianbergmann/complexity",
  9768. "support": {
  9769. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9770. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9771. },
  9772. "funding": [
  9773. {
  9774. "url": "https://github.com/sebastianbergmann",
  9775. "type": "github"
  9776. }
  9777. ],
  9778. "time": "2023-12-22T06:19:30+00:00"
  9779. },
  9780. {
  9781. "name": "sebastian/diff",
  9782. "version": "4.0.6",
  9783. "source": {
  9784. "type": "git",
  9785. "url": "https://github.com/sebastianbergmann/diff.git",
  9786. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9787. },
  9788. "dist": {
  9789. "type": "zip",
  9790. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9791. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9792. "shasum": "",
  9793. "mirrors": [
  9794. {
  9795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9796. "preferred": true
  9797. }
  9798. ]
  9799. },
  9800. "require": {
  9801. "php": ">=7.3"
  9802. },
  9803. "require-dev": {
  9804. "phpunit/phpunit": "^9.3",
  9805. "symfony/process": "^4.2 || ^5"
  9806. },
  9807. "type": "library",
  9808. "extra": {
  9809. "branch-alias": {
  9810. "dev-master": "4.0-dev"
  9811. }
  9812. },
  9813. "autoload": {
  9814. "classmap": [
  9815. "src/"
  9816. ]
  9817. },
  9818. "notification-url": "https://packagist.org/downloads/",
  9819. "license": [
  9820. "BSD-3-Clause"
  9821. ],
  9822. "authors": [
  9823. {
  9824. "name": "Sebastian Bergmann",
  9825. "email": "sebastian@phpunit.de"
  9826. },
  9827. {
  9828. "name": "Kore Nordmann",
  9829. "email": "mail@kore-nordmann.de"
  9830. }
  9831. ],
  9832. "description": "Diff implementation",
  9833. "homepage": "https://github.com/sebastianbergmann/diff",
  9834. "keywords": [
  9835. "diff",
  9836. "udiff",
  9837. "unidiff",
  9838. "unified diff"
  9839. ],
  9840. "support": {
  9841. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9842. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9843. },
  9844. "funding": [
  9845. {
  9846. "url": "https://github.com/sebastianbergmann",
  9847. "type": "github"
  9848. }
  9849. ],
  9850. "time": "2024-03-02T06:30:58+00:00"
  9851. },
  9852. {
  9853. "name": "sebastian/environment",
  9854. "version": "5.1.5",
  9855. "source": {
  9856. "type": "git",
  9857. "url": "https://github.com/sebastianbergmann/environment.git",
  9858. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9859. },
  9860. "dist": {
  9861. "type": "zip",
  9862. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9863. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9864. "shasum": "",
  9865. "mirrors": [
  9866. {
  9867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9868. "preferred": true
  9869. }
  9870. ]
  9871. },
  9872. "require": {
  9873. "php": ">=7.3"
  9874. },
  9875. "require-dev": {
  9876. "phpunit/phpunit": "^9.3"
  9877. },
  9878. "suggest": {
  9879. "ext-posix": "*"
  9880. },
  9881. "type": "library",
  9882. "extra": {
  9883. "branch-alias": {
  9884. "dev-master": "5.1-dev"
  9885. }
  9886. },
  9887. "autoload": {
  9888. "classmap": [
  9889. "src/"
  9890. ]
  9891. },
  9892. "notification-url": "https://packagist.org/downloads/",
  9893. "license": [
  9894. "BSD-3-Clause"
  9895. ],
  9896. "authors": [
  9897. {
  9898. "name": "Sebastian Bergmann",
  9899. "email": "sebastian@phpunit.de"
  9900. }
  9901. ],
  9902. "description": "Provides functionality to handle HHVM/PHP environments",
  9903. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9904. "keywords": [
  9905. "Xdebug",
  9906. "environment",
  9907. "hhvm"
  9908. ],
  9909. "support": {
  9910. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9911. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9912. },
  9913. "funding": [
  9914. {
  9915. "url": "https://github.com/sebastianbergmann",
  9916. "type": "github"
  9917. }
  9918. ],
  9919. "time": "2023-02-03T06:03:51+00:00"
  9920. },
  9921. {
  9922. "name": "sebastian/exporter",
  9923. "version": "4.0.6",
  9924. "source": {
  9925. "type": "git",
  9926. "url": "https://github.com/sebastianbergmann/exporter.git",
  9927. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  9928. },
  9929. "dist": {
  9930. "type": "zip",
  9931. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  9932. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  9933. "shasum": "",
  9934. "mirrors": [
  9935. {
  9936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9937. "preferred": true
  9938. }
  9939. ]
  9940. },
  9941. "require": {
  9942. "php": ">=7.3",
  9943. "sebastian/recursion-context": "^4.0"
  9944. },
  9945. "require-dev": {
  9946. "ext-mbstring": "*",
  9947. "phpunit/phpunit": "^9.3"
  9948. },
  9949. "type": "library",
  9950. "extra": {
  9951. "branch-alias": {
  9952. "dev-master": "4.0-dev"
  9953. }
  9954. },
  9955. "autoload": {
  9956. "classmap": [
  9957. "src/"
  9958. ]
  9959. },
  9960. "notification-url": "https://packagist.org/downloads/",
  9961. "license": [
  9962. "BSD-3-Clause"
  9963. ],
  9964. "authors": [
  9965. {
  9966. "name": "Sebastian Bergmann",
  9967. "email": "sebastian@phpunit.de"
  9968. },
  9969. {
  9970. "name": "Jeff Welch",
  9971. "email": "whatthejeff@gmail.com"
  9972. },
  9973. {
  9974. "name": "Volker Dusch",
  9975. "email": "github@wallbash.com"
  9976. },
  9977. {
  9978. "name": "Adam Harvey",
  9979. "email": "aharvey@php.net"
  9980. },
  9981. {
  9982. "name": "Bernhard Schussek",
  9983. "email": "bschussek@gmail.com"
  9984. }
  9985. ],
  9986. "description": "Provides the functionality to export PHP variables for visualization",
  9987. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9988. "keywords": [
  9989. "export",
  9990. "exporter"
  9991. ],
  9992. "support": {
  9993. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9994. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9995. },
  9996. "funding": [
  9997. {
  9998. "url": "https://github.com/sebastianbergmann",
  9999. "type": "github"
  10000. }
  10001. ],
  10002. "time": "2024-03-02T06:33:00+00:00"
  10003. },
  10004. {
  10005. "name": "sebastian/global-state",
  10006. "version": "5.0.7",
  10007. "source": {
  10008. "type": "git",
  10009. "url": "https://github.com/sebastianbergmann/global-state.git",
  10010. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  10011. },
  10012. "dist": {
  10013. "type": "zip",
  10014. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10015. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  10016. "shasum": "",
  10017. "mirrors": [
  10018. {
  10019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10020. "preferred": true
  10021. }
  10022. ]
  10023. },
  10024. "require": {
  10025. "php": ">=7.3",
  10026. "sebastian/object-reflector": "^2.0",
  10027. "sebastian/recursion-context": "^4.0"
  10028. },
  10029. "require-dev": {
  10030. "ext-dom": "*",
  10031. "phpunit/phpunit": "^9.3"
  10032. },
  10033. "suggest": {
  10034. "ext-uopz": "*"
  10035. },
  10036. "type": "library",
  10037. "extra": {
  10038. "branch-alias": {
  10039. "dev-master": "5.0-dev"
  10040. }
  10041. },
  10042. "autoload": {
  10043. "classmap": [
  10044. "src/"
  10045. ]
  10046. },
  10047. "notification-url": "https://packagist.org/downloads/",
  10048. "license": [
  10049. "BSD-3-Clause"
  10050. ],
  10051. "authors": [
  10052. {
  10053. "name": "Sebastian Bergmann",
  10054. "email": "sebastian@phpunit.de"
  10055. }
  10056. ],
  10057. "description": "Snapshotting of global state",
  10058. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10059. "keywords": [
  10060. "global state"
  10061. ],
  10062. "support": {
  10063. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10064. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  10065. },
  10066. "funding": [
  10067. {
  10068. "url": "https://github.com/sebastianbergmann",
  10069. "type": "github"
  10070. }
  10071. ],
  10072. "time": "2024-03-02T06:35:11+00:00"
  10073. },
  10074. {
  10075. "name": "sebastian/lines-of-code",
  10076. "version": "1.0.4",
  10077. "source": {
  10078. "type": "git",
  10079. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10080. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10081. },
  10082. "dist": {
  10083. "type": "zip",
  10084. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10085. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10086. "shasum": "",
  10087. "mirrors": [
  10088. {
  10089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10090. "preferred": true
  10091. }
  10092. ]
  10093. },
  10094. "require": {
  10095. "nikic/php-parser": "^4.18 || ^5.0",
  10096. "php": ">=7.3"
  10097. },
  10098. "require-dev": {
  10099. "phpunit/phpunit": "^9.3"
  10100. },
  10101. "type": "library",
  10102. "extra": {
  10103. "branch-alias": {
  10104. "dev-master": "1.0-dev"
  10105. }
  10106. },
  10107. "autoload": {
  10108. "classmap": [
  10109. "src/"
  10110. ]
  10111. },
  10112. "notification-url": "https://packagist.org/downloads/",
  10113. "license": [
  10114. "BSD-3-Clause"
  10115. ],
  10116. "authors": [
  10117. {
  10118. "name": "Sebastian Bergmann",
  10119. "email": "sebastian@phpunit.de",
  10120. "role": "lead"
  10121. }
  10122. ],
  10123. "description": "Library for counting the lines of code in PHP source code",
  10124. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10125. "support": {
  10126. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10127. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10128. },
  10129. "funding": [
  10130. {
  10131. "url": "https://github.com/sebastianbergmann",
  10132. "type": "github"
  10133. }
  10134. ],
  10135. "time": "2023-12-22T06:20:34+00:00"
  10136. },
  10137. {
  10138. "name": "sebastian/object-enumerator",
  10139. "version": "4.0.4",
  10140. "source": {
  10141. "type": "git",
  10142. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10143. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10144. },
  10145. "dist": {
  10146. "type": "zip",
  10147. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10148. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10149. "shasum": "",
  10150. "mirrors": [
  10151. {
  10152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10153. "preferred": true
  10154. }
  10155. ]
  10156. },
  10157. "require": {
  10158. "php": ">=7.3",
  10159. "sebastian/object-reflector": "^2.0",
  10160. "sebastian/recursion-context": "^4.0"
  10161. },
  10162. "require-dev": {
  10163. "phpunit/phpunit": "^9.3"
  10164. },
  10165. "type": "library",
  10166. "extra": {
  10167. "branch-alias": {
  10168. "dev-master": "4.0-dev"
  10169. }
  10170. },
  10171. "autoload": {
  10172. "classmap": [
  10173. "src/"
  10174. ]
  10175. },
  10176. "notification-url": "https://packagist.org/downloads/",
  10177. "license": [
  10178. "BSD-3-Clause"
  10179. ],
  10180. "authors": [
  10181. {
  10182. "name": "Sebastian Bergmann",
  10183. "email": "sebastian@phpunit.de"
  10184. }
  10185. ],
  10186. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10187. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10188. "support": {
  10189. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10190. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10191. },
  10192. "funding": [
  10193. {
  10194. "url": "https://github.com/sebastianbergmann",
  10195. "type": "github"
  10196. }
  10197. ],
  10198. "time": "2020-10-26T13:12:34+00:00"
  10199. },
  10200. {
  10201. "name": "sebastian/object-reflector",
  10202. "version": "2.0.4",
  10203. "source": {
  10204. "type": "git",
  10205. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10206. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10207. },
  10208. "dist": {
  10209. "type": "zip",
  10210. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10211. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10212. "shasum": "",
  10213. "mirrors": [
  10214. {
  10215. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10216. "preferred": true
  10217. }
  10218. ]
  10219. },
  10220. "require": {
  10221. "php": ">=7.3"
  10222. },
  10223. "require-dev": {
  10224. "phpunit/phpunit": "^9.3"
  10225. },
  10226. "type": "library",
  10227. "extra": {
  10228. "branch-alias": {
  10229. "dev-master": "2.0-dev"
  10230. }
  10231. },
  10232. "autoload": {
  10233. "classmap": [
  10234. "src/"
  10235. ]
  10236. },
  10237. "notification-url": "https://packagist.org/downloads/",
  10238. "license": [
  10239. "BSD-3-Clause"
  10240. ],
  10241. "authors": [
  10242. {
  10243. "name": "Sebastian Bergmann",
  10244. "email": "sebastian@phpunit.de"
  10245. }
  10246. ],
  10247. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10248. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10249. "support": {
  10250. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10251. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10252. },
  10253. "funding": [
  10254. {
  10255. "url": "https://github.com/sebastianbergmann",
  10256. "type": "github"
  10257. }
  10258. ],
  10259. "time": "2020-10-26T13:14:26+00:00"
  10260. },
  10261. {
  10262. "name": "sebastian/recursion-context",
  10263. "version": "4.0.5",
  10264. "source": {
  10265. "type": "git",
  10266. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10267. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10268. },
  10269. "dist": {
  10270. "type": "zip",
  10271. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10272. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10273. "shasum": "",
  10274. "mirrors": [
  10275. {
  10276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10277. "preferred": true
  10278. }
  10279. ]
  10280. },
  10281. "require": {
  10282. "php": ">=7.3"
  10283. },
  10284. "require-dev": {
  10285. "phpunit/phpunit": "^9.3"
  10286. },
  10287. "type": "library",
  10288. "extra": {
  10289. "branch-alias": {
  10290. "dev-master": "4.0-dev"
  10291. }
  10292. },
  10293. "autoload": {
  10294. "classmap": [
  10295. "src/"
  10296. ]
  10297. },
  10298. "notification-url": "https://packagist.org/downloads/",
  10299. "license": [
  10300. "BSD-3-Clause"
  10301. ],
  10302. "authors": [
  10303. {
  10304. "name": "Sebastian Bergmann",
  10305. "email": "sebastian@phpunit.de"
  10306. },
  10307. {
  10308. "name": "Jeff Welch",
  10309. "email": "whatthejeff@gmail.com"
  10310. },
  10311. {
  10312. "name": "Adam Harvey",
  10313. "email": "aharvey@php.net"
  10314. }
  10315. ],
  10316. "description": "Provides functionality to recursively process PHP variables",
  10317. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10318. "support": {
  10319. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10320. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10321. },
  10322. "funding": [
  10323. {
  10324. "url": "https://github.com/sebastianbergmann",
  10325. "type": "github"
  10326. }
  10327. ],
  10328. "time": "2023-02-03T06:07:39+00:00"
  10329. },
  10330. {
  10331. "name": "sebastian/resource-operations",
  10332. "version": "3.0.4",
  10333. "source": {
  10334. "type": "git",
  10335. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10336. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10337. },
  10338. "dist": {
  10339. "type": "zip",
  10340. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10341. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10342. "shasum": "",
  10343. "mirrors": [
  10344. {
  10345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10346. "preferred": true
  10347. }
  10348. ]
  10349. },
  10350. "require": {
  10351. "php": ">=7.3"
  10352. },
  10353. "require-dev": {
  10354. "phpunit/phpunit": "^9.0"
  10355. },
  10356. "type": "library",
  10357. "extra": {
  10358. "branch-alias": {
  10359. "dev-main": "3.0-dev"
  10360. }
  10361. },
  10362. "autoload": {
  10363. "classmap": [
  10364. "src/"
  10365. ]
  10366. },
  10367. "notification-url": "https://packagist.org/downloads/",
  10368. "license": [
  10369. "BSD-3-Clause"
  10370. ],
  10371. "authors": [
  10372. {
  10373. "name": "Sebastian Bergmann",
  10374. "email": "sebastian@phpunit.de"
  10375. }
  10376. ],
  10377. "description": "Provides a list of PHP built-in functions that operate on resources",
  10378. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10379. "support": {
  10380. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10381. },
  10382. "funding": [
  10383. {
  10384. "url": "https://github.com/sebastianbergmann",
  10385. "type": "github"
  10386. }
  10387. ],
  10388. "abandoned": true,
  10389. "time": "2024-03-14T16:00:52+00:00"
  10390. },
  10391. {
  10392. "name": "sebastian/type",
  10393. "version": "3.2.1",
  10394. "source": {
  10395. "type": "git",
  10396. "url": "https://github.com/sebastianbergmann/type.git",
  10397. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10398. },
  10399. "dist": {
  10400. "type": "zip",
  10401. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10402. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10403. "shasum": "",
  10404. "mirrors": [
  10405. {
  10406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10407. "preferred": true
  10408. }
  10409. ]
  10410. },
  10411. "require": {
  10412. "php": ">=7.3"
  10413. },
  10414. "require-dev": {
  10415. "phpunit/phpunit": "^9.5"
  10416. },
  10417. "type": "library",
  10418. "extra": {
  10419. "branch-alias": {
  10420. "dev-master": "3.2-dev"
  10421. }
  10422. },
  10423. "autoload": {
  10424. "classmap": [
  10425. "src/"
  10426. ]
  10427. },
  10428. "notification-url": "https://packagist.org/downloads/",
  10429. "license": [
  10430. "BSD-3-Clause"
  10431. ],
  10432. "authors": [
  10433. {
  10434. "name": "Sebastian Bergmann",
  10435. "email": "sebastian@phpunit.de",
  10436. "role": "lead"
  10437. }
  10438. ],
  10439. "description": "Collection of value objects that represent the types of the PHP type system",
  10440. "homepage": "https://github.com/sebastianbergmann/type",
  10441. "support": {
  10442. "issues": "https://github.com/sebastianbergmann/type/issues",
  10443. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10444. },
  10445. "funding": [
  10446. {
  10447. "url": "https://github.com/sebastianbergmann",
  10448. "type": "github"
  10449. }
  10450. ],
  10451. "time": "2023-02-03T06:13:03+00:00"
  10452. },
  10453. {
  10454. "name": "sebastian/version",
  10455. "version": "3.0.2",
  10456. "source": {
  10457. "type": "git",
  10458. "url": "https://github.com/sebastianbergmann/version.git",
  10459. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10460. },
  10461. "dist": {
  10462. "type": "zip",
  10463. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10464. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10465. "shasum": "",
  10466. "mirrors": [
  10467. {
  10468. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10469. "preferred": true
  10470. }
  10471. ]
  10472. },
  10473. "require": {
  10474. "php": ">=7.3"
  10475. },
  10476. "type": "library",
  10477. "extra": {
  10478. "branch-alias": {
  10479. "dev-master": "3.0-dev"
  10480. }
  10481. },
  10482. "autoload": {
  10483. "classmap": [
  10484. "src/"
  10485. ]
  10486. },
  10487. "notification-url": "https://packagist.org/downloads/",
  10488. "license": [
  10489. "BSD-3-Clause"
  10490. ],
  10491. "authors": [
  10492. {
  10493. "name": "Sebastian Bergmann",
  10494. "email": "sebastian@phpunit.de",
  10495. "role": "lead"
  10496. }
  10497. ],
  10498. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10499. "homepage": "https://github.com/sebastianbergmann/version",
  10500. "support": {
  10501. "issues": "https://github.com/sebastianbergmann/version/issues",
  10502. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10503. },
  10504. "funding": [
  10505. {
  10506. "url": "https://github.com/sebastianbergmann",
  10507. "type": "github"
  10508. }
  10509. ],
  10510. "time": "2020-09-28T06:39:44+00:00"
  10511. },
  10512. {
  10513. "name": "theseer/tokenizer",
  10514. "version": "1.2.3",
  10515. "source": {
  10516. "type": "git",
  10517. "url": "https://github.com/theseer/tokenizer.git",
  10518. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10519. },
  10520. "dist": {
  10521. "type": "zip",
  10522. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10523. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10524. "shasum": "",
  10525. "mirrors": [
  10526. {
  10527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10528. "preferred": true
  10529. }
  10530. ]
  10531. },
  10532. "require": {
  10533. "ext-dom": "*",
  10534. "ext-tokenizer": "*",
  10535. "ext-xmlwriter": "*",
  10536. "php": "^7.2 || ^8.0"
  10537. },
  10538. "type": "library",
  10539. "autoload": {
  10540. "classmap": [
  10541. "src/"
  10542. ]
  10543. },
  10544. "notification-url": "https://packagist.org/downloads/",
  10545. "license": [
  10546. "BSD-3-Clause"
  10547. ],
  10548. "authors": [
  10549. {
  10550. "name": "Arne Blankerts",
  10551. "email": "arne@blankerts.de",
  10552. "role": "Developer"
  10553. }
  10554. ],
  10555. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10556. "support": {
  10557. "issues": "https://github.com/theseer/tokenizer/issues",
  10558. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10559. },
  10560. "funding": [
  10561. {
  10562. "url": "https://github.com/theseer",
  10563. "type": "github"
  10564. }
  10565. ],
  10566. "time": "2024-03-03T12:36:25+00:00"
  10567. }
  10568. ],
  10569. "aliases": [],
  10570. "minimum-stability": "dev",
  10571. "stability-flags": {},
  10572. "prefer-stable": true,
  10573. "prefer-lowest": false,
  10574. "platform": {
  10575. "php": "^7.3|^8.0"
  10576. },
  10577. "platform-dev": {},
  10578. "plugin-api-version": "2.6.0"
  10579. }