composer.lock 371 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264
  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": "ed42257c340ab4839682e5b545073cf6",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.2|^8.0",
  31. "symfony/http-foundation": "^4|^5|^6",
  32. "symfony/http-kernel": "^4|^5|^6"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^7|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  68. },
  69. "time": "2022-01-18T09:12:03+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.9.3",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  82. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "ext-json": "*",
  93. "php": "^7.1 || ^8.0"
  94. },
  95. "require-dev": {
  96. "php-coveralls/php-coveralls": "^2.2",
  97. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  98. "vimeo/psalm": "4.9.2"
  99. },
  100. "type": "library",
  101. "autoload": {
  102. "psr-4": {
  103. "Brick\\Math\\": "src/"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "MIT"
  109. ],
  110. "description": "Arbitrary-precision arithmetic library",
  111. "keywords": [
  112. "Arbitrary-precision",
  113. "BigInteger",
  114. "BigRational",
  115. "arithmetic",
  116. "bigdecimal",
  117. "bignum",
  118. "brick",
  119. "math"
  120. ],
  121. "support": {
  122. "issues": "https://github.com/brick/math/issues",
  123. "source": "https://github.com/brick/math/tree/0.9.3"
  124. },
  125. "funding": [
  126. {
  127. "url": "https://github.com/BenMorel",
  128. "type": "github"
  129. },
  130. {
  131. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  132. "type": "tidelift"
  133. }
  134. ],
  135. "time": "2021-08-15T20:50:18+00:00"
  136. },
  137. {
  138. "name": "carbonphp/carbon-doctrine-types",
  139. "version": "2.1.0",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  143. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  148. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  149. "shasum": "",
  150. "mirrors": [
  151. {
  152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  153. "preferred": true
  154. }
  155. ]
  156. },
  157. "require": {
  158. "php": "^7.4 || ^8.0"
  159. },
  160. "conflict": {
  161. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  162. },
  163. "require-dev": {
  164. "doctrine/dbal": "^3.7.0",
  165. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  166. "phpunit/phpunit": "^10.3"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "KyleKatarn",
  181. "email": "kylekatarnls@gmail.com"
  182. }
  183. ],
  184. "description": "Types to use Carbon in Doctrine",
  185. "keywords": [
  186. "carbon",
  187. "date",
  188. "datetime",
  189. "doctrine",
  190. "time"
  191. ],
  192. "support": {
  193. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  194. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  195. },
  196. "funding": [
  197. {
  198. "url": "https://github.com/kylekatarnls",
  199. "type": "github"
  200. },
  201. {
  202. "url": "https://opencollective.com/Carbon",
  203. "type": "open_collective"
  204. },
  205. {
  206. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  207. "type": "tidelift"
  208. }
  209. ],
  210. "time": "2023-12-11T17:09:12+00:00"
  211. },
  212. {
  213. "name": "dflydev/dot-access-data",
  214. "version": "v3.0.2",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  218. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  223. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  224. "shasum": "",
  225. "mirrors": [
  226. {
  227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  228. "preferred": true
  229. }
  230. ]
  231. },
  232. "require": {
  233. "php": "^7.1 || ^8.0"
  234. },
  235. "require-dev": {
  236. "phpstan/phpstan": "^0.12.42",
  237. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  238. "scrutinizer/ocular": "1.6.0",
  239. "squizlabs/php_codesniffer": "^3.5",
  240. "vimeo/psalm": "^4.0.0"
  241. },
  242. "type": "library",
  243. "extra": {
  244. "branch-alias": {
  245. "dev-main": "3.x-dev"
  246. }
  247. },
  248. "autoload": {
  249. "psr-4": {
  250. "Dflydev\\DotAccessData\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "MIT"
  256. ],
  257. "authors": [
  258. {
  259. "name": "Dragonfly Development Inc.",
  260. "email": "info@dflydev.com",
  261. "homepage": "http://dflydev.com"
  262. },
  263. {
  264. "name": "Beau Simensen",
  265. "email": "beau@dflydev.com",
  266. "homepage": "http://beausimensen.com"
  267. },
  268. {
  269. "name": "Carlos Frutos",
  270. "email": "carlos@kiwing.it",
  271. "homepage": "https://github.com/cfrutos"
  272. },
  273. {
  274. "name": "Colin O'Dell",
  275. "email": "colinodell@gmail.com",
  276. "homepage": "https://www.colinodell.com"
  277. }
  278. ],
  279. "description": "Given a deep data structure, access data by dot notation.",
  280. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  281. "keywords": [
  282. "access",
  283. "data",
  284. "dot",
  285. "notation"
  286. ],
  287. "support": {
  288. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  289. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  290. },
  291. "time": "2022-10-27T11:44:00+00:00"
  292. },
  293. {
  294. "name": "doctrine/inflector",
  295. "version": "2.0.8",
  296. "source": {
  297. "type": "git",
  298. "url": "https://github.com/doctrine/inflector.git",
  299. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  300. },
  301. "dist": {
  302. "type": "zip",
  303. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  304. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  305. "shasum": "",
  306. "mirrors": [
  307. {
  308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  309. "preferred": true
  310. }
  311. ]
  312. },
  313. "require": {
  314. "php": "^7.2 || ^8.0"
  315. },
  316. "require-dev": {
  317. "doctrine/coding-standard": "^11.0",
  318. "phpstan/phpstan": "^1.8",
  319. "phpstan/phpstan-phpunit": "^1.1",
  320. "phpstan/phpstan-strict-rules": "^1.3",
  321. "phpunit/phpunit": "^8.5 || ^9.5",
  322. "vimeo/psalm": "^4.25 || ^5.4"
  323. },
  324. "type": "library",
  325. "autoload": {
  326. "psr-4": {
  327. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  328. }
  329. },
  330. "notification-url": "https://packagist.org/downloads/",
  331. "license": [
  332. "MIT"
  333. ],
  334. "authors": [
  335. {
  336. "name": "Guilherme Blanco",
  337. "email": "guilhermeblanco@gmail.com"
  338. },
  339. {
  340. "name": "Roman Borschel",
  341. "email": "roman@code-factory.org"
  342. },
  343. {
  344. "name": "Benjamin Eberlei",
  345. "email": "kontakt@beberlei.de"
  346. },
  347. {
  348. "name": "Jonathan Wage",
  349. "email": "jonwage@gmail.com"
  350. },
  351. {
  352. "name": "Johannes Schmitt",
  353. "email": "schmittjoh@gmail.com"
  354. }
  355. ],
  356. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  357. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  358. "keywords": [
  359. "inflection",
  360. "inflector",
  361. "lowercase",
  362. "manipulation",
  363. "php",
  364. "plural",
  365. "singular",
  366. "strings",
  367. "uppercase",
  368. "words"
  369. ],
  370. "support": {
  371. "issues": "https://github.com/doctrine/inflector/issues",
  372. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  373. },
  374. "funding": [
  375. {
  376. "url": "https://www.doctrine-project.org/sponsorship.html",
  377. "type": "custom"
  378. },
  379. {
  380. "url": "https://www.patreon.com/phpdoctrine",
  381. "type": "patreon"
  382. },
  383. {
  384. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  385. "type": "tidelift"
  386. }
  387. ],
  388. "time": "2023-06-16T13:40:37+00:00"
  389. },
  390. {
  391. "name": "doctrine/lexer",
  392. "version": "1.2.3",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/doctrine/lexer.git",
  396. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  401. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  402. "shasum": ""
  403. },
  404. "require": {
  405. "php": "^7.1 || ^8.0"
  406. },
  407. "require-dev": {
  408. "doctrine/coding-standard": "^9.0",
  409. "phpstan/phpstan": "^1.3",
  410. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  411. "vimeo/psalm": "^4.11"
  412. },
  413. "type": "library",
  414. "autoload": {
  415. "psr-4": {
  416. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  417. }
  418. },
  419. "notification-url": "https://packagist.org/downloads/",
  420. "license": [
  421. "MIT"
  422. ],
  423. "authors": [
  424. {
  425. "name": "Guilherme Blanco",
  426. "email": "guilhermeblanco@gmail.com"
  427. },
  428. {
  429. "name": "Roman Borschel",
  430. "email": "roman@code-factory.org"
  431. },
  432. {
  433. "name": "Johannes Schmitt",
  434. "email": "schmittjoh@gmail.com"
  435. }
  436. ],
  437. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  438. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  439. "keywords": [
  440. "annotations",
  441. "docblock",
  442. "lexer",
  443. "parser",
  444. "php"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/lexer/issues",
  448. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2022-02-28T11:07:21+00:00"
  465. },
  466. {
  467. "name": "dragonmantank/cron-expression",
  468. "version": "v3.3.3",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/dragonmantank/cron-expression.git",
  472. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  477. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  478. "shasum": "",
  479. "mirrors": [
  480. {
  481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  482. "preferred": true
  483. }
  484. ]
  485. },
  486. "require": {
  487. "php": "^7.2|^8.0",
  488. "webmozart/assert": "^1.0"
  489. },
  490. "replace": {
  491. "mtdowling/cron-expression": "^1.0"
  492. },
  493. "require-dev": {
  494. "phpstan/extension-installer": "^1.0",
  495. "phpstan/phpstan": "^1.0",
  496. "phpstan/phpstan-webmozart-assert": "^1.0",
  497. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  498. },
  499. "type": "library",
  500. "autoload": {
  501. "psr-4": {
  502. "Cron\\": "src/Cron/"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Chris Tankersley",
  512. "email": "chris@ctankersley.com",
  513. "homepage": "https://github.com/dragonmantank"
  514. }
  515. ],
  516. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  517. "keywords": [
  518. "cron",
  519. "schedule"
  520. ],
  521. "support": {
  522. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  523. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  524. },
  525. "funding": [
  526. {
  527. "url": "https://github.com/dragonmantank",
  528. "type": "github"
  529. }
  530. ],
  531. "time": "2023-08-10T19:36:49+00:00"
  532. },
  533. {
  534. "name": "easywechat-composer/easywechat-composer",
  535. "version": "1.4.1",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/mingyoung/easywechat-composer.git",
  539. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  544. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "composer-plugin-api": "^1.0 || ^2.0",
  549. "php": ">=7.0"
  550. },
  551. "require-dev": {
  552. "composer/composer": "^1.0 || ^2.0",
  553. "phpunit/phpunit": "^6.5 || ^7.0"
  554. },
  555. "type": "composer-plugin",
  556. "extra": {
  557. "class": "EasyWeChatComposer\\Plugin"
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "EasyWeChatComposer\\": "src/"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "MIT"
  567. ],
  568. "authors": [
  569. {
  570. "name": "张铭阳",
  571. "email": "mingyoungcheung@gmail.com"
  572. }
  573. ],
  574. "description": "The composer plugin for EasyWeChat",
  575. "support": {
  576. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  577. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  578. },
  579. "time": "2021-07-05T04:03:22+00:00"
  580. },
  581. {
  582. "name": "egulias/email-validator",
  583. "version": "2.1.25",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/egulias/EmailValidator.git",
  587. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  592. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  593. "shasum": ""
  594. },
  595. "require": {
  596. "doctrine/lexer": "^1.0.1",
  597. "php": ">=5.5",
  598. "symfony/polyfill-intl-idn": "^1.10"
  599. },
  600. "require-dev": {
  601. "dominicsayers/isemail": "^3.0.7",
  602. "phpunit/phpunit": "^4.8.36|^7.5.15",
  603. "satooshi/php-coveralls": "^1.0.1"
  604. },
  605. "suggest": {
  606. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  607. },
  608. "type": "library",
  609. "extra": {
  610. "branch-alias": {
  611. "dev-master": "2.1.x-dev"
  612. }
  613. },
  614. "autoload": {
  615. "psr-4": {
  616. "Egulias\\EmailValidator\\": "src"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Eduardo Gulias Davis"
  626. }
  627. ],
  628. "description": "A library for validating emails against several RFCs",
  629. "homepage": "https://github.com/egulias/EmailValidator",
  630. "keywords": [
  631. "email",
  632. "emailvalidation",
  633. "emailvalidator",
  634. "validation",
  635. "validator"
  636. ],
  637. "support": {
  638. "issues": "https://github.com/egulias/EmailValidator/issues",
  639. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  640. },
  641. "funding": [
  642. {
  643. "url": "https://github.com/egulias",
  644. "type": "github"
  645. }
  646. ],
  647. "time": "2020-12-29T14:50:06+00:00"
  648. },
  649. {
  650. "name": "ezyang/htmlpurifier",
  651. "version": "v4.16.0",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/ezyang/htmlpurifier.git",
  655. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  660. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  661. "shasum": "",
  662. "mirrors": [
  663. {
  664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  665. "preferred": true
  666. }
  667. ]
  668. },
  669. "require": {
  670. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  671. },
  672. "require-dev": {
  673. "cerdic/css-tidy": "^1.7 || ^2.0",
  674. "simpletest/simpletest": "dev-master"
  675. },
  676. "suggest": {
  677. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  678. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  679. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  680. "ext-tidy": "Used for pretty-printing HTML"
  681. },
  682. "type": "library",
  683. "autoload": {
  684. "files": [
  685. "library/HTMLPurifier.composer.php"
  686. ],
  687. "psr-0": {
  688. "HTMLPurifier": "library/"
  689. },
  690. "exclude-from-classmap": [
  691. "/library/HTMLPurifier/Language/"
  692. ]
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "LGPL-2.1-or-later"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Edward Z. Yang",
  701. "email": "admin@htmlpurifier.org",
  702. "homepage": "http://ezyang.com"
  703. }
  704. ],
  705. "description": "Standards compliant HTML filter written in PHP",
  706. "homepage": "http://htmlpurifier.org/",
  707. "keywords": [
  708. "html"
  709. ],
  710. "support": {
  711. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  712. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  713. },
  714. "time": "2022-09-18T07:06:19+00:00"
  715. },
  716. {
  717. "name": "fideloper/proxy",
  718. "version": "4.4.2",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/fideloper/TrustedProxy.git",
  722. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  727. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  728. "shasum": "",
  729. "mirrors": [
  730. {
  731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  732. "preferred": true
  733. }
  734. ]
  735. },
  736. "require": {
  737. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  738. "php": ">=5.4.0"
  739. },
  740. "require-dev": {
  741. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  742. "mockery/mockery": "^1.0",
  743. "phpunit/phpunit": "^8.5.8|^9.3.3"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "laravel": {
  748. "providers": [
  749. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  750. ]
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Fideloper\\Proxy\\": "src/"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Chris Fidao",
  765. "email": "fideloper@gmail.com"
  766. }
  767. ],
  768. "description": "Set trusted proxies for Laravel",
  769. "keywords": [
  770. "load balancing",
  771. "proxy",
  772. "trusted proxy"
  773. ],
  774. "support": {
  775. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  776. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  777. },
  778. "time": "2022-02-09T13:33:34+00:00"
  779. },
  780. {
  781. "name": "firebase/php-jwt",
  782. "version": "v6.10.0",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/firebase/php-jwt.git",
  786. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  791. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  792. "shasum": ""
  793. },
  794. "require": {
  795. "php": "^7.4||^8.0"
  796. },
  797. "require-dev": {
  798. "guzzlehttp/guzzle": "^6.5||^7.4",
  799. "phpspec/prophecy-phpunit": "^2.0",
  800. "phpunit/phpunit": "^9.5",
  801. "psr/cache": "^1.0||^2.0",
  802. "psr/http-client": "^1.0",
  803. "psr/http-factory": "^1.0"
  804. },
  805. "suggest": {
  806. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  807. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  808. },
  809. "type": "library",
  810. "autoload": {
  811. "psr-4": {
  812. "Firebase\\JWT\\": "src"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "BSD-3-Clause"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Neuman Vong",
  822. "email": "neuman+pear@twilio.com",
  823. "role": "Developer"
  824. },
  825. {
  826. "name": "Anant Narayanan",
  827. "email": "anant@php.net",
  828. "role": "Developer"
  829. }
  830. ],
  831. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  832. "homepage": "https://github.com/firebase/php-jwt",
  833. "keywords": [
  834. "jwt",
  835. "php"
  836. ],
  837. "support": {
  838. "issues": "https://github.com/firebase/php-jwt/issues",
  839. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  840. },
  841. "time": "2023-12-01T16:26:39+00:00"
  842. },
  843. {
  844. "name": "fruitcake/laravel-cors",
  845. "version": "v2.2.0",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/fruitcake/laravel-cors.git",
  849. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  854. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  855. "shasum": "",
  856. "mirrors": [
  857. {
  858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  859. "preferred": true
  860. }
  861. ]
  862. },
  863. "require": {
  864. "asm89/stack-cors": "^2.0.1",
  865. "illuminate/contracts": "^6|^7|^8|^9",
  866. "illuminate/support": "^6|^7|^8|^9",
  867. "php": ">=7.2"
  868. },
  869. "require-dev": {
  870. "laravel/framework": "^6|^7.24|^8",
  871. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  872. "phpunit/phpunit": "^6|^7|^8|^9",
  873. "squizlabs/php_codesniffer": "^3.5"
  874. },
  875. "type": "library",
  876. "extra": {
  877. "branch-alias": {
  878. "dev-master": "2.1-dev"
  879. },
  880. "laravel": {
  881. "providers": [
  882. "Fruitcake\\Cors\\CorsServiceProvider"
  883. ]
  884. }
  885. },
  886. "autoload": {
  887. "psr-4": {
  888. "Fruitcake\\Cors\\": "src/"
  889. }
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Fruitcake",
  898. "homepage": "https://fruitcake.nl"
  899. },
  900. {
  901. "name": "Barry vd. Heuvel",
  902. "email": "barryvdh@gmail.com"
  903. }
  904. ],
  905. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  906. "keywords": [
  907. "api",
  908. "cors",
  909. "crossdomain",
  910. "laravel"
  911. ],
  912. "support": {
  913. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  914. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  915. },
  916. "funding": [
  917. {
  918. "url": "https://fruitcake.nl",
  919. "type": "custom"
  920. },
  921. {
  922. "url": "https://github.com/barryvdh",
  923. "type": "github"
  924. }
  925. ],
  926. "abandoned": true,
  927. "time": "2022-02-23T14:25:13+00:00"
  928. },
  929. {
  930. "name": "graham-campbell/manager",
  931. "version": "v4.7.0",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  935. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  940. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  941. "shasum": "",
  942. "mirrors": [
  943. {
  944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  945. "preferred": true
  946. }
  947. ]
  948. },
  949. "require": {
  950. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  951. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  952. "php": "^7.1.3 || ^8.0"
  953. },
  954. "require-dev": {
  955. "graham-campbell/analyzer": "^2.4 || ^3.0",
  956. "graham-campbell/testbench-core": "^3.4",
  957. "mockery/mockery": "^1.3.1",
  958. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  959. },
  960. "type": "library",
  961. "autoload": {
  962. "psr-4": {
  963. "GrahamCampbell\\Manager\\": "src/"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Graham Campbell",
  973. "email": "hello@gjcampbell.co.uk",
  974. "homepage": "https://github.com/GrahamCampbell"
  975. }
  976. ],
  977. "description": "Manager Provides Some Manager Functionality For Laravel",
  978. "keywords": [
  979. "Graham Campbell",
  980. "GrahamCampbell",
  981. "Laravel Manager",
  982. "Laravel-Manager",
  983. "connector",
  984. "framework",
  985. "interface",
  986. "laravel",
  987. "manager"
  988. ],
  989. "support": {
  990. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  991. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  992. },
  993. "funding": [
  994. {
  995. "url": "https://github.com/GrahamCampbell",
  996. "type": "github"
  997. },
  998. {
  999. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1000. "type": "tidelift"
  1001. }
  1002. ],
  1003. "time": "2022-01-24T01:59:19+00:00"
  1004. },
  1005. {
  1006. "name": "graham-campbell/result-type",
  1007. "version": "v1.1.2",
  1008. "source": {
  1009. "type": "git",
  1010. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1011. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1012. },
  1013. "dist": {
  1014. "type": "zip",
  1015. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1016. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1017. "shasum": "",
  1018. "mirrors": [
  1019. {
  1020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1021. "preferred": true
  1022. }
  1023. ]
  1024. },
  1025. "require": {
  1026. "php": "^7.2.5 || ^8.0",
  1027. "phpoption/phpoption": "^1.9.2"
  1028. },
  1029. "require-dev": {
  1030. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1031. },
  1032. "type": "library",
  1033. "autoload": {
  1034. "psr-4": {
  1035. "GrahamCampbell\\ResultType\\": "src/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "Graham Campbell",
  1045. "email": "hello@gjcampbell.co.uk",
  1046. "homepage": "https://github.com/GrahamCampbell"
  1047. }
  1048. ],
  1049. "description": "An Implementation Of The Result Type",
  1050. "keywords": [
  1051. "Graham Campbell",
  1052. "GrahamCampbell",
  1053. "Result Type",
  1054. "Result-Type",
  1055. "result"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1059. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1060. },
  1061. "funding": [
  1062. {
  1063. "url": "https://github.com/GrahamCampbell",
  1064. "type": "github"
  1065. },
  1066. {
  1067. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1068. "type": "tidelift"
  1069. }
  1070. ],
  1071. "time": "2023-11-12T22:16:48+00:00"
  1072. },
  1073. {
  1074. "name": "guzzlehttp/guzzle",
  1075. "version": "7.8.1",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/guzzle/guzzle.git",
  1079. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1084. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1085. "shasum": "",
  1086. "mirrors": [
  1087. {
  1088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1089. "preferred": true
  1090. }
  1091. ]
  1092. },
  1093. "require": {
  1094. "ext-json": "*",
  1095. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1096. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1097. "php": "^7.2.5 || ^8.0",
  1098. "psr/http-client": "^1.0",
  1099. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1100. },
  1101. "provide": {
  1102. "psr/http-client-implementation": "1.0"
  1103. },
  1104. "require-dev": {
  1105. "bamarni/composer-bin-plugin": "^1.8.2",
  1106. "ext-curl": "*",
  1107. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1108. "php-http/message-factory": "^1.1",
  1109. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1110. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1111. },
  1112. "suggest": {
  1113. "ext-curl": "Required for CURL handler support",
  1114. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1115. "psr/log": "Required for using the Log middleware"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "bamarni-bin": {
  1120. "bin-links": true,
  1121. "forward-command": false
  1122. }
  1123. },
  1124. "autoload": {
  1125. "files": [
  1126. "src/functions_include.php"
  1127. ],
  1128. "psr-4": {
  1129. "GuzzleHttp\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Graham Campbell",
  1139. "email": "hello@gjcampbell.co.uk",
  1140. "homepage": "https://github.com/GrahamCampbell"
  1141. },
  1142. {
  1143. "name": "Michael Dowling",
  1144. "email": "mtdowling@gmail.com",
  1145. "homepage": "https://github.com/mtdowling"
  1146. },
  1147. {
  1148. "name": "Jeremy Lindblom",
  1149. "email": "jeremeamia@gmail.com",
  1150. "homepage": "https://github.com/jeremeamia"
  1151. },
  1152. {
  1153. "name": "George Mponos",
  1154. "email": "gmponos@gmail.com",
  1155. "homepage": "https://github.com/gmponos"
  1156. },
  1157. {
  1158. "name": "Tobias Nyholm",
  1159. "email": "tobias.nyholm@gmail.com",
  1160. "homepage": "https://github.com/Nyholm"
  1161. },
  1162. {
  1163. "name": "Márk Sági-Kazár",
  1164. "email": "mark.sagikazar@gmail.com",
  1165. "homepage": "https://github.com/sagikazarmark"
  1166. },
  1167. {
  1168. "name": "Tobias Schultze",
  1169. "email": "webmaster@tubo-world.de",
  1170. "homepage": "https://github.com/Tobion"
  1171. }
  1172. ],
  1173. "description": "Guzzle is a PHP HTTP client library",
  1174. "keywords": [
  1175. "client",
  1176. "curl",
  1177. "framework",
  1178. "http",
  1179. "http client",
  1180. "psr-18",
  1181. "psr-7",
  1182. "rest",
  1183. "web service"
  1184. ],
  1185. "support": {
  1186. "issues": "https://github.com/guzzle/guzzle/issues",
  1187. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1188. },
  1189. "funding": [
  1190. {
  1191. "url": "https://github.com/GrahamCampbell",
  1192. "type": "github"
  1193. },
  1194. {
  1195. "url": "https://github.com/Nyholm",
  1196. "type": "github"
  1197. },
  1198. {
  1199. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1200. "type": "tidelift"
  1201. }
  1202. ],
  1203. "time": "2023-12-03T20:35:24+00:00"
  1204. },
  1205. {
  1206. "name": "guzzlehttp/promises",
  1207. "version": "2.0.1",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/guzzle/promises.git",
  1211. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1216. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1217. "shasum": "",
  1218. "mirrors": [
  1219. {
  1220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1221. "preferred": true
  1222. }
  1223. ]
  1224. },
  1225. "require": {
  1226. "php": "^7.2.5 || ^8.0"
  1227. },
  1228. "require-dev": {
  1229. "bamarni/composer-bin-plugin": "^1.8.1",
  1230. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "bamarni-bin": {
  1235. "bin-links": true,
  1236. "forward-command": false
  1237. }
  1238. },
  1239. "autoload": {
  1240. "psr-4": {
  1241. "GuzzleHttp\\Promise\\": "src/"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Graham Campbell",
  1251. "email": "hello@gjcampbell.co.uk",
  1252. "homepage": "https://github.com/GrahamCampbell"
  1253. },
  1254. {
  1255. "name": "Michael Dowling",
  1256. "email": "mtdowling@gmail.com",
  1257. "homepage": "https://github.com/mtdowling"
  1258. },
  1259. {
  1260. "name": "Tobias Nyholm",
  1261. "email": "tobias.nyholm@gmail.com",
  1262. "homepage": "https://github.com/Nyholm"
  1263. },
  1264. {
  1265. "name": "Tobias Schultze",
  1266. "email": "webmaster@tubo-world.de",
  1267. "homepage": "https://github.com/Tobion"
  1268. }
  1269. ],
  1270. "description": "Guzzle promises library",
  1271. "keywords": [
  1272. "promise"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/guzzle/promises/issues",
  1276. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1277. },
  1278. "funding": [
  1279. {
  1280. "url": "https://github.com/GrahamCampbell",
  1281. "type": "github"
  1282. },
  1283. {
  1284. "url": "https://github.com/Nyholm",
  1285. "type": "github"
  1286. },
  1287. {
  1288. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1289. "type": "tidelift"
  1290. }
  1291. ],
  1292. "time": "2023-08-03T15:11:55+00:00"
  1293. },
  1294. {
  1295. "name": "guzzlehttp/psr7",
  1296. "version": "2.6.2",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/guzzle/psr7.git",
  1300. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1305. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1306. "shasum": "",
  1307. "mirrors": [
  1308. {
  1309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1310. "preferred": true
  1311. }
  1312. ]
  1313. },
  1314. "require": {
  1315. "php": "^7.2.5 || ^8.0",
  1316. "psr/http-factory": "^1.0",
  1317. "psr/http-message": "^1.1 || ^2.0",
  1318. "ralouphie/getallheaders": "^3.0"
  1319. },
  1320. "provide": {
  1321. "psr/http-factory-implementation": "1.0",
  1322. "psr/http-message-implementation": "1.0"
  1323. },
  1324. "require-dev": {
  1325. "bamarni/composer-bin-plugin": "^1.8.2",
  1326. "http-interop/http-factory-tests": "^0.9",
  1327. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1328. },
  1329. "suggest": {
  1330. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1331. },
  1332. "type": "library",
  1333. "extra": {
  1334. "bamarni-bin": {
  1335. "bin-links": true,
  1336. "forward-command": false
  1337. }
  1338. },
  1339. "autoload": {
  1340. "psr-4": {
  1341. "GuzzleHttp\\Psr7\\": "src/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Graham Campbell",
  1351. "email": "hello@gjcampbell.co.uk",
  1352. "homepage": "https://github.com/GrahamCampbell"
  1353. },
  1354. {
  1355. "name": "Michael Dowling",
  1356. "email": "mtdowling@gmail.com",
  1357. "homepage": "https://github.com/mtdowling"
  1358. },
  1359. {
  1360. "name": "George Mponos",
  1361. "email": "gmponos@gmail.com",
  1362. "homepage": "https://github.com/gmponos"
  1363. },
  1364. {
  1365. "name": "Tobias Nyholm",
  1366. "email": "tobias.nyholm@gmail.com",
  1367. "homepage": "https://github.com/Nyholm"
  1368. },
  1369. {
  1370. "name": "Márk Sági-Kazár",
  1371. "email": "mark.sagikazar@gmail.com",
  1372. "homepage": "https://github.com/sagikazarmark"
  1373. },
  1374. {
  1375. "name": "Tobias Schultze",
  1376. "email": "webmaster@tubo-world.de",
  1377. "homepage": "https://github.com/Tobion"
  1378. },
  1379. {
  1380. "name": "Márk Sági-Kazár",
  1381. "email": "mark.sagikazar@gmail.com",
  1382. "homepage": "https://sagikazarmark.hu"
  1383. }
  1384. ],
  1385. "description": "PSR-7 message implementation that also provides common utility methods",
  1386. "keywords": [
  1387. "http",
  1388. "message",
  1389. "psr-7",
  1390. "request",
  1391. "response",
  1392. "stream",
  1393. "uri",
  1394. "url"
  1395. ],
  1396. "support": {
  1397. "issues": "https://github.com/guzzle/psr7/issues",
  1398. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1399. },
  1400. "funding": [
  1401. {
  1402. "url": "https://github.com/GrahamCampbell",
  1403. "type": "github"
  1404. },
  1405. {
  1406. "url": "https://github.com/Nyholm",
  1407. "type": "github"
  1408. },
  1409. {
  1410. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1411. "type": "tidelift"
  1412. }
  1413. ],
  1414. "time": "2023-12-03T20:05:35+00:00"
  1415. },
  1416. {
  1417. "name": "hashids/hashids",
  1418. "version": "4.1.0",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/vinkla/hashids.git",
  1422. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1427. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1428. "shasum": "",
  1429. "mirrors": [
  1430. {
  1431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1432. "preferred": true
  1433. }
  1434. ]
  1435. },
  1436. "require": {
  1437. "ext-mbstring": "*",
  1438. "php": "^7.2 || ^8.0"
  1439. },
  1440. "require-dev": {
  1441. "phpunit/phpunit": "^8.0 || ^9.4",
  1442. "squizlabs/php_codesniffer": "^3.5"
  1443. },
  1444. "suggest": {
  1445. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1446. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1447. },
  1448. "type": "library",
  1449. "extra": {
  1450. "branch-alias": {
  1451. "dev-master": "4.1-dev"
  1452. }
  1453. },
  1454. "autoload": {
  1455. "psr-4": {
  1456. "Hashids\\": "src/"
  1457. }
  1458. },
  1459. "notification-url": "https://packagist.org/downloads/",
  1460. "license": [
  1461. "MIT"
  1462. ],
  1463. "authors": [
  1464. {
  1465. "name": "Ivan Akimov",
  1466. "email": "ivan@barreleye.com"
  1467. },
  1468. {
  1469. "name": "Vincent Klaiber",
  1470. "email": "hello@doubledip.se"
  1471. }
  1472. ],
  1473. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1474. "homepage": "https://hashids.org/php",
  1475. "keywords": [
  1476. "bitly",
  1477. "decode",
  1478. "encode",
  1479. "hash",
  1480. "hashid",
  1481. "hashids",
  1482. "ids",
  1483. "obfuscate",
  1484. "youtube"
  1485. ],
  1486. "support": {
  1487. "issues": "https://github.com/vinkla/hashids/issues",
  1488. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1489. },
  1490. "time": "2020-11-26T19:24:33+00:00"
  1491. },
  1492. {
  1493. "name": "intervention/image",
  1494. "version": "2.7.2",
  1495. "source": {
  1496. "type": "git",
  1497. "url": "https://github.com/Intervention/image.git",
  1498. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1499. },
  1500. "dist": {
  1501. "type": "zip",
  1502. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1503. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1504. "shasum": "",
  1505. "mirrors": [
  1506. {
  1507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1508. "preferred": true
  1509. }
  1510. ]
  1511. },
  1512. "require": {
  1513. "ext-fileinfo": "*",
  1514. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1515. "php": ">=5.4.0"
  1516. },
  1517. "require-dev": {
  1518. "mockery/mockery": "~0.9.2",
  1519. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1520. },
  1521. "suggest": {
  1522. "ext-gd": "to use GD library based image processing.",
  1523. "ext-imagick": "to use Imagick based image processing.",
  1524. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1525. },
  1526. "type": "library",
  1527. "extra": {
  1528. "branch-alias": {
  1529. "dev-master": "2.4-dev"
  1530. },
  1531. "laravel": {
  1532. "providers": [
  1533. "Intervention\\Image\\ImageServiceProvider"
  1534. ],
  1535. "aliases": {
  1536. "Image": "Intervention\\Image\\Facades\\Image"
  1537. }
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "Intervention\\Image\\": "src/Intervention/Image"
  1543. }
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Oliver Vogel",
  1552. "email": "oliver@intervention.io",
  1553. "homepage": "https://intervention.io/"
  1554. }
  1555. ],
  1556. "description": "Image handling and manipulation library with support for Laravel integration",
  1557. "homepage": "http://image.intervention.io/",
  1558. "keywords": [
  1559. "gd",
  1560. "image",
  1561. "imagick",
  1562. "laravel",
  1563. "thumbnail",
  1564. "watermark"
  1565. ],
  1566. "support": {
  1567. "issues": "https://github.com/Intervention/image/issues",
  1568. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1569. },
  1570. "funding": [
  1571. {
  1572. "url": "https://paypal.me/interventionio",
  1573. "type": "custom"
  1574. },
  1575. {
  1576. "url": "https://github.com/Intervention",
  1577. "type": "github"
  1578. }
  1579. ],
  1580. "time": "2022-05-21T17:30:32+00:00"
  1581. },
  1582. {
  1583. "name": "ixudra/curl",
  1584. "version": "6.22.1",
  1585. "source": {
  1586. "type": "git",
  1587. "url": "https://github.com/ixudra/curl.git",
  1588. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  1589. },
  1590. "dist": {
  1591. "type": "zip",
  1592. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1593. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1594. "shasum": "",
  1595. "mirrors": [
  1596. {
  1597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1598. "preferred": true
  1599. }
  1600. ]
  1601. },
  1602. "require": {
  1603. "ext-curl": "*",
  1604. "illuminate/support": ">=4.0",
  1605. "php": ">=5.4.0"
  1606. },
  1607. "type": "library",
  1608. "extra": {
  1609. "laravel": {
  1610. "providers": [
  1611. "Ixudra\\Curl\\CurlServiceProvider"
  1612. ],
  1613. "aliases": {
  1614. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  1615. }
  1616. }
  1617. },
  1618. "autoload": {
  1619. "psr-4": {
  1620. "Ixudra\\Curl\\": "src/"
  1621. }
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "MIT"
  1626. ],
  1627. "authors": [
  1628. {
  1629. "name": "Jan Oris",
  1630. "email": "jan.oris@ixudra.be"
  1631. }
  1632. ],
  1633. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  1634. "homepage": "http://ixudra.be",
  1635. "keywords": [
  1636. "Ixudra",
  1637. "curl",
  1638. "laravel"
  1639. ],
  1640. "support": {
  1641. "issues": "https://github.com/ixudra/curl/issues",
  1642. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  1643. },
  1644. "time": "2022-07-31T09:58:52+00:00"
  1645. },
  1646. {
  1647. "name": "laravel/framework",
  1648. "version": "v8.83.27",
  1649. "source": {
  1650. "type": "git",
  1651. "url": "https://github.com/laravel/framework.git",
  1652. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  1653. },
  1654. "dist": {
  1655. "type": "zip",
  1656. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1657. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1658. "shasum": ""
  1659. },
  1660. "require": {
  1661. "doctrine/inflector": "^1.4|^2.0",
  1662. "dragonmantank/cron-expression": "^3.0.2",
  1663. "egulias/email-validator": "^2.1.10",
  1664. "ext-json": "*",
  1665. "ext-mbstring": "*",
  1666. "ext-openssl": "*",
  1667. "laravel/serializable-closure": "^1.0",
  1668. "league/commonmark": "^1.3|^2.0.2",
  1669. "league/flysystem": "^1.1",
  1670. "monolog/monolog": "^2.0",
  1671. "nesbot/carbon": "^2.53.1",
  1672. "opis/closure": "^3.6",
  1673. "php": "^7.3|^8.0",
  1674. "psr/container": "^1.0",
  1675. "psr/log": "^1.0|^2.0",
  1676. "psr/simple-cache": "^1.0",
  1677. "ramsey/uuid": "^4.2.2",
  1678. "swiftmailer/swiftmailer": "^6.3",
  1679. "symfony/console": "^5.4",
  1680. "symfony/error-handler": "^5.4",
  1681. "symfony/finder": "^5.4",
  1682. "symfony/http-foundation": "^5.4",
  1683. "symfony/http-kernel": "^5.4",
  1684. "symfony/mime": "^5.4",
  1685. "symfony/process": "^5.4",
  1686. "symfony/routing": "^5.4",
  1687. "symfony/var-dumper": "^5.4",
  1688. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1689. "vlucas/phpdotenv": "^5.4.1",
  1690. "voku/portable-ascii": "^1.6.1"
  1691. },
  1692. "conflict": {
  1693. "tightenco/collect": "<5.5.33"
  1694. },
  1695. "provide": {
  1696. "psr/container-implementation": "1.0",
  1697. "psr/simple-cache-implementation": "1.0"
  1698. },
  1699. "replace": {
  1700. "illuminate/auth": "self.version",
  1701. "illuminate/broadcasting": "self.version",
  1702. "illuminate/bus": "self.version",
  1703. "illuminate/cache": "self.version",
  1704. "illuminate/collections": "self.version",
  1705. "illuminate/config": "self.version",
  1706. "illuminate/console": "self.version",
  1707. "illuminate/container": "self.version",
  1708. "illuminate/contracts": "self.version",
  1709. "illuminate/cookie": "self.version",
  1710. "illuminate/database": "self.version",
  1711. "illuminate/encryption": "self.version",
  1712. "illuminate/events": "self.version",
  1713. "illuminate/filesystem": "self.version",
  1714. "illuminate/hashing": "self.version",
  1715. "illuminate/http": "self.version",
  1716. "illuminate/log": "self.version",
  1717. "illuminate/macroable": "self.version",
  1718. "illuminate/mail": "self.version",
  1719. "illuminate/notifications": "self.version",
  1720. "illuminate/pagination": "self.version",
  1721. "illuminate/pipeline": "self.version",
  1722. "illuminate/queue": "self.version",
  1723. "illuminate/redis": "self.version",
  1724. "illuminate/routing": "self.version",
  1725. "illuminate/session": "self.version",
  1726. "illuminate/support": "self.version",
  1727. "illuminate/testing": "self.version",
  1728. "illuminate/translation": "self.version",
  1729. "illuminate/validation": "self.version",
  1730. "illuminate/view": "self.version"
  1731. },
  1732. "require-dev": {
  1733. "aws/aws-sdk-php": "^3.198.1",
  1734. "doctrine/dbal": "^2.13.3|^3.1.4",
  1735. "filp/whoops": "^2.14.3",
  1736. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1737. "league/flysystem-cached-adapter": "^1.0",
  1738. "mockery/mockery": "^1.4.4",
  1739. "orchestra/testbench-core": "^6.27",
  1740. "pda/pheanstalk": "^4.0",
  1741. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1742. "predis/predis": "^1.1.9",
  1743. "symfony/cache": "^5.4"
  1744. },
  1745. "suggest": {
  1746. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1747. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1748. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1749. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1750. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1751. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1752. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1753. "ext-memcached": "Required to use the memcache cache driver.",
  1754. "ext-pcntl": "Required to use all features of the queue worker.",
  1755. "ext-posix": "Required to use all features of the queue worker.",
  1756. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1757. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1758. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1759. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1760. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1761. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1762. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1763. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1764. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1765. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1766. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1767. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1768. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1769. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1770. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1771. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1772. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1773. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1774. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "8.x-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "files": [
  1784. "src/Illuminate/Collections/helpers.php",
  1785. "src/Illuminate/Events/functions.php",
  1786. "src/Illuminate/Foundation/helpers.php",
  1787. "src/Illuminate/Support/helpers.php"
  1788. ],
  1789. "psr-4": {
  1790. "Illuminate\\": "src/Illuminate/",
  1791. "Illuminate\\Support\\": [
  1792. "src/Illuminate/Macroable/",
  1793. "src/Illuminate/Collections/"
  1794. ]
  1795. }
  1796. },
  1797. "notification-url": "https://packagist.org/downloads/",
  1798. "license": [
  1799. "MIT"
  1800. ],
  1801. "authors": [
  1802. {
  1803. "name": "Taylor Otwell",
  1804. "email": "taylor@laravel.com"
  1805. }
  1806. ],
  1807. "description": "The Laravel Framework.",
  1808. "homepage": "https://laravel.com",
  1809. "keywords": [
  1810. "framework",
  1811. "laravel"
  1812. ],
  1813. "support": {
  1814. "issues": "https://github.com/laravel/framework/issues",
  1815. "source": "https://github.com/laravel/framework"
  1816. },
  1817. "time": "2022-12-08T15:28:55+00:00"
  1818. },
  1819. {
  1820. "name": "laravel/serializable-closure",
  1821. "version": "v1.3.3",
  1822. "source": {
  1823. "type": "git",
  1824. "url": "https://github.com/laravel/serializable-closure.git",
  1825. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  1826. },
  1827. "dist": {
  1828. "type": "zip",
  1829. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  1830. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  1831. "shasum": "",
  1832. "mirrors": [
  1833. {
  1834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1835. "preferred": true
  1836. }
  1837. ]
  1838. },
  1839. "require": {
  1840. "php": "^7.3|^8.0"
  1841. },
  1842. "require-dev": {
  1843. "nesbot/carbon": "^2.61",
  1844. "pestphp/pest": "^1.21.3",
  1845. "phpstan/phpstan": "^1.8.2",
  1846. "symfony/var-dumper": "^5.4.11"
  1847. },
  1848. "type": "library",
  1849. "extra": {
  1850. "branch-alias": {
  1851. "dev-master": "1.x-dev"
  1852. }
  1853. },
  1854. "autoload": {
  1855. "psr-4": {
  1856. "Laravel\\SerializableClosure\\": "src/"
  1857. }
  1858. },
  1859. "notification-url": "https://packagist.org/downloads/",
  1860. "license": [
  1861. "MIT"
  1862. ],
  1863. "authors": [
  1864. {
  1865. "name": "Taylor Otwell",
  1866. "email": "taylor@laravel.com"
  1867. },
  1868. {
  1869. "name": "Nuno Maduro",
  1870. "email": "nuno@laravel.com"
  1871. }
  1872. ],
  1873. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1874. "keywords": [
  1875. "closure",
  1876. "laravel",
  1877. "serializable"
  1878. ],
  1879. "support": {
  1880. "issues": "https://github.com/laravel/serializable-closure/issues",
  1881. "source": "https://github.com/laravel/serializable-closure"
  1882. },
  1883. "time": "2023-11-08T14:08:06+00:00"
  1884. },
  1885. {
  1886. "name": "laravel/tinker",
  1887. "version": "v2.9.0",
  1888. "source": {
  1889. "type": "git",
  1890. "url": "https://github.com/laravel/tinker.git",
  1891. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  1892. },
  1893. "dist": {
  1894. "type": "zip",
  1895. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1896. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1897. "shasum": "",
  1898. "mirrors": [
  1899. {
  1900. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1901. "preferred": true
  1902. }
  1903. ]
  1904. },
  1905. "require": {
  1906. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1907. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1908. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1909. "php": "^7.2.5|^8.0",
  1910. "psy/psysh": "^0.11.1|^0.12.0",
  1911. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1912. },
  1913. "require-dev": {
  1914. "mockery/mockery": "~1.3.3|^1.4.2",
  1915. "phpstan/phpstan": "^1.10",
  1916. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1917. },
  1918. "suggest": {
  1919. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1920. },
  1921. "type": "library",
  1922. "extra": {
  1923. "laravel": {
  1924. "providers": [
  1925. "Laravel\\Tinker\\TinkerServiceProvider"
  1926. ]
  1927. }
  1928. },
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Laravel\\Tinker\\": "src/"
  1932. }
  1933. },
  1934. "notification-url": "https://packagist.org/downloads/",
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "authors": [
  1939. {
  1940. "name": "Taylor Otwell",
  1941. "email": "taylor@laravel.com"
  1942. }
  1943. ],
  1944. "description": "Powerful REPL for the Laravel framework.",
  1945. "keywords": [
  1946. "REPL",
  1947. "Tinker",
  1948. "laravel",
  1949. "psysh"
  1950. ],
  1951. "support": {
  1952. "issues": "https://github.com/laravel/tinker/issues",
  1953. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  1954. },
  1955. "time": "2024-01-04T16:10:04+00:00"
  1956. },
  1957. {
  1958. "name": "league/commonmark",
  1959. "version": "2.4.1",
  1960. "source": {
  1961. "type": "git",
  1962. "url": "https://github.com/thephpleague/commonmark.git",
  1963. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  1964. },
  1965. "dist": {
  1966. "type": "zip",
  1967. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1968. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1969. "shasum": "",
  1970. "mirrors": [
  1971. {
  1972. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1973. "preferred": true
  1974. }
  1975. ]
  1976. },
  1977. "require": {
  1978. "ext-mbstring": "*",
  1979. "league/config": "^1.1.1",
  1980. "php": "^7.4 || ^8.0",
  1981. "psr/event-dispatcher": "^1.0",
  1982. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1983. "symfony/polyfill-php80": "^1.16"
  1984. },
  1985. "require-dev": {
  1986. "cebe/markdown": "^1.0",
  1987. "commonmark/cmark": "0.30.0",
  1988. "commonmark/commonmark.js": "0.30.0",
  1989. "composer/package-versions-deprecated": "^1.8",
  1990. "embed/embed": "^4.4",
  1991. "erusev/parsedown": "^1.0",
  1992. "ext-json": "*",
  1993. "github/gfm": "0.29.0",
  1994. "michelf/php-markdown": "^1.4 || ^2.0",
  1995. "nyholm/psr7": "^1.5",
  1996. "phpstan/phpstan": "^1.8.2",
  1997. "phpunit/phpunit": "^9.5.21",
  1998. "scrutinizer/ocular": "^1.8.1",
  1999. "symfony/finder": "^5.3 | ^6.0",
  2000. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2001. "unleashedtech/php-coding-standard": "^3.1.1",
  2002. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2003. },
  2004. "suggest": {
  2005. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "branch-alias": {
  2010. "dev-main": "2.5-dev"
  2011. }
  2012. },
  2013. "autoload": {
  2014. "psr-4": {
  2015. "League\\CommonMark\\": "src"
  2016. }
  2017. },
  2018. "notification-url": "https://packagist.org/downloads/",
  2019. "license": [
  2020. "BSD-3-Clause"
  2021. ],
  2022. "authors": [
  2023. {
  2024. "name": "Colin O'Dell",
  2025. "email": "colinodell@gmail.com",
  2026. "homepage": "https://www.colinodell.com",
  2027. "role": "Lead Developer"
  2028. }
  2029. ],
  2030. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2031. "homepage": "https://commonmark.thephpleague.com",
  2032. "keywords": [
  2033. "commonmark",
  2034. "flavored",
  2035. "gfm",
  2036. "github",
  2037. "github-flavored",
  2038. "markdown",
  2039. "md",
  2040. "parser"
  2041. ],
  2042. "support": {
  2043. "docs": "https://commonmark.thephpleague.com/",
  2044. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2045. "issues": "https://github.com/thephpleague/commonmark/issues",
  2046. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2047. "source": "https://github.com/thephpleague/commonmark"
  2048. },
  2049. "funding": [
  2050. {
  2051. "url": "https://www.colinodell.com/sponsor",
  2052. "type": "custom"
  2053. },
  2054. {
  2055. "url": "https://www.paypal.me/colinpodell/10.00",
  2056. "type": "custom"
  2057. },
  2058. {
  2059. "url": "https://github.com/colinodell",
  2060. "type": "github"
  2061. },
  2062. {
  2063. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2064. "type": "tidelift"
  2065. }
  2066. ],
  2067. "time": "2023-08-30T16:55:00+00:00"
  2068. },
  2069. {
  2070. "name": "league/config",
  2071. "version": "v1.2.0",
  2072. "source": {
  2073. "type": "git",
  2074. "url": "https://github.com/thephpleague/config.git",
  2075. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2076. },
  2077. "dist": {
  2078. "type": "zip",
  2079. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2080. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2081. "shasum": "",
  2082. "mirrors": [
  2083. {
  2084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2085. "preferred": true
  2086. }
  2087. ]
  2088. },
  2089. "require": {
  2090. "dflydev/dot-access-data": "^3.0.1",
  2091. "nette/schema": "^1.2",
  2092. "php": "^7.4 || ^8.0"
  2093. },
  2094. "require-dev": {
  2095. "phpstan/phpstan": "^1.8.2",
  2096. "phpunit/phpunit": "^9.5.5",
  2097. "scrutinizer/ocular": "^1.8.1",
  2098. "unleashedtech/php-coding-standard": "^3.1",
  2099. "vimeo/psalm": "^4.7.3"
  2100. },
  2101. "type": "library",
  2102. "extra": {
  2103. "branch-alias": {
  2104. "dev-main": "1.2-dev"
  2105. }
  2106. },
  2107. "autoload": {
  2108. "psr-4": {
  2109. "League\\Config\\": "src"
  2110. }
  2111. },
  2112. "notification-url": "https://packagist.org/downloads/",
  2113. "license": [
  2114. "BSD-3-Clause"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Colin O'Dell",
  2119. "email": "colinodell@gmail.com",
  2120. "homepage": "https://www.colinodell.com",
  2121. "role": "Lead Developer"
  2122. }
  2123. ],
  2124. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2125. "homepage": "https://config.thephpleague.com",
  2126. "keywords": [
  2127. "array",
  2128. "config",
  2129. "configuration",
  2130. "dot",
  2131. "dot-access",
  2132. "nested",
  2133. "schema"
  2134. ],
  2135. "support": {
  2136. "docs": "https://config.thephpleague.com/",
  2137. "issues": "https://github.com/thephpleague/config/issues",
  2138. "rss": "https://github.com/thephpleague/config/releases.atom",
  2139. "source": "https://github.com/thephpleague/config"
  2140. },
  2141. "funding": [
  2142. {
  2143. "url": "https://www.colinodell.com/sponsor",
  2144. "type": "custom"
  2145. },
  2146. {
  2147. "url": "https://www.paypal.me/colinpodell/10.00",
  2148. "type": "custom"
  2149. },
  2150. {
  2151. "url": "https://github.com/colinodell",
  2152. "type": "github"
  2153. }
  2154. ],
  2155. "time": "2022-12-11T20:36:23+00:00"
  2156. },
  2157. {
  2158. "name": "league/flysystem",
  2159. "version": "1.1.10",
  2160. "source": {
  2161. "type": "git",
  2162. "url": "https://github.com/thephpleague/flysystem.git",
  2163. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2164. },
  2165. "dist": {
  2166. "type": "zip",
  2167. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2168. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2169. "shasum": "",
  2170. "mirrors": [
  2171. {
  2172. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2173. "preferred": true
  2174. }
  2175. ]
  2176. },
  2177. "require": {
  2178. "ext-fileinfo": "*",
  2179. "league/mime-type-detection": "^1.3",
  2180. "php": "^7.2.5 || ^8.0"
  2181. },
  2182. "conflict": {
  2183. "league/flysystem-sftp": "<1.0.6"
  2184. },
  2185. "require-dev": {
  2186. "phpspec/prophecy": "^1.11.1",
  2187. "phpunit/phpunit": "^8.5.8"
  2188. },
  2189. "suggest": {
  2190. "ext-ftp": "Allows you to use FTP server storage",
  2191. "ext-openssl": "Allows you to use FTPS server storage",
  2192. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2193. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2194. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2195. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2196. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2197. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2198. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2199. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2200. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2201. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2202. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "1.1-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "psr-4": {
  2212. "League\\Flysystem\\": "src/"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "MIT"
  2218. ],
  2219. "authors": [
  2220. {
  2221. "name": "Frank de Jonge",
  2222. "email": "info@frenky.net"
  2223. }
  2224. ],
  2225. "description": "Filesystem abstraction: Many filesystems, one API.",
  2226. "keywords": [
  2227. "Cloud Files",
  2228. "WebDAV",
  2229. "abstraction",
  2230. "aws",
  2231. "cloud",
  2232. "copy.com",
  2233. "dropbox",
  2234. "file systems",
  2235. "files",
  2236. "filesystem",
  2237. "filesystems",
  2238. "ftp",
  2239. "rackspace",
  2240. "remote",
  2241. "s3",
  2242. "sftp",
  2243. "storage"
  2244. ],
  2245. "support": {
  2246. "issues": "https://github.com/thephpleague/flysystem/issues",
  2247. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2248. },
  2249. "funding": [
  2250. {
  2251. "url": "https://offset.earth/frankdejonge",
  2252. "type": "other"
  2253. }
  2254. ],
  2255. "time": "2022-10-04T09:16:37+00:00"
  2256. },
  2257. {
  2258. "name": "league/mime-type-detection",
  2259. "version": "1.13.0",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2263. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2268. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2269. "shasum": "",
  2270. "mirrors": [
  2271. {
  2272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2273. "preferred": true
  2274. }
  2275. ]
  2276. },
  2277. "require": {
  2278. "ext-fileinfo": "*",
  2279. "php": "^7.4 || ^8.0"
  2280. },
  2281. "require-dev": {
  2282. "friendsofphp/php-cs-fixer": "^3.2",
  2283. "phpstan/phpstan": "^0.12.68",
  2284. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2285. },
  2286. "type": "library",
  2287. "autoload": {
  2288. "psr-4": {
  2289. "League\\MimeTypeDetection\\": "src"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "MIT"
  2295. ],
  2296. "authors": [
  2297. {
  2298. "name": "Frank de Jonge",
  2299. "email": "info@frankdejonge.nl"
  2300. }
  2301. ],
  2302. "description": "Mime-type detection for Flysystem",
  2303. "support": {
  2304. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2305. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  2306. },
  2307. "funding": [
  2308. {
  2309. "url": "https://github.com/frankdejonge",
  2310. "type": "github"
  2311. },
  2312. {
  2313. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2314. "type": "tidelift"
  2315. }
  2316. ],
  2317. "time": "2023-08-05T12:09:49+00:00"
  2318. },
  2319. {
  2320. "name": "maennchen/zipstream-php",
  2321. "version": "2.2.6",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2325. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2330. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2331. "shasum": "",
  2332. "mirrors": [
  2333. {
  2334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2335. "preferred": true
  2336. }
  2337. ]
  2338. },
  2339. "require": {
  2340. "myclabs/php-enum": "^1.5",
  2341. "php": "^7.4 || ^8.0",
  2342. "psr/http-message": "^1.0",
  2343. "symfony/polyfill-mbstring": "^1.0"
  2344. },
  2345. "require-dev": {
  2346. "ext-zip": "*",
  2347. "friendsofphp/php-cs-fixer": "^3.9",
  2348. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2349. "mikey179/vfsstream": "^1.6",
  2350. "php-coveralls/php-coveralls": "^2.4",
  2351. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2352. "vimeo/psalm": "^4.1"
  2353. },
  2354. "type": "library",
  2355. "autoload": {
  2356. "psr-4": {
  2357. "ZipStream\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "authors": [
  2365. {
  2366. "name": "Paul Duncan",
  2367. "email": "pabs@pablotron.org"
  2368. },
  2369. {
  2370. "name": "Jonatan Männchen",
  2371. "email": "jonatan@maennchen.ch"
  2372. },
  2373. {
  2374. "name": "Jesse Donat",
  2375. "email": "donatj@gmail.com"
  2376. },
  2377. {
  2378. "name": "András Kolesár",
  2379. "email": "kolesar@kolesar.hu"
  2380. }
  2381. ],
  2382. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2383. "keywords": [
  2384. "stream",
  2385. "zip"
  2386. ],
  2387. "support": {
  2388. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2389. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2390. },
  2391. "funding": [
  2392. {
  2393. "url": "https://github.com/maennchen",
  2394. "type": "github"
  2395. },
  2396. {
  2397. "url": "https://opencollective.com/zipstream",
  2398. "type": "open_collective"
  2399. }
  2400. ],
  2401. "time": "2022-11-25T18:57:19+00:00"
  2402. },
  2403. {
  2404. "name": "markbaker/complex",
  2405. "version": "3.0.2",
  2406. "source": {
  2407. "type": "git",
  2408. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2409. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2410. },
  2411. "dist": {
  2412. "type": "zip",
  2413. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2414. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2415. "shasum": "",
  2416. "mirrors": [
  2417. {
  2418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2419. "preferred": true
  2420. }
  2421. ]
  2422. },
  2423. "require": {
  2424. "php": "^7.2 || ^8.0"
  2425. },
  2426. "require-dev": {
  2427. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2428. "phpcompatibility/php-compatibility": "^9.3",
  2429. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2430. "squizlabs/php_codesniffer": "^3.7"
  2431. },
  2432. "type": "library",
  2433. "autoload": {
  2434. "psr-4": {
  2435. "Complex\\": "classes/src/"
  2436. }
  2437. },
  2438. "notification-url": "https://packagist.org/downloads/",
  2439. "license": [
  2440. "MIT"
  2441. ],
  2442. "authors": [
  2443. {
  2444. "name": "Mark Baker",
  2445. "email": "mark@lange.demon.co.uk"
  2446. }
  2447. ],
  2448. "description": "PHP Class for working with complex numbers",
  2449. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2450. "keywords": [
  2451. "complex",
  2452. "mathematics"
  2453. ],
  2454. "support": {
  2455. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2456. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2457. },
  2458. "time": "2022-12-06T16:21:08+00:00"
  2459. },
  2460. {
  2461. "name": "markbaker/matrix",
  2462. "version": "3.0.1",
  2463. "source": {
  2464. "type": "git",
  2465. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2466. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2467. },
  2468. "dist": {
  2469. "type": "zip",
  2470. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2471. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2472. "shasum": "",
  2473. "mirrors": [
  2474. {
  2475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2476. "preferred": true
  2477. }
  2478. ]
  2479. },
  2480. "require": {
  2481. "php": "^7.1 || ^8.0"
  2482. },
  2483. "require-dev": {
  2484. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2485. "phpcompatibility/php-compatibility": "^9.3",
  2486. "phpdocumentor/phpdocumentor": "2.*",
  2487. "phploc/phploc": "^4.0",
  2488. "phpmd/phpmd": "2.*",
  2489. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2490. "sebastian/phpcpd": "^4.0",
  2491. "squizlabs/php_codesniffer": "^3.7"
  2492. },
  2493. "type": "library",
  2494. "autoload": {
  2495. "psr-4": {
  2496. "Matrix\\": "classes/src/"
  2497. }
  2498. },
  2499. "notification-url": "https://packagist.org/downloads/",
  2500. "license": [
  2501. "MIT"
  2502. ],
  2503. "authors": [
  2504. {
  2505. "name": "Mark Baker",
  2506. "email": "mark@demon-angel.eu"
  2507. }
  2508. ],
  2509. "description": "PHP Class for working with matrices",
  2510. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2511. "keywords": [
  2512. "mathematics",
  2513. "matrix",
  2514. "vector"
  2515. ],
  2516. "support": {
  2517. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2518. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2519. },
  2520. "time": "2022-12-02T22:17:43+00:00"
  2521. },
  2522. {
  2523. "name": "monolog/monolog",
  2524. "version": "2.9.2",
  2525. "source": {
  2526. "type": "git",
  2527. "url": "https://github.com/Seldaek/monolog.git",
  2528. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  2529. },
  2530. "dist": {
  2531. "type": "zip",
  2532. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  2533. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  2534. "shasum": "",
  2535. "mirrors": [
  2536. {
  2537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2538. "preferred": true
  2539. }
  2540. ]
  2541. },
  2542. "require": {
  2543. "php": ">=7.2",
  2544. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2545. },
  2546. "provide": {
  2547. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2548. },
  2549. "require-dev": {
  2550. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2551. "doctrine/couchdb": "~1.0@dev",
  2552. "elasticsearch/elasticsearch": "^7 || ^8",
  2553. "ext-json": "*",
  2554. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2555. "guzzlehttp/guzzle": "^7.4",
  2556. "guzzlehttp/psr7": "^2.2",
  2557. "mongodb/mongodb": "^1.8",
  2558. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2559. "phpspec/prophecy": "^1.15",
  2560. "phpstan/phpstan": "^0.12.91",
  2561. "phpunit/phpunit": "^8.5.14",
  2562. "predis/predis": "^1.1 || ^2.0",
  2563. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2564. "ruflin/elastica": "^7",
  2565. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2566. "symfony/mailer": "^5.4 || ^6",
  2567. "symfony/mime": "^5.4 || ^6"
  2568. },
  2569. "suggest": {
  2570. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2571. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2572. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2573. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2574. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2575. "ext-mbstring": "Allow to work properly with unicode symbols",
  2576. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2577. "ext-openssl": "Required to send log messages using SSL",
  2578. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2579. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2580. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2581. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2582. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2583. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2584. },
  2585. "type": "library",
  2586. "extra": {
  2587. "branch-alias": {
  2588. "dev-main": "2.x-dev"
  2589. }
  2590. },
  2591. "autoload": {
  2592. "psr-4": {
  2593. "Monolog\\": "src/Monolog"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Jordi Boggiano",
  2603. "email": "j.boggiano@seld.be",
  2604. "homepage": "https://seld.be"
  2605. }
  2606. ],
  2607. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2608. "homepage": "https://github.com/Seldaek/monolog",
  2609. "keywords": [
  2610. "log",
  2611. "logging",
  2612. "psr-3"
  2613. ],
  2614. "support": {
  2615. "issues": "https://github.com/Seldaek/monolog/issues",
  2616. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  2617. },
  2618. "funding": [
  2619. {
  2620. "url": "https://github.com/Seldaek",
  2621. "type": "github"
  2622. },
  2623. {
  2624. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2625. "type": "tidelift"
  2626. }
  2627. ],
  2628. "time": "2023-10-27T15:25:26+00:00"
  2629. },
  2630. {
  2631. "name": "myclabs/php-enum",
  2632. "version": "1.8.4",
  2633. "source": {
  2634. "type": "git",
  2635. "url": "https://github.com/myclabs/php-enum.git",
  2636. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2637. },
  2638. "dist": {
  2639. "type": "zip",
  2640. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2641. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2642. "shasum": "",
  2643. "mirrors": [
  2644. {
  2645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2646. "preferred": true
  2647. }
  2648. ]
  2649. },
  2650. "require": {
  2651. "ext-json": "*",
  2652. "php": "^7.3 || ^8.0"
  2653. },
  2654. "require-dev": {
  2655. "phpunit/phpunit": "^9.5",
  2656. "squizlabs/php_codesniffer": "1.*",
  2657. "vimeo/psalm": "^4.6.2"
  2658. },
  2659. "type": "library",
  2660. "autoload": {
  2661. "psr-4": {
  2662. "MyCLabs\\Enum\\": "src/"
  2663. },
  2664. "classmap": [
  2665. "stubs/Stringable.php"
  2666. ]
  2667. },
  2668. "notification-url": "https://packagist.org/downloads/",
  2669. "license": [
  2670. "MIT"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "PHP Enum contributors",
  2675. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2676. }
  2677. ],
  2678. "description": "PHP Enum implementation",
  2679. "homepage": "http://github.com/myclabs/php-enum",
  2680. "keywords": [
  2681. "enum"
  2682. ],
  2683. "support": {
  2684. "issues": "https://github.com/myclabs/php-enum/issues",
  2685. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2686. },
  2687. "funding": [
  2688. {
  2689. "url": "https://github.com/mnapoli",
  2690. "type": "github"
  2691. },
  2692. {
  2693. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2694. "type": "tidelift"
  2695. }
  2696. ],
  2697. "time": "2022-08-04T09:53:51+00:00"
  2698. },
  2699. {
  2700. "name": "nesbot/carbon",
  2701. "version": "2.72.1",
  2702. "source": {
  2703. "type": "git",
  2704. "url": "https://github.com/briannesbitt/Carbon.git",
  2705. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  2706. },
  2707. "dist": {
  2708. "type": "zip",
  2709. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2710. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2711. "shasum": "",
  2712. "mirrors": [
  2713. {
  2714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2715. "preferred": true
  2716. }
  2717. ]
  2718. },
  2719. "require": {
  2720. "carbonphp/carbon-doctrine-types": "*",
  2721. "ext-json": "*",
  2722. "php": "^7.1.8 || ^8.0",
  2723. "psr/clock": "^1.0",
  2724. "symfony/polyfill-mbstring": "^1.0",
  2725. "symfony/polyfill-php80": "^1.16",
  2726. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2727. },
  2728. "provide": {
  2729. "psr/clock-implementation": "1.0"
  2730. },
  2731. "require-dev": {
  2732. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2733. "doctrine/orm": "^2.7 || ^3.0",
  2734. "friendsofphp/php-cs-fixer": "^3.0",
  2735. "kylekatarnls/multi-tester": "^2.0",
  2736. "ondrejmirtes/better-reflection": "*",
  2737. "phpmd/phpmd": "^2.9",
  2738. "phpstan/extension-installer": "^1.0",
  2739. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2740. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2741. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2742. "squizlabs/php_codesniffer": "^3.4"
  2743. },
  2744. "bin": [
  2745. "bin/carbon"
  2746. ],
  2747. "type": "library",
  2748. "extra": {
  2749. "branch-alias": {
  2750. "dev-3.x": "3.x-dev",
  2751. "dev-master": "2.x-dev"
  2752. },
  2753. "laravel": {
  2754. "providers": [
  2755. "Carbon\\Laravel\\ServiceProvider"
  2756. ]
  2757. },
  2758. "phpstan": {
  2759. "includes": [
  2760. "extension.neon"
  2761. ]
  2762. }
  2763. },
  2764. "autoload": {
  2765. "psr-4": {
  2766. "Carbon\\": "src/Carbon/"
  2767. }
  2768. },
  2769. "notification-url": "https://packagist.org/downloads/",
  2770. "license": [
  2771. "MIT"
  2772. ],
  2773. "authors": [
  2774. {
  2775. "name": "Brian Nesbitt",
  2776. "email": "brian@nesbot.com",
  2777. "homepage": "https://markido.com"
  2778. },
  2779. {
  2780. "name": "kylekatarnls",
  2781. "homepage": "https://github.com/kylekatarnls"
  2782. }
  2783. ],
  2784. "description": "An API extension for DateTime that supports 281 different languages.",
  2785. "homepage": "https://carbon.nesbot.com",
  2786. "keywords": [
  2787. "date",
  2788. "datetime",
  2789. "time"
  2790. ],
  2791. "support": {
  2792. "docs": "https://carbon.nesbot.com/docs",
  2793. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2794. "source": "https://github.com/briannesbitt/Carbon"
  2795. },
  2796. "funding": [
  2797. {
  2798. "url": "https://github.com/sponsors/kylekatarnls",
  2799. "type": "github"
  2800. },
  2801. {
  2802. "url": "https://opencollective.com/Carbon#sponsor",
  2803. "type": "opencollective"
  2804. },
  2805. {
  2806. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2807. "type": "tidelift"
  2808. }
  2809. ],
  2810. "time": "2023-12-08T23:47:49+00:00"
  2811. },
  2812. {
  2813. "name": "nette/schema",
  2814. "version": "v1.2.5",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/nette/schema.git",
  2818. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  2823. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  2824. "shasum": "",
  2825. "mirrors": [
  2826. {
  2827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2828. "preferred": true
  2829. }
  2830. ]
  2831. },
  2832. "require": {
  2833. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2834. "php": "7.1 - 8.3"
  2835. },
  2836. "require-dev": {
  2837. "nette/tester": "^2.3 || ^2.4",
  2838. "phpstan/phpstan-nette": "^1.0",
  2839. "tracy/tracy": "^2.7"
  2840. },
  2841. "type": "library",
  2842. "extra": {
  2843. "branch-alias": {
  2844. "dev-master": "1.2-dev"
  2845. }
  2846. },
  2847. "autoload": {
  2848. "classmap": [
  2849. "src/"
  2850. ]
  2851. },
  2852. "notification-url": "https://packagist.org/downloads/",
  2853. "license": [
  2854. "BSD-3-Clause",
  2855. "GPL-2.0-only",
  2856. "GPL-3.0-only"
  2857. ],
  2858. "authors": [
  2859. {
  2860. "name": "David Grudl",
  2861. "homepage": "https://davidgrudl.com"
  2862. },
  2863. {
  2864. "name": "Nette Community",
  2865. "homepage": "https://nette.org/contributors"
  2866. }
  2867. ],
  2868. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2869. "homepage": "https://nette.org",
  2870. "keywords": [
  2871. "config",
  2872. "nette"
  2873. ],
  2874. "support": {
  2875. "issues": "https://github.com/nette/schema/issues",
  2876. "source": "https://github.com/nette/schema/tree/v1.2.5"
  2877. },
  2878. "time": "2023-10-05T20:37:59+00:00"
  2879. },
  2880. {
  2881. "name": "nette/utils",
  2882. "version": "v3.2.10",
  2883. "source": {
  2884. "type": "git",
  2885. "url": "https://github.com/nette/utils.git",
  2886. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  2887. },
  2888. "dist": {
  2889. "type": "zip",
  2890. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2891. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2892. "shasum": "",
  2893. "mirrors": [
  2894. {
  2895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2896. "preferred": true
  2897. }
  2898. ]
  2899. },
  2900. "require": {
  2901. "php": ">=7.2 <8.4"
  2902. },
  2903. "conflict": {
  2904. "nette/di": "<3.0.6"
  2905. },
  2906. "require-dev": {
  2907. "jetbrains/phpstorm-attributes": "dev-master",
  2908. "nette/tester": "~2.0",
  2909. "phpstan/phpstan": "^1.0",
  2910. "tracy/tracy": "^2.3"
  2911. },
  2912. "suggest": {
  2913. "ext-gd": "to use Image",
  2914. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2915. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2916. "ext-json": "to use Nette\\Utils\\Json",
  2917. "ext-mbstring": "to use Strings::lower() etc...",
  2918. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2919. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "branch-alias": {
  2924. "dev-master": "3.2-dev"
  2925. }
  2926. },
  2927. "autoload": {
  2928. "classmap": [
  2929. "src/"
  2930. ]
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "BSD-3-Clause",
  2935. "GPL-2.0-only",
  2936. "GPL-3.0-only"
  2937. ],
  2938. "authors": [
  2939. {
  2940. "name": "David Grudl",
  2941. "homepage": "https://davidgrudl.com"
  2942. },
  2943. {
  2944. "name": "Nette Community",
  2945. "homepage": "https://nette.org/contributors"
  2946. }
  2947. ],
  2948. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2949. "homepage": "https://nette.org",
  2950. "keywords": [
  2951. "array",
  2952. "core",
  2953. "datetime",
  2954. "images",
  2955. "json",
  2956. "nette",
  2957. "paginator",
  2958. "password",
  2959. "slugify",
  2960. "string",
  2961. "unicode",
  2962. "utf-8",
  2963. "utility",
  2964. "validation"
  2965. ],
  2966. "support": {
  2967. "issues": "https://github.com/nette/utils/issues",
  2968. "source": "https://github.com/nette/utils/tree/v3.2.10"
  2969. },
  2970. "time": "2023-07-30T15:38:18+00:00"
  2971. },
  2972. {
  2973. "name": "nikic/php-parser",
  2974. "version": "v5.0.0",
  2975. "source": {
  2976. "type": "git",
  2977. "url": "https://github.com/nikic/PHP-Parser.git",
  2978. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  2979. },
  2980. "dist": {
  2981. "type": "zip",
  2982. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  2983. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  2984. "shasum": "",
  2985. "mirrors": [
  2986. {
  2987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2988. "preferred": true
  2989. }
  2990. ]
  2991. },
  2992. "require": {
  2993. "ext-ctype": "*",
  2994. "ext-json": "*",
  2995. "ext-tokenizer": "*",
  2996. "php": ">=7.4"
  2997. },
  2998. "require-dev": {
  2999. "ircmaxell/php-yacc": "^0.0.7",
  3000. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3001. },
  3002. "bin": [
  3003. "bin/php-parse"
  3004. ],
  3005. "type": "library",
  3006. "extra": {
  3007. "branch-alias": {
  3008. "dev-master": "5.0-dev"
  3009. }
  3010. },
  3011. "autoload": {
  3012. "psr-4": {
  3013. "PhpParser\\": "lib/PhpParser"
  3014. }
  3015. },
  3016. "notification-url": "https://packagist.org/downloads/",
  3017. "license": [
  3018. "BSD-3-Clause"
  3019. ],
  3020. "authors": [
  3021. {
  3022. "name": "Nikita Popov"
  3023. }
  3024. ],
  3025. "description": "A PHP parser written in PHP",
  3026. "keywords": [
  3027. "parser",
  3028. "php"
  3029. ],
  3030. "support": {
  3031. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3032. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  3033. },
  3034. "time": "2024-01-07T17:17:35+00:00"
  3035. },
  3036. {
  3037. "name": "opis/closure",
  3038. "version": "3.6.3",
  3039. "source": {
  3040. "type": "git",
  3041. "url": "https://github.com/opis/closure.git",
  3042. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3043. },
  3044. "dist": {
  3045. "type": "zip",
  3046. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3047. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3048. "shasum": "",
  3049. "mirrors": [
  3050. {
  3051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3052. "preferred": true
  3053. }
  3054. ]
  3055. },
  3056. "require": {
  3057. "php": "^5.4 || ^7.0 || ^8.0"
  3058. },
  3059. "require-dev": {
  3060. "jeremeamia/superclosure": "^2.0",
  3061. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3062. },
  3063. "type": "library",
  3064. "extra": {
  3065. "branch-alias": {
  3066. "dev-master": "3.6.x-dev"
  3067. }
  3068. },
  3069. "autoload": {
  3070. "files": [
  3071. "functions.php"
  3072. ],
  3073. "psr-4": {
  3074. "Opis\\Closure\\": "src/"
  3075. }
  3076. },
  3077. "notification-url": "https://packagist.org/downloads/",
  3078. "license": [
  3079. "MIT"
  3080. ],
  3081. "authors": [
  3082. {
  3083. "name": "Marius Sarca",
  3084. "email": "marius.sarca@gmail.com"
  3085. },
  3086. {
  3087. "name": "Sorin Sarca",
  3088. "email": "sarca_sorin@hotmail.com"
  3089. }
  3090. ],
  3091. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3092. "homepage": "https://opis.io/closure",
  3093. "keywords": [
  3094. "anonymous functions",
  3095. "closure",
  3096. "function",
  3097. "serializable",
  3098. "serialization",
  3099. "serialize"
  3100. ],
  3101. "support": {
  3102. "issues": "https://github.com/opis/closure/issues",
  3103. "source": "https://github.com/opis/closure/tree/3.6.3"
  3104. },
  3105. "time": "2022-01-27T09:35:39+00:00"
  3106. },
  3107. {
  3108. "name": "overtrue/qcloud-cos-client",
  3109. "version": "1.0.4",
  3110. "source": {
  3111. "type": "git",
  3112. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  3113. "reference": "64ca47881afe4fd0961958f85674dcae71421913"
  3114. },
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/64ca47881afe4fd0961958f85674dcae71421913",
  3118. "reference": "64ca47881afe4fd0961958f85674dcae71421913",
  3119. "shasum": "",
  3120. "mirrors": [
  3121. {
  3122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3123. "preferred": true
  3124. }
  3125. ]
  3126. },
  3127. "require": {
  3128. "ext-dom": "*",
  3129. "ext-json": "*",
  3130. "ext-libxml": "*",
  3131. "ext-simplexml": "*",
  3132. "guzzlehttp/guzzle": "^7.2",
  3133. "php": ">=7.4",
  3134. "psr/http-message": "^1.0"
  3135. },
  3136. "require-dev": {
  3137. "brainmaestro/composer-git-hooks": "^2.7",
  3138. "friendsofphp/php-cs-fixer": "^3.4.0",
  3139. "mockery/mockery": "^1.0",
  3140. "monolog/monolog": "^2.1",
  3141. "phpunit/phpunit": "^9.0"
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "hooks": {
  3146. "pre-commit": [
  3147. "composer test",
  3148. "composer check-style"
  3149. ],
  3150. "pre-push": [
  3151. "composer test",
  3152. "composer check-style"
  3153. ]
  3154. }
  3155. },
  3156. "autoload": {
  3157. "psr-4": {
  3158. "Overtrue\\CosClient\\": "src"
  3159. }
  3160. },
  3161. "notification-url": "https://packagist.org/downloads/",
  3162. "license": [
  3163. "MIT"
  3164. ],
  3165. "authors": [
  3166. {
  3167. "name": "overtrue",
  3168. "email": "anzhengchao@gmail.com"
  3169. }
  3170. ],
  3171. "description": "Client of QCloud.com COS",
  3172. "support": {
  3173. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  3174. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.4"
  3175. },
  3176. "funding": [
  3177. {
  3178. "url": "https://github.com/overtrue",
  3179. "type": "github"
  3180. }
  3181. ],
  3182. "time": "2022-11-07T00:18:25+00:00"
  3183. },
  3184. {
  3185. "name": "overtrue/socialite",
  3186. "version": "3.5.5",
  3187. "source": {
  3188. "type": "git",
  3189. "url": "https://github.com/overtrue/socialite.git",
  3190. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401"
  3191. },
  3192. "dist": {
  3193. "type": "zip",
  3194. "url": "https://api.github.com/repos/overtrue/socialite/zipball/3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3195. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3196. "shasum": ""
  3197. },
  3198. "require": {
  3199. "ext-json": "*",
  3200. "ext-openssl": "*",
  3201. "guzzlehttp/guzzle": "~6.0|~7.0",
  3202. "php": ">=7.4",
  3203. "symfony/psr-http-message-bridge": "^2.0"
  3204. },
  3205. "require-dev": {
  3206. "friendsofphp/php-cs-fixer": "^3.0",
  3207. "mockery/mockery": "~1.2",
  3208. "phpunit/phpunit": "~9.0"
  3209. },
  3210. "type": "library",
  3211. "autoload": {
  3212. "psr-4": {
  3213. "Overtrue\\Socialite\\": "src/"
  3214. }
  3215. },
  3216. "notification-url": "https://packagist.org/downloads/",
  3217. "license": [
  3218. "MIT"
  3219. ],
  3220. "authors": [
  3221. {
  3222. "name": "overtrue",
  3223. "email": "anzhengchao@gmail.com"
  3224. }
  3225. ],
  3226. "description": "A collection of OAuth 2 packages.",
  3227. "keywords": [
  3228. "Feishu",
  3229. "login",
  3230. "oauth",
  3231. "qcloud",
  3232. "qq",
  3233. "social",
  3234. "wechat",
  3235. "weibo"
  3236. ],
  3237. "support": {
  3238. "issues": "https://github.com/overtrue/socialite/issues",
  3239. "source": "https://github.com/overtrue/socialite/tree/3.5.5"
  3240. },
  3241. "funding": [
  3242. {
  3243. "url": "https://github.com/overtrue",
  3244. "type": "github"
  3245. }
  3246. ],
  3247. "time": "2024-06-24T09:26:56+00:00"
  3248. },
  3249. {
  3250. "name": "phpoffice/phpspreadsheet",
  3251. "version": "1.29.0",
  3252. "source": {
  3253. "type": "git",
  3254. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3255. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3256. },
  3257. "dist": {
  3258. "type": "zip",
  3259. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3260. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3261. "shasum": ""
  3262. },
  3263. "require": {
  3264. "ext-ctype": "*",
  3265. "ext-dom": "*",
  3266. "ext-fileinfo": "*",
  3267. "ext-gd": "*",
  3268. "ext-iconv": "*",
  3269. "ext-libxml": "*",
  3270. "ext-mbstring": "*",
  3271. "ext-simplexml": "*",
  3272. "ext-xml": "*",
  3273. "ext-xmlreader": "*",
  3274. "ext-xmlwriter": "*",
  3275. "ext-zip": "*",
  3276. "ext-zlib": "*",
  3277. "ezyang/htmlpurifier": "^4.15",
  3278. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3279. "markbaker/complex": "^3.0",
  3280. "markbaker/matrix": "^3.0",
  3281. "php": "^7.4 || ^8.0",
  3282. "psr/http-client": "^1.0",
  3283. "psr/http-factory": "^1.0",
  3284. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3285. },
  3286. "require-dev": {
  3287. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3288. "dompdf/dompdf": "^1.0 || ^2.0",
  3289. "friendsofphp/php-cs-fixer": "^3.2",
  3290. "mitoteam/jpgraph": "^10.3",
  3291. "mpdf/mpdf": "^8.1.1",
  3292. "phpcompatibility/php-compatibility": "^9.3",
  3293. "phpstan/phpstan": "^1.1",
  3294. "phpstan/phpstan-phpunit": "^1.0",
  3295. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  3296. "squizlabs/php_codesniffer": "^3.7",
  3297. "tecnickcom/tcpdf": "^6.5"
  3298. },
  3299. "suggest": {
  3300. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3301. "ext-intl": "PHP Internationalization Functions",
  3302. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3303. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3304. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3305. },
  3306. "type": "library",
  3307. "autoload": {
  3308. "psr-4": {
  3309. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3310. }
  3311. },
  3312. "notification-url": "https://packagist.org/downloads/",
  3313. "license": [
  3314. "MIT"
  3315. ],
  3316. "authors": [
  3317. {
  3318. "name": "Maarten Balliauw",
  3319. "homepage": "https://blog.maartenballiauw.be"
  3320. },
  3321. {
  3322. "name": "Mark Baker",
  3323. "homepage": "https://markbakeruk.net"
  3324. },
  3325. {
  3326. "name": "Franck Lefevre",
  3327. "homepage": "https://rootslabs.net"
  3328. },
  3329. {
  3330. "name": "Erik Tilt"
  3331. },
  3332. {
  3333. "name": "Adrien Crivelli"
  3334. }
  3335. ],
  3336. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3337. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3338. "keywords": [
  3339. "OpenXML",
  3340. "excel",
  3341. "gnumeric",
  3342. "ods",
  3343. "php",
  3344. "spreadsheet",
  3345. "xls",
  3346. "xlsx"
  3347. ],
  3348. "support": {
  3349. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3350. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  3351. },
  3352. "time": "2023-06-14T22:48:31+00:00"
  3353. },
  3354. {
  3355. "name": "phpoption/phpoption",
  3356. "version": "1.9.2",
  3357. "source": {
  3358. "type": "git",
  3359. "url": "https://github.com/schmittjoh/php-option.git",
  3360. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  3361. },
  3362. "dist": {
  3363. "type": "zip",
  3364. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  3365. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  3366. "shasum": "",
  3367. "mirrors": [
  3368. {
  3369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3370. "preferred": true
  3371. }
  3372. ]
  3373. },
  3374. "require": {
  3375. "php": "^7.2.5 || ^8.0"
  3376. },
  3377. "require-dev": {
  3378. "bamarni/composer-bin-plugin": "^1.8.2",
  3379. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  3380. },
  3381. "type": "library",
  3382. "extra": {
  3383. "bamarni-bin": {
  3384. "bin-links": true,
  3385. "forward-command": true
  3386. },
  3387. "branch-alias": {
  3388. "dev-master": "1.9-dev"
  3389. }
  3390. },
  3391. "autoload": {
  3392. "psr-4": {
  3393. "PhpOption\\": "src/PhpOption/"
  3394. }
  3395. },
  3396. "notification-url": "https://packagist.org/downloads/",
  3397. "license": [
  3398. "Apache-2.0"
  3399. ],
  3400. "authors": [
  3401. {
  3402. "name": "Johannes M. Schmitt",
  3403. "email": "schmittjoh@gmail.com",
  3404. "homepage": "https://github.com/schmittjoh"
  3405. },
  3406. {
  3407. "name": "Graham Campbell",
  3408. "email": "hello@gjcampbell.co.uk",
  3409. "homepage": "https://github.com/GrahamCampbell"
  3410. }
  3411. ],
  3412. "description": "Option Type for PHP",
  3413. "keywords": [
  3414. "language",
  3415. "option",
  3416. "php",
  3417. "type"
  3418. ],
  3419. "support": {
  3420. "issues": "https://github.com/schmittjoh/php-option/issues",
  3421. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  3422. },
  3423. "funding": [
  3424. {
  3425. "url": "https://github.com/GrahamCampbell",
  3426. "type": "github"
  3427. },
  3428. {
  3429. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3430. "type": "tidelift"
  3431. }
  3432. ],
  3433. "time": "2023-11-12T21:59:55+00:00"
  3434. },
  3435. {
  3436. "name": "pimple/pimple",
  3437. "version": "v3.5.0",
  3438. "source": {
  3439. "type": "git",
  3440. "url": "https://github.com/silexphp/Pimple.git",
  3441. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3442. },
  3443. "dist": {
  3444. "type": "zip",
  3445. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3446. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3447. "shasum": ""
  3448. },
  3449. "require": {
  3450. "php": ">=7.2.5",
  3451. "psr/container": "^1.1 || ^2.0"
  3452. },
  3453. "require-dev": {
  3454. "symfony/phpunit-bridge": "^5.4@dev"
  3455. },
  3456. "type": "library",
  3457. "extra": {
  3458. "branch-alias": {
  3459. "dev-master": "3.4.x-dev"
  3460. }
  3461. },
  3462. "autoload": {
  3463. "psr-0": {
  3464. "Pimple": "src/"
  3465. }
  3466. },
  3467. "notification-url": "https://packagist.org/downloads/",
  3468. "license": [
  3469. "MIT"
  3470. ],
  3471. "authors": [
  3472. {
  3473. "name": "Fabien Potencier",
  3474. "email": "fabien@symfony.com"
  3475. }
  3476. ],
  3477. "description": "Pimple, a simple Dependency Injection Container",
  3478. "homepage": "https://pimple.symfony.com",
  3479. "keywords": [
  3480. "container",
  3481. "dependency injection"
  3482. ],
  3483. "support": {
  3484. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3485. },
  3486. "time": "2021-10-28T11:13:42+00:00"
  3487. },
  3488. {
  3489. "name": "predis/predis",
  3490. "version": "v1.1.10",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://github.com/predis/predis.git",
  3494. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3499. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3500. "shasum": "",
  3501. "mirrors": [
  3502. {
  3503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3504. "preferred": true
  3505. }
  3506. ]
  3507. },
  3508. "require": {
  3509. "php": ">=5.3.9"
  3510. },
  3511. "require-dev": {
  3512. "phpunit/phpunit": "~4.8"
  3513. },
  3514. "suggest": {
  3515. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3516. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3517. },
  3518. "type": "library",
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Predis\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "Daniele Alessandri",
  3531. "email": "suppakilla@gmail.com",
  3532. "homepage": "http://clorophilla.net",
  3533. "role": "Creator & Maintainer"
  3534. },
  3535. {
  3536. "name": "Till Krüss",
  3537. "homepage": "https://till.im",
  3538. "role": "Maintainer"
  3539. }
  3540. ],
  3541. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3542. "homepage": "http://github.com/predis/predis",
  3543. "keywords": [
  3544. "nosql",
  3545. "predis",
  3546. "redis"
  3547. ],
  3548. "support": {
  3549. "issues": "https://github.com/predis/predis/issues",
  3550. "source": "https://github.com/predis/predis/tree/v1.1.10"
  3551. },
  3552. "funding": [
  3553. {
  3554. "url": "https://github.com/sponsors/tillkruss",
  3555. "type": "github"
  3556. }
  3557. ],
  3558. "time": "2022-01-05T17:46:08+00:00"
  3559. },
  3560. {
  3561. "name": "psr/cache",
  3562. "version": "1.0.1",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/php-fig/cache.git",
  3566. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3571. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "php": ">=5.3.0"
  3576. },
  3577. "type": "library",
  3578. "extra": {
  3579. "branch-alias": {
  3580. "dev-master": "1.0.x-dev"
  3581. }
  3582. },
  3583. "autoload": {
  3584. "psr-4": {
  3585. "Psr\\Cache\\": "src/"
  3586. }
  3587. },
  3588. "notification-url": "https://packagist.org/downloads/",
  3589. "license": [
  3590. "MIT"
  3591. ],
  3592. "authors": [
  3593. {
  3594. "name": "PHP-FIG",
  3595. "homepage": "http://www.php-fig.org/"
  3596. }
  3597. ],
  3598. "description": "Common interface for caching libraries",
  3599. "keywords": [
  3600. "cache",
  3601. "psr",
  3602. "psr-6"
  3603. ],
  3604. "support": {
  3605. "source": "https://github.com/php-fig/cache/tree/master"
  3606. },
  3607. "time": "2016-08-06T20:24:11+00:00"
  3608. },
  3609. {
  3610. "name": "psr/clock",
  3611. "version": "1.0.0",
  3612. "source": {
  3613. "type": "git",
  3614. "url": "https://github.com/php-fig/clock.git",
  3615. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3616. },
  3617. "dist": {
  3618. "type": "zip",
  3619. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3620. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3621. "shasum": "",
  3622. "mirrors": [
  3623. {
  3624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3625. "preferred": true
  3626. }
  3627. ]
  3628. },
  3629. "require": {
  3630. "php": "^7.0 || ^8.0"
  3631. },
  3632. "type": "library",
  3633. "autoload": {
  3634. "psr-4": {
  3635. "Psr\\Clock\\": "src/"
  3636. }
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "PHP-FIG",
  3645. "homepage": "https://www.php-fig.org/"
  3646. }
  3647. ],
  3648. "description": "Common interface for reading the clock.",
  3649. "homepage": "https://github.com/php-fig/clock",
  3650. "keywords": [
  3651. "clock",
  3652. "now",
  3653. "psr",
  3654. "psr-20",
  3655. "time"
  3656. ],
  3657. "support": {
  3658. "issues": "https://github.com/php-fig/clock/issues",
  3659. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3660. },
  3661. "time": "2022-11-25T14:36:26+00:00"
  3662. },
  3663. {
  3664. "name": "psr/container",
  3665. "version": "1.1.2",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/php-fig/container.git",
  3669. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3674. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3675. "shasum": "",
  3676. "mirrors": [
  3677. {
  3678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3679. "preferred": true
  3680. }
  3681. ]
  3682. },
  3683. "require": {
  3684. "php": ">=7.4.0"
  3685. },
  3686. "type": "library",
  3687. "autoload": {
  3688. "psr-4": {
  3689. "Psr\\Container\\": "src/"
  3690. }
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "MIT"
  3695. ],
  3696. "authors": [
  3697. {
  3698. "name": "PHP-FIG",
  3699. "homepage": "https://www.php-fig.org/"
  3700. }
  3701. ],
  3702. "description": "Common Container Interface (PHP FIG PSR-11)",
  3703. "homepage": "https://github.com/php-fig/container",
  3704. "keywords": [
  3705. "PSR-11",
  3706. "container",
  3707. "container-interface",
  3708. "container-interop",
  3709. "psr"
  3710. ],
  3711. "support": {
  3712. "issues": "https://github.com/php-fig/container/issues",
  3713. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3714. },
  3715. "time": "2021-11-05T16:50:12+00:00"
  3716. },
  3717. {
  3718. "name": "psr/event-dispatcher",
  3719. "version": "1.0.0",
  3720. "source": {
  3721. "type": "git",
  3722. "url": "https://github.com/php-fig/event-dispatcher.git",
  3723. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3724. },
  3725. "dist": {
  3726. "type": "zip",
  3727. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3728. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3729. "shasum": "",
  3730. "mirrors": [
  3731. {
  3732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3733. "preferred": true
  3734. }
  3735. ]
  3736. },
  3737. "require": {
  3738. "php": ">=7.2.0"
  3739. },
  3740. "type": "library",
  3741. "extra": {
  3742. "branch-alias": {
  3743. "dev-master": "1.0.x-dev"
  3744. }
  3745. },
  3746. "autoload": {
  3747. "psr-4": {
  3748. "Psr\\EventDispatcher\\": "src/"
  3749. }
  3750. },
  3751. "notification-url": "https://packagist.org/downloads/",
  3752. "license": [
  3753. "MIT"
  3754. ],
  3755. "authors": [
  3756. {
  3757. "name": "PHP-FIG",
  3758. "homepage": "http://www.php-fig.org/"
  3759. }
  3760. ],
  3761. "description": "Standard interfaces for event handling.",
  3762. "keywords": [
  3763. "events",
  3764. "psr",
  3765. "psr-14"
  3766. ],
  3767. "support": {
  3768. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3769. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3770. },
  3771. "time": "2019-01-08T18:20:26+00:00"
  3772. },
  3773. {
  3774. "name": "psr/http-client",
  3775. "version": "1.0.3",
  3776. "source": {
  3777. "type": "git",
  3778. "url": "https://github.com/php-fig/http-client.git",
  3779. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3780. },
  3781. "dist": {
  3782. "type": "zip",
  3783. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3784. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  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": "^7.0 || ^8.0",
  3795. "psr/http-message": "^1.0 || ^2.0"
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "1.0.x-dev"
  3801. }
  3802. },
  3803. "autoload": {
  3804. "psr-4": {
  3805. "Psr\\Http\\Client\\": "src/"
  3806. }
  3807. },
  3808. "notification-url": "https://packagist.org/downloads/",
  3809. "license": [
  3810. "MIT"
  3811. ],
  3812. "authors": [
  3813. {
  3814. "name": "PHP-FIG",
  3815. "homepage": "https://www.php-fig.org/"
  3816. }
  3817. ],
  3818. "description": "Common interface for HTTP clients",
  3819. "homepage": "https://github.com/php-fig/http-client",
  3820. "keywords": [
  3821. "http",
  3822. "http-client",
  3823. "psr",
  3824. "psr-18"
  3825. ],
  3826. "support": {
  3827. "source": "https://github.com/php-fig/http-client"
  3828. },
  3829. "time": "2023-09-23T14:17:50+00:00"
  3830. },
  3831. {
  3832. "name": "psr/http-factory",
  3833. "version": "1.0.2",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://github.com/php-fig/http-factory.git",
  3837. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3842. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3843. "shasum": "",
  3844. "mirrors": [
  3845. {
  3846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3847. "preferred": true
  3848. }
  3849. ]
  3850. },
  3851. "require": {
  3852. "php": ">=7.0.0",
  3853. "psr/http-message": "^1.0 || ^2.0"
  3854. },
  3855. "type": "library",
  3856. "extra": {
  3857. "branch-alias": {
  3858. "dev-master": "1.0.x-dev"
  3859. }
  3860. },
  3861. "autoload": {
  3862. "psr-4": {
  3863. "Psr\\Http\\Message\\": "src/"
  3864. }
  3865. },
  3866. "notification-url": "https://packagist.org/downloads/",
  3867. "license": [
  3868. "MIT"
  3869. ],
  3870. "authors": [
  3871. {
  3872. "name": "PHP-FIG",
  3873. "homepage": "https://www.php-fig.org/"
  3874. }
  3875. ],
  3876. "description": "Common interfaces for PSR-7 HTTP message factories",
  3877. "keywords": [
  3878. "factory",
  3879. "http",
  3880. "message",
  3881. "psr",
  3882. "psr-17",
  3883. "psr-7",
  3884. "request",
  3885. "response"
  3886. ],
  3887. "support": {
  3888. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3889. },
  3890. "time": "2023-04-10T20:10:41+00:00"
  3891. },
  3892. {
  3893. "name": "psr/http-message",
  3894. "version": "1.1",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://github.com/php-fig/http-message.git",
  3898. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3899. },
  3900. "dist": {
  3901. "type": "zip",
  3902. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3903. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3904. "shasum": "",
  3905. "mirrors": [
  3906. {
  3907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3908. "preferred": true
  3909. }
  3910. ]
  3911. },
  3912. "require": {
  3913. "php": "^7.2 || ^8.0"
  3914. },
  3915. "type": "library",
  3916. "extra": {
  3917. "branch-alias": {
  3918. "dev-master": "1.1.x-dev"
  3919. }
  3920. },
  3921. "autoload": {
  3922. "psr-4": {
  3923. "Psr\\Http\\Message\\": "src/"
  3924. }
  3925. },
  3926. "notification-url": "https://packagist.org/downloads/",
  3927. "license": [
  3928. "MIT"
  3929. ],
  3930. "authors": [
  3931. {
  3932. "name": "PHP-FIG",
  3933. "homepage": "http://www.php-fig.org/"
  3934. }
  3935. ],
  3936. "description": "Common interface for HTTP messages",
  3937. "homepage": "https://github.com/php-fig/http-message",
  3938. "keywords": [
  3939. "http",
  3940. "http-message",
  3941. "psr",
  3942. "psr-7",
  3943. "request",
  3944. "response"
  3945. ],
  3946. "support": {
  3947. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3948. },
  3949. "time": "2023-04-04T09:50:52+00:00"
  3950. },
  3951. {
  3952. "name": "psr/log",
  3953. "version": "1.1.4",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/php-fig/log.git",
  3957. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3962. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3963. "shasum": "",
  3964. "mirrors": [
  3965. {
  3966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3967. "preferred": true
  3968. }
  3969. ]
  3970. },
  3971. "require": {
  3972. "php": ">=5.3.0"
  3973. },
  3974. "type": "library",
  3975. "extra": {
  3976. "branch-alias": {
  3977. "dev-master": "1.1.x-dev"
  3978. }
  3979. },
  3980. "autoload": {
  3981. "psr-4": {
  3982. "Psr\\Log\\": "Psr/Log/"
  3983. }
  3984. },
  3985. "notification-url": "https://packagist.org/downloads/",
  3986. "license": [
  3987. "MIT"
  3988. ],
  3989. "authors": [
  3990. {
  3991. "name": "PHP-FIG",
  3992. "homepage": "https://www.php-fig.org/"
  3993. }
  3994. ],
  3995. "description": "Common interface for logging libraries",
  3996. "homepage": "https://github.com/php-fig/log",
  3997. "keywords": [
  3998. "log",
  3999. "psr",
  4000. "psr-3"
  4001. ],
  4002. "support": {
  4003. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4004. },
  4005. "time": "2021-05-03T11:20:27+00:00"
  4006. },
  4007. {
  4008. "name": "psr/simple-cache",
  4009. "version": "1.0.1",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/php-fig/simple-cache.git",
  4013. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4018. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4019. "shasum": "",
  4020. "mirrors": [
  4021. {
  4022. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4023. "preferred": true
  4024. }
  4025. ]
  4026. },
  4027. "require": {
  4028. "php": ">=5.3.0"
  4029. },
  4030. "type": "library",
  4031. "extra": {
  4032. "branch-alias": {
  4033. "dev-master": "1.0.x-dev"
  4034. }
  4035. },
  4036. "autoload": {
  4037. "psr-4": {
  4038. "Psr\\SimpleCache\\": "src/"
  4039. }
  4040. },
  4041. "notification-url": "https://packagist.org/downloads/",
  4042. "license": [
  4043. "MIT"
  4044. ],
  4045. "authors": [
  4046. {
  4047. "name": "PHP-FIG",
  4048. "homepage": "http://www.php-fig.org/"
  4049. }
  4050. ],
  4051. "description": "Common interfaces for simple caching",
  4052. "keywords": [
  4053. "cache",
  4054. "caching",
  4055. "psr",
  4056. "psr-16",
  4057. "simple-cache"
  4058. ],
  4059. "support": {
  4060. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4061. },
  4062. "time": "2017-10-23T01:57:42+00:00"
  4063. },
  4064. {
  4065. "name": "psy/psysh",
  4066. "version": "v0.12.0",
  4067. "source": {
  4068. "type": "git",
  4069. "url": "https://github.com/bobthecow/psysh.git",
  4070. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  4071. },
  4072. "dist": {
  4073. "type": "zip",
  4074. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4075. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4076. "shasum": "",
  4077. "mirrors": [
  4078. {
  4079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4080. "preferred": true
  4081. }
  4082. ]
  4083. },
  4084. "require": {
  4085. "ext-json": "*",
  4086. "ext-tokenizer": "*",
  4087. "nikic/php-parser": "^5.0 || ^4.0",
  4088. "php": "^8.0 || ^7.4",
  4089. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4090. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4091. },
  4092. "conflict": {
  4093. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4094. },
  4095. "require-dev": {
  4096. "bamarni/composer-bin-plugin": "^1.2"
  4097. },
  4098. "suggest": {
  4099. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4100. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4101. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4102. },
  4103. "bin": [
  4104. "bin/psysh"
  4105. ],
  4106. "type": "library",
  4107. "extra": {
  4108. "branch-alias": {
  4109. "dev-main": "0.12.x-dev"
  4110. },
  4111. "bamarni-bin": {
  4112. "bin-links": false,
  4113. "forward-command": false
  4114. }
  4115. },
  4116. "autoload": {
  4117. "files": [
  4118. "src/functions.php"
  4119. ],
  4120. "psr-4": {
  4121. "Psy\\": "src/"
  4122. }
  4123. },
  4124. "notification-url": "https://packagist.org/downloads/",
  4125. "license": [
  4126. "MIT"
  4127. ],
  4128. "authors": [
  4129. {
  4130. "name": "Justin Hileman",
  4131. "email": "justin@justinhileman.info",
  4132. "homepage": "http://justinhileman.com"
  4133. }
  4134. ],
  4135. "description": "An interactive shell for modern PHP.",
  4136. "homepage": "http://psysh.org",
  4137. "keywords": [
  4138. "REPL",
  4139. "console",
  4140. "interactive",
  4141. "shell"
  4142. ],
  4143. "support": {
  4144. "issues": "https://github.com/bobthecow/psysh/issues",
  4145. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  4146. },
  4147. "time": "2023-12-20T15:28:09+00:00"
  4148. },
  4149. {
  4150. "name": "ralouphie/getallheaders",
  4151. "version": "3.0.3",
  4152. "source": {
  4153. "type": "git",
  4154. "url": "https://github.com/ralouphie/getallheaders.git",
  4155. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4156. },
  4157. "dist": {
  4158. "type": "zip",
  4159. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4160. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4161. "shasum": "",
  4162. "mirrors": [
  4163. {
  4164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4165. "preferred": true
  4166. }
  4167. ]
  4168. },
  4169. "require": {
  4170. "php": ">=5.6"
  4171. },
  4172. "require-dev": {
  4173. "php-coveralls/php-coveralls": "^2.1",
  4174. "phpunit/phpunit": "^5 || ^6.5"
  4175. },
  4176. "type": "library",
  4177. "autoload": {
  4178. "files": [
  4179. "src/getallheaders.php"
  4180. ]
  4181. },
  4182. "notification-url": "https://packagist.org/downloads/",
  4183. "license": [
  4184. "MIT"
  4185. ],
  4186. "authors": [
  4187. {
  4188. "name": "Ralph Khattar",
  4189. "email": "ralph.khattar@gmail.com"
  4190. }
  4191. ],
  4192. "description": "A polyfill for getallheaders.",
  4193. "support": {
  4194. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4195. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4196. },
  4197. "time": "2019-03-08T08:55:37+00:00"
  4198. },
  4199. {
  4200. "name": "ramsey/collection",
  4201. "version": "1.3.0",
  4202. "source": {
  4203. "type": "git",
  4204. "url": "https://github.com/ramsey/collection.git",
  4205. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4206. },
  4207. "dist": {
  4208. "type": "zip",
  4209. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4210. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4211. "shasum": "",
  4212. "mirrors": [
  4213. {
  4214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4215. "preferred": true
  4216. }
  4217. ]
  4218. },
  4219. "require": {
  4220. "php": "^7.4 || ^8.0",
  4221. "symfony/polyfill-php81": "^1.23"
  4222. },
  4223. "require-dev": {
  4224. "captainhook/plugin-composer": "^5.3",
  4225. "ergebnis/composer-normalize": "^2.28.3",
  4226. "fakerphp/faker": "^1.21",
  4227. "hamcrest/hamcrest-php": "^2.0",
  4228. "jangregor/phpstan-prophecy": "^1.0",
  4229. "mockery/mockery": "^1.5",
  4230. "php-parallel-lint/php-console-highlighter": "^1.0",
  4231. "php-parallel-lint/php-parallel-lint": "^1.3",
  4232. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4233. "phpspec/prophecy-phpunit": "^2.0",
  4234. "phpstan/extension-installer": "^1.2",
  4235. "phpstan/phpstan": "^1.9",
  4236. "phpstan/phpstan-mockery": "^1.1",
  4237. "phpstan/phpstan-phpunit": "^1.3",
  4238. "phpunit/phpunit": "^9.5",
  4239. "psalm/plugin-mockery": "^1.1",
  4240. "psalm/plugin-phpunit": "^0.18.4",
  4241. "ramsey/coding-standard": "^2.0.3",
  4242. "ramsey/conventional-commits": "^1.3",
  4243. "vimeo/psalm": "^5.4"
  4244. },
  4245. "type": "library",
  4246. "extra": {
  4247. "captainhook": {
  4248. "force-install": true
  4249. },
  4250. "ramsey/conventional-commits": {
  4251. "configFile": "conventional-commits.json"
  4252. }
  4253. },
  4254. "autoload": {
  4255. "psr-4": {
  4256. "Ramsey\\Collection\\": "src/"
  4257. }
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "MIT"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Ben Ramsey",
  4266. "email": "ben@benramsey.com",
  4267. "homepage": "https://benramsey.com"
  4268. }
  4269. ],
  4270. "description": "A PHP library for representing and manipulating collections.",
  4271. "keywords": [
  4272. "array",
  4273. "collection",
  4274. "hash",
  4275. "map",
  4276. "queue",
  4277. "set"
  4278. ],
  4279. "support": {
  4280. "issues": "https://github.com/ramsey/collection/issues",
  4281. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4282. },
  4283. "funding": [
  4284. {
  4285. "url": "https://github.com/ramsey",
  4286. "type": "github"
  4287. },
  4288. {
  4289. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4290. "type": "tidelift"
  4291. }
  4292. ],
  4293. "time": "2022-12-27T19:12:24+00:00"
  4294. },
  4295. {
  4296. "name": "ramsey/uuid",
  4297. "version": "4.2.3",
  4298. "source": {
  4299. "type": "git",
  4300. "url": "https://github.com/ramsey/uuid.git",
  4301. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4302. },
  4303. "dist": {
  4304. "type": "zip",
  4305. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4306. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4307. "shasum": "",
  4308. "mirrors": [
  4309. {
  4310. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4311. "preferred": true
  4312. }
  4313. ]
  4314. },
  4315. "require": {
  4316. "brick/math": "^0.8 || ^0.9",
  4317. "ext-json": "*",
  4318. "php": "^7.2 || ^8.0",
  4319. "ramsey/collection": "^1.0",
  4320. "symfony/polyfill-ctype": "^1.8",
  4321. "symfony/polyfill-php80": "^1.14"
  4322. },
  4323. "replace": {
  4324. "rhumsaa/uuid": "self.version"
  4325. },
  4326. "require-dev": {
  4327. "captainhook/captainhook": "^5.10",
  4328. "captainhook/plugin-composer": "^5.3",
  4329. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4330. "doctrine/annotations": "^1.8",
  4331. "ergebnis/composer-normalize": "^2.15",
  4332. "mockery/mockery": "^1.3",
  4333. "moontoast/math": "^1.1",
  4334. "paragonie/random-lib": "^2",
  4335. "php-mock/php-mock": "^2.2",
  4336. "php-mock/php-mock-mockery": "^1.3",
  4337. "php-parallel-lint/php-parallel-lint": "^1.1",
  4338. "phpbench/phpbench": "^1.0",
  4339. "phpstan/extension-installer": "^1.0",
  4340. "phpstan/phpstan": "^0.12",
  4341. "phpstan/phpstan-mockery": "^0.12",
  4342. "phpstan/phpstan-phpunit": "^0.12",
  4343. "phpunit/phpunit": "^8.5 || ^9",
  4344. "slevomat/coding-standard": "^7.0",
  4345. "squizlabs/php_codesniffer": "^3.5",
  4346. "vimeo/psalm": "^4.9"
  4347. },
  4348. "suggest": {
  4349. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4350. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4351. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4352. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4353. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4354. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4355. },
  4356. "type": "library",
  4357. "extra": {
  4358. "branch-alias": {
  4359. "dev-main": "4.x-dev"
  4360. },
  4361. "captainhook": {
  4362. "force-install": true
  4363. }
  4364. },
  4365. "autoload": {
  4366. "files": [
  4367. "src/functions.php"
  4368. ],
  4369. "psr-4": {
  4370. "Ramsey\\Uuid\\": "src/"
  4371. }
  4372. },
  4373. "notification-url": "https://packagist.org/downloads/",
  4374. "license": [
  4375. "MIT"
  4376. ],
  4377. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4378. "keywords": [
  4379. "guid",
  4380. "identifier",
  4381. "uuid"
  4382. ],
  4383. "support": {
  4384. "issues": "https://github.com/ramsey/uuid/issues",
  4385. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4386. },
  4387. "funding": [
  4388. {
  4389. "url": "https://github.com/ramsey",
  4390. "type": "github"
  4391. },
  4392. {
  4393. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4394. "type": "tidelift"
  4395. }
  4396. ],
  4397. "time": "2021-09-25T23:10:38+00:00"
  4398. },
  4399. {
  4400. "name": "swiftmailer/swiftmailer",
  4401. "version": "v6.3.0",
  4402. "source": {
  4403. "type": "git",
  4404. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4405. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4406. },
  4407. "dist": {
  4408. "type": "zip",
  4409. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4410. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4411. "shasum": ""
  4412. },
  4413. "require": {
  4414. "egulias/email-validator": "^2.0|^3.1",
  4415. "php": ">=7.0.0",
  4416. "symfony/polyfill-iconv": "^1.0",
  4417. "symfony/polyfill-intl-idn": "^1.10",
  4418. "symfony/polyfill-mbstring": "^1.0"
  4419. },
  4420. "require-dev": {
  4421. "mockery/mockery": "^1.0",
  4422. "symfony/phpunit-bridge": "^4.4|^5.4"
  4423. },
  4424. "suggest": {
  4425. "ext-intl": "Needed to support internationalized email addresses"
  4426. },
  4427. "type": "library",
  4428. "extra": {
  4429. "branch-alias": {
  4430. "dev-master": "6.2-dev"
  4431. }
  4432. },
  4433. "autoload": {
  4434. "files": [
  4435. "lib/swift_required.php"
  4436. ]
  4437. },
  4438. "notification-url": "https://packagist.org/downloads/",
  4439. "license": [
  4440. "MIT"
  4441. ],
  4442. "authors": [
  4443. {
  4444. "name": "Chris Corbyn"
  4445. },
  4446. {
  4447. "name": "Fabien Potencier",
  4448. "email": "fabien@symfony.com"
  4449. }
  4450. ],
  4451. "description": "Swiftmailer, free feature-rich PHP mailer",
  4452. "homepage": "https://swiftmailer.symfony.com",
  4453. "keywords": [
  4454. "email",
  4455. "mail",
  4456. "mailer"
  4457. ],
  4458. "support": {
  4459. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4460. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4461. },
  4462. "funding": [
  4463. {
  4464. "url": "https://github.com/fabpot",
  4465. "type": "github"
  4466. },
  4467. {
  4468. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4469. "type": "tidelift"
  4470. }
  4471. ],
  4472. "abandoned": "symfony/mailer",
  4473. "time": "2021-10-18T15:26:12+00:00"
  4474. },
  4475. {
  4476. "name": "symfony/cache",
  4477. "version": "v5.4.42",
  4478. "source": {
  4479. "type": "git",
  4480. "url": "https://github.com/symfony/cache.git",
  4481. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e"
  4482. },
  4483. "dist": {
  4484. "type": "zip",
  4485. "url": "https://api.github.com/repos/symfony/cache/zipball/6f5f750692bd5a212e01a4f1945fd856bceef89e",
  4486. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e",
  4487. "shasum": ""
  4488. },
  4489. "require": {
  4490. "php": ">=7.2.5",
  4491. "psr/cache": "^1.0|^2.0",
  4492. "psr/log": "^1.1|^2|^3",
  4493. "symfony/cache-contracts": "^1.1.7|^2",
  4494. "symfony/deprecation-contracts": "^2.1|^3",
  4495. "symfony/polyfill-php73": "^1.9",
  4496. "symfony/polyfill-php80": "^1.16",
  4497. "symfony/service-contracts": "^1.1|^2|^3",
  4498. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4499. },
  4500. "conflict": {
  4501. "doctrine/dbal": "<2.13.1",
  4502. "symfony/dependency-injection": "<4.4",
  4503. "symfony/http-kernel": "<4.4",
  4504. "symfony/var-dumper": "<4.4"
  4505. },
  4506. "provide": {
  4507. "psr/cache-implementation": "1.0|2.0",
  4508. "psr/simple-cache-implementation": "1.0|2.0",
  4509. "symfony/cache-implementation": "1.0|2.0"
  4510. },
  4511. "require-dev": {
  4512. "cache/integration-tests": "dev-master",
  4513. "doctrine/cache": "^1.6|^2.0",
  4514. "doctrine/dbal": "^2.13.1|^3|^4",
  4515. "predis/predis": "^1.1|^2.0",
  4516. "psr/simple-cache": "^1.0|^2.0",
  4517. "symfony/config": "^4.4|^5.0|^6.0",
  4518. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4519. "symfony/filesystem": "^4.4|^5.0|^6.0",
  4520. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4521. "symfony/messenger": "^4.4|^5.0|^6.0",
  4522. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4523. },
  4524. "type": "library",
  4525. "autoload": {
  4526. "psr-4": {
  4527. "Symfony\\Component\\Cache\\": ""
  4528. },
  4529. "exclude-from-classmap": [
  4530. "/Tests/"
  4531. ]
  4532. },
  4533. "notification-url": "https://packagist.org/downloads/",
  4534. "license": [
  4535. "MIT"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Nicolas Grekas",
  4540. "email": "p@tchwork.com"
  4541. },
  4542. {
  4543. "name": "Symfony Community",
  4544. "homepage": "https://symfony.com/contributors"
  4545. }
  4546. ],
  4547. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4548. "homepage": "https://symfony.com",
  4549. "keywords": [
  4550. "caching",
  4551. "psr6"
  4552. ],
  4553. "support": {
  4554. "source": "https://github.com/symfony/cache/tree/v5.4.42"
  4555. },
  4556. "funding": [
  4557. {
  4558. "url": "https://symfony.com/sponsor",
  4559. "type": "custom"
  4560. },
  4561. {
  4562. "url": "https://github.com/fabpot",
  4563. "type": "github"
  4564. },
  4565. {
  4566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4567. "type": "tidelift"
  4568. }
  4569. ],
  4570. "time": "2024-07-10T06:02:18+00:00"
  4571. },
  4572. {
  4573. "name": "symfony/cache-contracts",
  4574. "version": "v2.5.3",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/symfony/cache-contracts.git",
  4578. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/fee6db04d913094e2fb55ff8e7db5685a8134463",
  4583. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "php": ">=7.2.5",
  4588. "psr/cache": "^1.0|^2.0|^3.0"
  4589. },
  4590. "suggest": {
  4591. "symfony/cache-implementation": ""
  4592. },
  4593. "type": "library",
  4594. "extra": {
  4595. "branch-alias": {
  4596. "dev-main": "2.5-dev"
  4597. },
  4598. "thanks": {
  4599. "name": "symfony/contracts",
  4600. "url": "https://github.com/symfony/contracts"
  4601. }
  4602. },
  4603. "autoload": {
  4604. "psr-4": {
  4605. "Symfony\\Contracts\\Cache\\": ""
  4606. }
  4607. },
  4608. "notification-url": "https://packagist.org/downloads/",
  4609. "license": [
  4610. "MIT"
  4611. ],
  4612. "authors": [
  4613. {
  4614. "name": "Nicolas Grekas",
  4615. "email": "p@tchwork.com"
  4616. },
  4617. {
  4618. "name": "Symfony Community",
  4619. "homepage": "https://symfony.com/contributors"
  4620. }
  4621. ],
  4622. "description": "Generic abstractions related to caching",
  4623. "homepage": "https://symfony.com",
  4624. "keywords": [
  4625. "abstractions",
  4626. "contracts",
  4627. "decoupling",
  4628. "interfaces",
  4629. "interoperability",
  4630. "standards"
  4631. ],
  4632. "support": {
  4633. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.3"
  4634. },
  4635. "funding": [
  4636. {
  4637. "url": "https://symfony.com/sponsor",
  4638. "type": "custom"
  4639. },
  4640. {
  4641. "url": "https://github.com/fabpot",
  4642. "type": "github"
  4643. },
  4644. {
  4645. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4646. "type": "tidelift"
  4647. }
  4648. ],
  4649. "time": "2024-01-23T13:51:25+00:00"
  4650. },
  4651. {
  4652. "name": "symfony/console",
  4653. "version": "v5.4.34",
  4654. "source": {
  4655. "type": "git",
  4656. "url": "https://github.com/symfony/console.git",
  4657. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c"
  4658. },
  4659. "dist": {
  4660. "type": "zip",
  4661. "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c",
  4662. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c",
  4663. "shasum": "",
  4664. "mirrors": [
  4665. {
  4666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4667. "preferred": true
  4668. }
  4669. ]
  4670. },
  4671. "require": {
  4672. "php": ">=7.2.5",
  4673. "symfony/deprecation-contracts": "^2.1|^3",
  4674. "symfony/polyfill-mbstring": "~1.0",
  4675. "symfony/polyfill-php73": "^1.9",
  4676. "symfony/polyfill-php80": "^1.16",
  4677. "symfony/service-contracts": "^1.1|^2|^3",
  4678. "symfony/string": "^5.1|^6.0"
  4679. },
  4680. "conflict": {
  4681. "psr/log": ">=3",
  4682. "symfony/dependency-injection": "<4.4",
  4683. "symfony/dotenv": "<5.1",
  4684. "symfony/event-dispatcher": "<4.4",
  4685. "symfony/lock": "<4.4",
  4686. "symfony/process": "<4.4"
  4687. },
  4688. "provide": {
  4689. "psr/log-implementation": "1.0|2.0"
  4690. },
  4691. "require-dev": {
  4692. "psr/log": "^1|^2",
  4693. "symfony/config": "^4.4|^5.0|^6.0",
  4694. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4695. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4696. "symfony/lock": "^4.4|^5.0|^6.0",
  4697. "symfony/process": "^4.4|^5.0|^6.0",
  4698. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4699. },
  4700. "suggest": {
  4701. "psr/log": "For using the console logger",
  4702. "symfony/event-dispatcher": "",
  4703. "symfony/lock": "",
  4704. "symfony/process": ""
  4705. },
  4706. "type": "library",
  4707. "autoload": {
  4708. "psr-4": {
  4709. "Symfony\\Component\\Console\\": ""
  4710. },
  4711. "exclude-from-classmap": [
  4712. "/Tests/"
  4713. ]
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "Fabien Potencier",
  4722. "email": "fabien@symfony.com"
  4723. },
  4724. {
  4725. "name": "Symfony Community",
  4726. "homepage": "https://symfony.com/contributors"
  4727. }
  4728. ],
  4729. "description": "Eases the creation of beautiful and testable command line interfaces",
  4730. "homepage": "https://symfony.com",
  4731. "keywords": [
  4732. "cli",
  4733. "command-line",
  4734. "console",
  4735. "terminal"
  4736. ],
  4737. "support": {
  4738. "source": "https://github.com/symfony/console/tree/v5.4.34"
  4739. },
  4740. "funding": [
  4741. {
  4742. "url": "https://symfony.com/sponsor",
  4743. "type": "custom"
  4744. },
  4745. {
  4746. "url": "https://github.com/fabpot",
  4747. "type": "github"
  4748. },
  4749. {
  4750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4751. "type": "tidelift"
  4752. }
  4753. ],
  4754. "time": "2023-12-08T13:33:03+00:00"
  4755. },
  4756. {
  4757. "name": "symfony/css-selector",
  4758. "version": "v5.4.26",
  4759. "source": {
  4760. "type": "git",
  4761. "url": "https://github.com/symfony/css-selector.git",
  4762. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  4763. },
  4764. "dist": {
  4765. "type": "zip",
  4766. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  4767. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  4768. "shasum": "",
  4769. "mirrors": [
  4770. {
  4771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4772. "preferred": true
  4773. }
  4774. ]
  4775. },
  4776. "require": {
  4777. "php": ">=7.2.5",
  4778. "symfony/polyfill-php80": "^1.16"
  4779. },
  4780. "type": "library",
  4781. "autoload": {
  4782. "psr-4": {
  4783. "Symfony\\Component\\CssSelector\\": ""
  4784. },
  4785. "exclude-from-classmap": [
  4786. "/Tests/"
  4787. ]
  4788. },
  4789. "notification-url": "https://packagist.org/downloads/",
  4790. "license": [
  4791. "MIT"
  4792. ],
  4793. "authors": [
  4794. {
  4795. "name": "Fabien Potencier",
  4796. "email": "fabien@symfony.com"
  4797. },
  4798. {
  4799. "name": "Jean-François Simon",
  4800. "email": "jeanfrancois.simon@sensiolabs.com"
  4801. },
  4802. {
  4803. "name": "Symfony Community",
  4804. "homepage": "https://symfony.com/contributors"
  4805. }
  4806. ],
  4807. "description": "Converts CSS selectors to XPath expressions",
  4808. "homepage": "https://symfony.com",
  4809. "support": {
  4810. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  4811. },
  4812. "funding": [
  4813. {
  4814. "url": "https://symfony.com/sponsor",
  4815. "type": "custom"
  4816. },
  4817. {
  4818. "url": "https://github.com/fabpot",
  4819. "type": "github"
  4820. },
  4821. {
  4822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4823. "type": "tidelift"
  4824. }
  4825. ],
  4826. "time": "2023-07-07T06:10:25+00:00"
  4827. },
  4828. {
  4829. "name": "symfony/deprecation-contracts",
  4830. "version": "v2.5.2",
  4831. "source": {
  4832. "type": "git",
  4833. "url": "https://github.com/symfony/deprecation-contracts.git",
  4834. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  4835. },
  4836. "dist": {
  4837. "type": "zip",
  4838. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4839. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4840. "shasum": "",
  4841. "mirrors": [
  4842. {
  4843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4844. "preferred": true
  4845. }
  4846. ]
  4847. },
  4848. "require": {
  4849. "php": ">=7.1"
  4850. },
  4851. "type": "library",
  4852. "extra": {
  4853. "branch-alias": {
  4854. "dev-main": "2.5-dev"
  4855. },
  4856. "thanks": {
  4857. "name": "symfony/contracts",
  4858. "url": "https://github.com/symfony/contracts"
  4859. }
  4860. },
  4861. "autoload": {
  4862. "files": [
  4863. "function.php"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "MIT"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Nicolas Grekas",
  4873. "email": "p@tchwork.com"
  4874. },
  4875. {
  4876. "name": "Symfony Community",
  4877. "homepage": "https://symfony.com/contributors"
  4878. }
  4879. ],
  4880. "description": "A generic function and convention to trigger deprecation notices",
  4881. "homepage": "https://symfony.com",
  4882. "support": {
  4883. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  4884. },
  4885. "funding": [
  4886. {
  4887. "url": "https://symfony.com/sponsor",
  4888. "type": "custom"
  4889. },
  4890. {
  4891. "url": "https://github.com/fabpot",
  4892. "type": "github"
  4893. },
  4894. {
  4895. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4896. "type": "tidelift"
  4897. }
  4898. ],
  4899. "time": "2022-01-02T09:53:40+00:00"
  4900. },
  4901. {
  4902. "name": "symfony/error-handler",
  4903. "version": "v5.4.29",
  4904. "source": {
  4905. "type": "git",
  4906. "url": "https://github.com/symfony/error-handler.git",
  4907. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  4908. },
  4909. "dist": {
  4910. "type": "zip",
  4911. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  4912. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  4913. "shasum": "",
  4914. "mirrors": [
  4915. {
  4916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4917. "preferred": true
  4918. }
  4919. ]
  4920. },
  4921. "require": {
  4922. "php": ">=7.2.5",
  4923. "psr/log": "^1|^2|^3",
  4924. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4925. },
  4926. "require-dev": {
  4927. "symfony/deprecation-contracts": "^2.1|^3",
  4928. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4929. "symfony/serializer": "^4.4|^5.0|^6.0"
  4930. },
  4931. "bin": [
  4932. "Resources/bin/patch-type-declarations"
  4933. ],
  4934. "type": "library",
  4935. "autoload": {
  4936. "psr-4": {
  4937. "Symfony\\Component\\ErrorHandler\\": ""
  4938. },
  4939. "exclude-from-classmap": [
  4940. "/Tests/"
  4941. ]
  4942. },
  4943. "notification-url": "https://packagist.org/downloads/",
  4944. "license": [
  4945. "MIT"
  4946. ],
  4947. "authors": [
  4948. {
  4949. "name": "Fabien Potencier",
  4950. "email": "fabien@symfony.com"
  4951. },
  4952. {
  4953. "name": "Symfony Community",
  4954. "homepage": "https://symfony.com/contributors"
  4955. }
  4956. ],
  4957. "description": "Provides tools to manage errors and ease debugging PHP code",
  4958. "homepage": "https://symfony.com",
  4959. "support": {
  4960. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  4961. },
  4962. "funding": [
  4963. {
  4964. "url": "https://symfony.com/sponsor",
  4965. "type": "custom"
  4966. },
  4967. {
  4968. "url": "https://github.com/fabpot",
  4969. "type": "github"
  4970. },
  4971. {
  4972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4973. "type": "tidelift"
  4974. }
  4975. ],
  4976. "time": "2023-09-06T21:54:06+00:00"
  4977. },
  4978. {
  4979. "name": "symfony/event-dispatcher",
  4980. "version": "v5.4.34",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://github.com/symfony/event-dispatcher.git",
  4984. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  4989. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  4990. "shasum": "",
  4991. "mirrors": [
  4992. {
  4993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4994. "preferred": true
  4995. }
  4996. ]
  4997. },
  4998. "require": {
  4999. "php": ">=7.2.5",
  5000. "symfony/deprecation-contracts": "^2.1|^3",
  5001. "symfony/event-dispatcher-contracts": "^2|^3",
  5002. "symfony/polyfill-php80": "^1.16"
  5003. },
  5004. "conflict": {
  5005. "symfony/dependency-injection": "<4.4"
  5006. },
  5007. "provide": {
  5008. "psr/event-dispatcher-implementation": "1.0",
  5009. "symfony/event-dispatcher-implementation": "2.0"
  5010. },
  5011. "require-dev": {
  5012. "psr/log": "^1|^2|^3",
  5013. "symfony/config": "^4.4|^5.0|^6.0",
  5014. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5015. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5016. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5017. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5018. "symfony/service-contracts": "^1.1|^2|^3",
  5019. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5020. },
  5021. "suggest": {
  5022. "symfony/dependency-injection": "",
  5023. "symfony/http-kernel": ""
  5024. },
  5025. "type": "library",
  5026. "autoload": {
  5027. "psr-4": {
  5028. "Symfony\\Component\\EventDispatcher\\": ""
  5029. },
  5030. "exclude-from-classmap": [
  5031. "/Tests/"
  5032. ]
  5033. },
  5034. "notification-url": "https://packagist.org/downloads/",
  5035. "license": [
  5036. "MIT"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "Fabien Potencier",
  5041. "email": "fabien@symfony.com"
  5042. },
  5043. {
  5044. "name": "Symfony Community",
  5045. "homepage": "https://symfony.com/contributors"
  5046. }
  5047. ],
  5048. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5049. "homepage": "https://symfony.com",
  5050. "support": {
  5051. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34"
  5052. },
  5053. "funding": [
  5054. {
  5055. "url": "https://symfony.com/sponsor",
  5056. "type": "custom"
  5057. },
  5058. {
  5059. "url": "https://github.com/fabpot",
  5060. "type": "github"
  5061. },
  5062. {
  5063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5064. "type": "tidelift"
  5065. }
  5066. ],
  5067. "time": "2023-12-27T21:12:56+00:00"
  5068. },
  5069. {
  5070. "name": "symfony/event-dispatcher-contracts",
  5071. "version": "v2.5.2",
  5072. "source": {
  5073. "type": "git",
  5074. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5075. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5076. },
  5077. "dist": {
  5078. "type": "zip",
  5079. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5080. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5081. "shasum": "",
  5082. "mirrors": [
  5083. {
  5084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5085. "preferred": true
  5086. }
  5087. ]
  5088. },
  5089. "require": {
  5090. "php": ">=7.2.5",
  5091. "psr/event-dispatcher": "^1"
  5092. },
  5093. "suggest": {
  5094. "symfony/event-dispatcher-implementation": ""
  5095. },
  5096. "type": "library",
  5097. "extra": {
  5098. "branch-alias": {
  5099. "dev-main": "2.5-dev"
  5100. },
  5101. "thanks": {
  5102. "name": "symfony/contracts",
  5103. "url": "https://github.com/symfony/contracts"
  5104. }
  5105. },
  5106. "autoload": {
  5107. "psr-4": {
  5108. "Symfony\\Contracts\\EventDispatcher\\": ""
  5109. }
  5110. },
  5111. "notification-url": "https://packagist.org/downloads/",
  5112. "license": [
  5113. "MIT"
  5114. ],
  5115. "authors": [
  5116. {
  5117. "name": "Nicolas Grekas",
  5118. "email": "p@tchwork.com"
  5119. },
  5120. {
  5121. "name": "Symfony Community",
  5122. "homepage": "https://symfony.com/contributors"
  5123. }
  5124. ],
  5125. "description": "Generic abstractions related to dispatching event",
  5126. "homepage": "https://symfony.com",
  5127. "keywords": [
  5128. "abstractions",
  5129. "contracts",
  5130. "decoupling",
  5131. "interfaces",
  5132. "interoperability",
  5133. "standards"
  5134. ],
  5135. "support": {
  5136. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5137. },
  5138. "funding": [
  5139. {
  5140. "url": "https://symfony.com/sponsor",
  5141. "type": "custom"
  5142. },
  5143. {
  5144. "url": "https://github.com/fabpot",
  5145. "type": "github"
  5146. },
  5147. {
  5148. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5149. "type": "tidelift"
  5150. }
  5151. ],
  5152. "time": "2022-01-02T09:53:40+00:00"
  5153. },
  5154. {
  5155. "name": "symfony/finder",
  5156. "version": "v5.4.27",
  5157. "source": {
  5158. "type": "git",
  5159. "url": "https://github.com/symfony/finder.git",
  5160. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  5161. },
  5162. "dist": {
  5163. "type": "zip",
  5164. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5165. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5166. "shasum": "",
  5167. "mirrors": [
  5168. {
  5169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5170. "preferred": true
  5171. }
  5172. ]
  5173. },
  5174. "require": {
  5175. "php": ">=7.2.5",
  5176. "symfony/deprecation-contracts": "^2.1|^3",
  5177. "symfony/polyfill-php80": "^1.16"
  5178. },
  5179. "type": "library",
  5180. "autoload": {
  5181. "psr-4": {
  5182. "Symfony\\Component\\Finder\\": ""
  5183. },
  5184. "exclude-from-classmap": [
  5185. "/Tests/"
  5186. ]
  5187. },
  5188. "notification-url": "https://packagist.org/downloads/",
  5189. "license": [
  5190. "MIT"
  5191. ],
  5192. "authors": [
  5193. {
  5194. "name": "Fabien Potencier",
  5195. "email": "fabien@symfony.com"
  5196. },
  5197. {
  5198. "name": "Symfony Community",
  5199. "homepage": "https://symfony.com/contributors"
  5200. }
  5201. ],
  5202. "description": "Finds files and directories via an intuitive fluent interface",
  5203. "homepage": "https://symfony.com",
  5204. "support": {
  5205. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  5206. },
  5207. "funding": [
  5208. {
  5209. "url": "https://symfony.com/sponsor",
  5210. "type": "custom"
  5211. },
  5212. {
  5213. "url": "https://github.com/fabpot",
  5214. "type": "github"
  5215. },
  5216. {
  5217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5218. "type": "tidelift"
  5219. }
  5220. ],
  5221. "time": "2023-07-31T08:02:31+00:00"
  5222. },
  5223. {
  5224. "name": "symfony/http-foundation",
  5225. "version": "v5.4.34",
  5226. "source": {
  5227. "type": "git",
  5228. "url": "https://github.com/symfony/http-foundation.git",
  5229. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec"
  5230. },
  5231. "dist": {
  5232. "type": "zip",
  5233. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5234. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5235. "shasum": "",
  5236. "mirrors": [
  5237. {
  5238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5239. "preferred": true
  5240. }
  5241. ]
  5242. },
  5243. "require": {
  5244. "php": ">=7.2.5",
  5245. "symfony/deprecation-contracts": "^2.1|^3",
  5246. "symfony/polyfill-mbstring": "~1.1",
  5247. "symfony/polyfill-php80": "^1.16"
  5248. },
  5249. "require-dev": {
  5250. "predis/predis": "~1.0",
  5251. "symfony/cache": "^4.4|^5.0|^6.0",
  5252. "symfony/dependency-injection": "^5.4|^6.0",
  5253. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5254. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5255. "symfony/mime": "^4.4|^5.0|^6.0",
  5256. "symfony/rate-limiter": "^5.2|^6.0"
  5257. },
  5258. "suggest": {
  5259. "symfony/mime": "To use the file extension guesser"
  5260. },
  5261. "type": "library",
  5262. "autoload": {
  5263. "psr-4": {
  5264. "Symfony\\Component\\HttpFoundation\\": ""
  5265. },
  5266. "exclude-from-classmap": [
  5267. "/Tests/"
  5268. ]
  5269. },
  5270. "notification-url": "https://packagist.org/downloads/",
  5271. "license": [
  5272. "MIT"
  5273. ],
  5274. "authors": [
  5275. {
  5276. "name": "Fabien Potencier",
  5277. "email": "fabien@symfony.com"
  5278. },
  5279. {
  5280. "name": "Symfony Community",
  5281. "homepage": "https://symfony.com/contributors"
  5282. }
  5283. ],
  5284. "description": "Defines an object-oriented layer for the HTTP specification",
  5285. "homepage": "https://symfony.com",
  5286. "support": {
  5287. "source": "https://github.com/symfony/http-foundation/tree/v5.4.34"
  5288. },
  5289. "funding": [
  5290. {
  5291. "url": "https://symfony.com/sponsor",
  5292. "type": "custom"
  5293. },
  5294. {
  5295. "url": "https://github.com/fabpot",
  5296. "type": "github"
  5297. },
  5298. {
  5299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5300. "type": "tidelift"
  5301. }
  5302. ],
  5303. "time": "2023-12-27T11:45:35+00:00"
  5304. },
  5305. {
  5306. "name": "symfony/http-kernel",
  5307. "version": "v5.4.34",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/symfony/http-kernel.git",
  5311. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5316. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5317. "shasum": "",
  5318. "mirrors": [
  5319. {
  5320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5321. "preferred": true
  5322. }
  5323. ]
  5324. },
  5325. "require": {
  5326. "php": ">=7.2.5",
  5327. "psr/log": "^1|^2",
  5328. "symfony/deprecation-contracts": "^2.1|^3",
  5329. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5330. "symfony/event-dispatcher": "^5.0|^6.0",
  5331. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5332. "symfony/polyfill-ctype": "^1.8",
  5333. "symfony/polyfill-php73": "^1.9",
  5334. "symfony/polyfill-php80": "^1.16"
  5335. },
  5336. "conflict": {
  5337. "symfony/browser-kit": "<5.4",
  5338. "symfony/cache": "<5.0",
  5339. "symfony/config": "<5.0",
  5340. "symfony/console": "<4.4",
  5341. "symfony/dependency-injection": "<5.3",
  5342. "symfony/doctrine-bridge": "<5.0",
  5343. "symfony/form": "<5.0",
  5344. "symfony/http-client": "<5.0",
  5345. "symfony/mailer": "<5.0",
  5346. "symfony/messenger": "<5.0",
  5347. "symfony/translation": "<5.0",
  5348. "symfony/twig-bridge": "<5.0",
  5349. "symfony/validator": "<5.0",
  5350. "twig/twig": "<2.13"
  5351. },
  5352. "provide": {
  5353. "psr/log-implementation": "1.0|2.0"
  5354. },
  5355. "require-dev": {
  5356. "psr/cache": "^1.0|^2.0|^3.0",
  5357. "symfony/browser-kit": "^5.4|^6.0",
  5358. "symfony/config": "^5.0|^6.0",
  5359. "symfony/console": "^4.4|^5.0|^6.0",
  5360. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5361. "symfony/dependency-injection": "^5.3|^6.0",
  5362. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5363. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5364. "symfony/finder": "^4.4|^5.0|^6.0",
  5365. "symfony/http-client-contracts": "^1.1|^2|^3",
  5366. "symfony/process": "^4.4|^5.0|^6.0",
  5367. "symfony/routing": "^4.4|^5.0|^6.0",
  5368. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5369. "symfony/translation": "^4.4|^5.0|^6.0",
  5370. "symfony/translation-contracts": "^1.1|^2|^3",
  5371. "twig/twig": "^2.13|^3.0.4"
  5372. },
  5373. "suggest": {
  5374. "symfony/browser-kit": "",
  5375. "symfony/config": "",
  5376. "symfony/console": "",
  5377. "symfony/dependency-injection": ""
  5378. },
  5379. "type": "library",
  5380. "autoload": {
  5381. "psr-4": {
  5382. "Symfony\\Component\\HttpKernel\\": ""
  5383. },
  5384. "exclude-from-classmap": [
  5385. "/Tests/"
  5386. ]
  5387. },
  5388. "notification-url": "https://packagist.org/downloads/",
  5389. "license": [
  5390. "MIT"
  5391. ],
  5392. "authors": [
  5393. {
  5394. "name": "Fabien Potencier",
  5395. "email": "fabien@symfony.com"
  5396. },
  5397. {
  5398. "name": "Symfony Community",
  5399. "homepage": "https://symfony.com/contributors"
  5400. }
  5401. ],
  5402. "description": "Provides a structured process for converting a Request into a Response",
  5403. "homepage": "https://symfony.com",
  5404. "support": {
  5405. "source": "https://github.com/symfony/http-kernel/tree/v5.4.34"
  5406. },
  5407. "funding": [
  5408. {
  5409. "url": "https://symfony.com/sponsor",
  5410. "type": "custom"
  5411. },
  5412. {
  5413. "url": "https://github.com/fabpot",
  5414. "type": "github"
  5415. },
  5416. {
  5417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5418. "type": "tidelift"
  5419. }
  5420. ],
  5421. "time": "2023-12-30T13:02:02+00:00"
  5422. },
  5423. {
  5424. "name": "symfony/mime",
  5425. "version": "v5.4.26",
  5426. "source": {
  5427. "type": "git",
  5428. "url": "https://github.com/symfony/mime.git",
  5429. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  5430. },
  5431. "dist": {
  5432. "type": "zip",
  5433. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5434. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5435. "shasum": "",
  5436. "mirrors": [
  5437. {
  5438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5439. "preferred": true
  5440. }
  5441. ]
  5442. },
  5443. "require": {
  5444. "php": ">=7.2.5",
  5445. "symfony/deprecation-contracts": "^2.1|^3",
  5446. "symfony/polyfill-intl-idn": "^1.10",
  5447. "symfony/polyfill-mbstring": "^1.0",
  5448. "symfony/polyfill-php80": "^1.16"
  5449. },
  5450. "conflict": {
  5451. "egulias/email-validator": "~3.0.0",
  5452. "phpdocumentor/reflection-docblock": "<3.2.2",
  5453. "phpdocumentor/type-resolver": "<1.4.0",
  5454. "symfony/mailer": "<4.4",
  5455. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  5456. },
  5457. "require-dev": {
  5458. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5459. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5460. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5461. "symfony/property-access": "^4.4|^5.1|^6.0",
  5462. "symfony/property-info": "^4.4|^5.1|^6.0",
  5463. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  5464. },
  5465. "type": "library",
  5466. "autoload": {
  5467. "psr-4": {
  5468. "Symfony\\Component\\Mime\\": ""
  5469. },
  5470. "exclude-from-classmap": [
  5471. "/Tests/"
  5472. ]
  5473. },
  5474. "notification-url": "https://packagist.org/downloads/",
  5475. "license": [
  5476. "MIT"
  5477. ],
  5478. "authors": [
  5479. {
  5480. "name": "Fabien Potencier",
  5481. "email": "fabien@symfony.com"
  5482. },
  5483. {
  5484. "name": "Symfony Community",
  5485. "homepage": "https://symfony.com/contributors"
  5486. }
  5487. ],
  5488. "description": "Allows manipulating MIME messages",
  5489. "homepage": "https://symfony.com",
  5490. "keywords": [
  5491. "mime",
  5492. "mime-type"
  5493. ],
  5494. "support": {
  5495. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  5496. },
  5497. "funding": [
  5498. {
  5499. "url": "https://symfony.com/sponsor",
  5500. "type": "custom"
  5501. },
  5502. {
  5503. "url": "https://github.com/fabpot",
  5504. "type": "github"
  5505. },
  5506. {
  5507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5508. "type": "tidelift"
  5509. }
  5510. ],
  5511. "time": "2023-07-27T06:29:31+00:00"
  5512. },
  5513. {
  5514. "name": "symfony/polyfill-ctype",
  5515. "version": "v1.28.0",
  5516. "source": {
  5517. "type": "git",
  5518. "url": "https://github.com/symfony/polyfill-ctype.git",
  5519. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  5520. },
  5521. "dist": {
  5522. "type": "zip",
  5523. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5524. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5525. "shasum": "",
  5526. "mirrors": [
  5527. {
  5528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5529. "preferred": true
  5530. }
  5531. ]
  5532. },
  5533. "require": {
  5534. "php": ">=7.1"
  5535. },
  5536. "provide": {
  5537. "ext-ctype": "*"
  5538. },
  5539. "suggest": {
  5540. "ext-ctype": "For best performance"
  5541. },
  5542. "type": "library",
  5543. "extra": {
  5544. "branch-alias": {
  5545. "dev-main": "1.28-dev"
  5546. },
  5547. "thanks": {
  5548. "name": "symfony/polyfill",
  5549. "url": "https://github.com/symfony/polyfill"
  5550. }
  5551. },
  5552. "autoload": {
  5553. "files": [
  5554. "bootstrap.php"
  5555. ],
  5556. "psr-4": {
  5557. "Symfony\\Polyfill\\Ctype\\": ""
  5558. }
  5559. },
  5560. "notification-url": "https://packagist.org/downloads/",
  5561. "license": [
  5562. "MIT"
  5563. ],
  5564. "authors": [
  5565. {
  5566. "name": "Gert de Pagter",
  5567. "email": "BackEndTea@gmail.com"
  5568. },
  5569. {
  5570. "name": "Symfony Community",
  5571. "homepage": "https://symfony.com/contributors"
  5572. }
  5573. ],
  5574. "description": "Symfony polyfill for ctype functions",
  5575. "homepage": "https://symfony.com",
  5576. "keywords": [
  5577. "compatibility",
  5578. "ctype",
  5579. "polyfill",
  5580. "portable"
  5581. ],
  5582. "support": {
  5583. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  5584. },
  5585. "funding": [
  5586. {
  5587. "url": "https://symfony.com/sponsor",
  5588. "type": "custom"
  5589. },
  5590. {
  5591. "url": "https://github.com/fabpot",
  5592. "type": "github"
  5593. },
  5594. {
  5595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5596. "type": "tidelift"
  5597. }
  5598. ],
  5599. "time": "2023-01-26T09:26:14+00:00"
  5600. },
  5601. {
  5602. "name": "symfony/polyfill-iconv",
  5603. "version": "v1.30.0",
  5604. "source": {
  5605. "type": "git",
  5606. "url": "https://github.com/symfony/polyfill-iconv.git",
  5607. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805"
  5608. },
  5609. "dist": {
  5610. "type": "zip",
  5611. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805",
  5612. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805",
  5613. "shasum": ""
  5614. },
  5615. "require": {
  5616. "php": ">=7.1"
  5617. },
  5618. "provide": {
  5619. "ext-iconv": "*"
  5620. },
  5621. "suggest": {
  5622. "ext-iconv": "For best performance"
  5623. },
  5624. "type": "library",
  5625. "extra": {
  5626. "thanks": {
  5627. "name": "symfony/polyfill",
  5628. "url": "https://github.com/symfony/polyfill"
  5629. }
  5630. },
  5631. "autoload": {
  5632. "files": [
  5633. "bootstrap.php"
  5634. ],
  5635. "psr-4": {
  5636. "Symfony\\Polyfill\\Iconv\\": ""
  5637. }
  5638. },
  5639. "notification-url": "https://packagist.org/downloads/",
  5640. "license": [
  5641. "MIT"
  5642. ],
  5643. "authors": [
  5644. {
  5645. "name": "Nicolas Grekas",
  5646. "email": "p@tchwork.com"
  5647. },
  5648. {
  5649. "name": "Symfony Community",
  5650. "homepage": "https://symfony.com/contributors"
  5651. }
  5652. ],
  5653. "description": "Symfony polyfill for the Iconv extension",
  5654. "homepage": "https://symfony.com",
  5655. "keywords": [
  5656. "compatibility",
  5657. "iconv",
  5658. "polyfill",
  5659. "portable",
  5660. "shim"
  5661. ],
  5662. "support": {
  5663. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0"
  5664. },
  5665. "funding": [
  5666. {
  5667. "url": "https://symfony.com/sponsor",
  5668. "type": "custom"
  5669. },
  5670. {
  5671. "url": "https://github.com/fabpot",
  5672. "type": "github"
  5673. },
  5674. {
  5675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5676. "type": "tidelift"
  5677. }
  5678. ],
  5679. "time": "2024-05-31T15:07:36+00:00"
  5680. },
  5681. {
  5682. "name": "symfony/polyfill-intl-grapheme",
  5683. "version": "v1.28.0",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5687. "reference": "875e90aeea2777b6f135677f618529449334a612"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  5692. "reference": "875e90aeea2777b6f135677f618529449334a612",
  5693. "shasum": "",
  5694. "mirrors": [
  5695. {
  5696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5697. "preferred": true
  5698. }
  5699. ]
  5700. },
  5701. "require": {
  5702. "php": ">=7.1"
  5703. },
  5704. "suggest": {
  5705. "ext-intl": "For best performance"
  5706. },
  5707. "type": "library",
  5708. "extra": {
  5709. "branch-alias": {
  5710. "dev-main": "1.28-dev"
  5711. },
  5712. "thanks": {
  5713. "name": "symfony/polyfill",
  5714. "url": "https://github.com/symfony/polyfill"
  5715. }
  5716. },
  5717. "autoload": {
  5718. "files": [
  5719. "bootstrap.php"
  5720. ],
  5721. "psr-4": {
  5722. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5723. }
  5724. },
  5725. "notification-url": "https://packagist.org/downloads/",
  5726. "license": [
  5727. "MIT"
  5728. ],
  5729. "authors": [
  5730. {
  5731. "name": "Nicolas Grekas",
  5732. "email": "p@tchwork.com"
  5733. },
  5734. {
  5735. "name": "Symfony Community",
  5736. "homepage": "https://symfony.com/contributors"
  5737. }
  5738. ],
  5739. "description": "Symfony polyfill for intl's grapheme_* functions",
  5740. "homepage": "https://symfony.com",
  5741. "keywords": [
  5742. "compatibility",
  5743. "grapheme",
  5744. "intl",
  5745. "polyfill",
  5746. "portable",
  5747. "shim"
  5748. ],
  5749. "support": {
  5750. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  5751. },
  5752. "funding": [
  5753. {
  5754. "url": "https://symfony.com/sponsor",
  5755. "type": "custom"
  5756. },
  5757. {
  5758. "url": "https://github.com/fabpot",
  5759. "type": "github"
  5760. },
  5761. {
  5762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5763. "type": "tidelift"
  5764. }
  5765. ],
  5766. "time": "2023-01-26T09:26:14+00:00"
  5767. },
  5768. {
  5769. "name": "symfony/polyfill-intl-idn",
  5770. "version": "v1.30.0",
  5771. "source": {
  5772. "type": "git",
  5773. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5774. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  5775. },
  5776. "dist": {
  5777. "type": "zip",
  5778. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5779. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5780. "shasum": ""
  5781. },
  5782. "require": {
  5783. "php": ">=7.1",
  5784. "symfony/polyfill-intl-normalizer": "^1.10",
  5785. "symfony/polyfill-php72": "^1.10"
  5786. },
  5787. "suggest": {
  5788. "ext-intl": "For best performance"
  5789. },
  5790. "type": "library",
  5791. "extra": {
  5792. "thanks": {
  5793. "name": "symfony/polyfill",
  5794. "url": "https://github.com/symfony/polyfill"
  5795. }
  5796. },
  5797. "autoload": {
  5798. "files": [
  5799. "bootstrap.php"
  5800. ],
  5801. "psr-4": {
  5802. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5803. }
  5804. },
  5805. "notification-url": "https://packagist.org/downloads/",
  5806. "license": [
  5807. "MIT"
  5808. ],
  5809. "authors": [
  5810. {
  5811. "name": "Laurent Bassin",
  5812. "email": "laurent@bassin.info"
  5813. },
  5814. {
  5815. "name": "Trevor Rowbotham",
  5816. "email": "trevor.rowbotham@pm.me"
  5817. },
  5818. {
  5819. "name": "Symfony Community",
  5820. "homepage": "https://symfony.com/contributors"
  5821. }
  5822. ],
  5823. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5824. "homepage": "https://symfony.com",
  5825. "keywords": [
  5826. "compatibility",
  5827. "idn",
  5828. "intl",
  5829. "polyfill",
  5830. "portable",
  5831. "shim"
  5832. ],
  5833. "support": {
  5834. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  5835. },
  5836. "funding": [
  5837. {
  5838. "url": "https://symfony.com/sponsor",
  5839. "type": "custom"
  5840. },
  5841. {
  5842. "url": "https://github.com/fabpot",
  5843. "type": "github"
  5844. },
  5845. {
  5846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5847. "type": "tidelift"
  5848. }
  5849. ],
  5850. "time": "2024-05-31T15:07:36+00:00"
  5851. },
  5852. {
  5853. "name": "symfony/polyfill-intl-normalizer",
  5854. "version": "v1.30.0",
  5855. "source": {
  5856. "type": "git",
  5857. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5858. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  5859. },
  5860. "dist": {
  5861. "type": "zip",
  5862. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5863. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5864. "shasum": ""
  5865. },
  5866. "require": {
  5867. "php": ">=7.1"
  5868. },
  5869. "suggest": {
  5870. "ext-intl": "For best performance"
  5871. },
  5872. "type": "library",
  5873. "extra": {
  5874. "thanks": {
  5875. "name": "symfony/polyfill",
  5876. "url": "https://github.com/symfony/polyfill"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "files": [
  5881. "bootstrap.php"
  5882. ],
  5883. "psr-4": {
  5884. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5885. },
  5886. "classmap": [
  5887. "Resources/stubs"
  5888. ]
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Nicolas Grekas",
  5897. "email": "p@tchwork.com"
  5898. },
  5899. {
  5900. "name": "Symfony Community",
  5901. "homepage": "https://symfony.com/contributors"
  5902. }
  5903. ],
  5904. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5905. "homepage": "https://symfony.com",
  5906. "keywords": [
  5907. "compatibility",
  5908. "intl",
  5909. "normalizer",
  5910. "polyfill",
  5911. "portable",
  5912. "shim"
  5913. ],
  5914. "support": {
  5915. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  5916. },
  5917. "funding": [
  5918. {
  5919. "url": "https://symfony.com/sponsor",
  5920. "type": "custom"
  5921. },
  5922. {
  5923. "url": "https://github.com/fabpot",
  5924. "type": "github"
  5925. },
  5926. {
  5927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5928. "type": "tidelift"
  5929. }
  5930. ],
  5931. "time": "2024-05-31T15:07:36+00:00"
  5932. },
  5933. {
  5934. "name": "symfony/polyfill-mbstring",
  5935. "version": "v1.30.0",
  5936. "source": {
  5937. "type": "git",
  5938. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5939. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  5940. },
  5941. "dist": {
  5942. "type": "zip",
  5943. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5944. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  5945. "shasum": ""
  5946. },
  5947. "require": {
  5948. "php": ">=7.1"
  5949. },
  5950. "provide": {
  5951. "ext-mbstring": "*"
  5952. },
  5953. "suggest": {
  5954. "ext-mbstring": "For best performance"
  5955. },
  5956. "type": "library",
  5957. "extra": {
  5958. "thanks": {
  5959. "name": "symfony/polyfill",
  5960. "url": "https://github.com/symfony/polyfill"
  5961. }
  5962. },
  5963. "autoload": {
  5964. "files": [
  5965. "bootstrap.php"
  5966. ],
  5967. "psr-4": {
  5968. "Symfony\\Polyfill\\Mbstring\\": ""
  5969. }
  5970. },
  5971. "notification-url": "https://packagist.org/downloads/",
  5972. "license": [
  5973. "MIT"
  5974. ],
  5975. "authors": [
  5976. {
  5977. "name": "Nicolas Grekas",
  5978. "email": "p@tchwork.com"
  5979. },
  5980. {
  5981. "name": "Symfony Community",
  5982. "homepage": "https://symfony.com/contributors"
  5983. }
  5984. ],
  5985. "description": "Symfony polyfill for the Mbstring extension",
  5986. "homepage": "https://symfony.com",
  5987. "keywords": [
  5988. "compatibility",
  5989. "mbstring",
  5990. "polyfill",
  5991. "portable",
  5992. "shim"
  5993. ],
  5994. "support": {
  5995. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  5996. },
  5997. "funding": [
  5998. {
  5999. "url": "https://symfony.com/sponsor",
  6000. "type": "custom"
  6001. },
  6002. {
  6003. "url": "https://github.com/fabpot",
  6004. "type": "github"
  6005. },
  6006. {
  6007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6008. "type": "tidelift"
  6009. }
  6010. ],
  6011. "time": "2024-06-19T12:30:46+00:00"
  6012. },
  6013. {
  6014. "name": "symfony/polyfill-php72",
  6015. "version": "v1.30.0",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/symfony/polyfill-php72.git",
  6019. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  6024. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "php": ">=7.1"
  6029. },
  6030. "type": "library",
  6031. "extra": {
  6032. "thanks": {
  6033. "name": "symfony/polyfill",
  6034. "url": "https://github.com/symfony/polyfill"
  6035. }
  6036. },
  6037. "autoload": {
  6038. "files": [
  6039. "bootstrap.php"
  6040. ],
  6041. "psr-4": {
  6042. "Symfony\\Polyfill\\Php72\\": ""
  6043. }
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "MIT"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Nicolas Grekas",
  6052. "email": "p@tchwork.com"
  6053. },
  6054. {
  6055. "name": "Symfony Community",
  6056. "homepage": "https://symfony.com/contributors"
  6057. }
  6058. ],
  6059. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6060. "homepage": "https://symfony.com",
  6061. "keywords": [
  6062. "compatibility",
  6063. "polyfill",
  6064. "portable",
  6065. "shim"
  6066. ],
  6067. "support": {
  6068. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  6069. },
  6070. "funding": [
  6071. {
  6072. "url": "https://symfony.com/sponsor",
  6073. "type": "custom"
  6074. },
  6075. {
  6076. "url": "https://github.com/fabpot",
  6077. "type": "github"
  6078. },
  6079. {
  6080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6081. "type": "tidelift"
  6082. }
  6083. ],
  6084. "time": "2024-06-19T12:30:46+00:00"
  6085. },
  6086. {
  6087. "name": "symfony/polyfill-php73",
  6088. "version": "v1.28.0",
  6089. "source": {
  6090. "type": "git",
  6091. "url": "https://github.com/symfony/polyfill-php73.git",
  6092. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6093. },
  6094. "dist": {
  6095. "type": "zip",
  6096. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6097. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6098. "shasum": "",
  6099. "mirrors": [
  6100. {
  6101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6102. "preferred": true
  6103. }
  6104. ]
  6105. },
  6106. "require": {
  6107. "php": ">=7.1"
  6108. },
  6109. "type": "library",
  6110. "extra": {
  6111. "branch-alias": {
  6112. "dev-main": "1.28-dev"
  6113. },
  6114. "thanks": {
  6115. "name": "symfony/polyfill",
  6116. "url": "https://github.com/symfony/polyfill"
  6117. }
  6118. },
  6119. "autoload": {
  6120. "files": [
  6121. "bootstrap.php"
  6122. ],
  6123. "psr-4": {
  6124. "Symfony\\Polyfill\\Php73\\": ""
  6125. },
  6126. "classmap": [
  6127. "Resources/stubs"
  6128. ]
  6129. },
  6130. "notification-url": "https://packagist.org/downloads/",
  6131. "license": [
  6132. "MIT"
  6133. ],
  6134. "authors": [
  6135. {
  6136. "name": "Nicolas Grekas",
  6137. "email": "p@tchwork.com"
  6138. },
  6139. {
  6140. "name": "Symfony Community",
  6141. "homepage": "https://symfony.com/contributors"
  6142. }
  6143. ],
  6144. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6145. "homepage": "https://symfony.com",
  6146. "keywords": [
  6147. "compatibility",
  6148. "polyfill",
  6149. "portable",
  6150. "shim"
  6151. ],
  6152. "support": {
  6153. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  6154. },
  6155. "funding": [
  6156. {
  6157. "url": "https://symfony.com/sponsor",
  6158. "type": "custom"
  6159. },
  6160. {
  6161. "url": "https://github.com/fabpot",
  6162. "type": "github"
  6163. },
  6164. {
  6165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6166. "type": "tidelift"
  6167. }
  6168. ],
  6169. "time": "2023-01-26T09:26:14+00:00"
  6170. },
  6171. {
  6172. "name": "symfony/polyfill-php80",
  6173. "version": "v1.28.0",
  6174. "source": {
  6175. "type": "git",
  6176. "url": "https://github.com/symfony/polyfill-php80.git",
  6177. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6178. },
  6179. "dist": {
  6180. "type": "zip",
  6181. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6182. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6183. "shasum": "",
  6184. "mirrors": [
  6185. {
  6186. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6187. "preferred": true
  6188. }
  6189. ]
  6190. },
  6191. "require": {
  6192. "php": ">=7.1"
  6193. },
  6194. "type": "library",
  6195. "extra": {
  6196. "branch-alias": {
  6197. "dev-main": "1.28-dev"
  6198. },
  6199. "thanks": {
  6200. "name": "symfony/polyfill",
  6201. "url": "https://github.com/symfony/polyfill"
  6202. }
  6203. },
  6204. "autoload": {
  6205. "files": [
  6206. "bootstrap.php"
  6207. ],
  6208. "psr-4": {
  6209. "Symfony\\Polyfill\\Php80\\": ""
  6210. },
  6211. "classmap": [
  6212. "Resources/stubs"
  6213. ]
  6214. },
  6215. "notification-url": "https://packagist.org/downloads/",
  6216. "license": [
  6217. "MIT"
  6218. ],
  6219. "authors": [
  6220. {
  6221. "name": "Ion Bazan",
  6222. "email": "ion.bazan@gmail.com"
  6223. },
  6224. {
  6225. "name": "Nicolas Grekas",
  6226. "email": "p@tchwork.com"
  6227. },
  6228. {
  6229. "name": "Symfony Community",
  6230. "homepage": "https://symfony.com/contributors"
  6231. }
  6232. ],
  6233. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6234. "homepage": "https://symfony.com",
  6235. "keywords": [
  6236. "compatibility",
  6237. "polyfill",
  6238. "portable",
  6239. "shim"
  6240. ],
  6241. "support": {
  6242. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  6243. },
  6244. "funding": [
  6245. {
  6246. "url": "https://symfony.com/sponsor",
  6247. "type": "custom"
  6248. },
  6249. {
  6250. "url": "https://github.com/fabpot",
  6251. "type": "github"
  6252. },
  6253. {
  6254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6255. "type": "tidelift"
  6256. }
  6257. ],
  6258. "time": "2023-01-26T09:26:14+00:00"
  6259. },
  6260. {
  6261. "name": "symfony/polyfill-php81",
  6262. "version": "v1.28.0",
  6263. "source": {
  6264. "type": "git",
  6265. "url": "https://github.com/symfony/polyfill-php81.git",
  6266. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  6267. },
  6268. "dist": {
  6269. "type": "zip",
  6270. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  6271. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  6272. "shasum": "",
  6273. "mirrors": [
  6274. {
  6275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6276. "preferred": true
  6277. }
  6278. ]
  6279. },
  6280. "require": {
  6281. "php": ">=7.1"
  6282. },
  6283. "type": "library",
  6284. "extra": {
  6285. "branch-alias": {
  6286. "dev-main": "1.28-dev"
  6287. },
  6288. "thanks": {
  6289. "name": "symfony/polyfill",
  6290. "url": "https://github.com/symfony/polyfill"
  6291. }
  6292. },
  6293. "autoload": {
  6294. "files": [
  6295. "bootstrap.php"
  6296. ],
  6297. "psr-4": {
  6298. "Symfony\\Polyfill\\Php81\\": ""
  6299. },
  6300. "classmap": [
  6301. "Resources/stubs"
  6302. ]
  6303. },
  6304. "notification-url": "https://packagist.org/downloads/",
  6305. "license": [
  6306. "MIT"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Nicolas Grekas",
  6311. "email": "p@tchwork.com"
  6312. },
  6313. {
  6314. "name": "Symfony Community",
  6315. "homepage": "https://symfony.com/contributors"
  6316. }
  6317. ],
  6318. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6319. "homepage": "https://symfony.com",
  6320. "keywords": [
  6321. "compatibility",
  6322. "polyfill",
  6323. "portable",
  6324. "shim"
  6325. ],
  6326. "support": {
  6327. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  6328. },
  6329. "funding": [
  6330. {
  6331. "url": "https://symfony.com/sponsor",
  6332. "type": "custom"
  6333. },
  6334. {
  6335. "url": "https://github.com/fabpot",
  6336. "type": "github"
  6337. },
  6338. {
  6339. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6340. "type": "tidelift"
  6341. }
  6342. ],
  6343. "time": "2023-01-26T09:26:14+00:00"
  6344. },
  6345. {
  6346. "name": "symfony/process",
  6347. "version": "v5.4.34",
  6348. "source": {
  6349. "type": "git",
  6350. "url": "https://github.com/symfony/process.git",
  6351. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a"
  6352. },
  6353. "dist": {
  6354. "type": "zip",
  6355. "url": "https://api.github.com/repos/symfony/process/zipball/8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6356. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6357. "shasum": "",
  6358. "mirrors": [
  6359. {
  6360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6361. "preferred": true
  6362. }
  6363. ]
  6364. },
  6365. "require": {
  6366. "php": ">=7.2.5",
  6367. "symfony/polyfill-php80": "^1.16"
  6368. },
  6369. "type": "library",
  6370. "autoload": {
  6371. "psr-4": {
  6372. "Symfony\\Component\\Process\\": ""
  6373. },
  6374. "exclude-from-classmap": [
  6375. "/Tests/"
  6376. ]
  6377. },
  6378. "notification-url": "https://packagist.org/downloads/",
  6379. "license": [
  6380. "MIT"
  6381. ],
  6382. "authors": [
  6383. {
  6384. "name": "Fabien Potencier",
  6385. "email": "fabien@symfony.com"
  6386. },
  6387. {
  6388. "name": "Symfony Community",
  6389. "homepage": "https://symfony.com/contributors"
  6390. }
  6391. ],
  6392. "description": "Executes commands in sub-processes",
  6393. "homepage": "https://symfony.com",
  6394. "support": {
  6395. "source": "https://github.com/symfony/process/tree/v5.4.34"
  6396. },
  6397. "funding": [
  6398. {
  6399. "url": "https://symfony.com/sponsor",
  6400. "type": "custom"
  6401. },
  6402. {
  6403. "url": "https://github.com/fabpot",
  6404. "type": "github"
  6405. },
  6406. {
  6407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6408. "type": "tidelift"
  6409. }
  6410. ],
  6411. "time": "2023-12-02T08:41:43+00:00"
  6412. },
  6413. {
  6414. "name": "symfony/psr-http-message-bridge",
  6415. "version": "v2.3.1",
  6416. "source": {
  6417. "type": "git",
  6418. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6419. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6420. },
  6421. "dist": {
  6422. "type": "zip",
  6423. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6424. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6425. "shasum": ""
  6426. },
  6427. "require": {
  6428. "php": ">=7.2.5",
  6429. "psr/http-message": "^1.0 || ^2.0",
  6430. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6431. "symfony/http-foundation": "^5.4 || ^6.0"
  6432. },
  6433. "require-dev": {
  6434. "nyholm/psr7": "^1.1",
  6435. "psr/log": "^1.1 || ^2 || ^3",
  6436. "symfony/browser-kit": "^5.4 || ^6.0",
  6437. "symfony/config": "^5.4 || ^6.0",
  6438. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6439. "symfony/framework-bundle": "^5.4 || ^6.0",
  6440. "symfony/http-kernel": "^5.4 || ^6.0",
  6441. "symfony/phpunit-bridge": "^6.2"
  6442. },
  6443. "suggest": {
  6444. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6445. },
  6446. "type": "symfony-bridge",
  6447. "extra": {
  6448. "branch-alias": {
  6449. "dev-main": "2.3-dev"
  6450. }
  6451. },
  6452. "autoload": {
  6453. "psr-4": {
  6454. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6455. },
  6456. "exclude-from-classmap": [
  6457. "/Tests/"
  6458. ]
  6459. },
  6460. "notification-url": "https://packagist.org/downloads/",
  6461. "license": [
  6462. "MIT"
  6463. ],
  6464. "authors": [
  6465. {
  6466. "name": "Fabien Potencier",
  6467. "email": "fabien@symfony.com"
  6468. },
  6469. {
  6470. "name": "Symfony Community",
  6471. "homepage": "http://symfony.com/contributors"
  6472. }
  6473. ],
  6474. "description": "PSR HTTP message bridge",
  6475. "homepage": "http://symfony.com",
  6476. "keywords": [
  6477. "http",
  6478. "http-message",
  6479. "psr-17",
  6480. "psr-7"
  6481. ],
  6482. "support": {
  6483. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6484. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  6485. },
  6486. "funding": [
  6487. {
  6488. "url": "https://symfony.com/sponsor",
  6489. "type": "custom"
  6490. },
  6491. {
  6492. "url": "https://github.com/fabpot",
  6493. "type": "github"
  6494. },
  6495. {
  6496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6497. "type": "tidelift"
  6498. }
  6499. ],
  6500. "time": "2023-07-26T11:53:26+00:00"
  6501. },
  6502. {
  6503. "name": "symfony/routing",
  6504. "version": "v5.4.34",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/symfony/routing.git",
  6508. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/symfony/routing/zipball/f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  6513. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  6514. "shasum": "",
  6515. "mirrors": [
  6516. {
  6517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6518. "preferred": true
  6519. }
  6520. ]
  6521. },
  6522. "require": {
  6523. "php": ">=7.2.5",
  6524. "symfony/deprecation-contracts": "^2.1|^3",
  6525. "symfony/polyfill-php80": "^1.16"
  6526. },
  6527. "conflict": {
  6528. "doctrine/annotations": "<1.12",
  6529. "symfony/config": "<5.3",
  6530. "symfony/dependency-injection": "<4.4",
  6531. "symfony/yaml": "<4.4"
  6532. },
  6533. "require-dev": {
  6534. "doctrine/annotations": "^1.12|^2",
  6535. "psr/log": "^1|^2|^3",
  6536. "symfony/config": "^5.3|^6.0",
  6537. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6538. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6539. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6540. "symfony/yaml": "^4.4|^5.0|^6.0"
  6541. },
  6542. "suggest": {
  6543. "symfony/config": "For using the all-in-one router or any loader",
  6544. "symfony/expression-language": "For using expression matching",
  6545. "symfony/http-foundation": "For using a Symfony Request object",
  6546. "symfony/yaml": "For using the YAML loader"
  6547. },
  6548. "type": "library",
  6549. "autoload": {
  6550. "psr-4": {
  6551. "Symfony\\Component\\Routing\\": ""
  6552. },
  6553. "exclude-from-classmap": [
  6554. "/Tests/"
  6555. ]
  6556. },
  6557. "notification-url": "https://packagist.org/downloads/",
  6558. "license": [
  6559. "MIT"
  6560. ],
  6561. "authors": [
  6562. {
  6563. "name": "Fabien Potencier",
  6564. "email": "fabien@symfony.com"
  6565. },
  6566. {
  6567. "name": "Symfony Community",
  6568. "homepage": "https://symfony.com/contributors"
  6569. }
  6570. ],
  6571. "description": "Maps an HTTP request to a set of configuration variables",
  6572. "homepage": "https://symfony.com",
  6573. "keywords": [
  6574. "router",
  6575. "routing",
  6576. "uri",
  6577. "url"
  6578. ],
  6579. "support": {
  6580. "source": "https://github.com/symfony/routing/tree/v5.4.34"
  6581. },
  6582. "funding": [
  6583. {
  6584. "url": "https://symfony.com/sponsor",
  6585. "type": "custom"
  6586. },
  6587. {
  6588. "url": "https://github.com/fabpot",
  6589. "type": "github"
  6590. },
  6591. {
  6592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6593. "type": "tidelift"
  6594. }
  6595. ],
  6596. "time": "2023-12-27T12:51:02+00:00"
  6597. },
  6598. {
  6599. "name": "symfony/service-contracts",
  6600. "version": "v2.5.2",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/symfony/service-contracts.git",
  6604. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6609. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6610. "shasum": "",
  6611. "mirrors": [
  6612. {
  6613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6614. "preferred": true
  6615. }
  6616. ]
  6617. },
  6618. "require": {
  6619. "php": ">=7.2.5",
  6620. "psr/container": "^1.1",
  6621. "symfony/deprecation-contracts": "^2.1|^3"
  6622. },
  6623. "conflict": {
  6624. "ext-psr": "<1.1|>=2"
  6625. },
  6626. "suggest": {
  6627. "symfony/service-implementation": ""
  6628. },
  6629. "type": "library",
  6630. "extra": {
  6631. "branch-alias": {
  6632. "dev-main": "2.5-dev"
  6633. },
  6634. "thanks": {
  6635. "name": "symfony/contracts",
  6636. "url": "https://github.com/symfony/contracts"
  6637. }
  6638. },
  6639. "autoload": {
  6640. "psr-4": {
  6641. "Symfony\\Contracts\\Service\\": ""
  6642. }
  6643. },
  6644. "notification-url": "https://packagist.org/downloads/",
  6645. "license": [
  6646. "MIT"
  6647. ],
  6648. "authors": [
  6649. {
  6650. "name": "Nicolas Grekas",
  6651. "email": "p@tchwork.com"
  6652. },
  6653. {
  6654. "name": "Symfony Community",
  6655. "homepage": "https://symfony.com/contributors"
  6656. }
  6657. ],
  6658. "description": "Generic abstractions related to writing services",
  6659. "homepage": "https://symfony.com",
  6660. "keywords": [
  6661. "abstractions",
  6662. "contracts",
  6663. "decoupling",
  6664. "interfaces",
  6665. "interoperability",
  6666. "standards"
  6667. ],
  6668. "support": {
  6669. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6670. },
  6671. "funding": [
  6672. {
  6673. "url": "https://symfony.com/sponsor",
  6674. "type": "custom"
  6675. },
  6676. {
  6677. "url": "https://github.com/fabpot",
  6678. "type": "github"
  6679. },
  6680. {
  6681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6682. "type": "tidelift"
  6683. }
  6684. ],
  6685. "time": "2022-05-30T19:17:29+00:00"
  6686. },
  6687. {
  6688. "name": "symfony/string",
  6689. "version": "v5.4.34",
  6690. "source": {
  6691. "type": "git",
  6692. "url": "https://github.com/symfony/string.git",
  6693. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061"
  6694. },
  6695. "dist": {
  6696. "type": "zip",
  6697. "url": "https://api.github.com/repos/symfony/string/zipball/e3f98bfc7885c957488f443df82d97814a3ce061",
  6698. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061",
  6699. "shasum": "",
  6700. "mirrors": [
  6701. {
  6702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6703. "preferred": true
  6704. }
  6705. ]
  6706. },
  6707. "require": {
  6708. "php": ">=7.2.5",
  6709. "symfony/polyfill-ctype": "~1.8",
  6710. "symfony/polyfill-intl-grapheme": "~1.0",
  6711. "symfony/polyfill-intl-normalizer": "~1.0",
  6712. "symfony/polyfill-mbstring": "~1.0",
  6713. "symfony/polyfill-php80": "~1.15"
  6714. },
  6715. "conflict": {
  6716. "symfony/translation-contracts": ">=3.0"
  6717. },
  6718. "require-dev": {
  6719. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6720. "symfony/http-client": "^4.4|^5.0|^6.0",
  6721. "symfony/translation-contracts": "^1.1|^2",
  6722. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6723. },
  6724. "type": "library",
  6725. "autoload": {
  6726. "files": [
  6727. "Resources/functions.php"
  6728. ],
  6729. "psr-4": {
  6730. "Symfony\\Component\\String\\": ""
  6731. },
  6732. "exclude-from-classmap": [
  6733. "/Tests/"
  6734. ]
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "MIT"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "Nicolas Grekas",
  6743. "email": "p@tchwork.com"
  6744. },
  6745. {
  6746. "name": "Symfony Community",
  6747. "homepage": "https://symfony.com/contributors"
  6748. }
  6749. ],
  6750. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6751. "homepage": "https://symfony.com",
  6752. "keywords": [
  6753. "grapheme",
  6754. "i18n",
  6755. "string",
  6756. "unicode",
  6757. "utf-8",
  6758. "utf8"
  6759. ],
  6760. "support": {
  6761. "source": "https://github.com/symfony/string/tree/v5.4.34"
  6762. },
  6763. "funding": [
  6764. {
  6765. "url": "https://symfony.com/sponsor",
  6766. "type": "custom"
  6767. },
  6768. {
  6769. "url": "https://github.com/fabpot",
  6770. "type": "github"
  6771. },
  6772. {
  6773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6774. "type": "tidelift"
  6775. }
  6776. ],
  6777. "time": "2023-12-09T13:20:28+00:00"
  6778. },
  6779. {
  6780. "name": "symfony/translation",
  6781. "version": "v5.4.31",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://github.com/symfony/translation.git",
  6785. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  6790. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  6791. "shasum": "",
  6792. "mirrors": [
  6793. {
  6794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6795. "preferred": true
  6796. }
  6797. ]
  6798. },
  6799. "require": {
  6800. "php": ">=7.2.5",
  6801. "symfony/deprecation-contracts": "^2.1|^3",
  6802. "symfony/polyfill-mbstring": "~1.0",
  6803. "symfony/polyfill-php80": "^1.16",
  6804. "symfony/translation-contracts": "^2.3"
  6805. },
  6806. "conflict": {
  6807. "symfony/config": "<4.4",
  6808. "symfony/console": "<5.3",
  6809. "symfony/dependency-injection": "<5.0",
  6810. "symfony/http-kernel": "<5.0",
  6811. "symfony/twig-bundle": "<5.0",
  6812. "symfony/yaml": "<4.4"
  6813. },
  6814. "provide": {
  6815. "symfony/translation-implementation": "2.3"
  6816. },
  6817. "require-dev": {
  6818. "psr/log": "^1|^2|^3",
  6819. "symfony/config": "^4.4|^5.0|^6.0",
  6820. "symfony/console": "^5.4|^6.0",
  6821. "symfony/dependency-injection": "^5.0|^6.0",
  6822. "symfony/finder": "^4.4|^5.0|^6.0",
  6823. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6824. "symfony/http-kernel": "^5.0|^6.0",
  6825. "symfony/intl": "^4.4|^5.0|^6.0",
  6826. "symfony/polyfill-intl-icu": "^1.21",
  6827. "symfony/service-contracts": "^1.1.2|^2|^3",
  6828. "symfony/yaml": "^4.4|^5.0|^6.0"
  6829. },
  6830. "suggest": {
  6831. "psr/log-implementation": "To use logging capability in translator",
  6832. "symfony/config": "",
  6833. "symfony/yaml": ""
  6834. },
  6835. "type": "library",
  6836. "autoload": {
  6837. "files": [
  6838. "Resources/functions.php"
  6839. ],
  6840. "psr-4": {
  6841. "Symfony\\Component\\Translation\\": ""
  6842. },
  6843. "exclude-from-classmap": [
  6844. "/Tests/"
  6845. ]
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "MIT"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Fabien Potencier",
  6854. "email": "fabien@symfony.com"
  6855. },
  6856. {
  6857. "name": "Symfony Community",
  6858. "homepage": "https://symfony.com/contributors"
  6859. }
  6860. ],
  6861. "description": "Provides tools to internationalize your application",
  6862. "homepage": "https://symfony.com",
  6863. "support": {
  6864. "source": "https://github.com/symfony/translation/tree/v5.4.31"
  6865. },
  6866. "funding": [
  6867. {
  6868. "url": "https://symfony.com/sponsor",
  6869. "type": "custom"
  6870. },
  6871. {
  6872. "url": "https://github.com/fabpot",
  6873. "type": "github"
  6874. },
  6875. {
  6876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6877. "type": "tidelift"
  6878. }
  6879. ],
  6880. "time": "2023-11-03T16:16:43+00:00"
  6881. },
  6882. {
  6883. "name": "symfony/translation-contracts",
  6884. "version": "v2.5.2",
  6885. "source": {
  6886. "type": "git",
  6887. "url": "https://github.com/symfony/translation-contracts.git",
  6888. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  6889. },
  6890. "dist": {
  6891. "type": "zip",
  6892. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6893. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6894. "shasum": "",
  6895. "mirrors": [
  6896. {
  6897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6898. "preferred": true
  6899. }
  6900. ]
  6901. },
  6902. "require": {
  6903. "php": ">=7.2.5"
  6904. },
  6905. "suggest": {
  6906. "symfony/translation-implementation": ""
  6907. },
  6908. "type": "library",
  6909. "extra": {
  6910. "branch-alias": {
  6911. "dev-main": "2.5-dev"
  6912. },
  6913. "thanks": {
  6914. "name": "symfony/contracts",
  6915. "url": "https://github.com/symfony/contracts"
  6916. }
  6917. },
  6918. "autoload": {
  6919. "psr-4": {
  6920. "Symfony\\Contracts\\Translation\\": ""
  6921. }
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "license": [
  6925. "MIT"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Nicolas Grekas",
  6930. "email": "p@tchwork.com"
  6931. },
  6932. {
  6933. "name": "Symfony Community",
  6934. "homepage": "https://symfony.com/contributors"
  6935. }
  6936. ],
  6937. "description": "Generic abstractions related to translation",
  6938. "homepage": "https://symfony.com",
  6939. "keywords": [
  6940. "abstractions",
  6941. "contracts",
  6942. "decoupling",
  6943. "interfaces",
  6944. "interoperability",
  6945. "standards"
  6946. ],
  6947. "support": {
  6948. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  6949. },
  6950. "funding": [
  6951. {
  6952. "url": "https://symfony.com/sponsor",
  6953. "type": "custom"
  6954. },
  6955. {
  6956. "url": "https://github.com/fabpot",
  6957. "type": "github"
  6958. },
  6959. {
  6960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6961. "type": "tidelift"
  6962. }
  6963. ],
  6964. "time": "2022-06-27T16:58:25+00:00"
  6965. },
  6966. {
  6967. "name": "symfony/var-dumper",
  6968. "version": "v5.4.29",
  6969. "source": {
  6970. "type": "git",
  6971. "url": "https://github.com/symfony/var-dumper.git",
  6972. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  6973. },
  6974. "dist": {
  6975. "type": "zip",
  6976. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  6977. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  6978. "shasum": "",
  6979. "mirrors": [
  6980. {
  6981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6982. "preferred": true
  6983. }
  6984. ]
  6985. },
  6986. "require": {
  6987. "php": ">=7.2.5",
  6988. "symfony/polyfill-mbstring": "~1.0",
  6989. "symfony/polyfill-php80": "^1.16"
  6990. },
  6991. "conflict": {
  6992. "symfony/console": "<4.4"
  6993. },
  6994. "require-dev": {
  6995. "ext-iconv": "*",
  6996. "symfony/console": "^4.4|^5.0|^6.0",
  6997. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6998. "symfony/process": "^4.4|^5.0|^6.0",
  6999. "symfony/uid": "^5.1|^6.0",
  7000. "twig/twig": "^2.13|^3.0.4"
  7001. },
  7002. "suggest": {
  7003. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7004. "ext-intl": "To show region name in time zone dump",
  7005. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7006. },
  7007. "bin": [
  7008. "Resources/bin/var-dump-server"
  7009. ],
  7010. "type": "library",
  7011. "autoload": {
  7012. "files": [
  7013. "Resources/functions/dump.php"
  7014. ],
  7015. "psr-4": {
  7016. "Symfony\\Component\\VarDumper\\": ""
  7017. },
  7018. "exclude-from-classmap": [
  7019. "/Tests/"
  7020. ]
  7021. },
  7022. "notification-url": "https://packagist.org/downloads/",
  7023. "license": [
  7024. "MIT"
  7025. ],
  7026. "authors": [
  7027. {
  7028. "name": "Nicolas Grekas",
  7029. "email": "p@tchwork.com"
  7030. },
  7031. {
  7032. "name": "Symfony Community",
  7033. "homepage": "https://symfony.com/contributors"
  7034. }
  7035. ],
  7036. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7037. "homepage": "https://symfony.com",
  7038. "keywords": [
  7039. "debug",
  7040. "dump"
  7041. ],
  7042. "support": {
  7043. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7044. },
  7045. "funding": [
  7046. {
  7047. "url": "https://symfony.com/sponsor",
  7048. "type": "custom"
  7049. },
  7050. {
  7051. "url": "https://github.com/fabpot",
  7052. "type": "github"
  7053. },
  7054. {
  7055. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7056. "type": "tidelift"
  7057. }
  7058. ],
  7059. "time": "2023-09-12T10:09:58+00:00"
  7060. },
  7061. {
  7062. "name": "symfony/var-exporter",
  7063. "version": "v5.4.40",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://github.com/symfony/var-exporter.git",
  7067. "reference": "6a13d37336d512927986e09f19a4bed24178baa6"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6a13d37336d512927986e09f19a4bed24178baa6",
  7072. "reference": "6a13d37336d512927986e09f19a4bed24178baa6",
  7073. "shasum": ""
  7074. },
  7075. "require": {
  7076. "php": ">=7.2.5",
  7077. "symfony/polyfill-php80": "^1.16"
  7078. },
  7079. "require-dev": {
  7080. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7081. },
  7082. "type": "library",
  7083. "autoload": {
  7084. "psr-4": {
  7085. "Symfony\\Component\\VarExporter\\": ""
  7086. },
  7087. "exclude-from-classmap": [
  7088. "/Tests/"
  7089. ]
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Nicolas Grekas",
  7098. "email": "p@tchwork.com"
  7099. },
  7100. {
  7101. "name": "Symfony Community",
  7102. "homepage": "https://symfony.com/contributors"
  7103. }
  7104. ],
  7105. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7106. "homepage": "https://symfony.com",
  7107. "keywords": [
  7108. "clone",
  7109. "construct",
  7110. "export",
  7111. "hydrate",
  7112. "instantiate",
  7113. "serialize"
  7114. ],
  7115. "support": {
  7116. "source": "https://github.com/symfony/var-exporter/tree/v5.4.40"
  7117. },
  7118. "funding": [
  7119. {
  7120. "url": "https://symfony.com/sponsor",
  7121. "type": "custom"
  7122. },
  7123. {
  7124. "url": "https://github.com/fabpot",
  7125. "type": "github"
  7126. },
  7127. {
  7128. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7129. "type": "tidelift"
  7130. }
  7131. ],
  7132. "time": "2024-05-31T14:33:22+00:00"
  7133. },
  7134. {
  7135. "name": "tencentcloud/common",
  7136. "version": "3.0.1067",
  7137. "source": {
  7138. "type": "git",
  7139. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  7140. "reference": "17d88323aaf68906984caa33b61559295a4837a0"
  7141. },
  7142. "dist": {
  7143. "type": "zip",
  7144. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/17d88323aaf68906984caa33b61559295a4837a0",
  7145. "reference": "17d88323aaf68906984caa33b61559295a4837a0",
  7146. "shasum": "",
  7147. "mirrors": [
  7148. {
  7149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7150. "preferred": true
  7151. }
  7152. ]
  7153. },
  7154. "require": {
  7155. "guzzlehttp/guzzle": "^6.3||^7.0",
  7156. "php": ">=5.6.0"
  7157. },
  7158. "type": "library",
  7159. "autoload": {
  7160. "psr-4": {
  7161. "TencentCloud\\": "./src/TencentCloud"
  7162. }
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "Apache-2.0"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "tencentcloudapi",
  7171. "email": "tencentcloudapi@tencent.com",
  7172. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7173. "role": "Developer"
  7174. }
  7175. ],
  7176. "description": "TencentCloudApi php sdk",
  7177. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7178. "support": {
  7179. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  7180. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1067"
  7181. },
  7182. "time": "2024-01-12T07:53:31+00:00"
  7183. },
  7184. {
  7185. "name": "tencentcloud/sms",
  7186. "version": "3.0.1067",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  7190. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7195. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7196. "shasum": "",
  7197. "mirrors": [
  7198. {
  7199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7200. "preferred": true
  7201. }
  7202. ]
  7203. },
  7204. "require": {
  7205. "tencentcloud/common": "3.0.1067"
  7206. },
  7207. "type": "library",
  7208. "autoload": {
  7209. "psr-4": {
  7210. "TencentCloud\\": "./src/TencentCloud"
  7211. }
  7212. },
  7213. "notification-url": "https://packagist.org/downloads/",
  7214. "license": [
  7215. "Apache-2.0"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "tencentcloudapi",
  7220. "email": "tencentcloudapi@tencent.com",
  7221. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7222. "role": "Developer"
  7223. }
  7224. ],
  7225. "description": "TencentCloudApi php sdk sms",
  7226. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7227. "support": {
  7228. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  7229. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1067"
  7230. },
  7231. "time": "2024-01-12T08:16:39+00:00"
  7232. },
  7233. {
  7234. "name": "tijsverkoyen/css-to-inline-styles",
  7235. "version": "v2.2.7",
  7236. "source": {
  7237. "type": "git",
  7238. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7239. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7240. },
  7241. "dist": {
  7242. "type": "zip",
  7243. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7244. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7245. "shasum": "",
  7246. "mirrors": [
  7247. {
  7248. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7249. "preferred": true
  7250. }
  7251. ]
  7252. },
  7253. "require": {
  7254. "ext-dom": "*",
  7255. "ext-libxml": "*",
  7256. "php": "^5.5 || ^7.0 || ^8.0",
  7257. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7258. },
  7259. "require-dev": {
  7260. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7261. },
  7262. "type": "library",
  7263. "extra": {
  7264. "branch-alias": {
  7265. "dev-master": "2.2.x-dev"
  7266. }
  7267. },
  7268. "autoload": {
  7269. "psr-4": {
  7270. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7271. }
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "license": [
  7275. "BSD-3-Clause"
  7276. ],
  7277. "authors": [
  7278. {
  7279. "name": "Tijs Verkoyen",
  7280. "email": "css_to_inline_styles@verkoyen.eu",
  7281. "role": "Developer"
  7282. }
  7283. ],
  7284. "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.",
  7285. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7286. "support": {
  7287. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7288. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7289. },
  7290. "time": "2023-12-08T13:03:43+00:00"
  7291. },
  7292. {
  7293. "name": "vinkla/hashids",
  7294. "version": "9.1.0",
  7295. "source": {
  7296. "type": "git",
  7297. "url": "https://github.com/vinkla/laravel-hashids.git",
  7298. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7299. },
  7300. "dist": {
  7301. "type": "zip",
  7302. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7303. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7304. "shasum": "",
  7305. "mirrors": [
  7306. {
  7307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7308. "preferred": true
  7309. }
  7310. ]
  7311. },
  7312. "require": {
  7313. "graham-campbell/manager": "^4.4",
  7314. "hashids/hashids": "^4.1",
  7315. "illuminate/contracts": "^8.0",
  7316. "illuminate/support": "^8.0",
  7317. "php": "^7.3 || ^8.0"
  7318. },
  7319. "require-dev": {
  7320. "graham-campbell/analyzer": "^3.0",
  7321. "graham-campbell/testbench": "^5.4",
  7322. "mockery/mockery": "^1.3",
  7323. "phpunit/phpunit": "^9.3",
  7324. "squizlabs/php_codesniffer": "^3.5"
  7325. },
  7326. "type": "library",
  7327. "extra": {
  7328. "branch-alias": {
  7329. "dev-master": "9.1-dev"
  7330. },
  7331. "laravel": {
  7332. "providers": [
  7333. "Vinkla\\Hashids\\HashidsServiceProvider"
  7334. ],
  7335. "aliases": {
  7336. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7337. }
  7338. }
  7339. },
  7340. "autoload": {
  7341. "psr-4": {
  7342. "Vinkla\\Hashids\\": "src/"
  7343. }
  7344. },
  7345. "notification-url": "https://packagist.org/downloads/",
  7346. "license": [
  7347. "MIT"
  7348. ],
  7349. "authors": [
  7350. {
  7351. "name": "Vincent Klaiber",
  7352. "email": "hello@doubledip.se"
  7353. }
  7354. ],
  7355. "description": "A Hashids bridge for Laravel",
  7356. "keywords": [
  7357. "hashids",
  7358. "laravel"
  7359. ],
  7360. "support": {
  7361. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7362. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7363. },
  7364. "time": "2020-11-26T19:38:22+00:00"
  7365. },
  7366. {
  7367. "name": "vlucas/phpdotenv",
  7368. "version": "v5.5.0",
  7369. "source": {
  7370. "type": "git",
  7371. "url": "https://github.com/vlucas/phpdotenv.git",
  7372. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7373. },
  7374. "dist": {
  7375. "type": "zip",
  7376. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7377. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7378. "shasum": "",
  7379. "mirrors": [
  7380. {
  7381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7382. "preferred": true
  7383. }
  7384. ]
  7385. },
  7386. "require": {
  7387. "ext-pcre": "*",
  7388. "graham-campbell/result-type": "^1.0.2",
  7389. "php": "^7.1.3 || ^8.0",
  7390. "phpoption/phpoption": "^1.8",
  7391. "symfony/polyfill-ctype": "^1.23",
  7392. "symfony/polyfill-mbstring": "^1.23.1",
  7393. "symfony/polyfill-php80": "^1.23.1"
  7394. },
  7395. "require-dev": {
  7396. "bamarni/composer-bin-plugin": "^1.4.1",
  7397. "ext-filter": "*",
  7398. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7399. },
  7400. "suggest": {
  7401. "ext-filter": "Required to use the boolean validator."
  7402. },
  7403. "type": "library",
  7404. "extra": {
  7405. "bamarni-bin": {
  7406. "bin-links": true,
  7407. "forward-command": true
  7408. },
  7409. "branch-alias": {
  7410. "dev-master": "5.5-dev"
  7411. }
  7412. },
  7413. "autoload": {
  7414. "psr-4": {
  7415. "Dotenv\\": "src/"
  7416. }
  7417. },
  7418. "notification-url": "https://packagist.org/downloads/",
  7419. "license": [
  7420. "BSD-3-Clause"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Graham Campbell",
  7425. "email": "hello@gjcampbell.co.uk",
  7426. "homepage": "https://github.com/GrahamCampbell"
  7427. },
  7428. {
  7429. "name": "Vance Lucas",
  7430. "email": "vance@vancelucas.com",
  7431. "homepage": "https://github.com/vlucas"
  7432. }
  7433. ],
  7434. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7435. "keywords": [
  7436. "dotenv",
  7437. "env",
  7438. "environment"
  7439. ],
  7440. "support": {
  7441. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7442. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7443. },
  7444. "funding": [
  7445. {
  7446. "url": "https://github.com/GrahamCampbell",
  7447. "type": "github"
  7448. },
  7449. {
  7450. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7451. "type": "tidelift"
  7452. }
  7453. ],
  7454. "time": "2022-10-16T01:01:54+00:00"
  7455. },
  7456. {
  7457. "name": "voku/portable-ascii",
  7458. "version": "1.6.1",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/voku/portable-ascii.git",
  7462. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7467. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7468. "shasum": "",
  7469. "mirrors": [
  7470. {
  7471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7472. "preferred": true
  7473. }
  7474. ]
  7475. },
  7476. "require": {
  7477. "php": ">=7.0.0"
  7478. },
  7479. "require-dev": {
  7480. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7481. },
  7482. "suggest": {
  7483. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7484. },
  7485. "type": "library",
  7486. "autoload": {
  7487. "psr-4": {
  7488. "voku\\": "src/voku/"
  7489. }
  7490. },
  7491. "notification-url": "https://packagist.org/downloads/",
  7492. "license": [
  7493. "MIT"
  7494. ],
  7495. "authors": [
  7496. {
  7497. "name": "Lars Moelleken",
  7498. "homepage": "http://www.moelleken.org/"
  7499. }
  7500. ],
  7501. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7502. "homepage": "https://github.com/voku/portable-ascii",
  7503. "keywords": [
  7504. "ascii",
  7505. "clean",
  7506. "php"
  7507. ],
  7508. "support": {
  7509. "issues": "https://github.com/voku/portable-ascii/issues",
  7510. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7511. },
  7512. "funding": [
  7513. {
  7514. "url": "https://www.paypal.me/moelleken",
  7515. "type": "custom"
  7516. },
  7517. {
  7518. "url": "https://github.com/voku",
  7519. "type": "github"
  7520. },
  7521. {
  7522. "url": "https://opencollective.com/portable-ascii",
  7523. "type": "open_collective"
  7524. },
  7525. {
  7526. "url": "https://www.patreon.com/voku",
  7527. "type": "patreon"
  7528. },
  7529. {
  7530. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7531. "type": "tidelift"
  7532. }
  7533. ],
  7534. "time": "2022-01-24T18:55:24+00:00"
  7535. },
  7536. {
  7537. "name": "w7corp/easywechat",
  7538. "version": "5.35.2",
  7539. "source": {
  7540. "type": "git",
  7541. "url": "https://github.com/w7corp/easywechat.git",
  7542. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f"
  7543. },
  7544. "dist": {
  7545. "type": "zip",
  7546. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/a9235a1d236a1892fccc989bd73008f2fe20094f",
  7547. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f",
  7548. "shasum": ""
  7549. },
  7550. "require": {
  7551. "easywechat-composer/easywechat-composer": "^1.1",
  7552. "ext-fileinfo": "*",
  7553. "ext-libxml": "*",
  7554. "ext-openssl": "*",
  7555. "ext-simplexml": "*",
  7556. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  7557. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  7558. "overtrue/socialite": "^3.2 || ^4.0",
  7559. "php": ">=7.4",
  7560. "pimple/pimple": "^3.0",
  7561. "psr/simple-cache": "^1.0||^2.0||^3.0",
  7562. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  7563. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  7564. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7565. },
  7566. "require-dev": {
  7567. "brainmaestro/composer-git-hooks": "^2.7",
  7568. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  7569. "friendsofphp/php-cs-fixer": "^3.5.0",
  7570. "mikey179/vfsstream": "^1.6",
  7571. "mockery/mockery": "^1.2.3",
  7572. "phpstan/phpstan": "^0.12.0",
  7573. "phpunit/phpunit": "^9.3"
  7574. },
  7575. "type": "library",
  7576. "extra": {
  7577. "hooks": {
  7578. "pre-commit": [
  7579. "composer test",
  7580. "composer fix-style"
  7581. ],
  7582. "pre-push": [
  7583. "composer test",
  7584. "composer fix-style"
  7585. ]
  7586. }
  7587. },
  7588. "autoload": {
  7589. "files": [
  7590. "src/Kernel/Support/Helpers.php",
  7591. "src/Kernel/Helpers.php"
  7592. ],
  7593. "psr-4": {
  7594. "EasyWeChat\\": "src/"
  7595. }
  7596. },
  7597. "notification-url": "https://packagist.org/downloads/",
  7598. "license": [
  7599. "MIT"
  7600. ],
  7601. "authors": [
  7602. {
  7603. "name": "overtrue",
  7604. "email": "anzhengchao@gmail.com"
  7605. }
  7606. ],
  7607. "description": "微信SDK",
  7608. "keywords": [
  7609. "easywechat",
  7610. "sdk",
  7611. "wechat",
  7612. "weixin",
  7613. "weixin-sdk"
  7614. ],
  7615. "support": {
  7616. "issues": "https://github.com/w7corp/easywechat/issues",
  7617. "source": "https://github.com/w7corp/easywechat/tree/5.35.2"
  7618. },
  7619. "funding": [
  7620. {
  7621. "url": "https://github.com/overtrue",
  7622. "type": "github"
  7623. }
  7624. ],
  7625. "time": "2024-08-06T13:21:05+00:00"
  7626. },
  7627. {
  7628. "name": "wantp/snowflake",
  7629. "version": "v1.2.0",
  7630. "source": {
  7631. "type": "git",
  7632. "url": "https://github.com/wantp/snowflake.git",
  7633. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  7634. },
  7635. "dist": {
  7636. "type": "zip",
  7637. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  7638. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  7639. "shasum": "",
  7640. "mirrors": [
  7641. {
  7642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7643. "preferred": true
  7644. }
  7645. ]
  7646. },
  7647. "require": {
  7648. "php": ">=7.0.0"
  7649. },
  7650. "type": "library",
  7651. "autoload": {
  7652. "psr-4": {
  7653. "wantp\\Snowflake\\": "src/Snowflake/"
  7654. }
  7655. },
  7656. "notification-url": "https://packagist.org/downloads/",
  7657. "license": [
  7658. "MIT"
  7659. ],
  7660. "authors": [
  7661. {
  7662. "name": "zhangrongwang",
  7663. "email": "zhangrongwang798@gmail.com"
  7664. }
  7665. ],
  7666. "description": "A package for create unique id by snowflake",
  7667. "keywords": [
  7668. "snowflake",
  7669. "uniqueId"
  7670. ],
  7671. "support": {
  7672. "issues": "https://github.com/wantp/snowflake/issues",
  7673. "source": "https://github.com/wantp/snowflake/tree/master"
  7674. },
  7675. "time": "2019-08-05T07:14:56+00:00"
  7676. },
  7677. {
  7678. "name": "webmozart/assert",
  7679. "version": "1.11.0",
  7680. "source": {
  7681. "type": "git",
  7682. "url": "https://github.com/webmozarts/assert.git",
  7683. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7684. },
  7685. "dist": {
  7686. "type": "zip",
  7687. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7688. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7689. "shasum": "",
  7690. "mirrors": [
  7691. {
  7692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7693. "preferred": true
  7694. }
  7695. ]
  7696. },
  7697. "require": {
  7698. "ext-ctype": "*",
  7699. "php": "^7.2 || ^8.0"
  7700. },
  7701. "conflict": {
  7702. "phpstan/phpstan": "<0.12.20",
  7703. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7704. },
  7705. "require-dev": {
  7706. "phpunit/phpunit": "^8.5.13"
  7707. },
  7708. "type": "library",
  7709. "extra": {
  7710. "branch-alias": {
  7711. "dev-master": "1.10-dev"
  7712. }
  7713. },
  7714. "autoload": {
  7715. "psr-4": {
  7716. "Webmozart\\Assert\\": "src/"
  7717. }
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "MIT"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Bernhard Schussek",
  7726. "email": "bschussek@gmail.com"
  7727. }
  7728. ],
  7729. "description": "Assertions to validate method input/output with nice error messages.",
  7730. "keywords": [
  7731. "assert",
  7732. "check",
  7733. "validate"
  7734. ],
  7735. "support": {
  7736. "issues": "https://github.com/webmozarts/assert/issues",
  7737. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7738. },
  7739. "time": "2022-06-03T18:03:27+00:00"
  7740. }
  7741. ],
  7742. "packages-dev": [
  7743. {
  7744. "name": "doctrine/instantiator",
  7745. "version": "1.5.0",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://github.com/doctrine/instantiator.git",
  7749. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  7754. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  7755. "shasum": "",
  7756. "mirrors": [
  7757. {
  7758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7759. "preferred": true
  7760. }
  7761. ]
  7762. },
  7763. "require": {
  7764. "php": "^7.1 || ^8.0"
  7765. },
  7766. "require-dev": {
  7767. "doctrine/coding-standard": "^9 || ^11",
  7768. "ext-pdo": "*",
  7769. "ext-phar": "*",
  7770. "phpbench/phpbench": "^0.16 || ^1",
  7771. "phpstan/phpstan": "^1.4",
  7772. "phpstan/phpstan-phpunit": "^1",
  7773. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7774. "vimeo/psalm": "^4.30 || ^5.4"
  7775. },
  7776. "type": "library",
  7777. "autoload": {
  7778. "psr-4": {
  7779. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7780. }
  7781. },
  7782. "notification-url": "https://packagist.org/downloads/",
  7783. "license": [
  7784. "MIT"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "Marco Pivetta",
  7789. "email": "ocramius@gmail.com",
  7790. "homepage": "https://ocramius.github.io/"
  7791. }
  7792. ],
  7793. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7794. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7795. "keywords": [
  7796. "constructor",
  7797. "instantiate"
  7798. ],
  7799. "support": {
  7800. "issues": "https://github.com/doctrine/instantiator/issues",
  7801. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  7802. },
  7803. "funding": [
  7804. {
  7805. "url": "https://www.doctrine-project.org/sponsorship.html",
  7806. "type": "custom"
  7807. },
  7808. {
  7809. "url": "https://www.patreon.com/phpdoctrine",
  7810. "type": "patreon"
  7811. },
  7812. {
  7813. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7814. "type": "tidelift"
  7815. }
  7816. ],
  7817. "time": "2022-12-30T00:15:36+00:00"
  7818. },
  7819. {
  7820. "name": "facade/flare-client-php",
  7821. "version": "1.10.0",
  7822. "source": {
  7823. "type": "git",
  7824. "url": "https://github.com/facade/flare-client-php.git",
  7825. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  7826. },
  7827. "dist": {
  7828. "type": "zip",
  7829. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  7830. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  7831. "shasum": "",
  7832. "mirrors": [
  7833. {
  7834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7835. "preferred": true
  7836. }
  7837. ]
  7838. },
  7839. "require": {
  7840. "facade/ignition-contracts": "~1.0",
  7841. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7842. "php": "^7.1|^8.0",
  7843. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7844. "symfony/mime": "^3.4|^4.0|^5.1",
  7845. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7846. },
  7847. "require-dev": {
  7848. "friendsofphp/php-cs-fixer": "^2.14",
  7849. "phpunit/phpunit": "^7.5",
  7850. "spatie/phpunit-snapshot-assertions": "^2.0"
  7851. },
  7852. "type": "library",
  7853. "extra": {
  7854. "branch-alias": {
  7855. "dev-master": "1.0-dev"
  7856. }
  7857. },
  7858. "autoload": {
  7859. "files": [
  7860. "src/helpers.php"
  7861. ],
  7862. "psr-4": {
  7863. "Facade\\FlareClient\\": "src"
  7864. }
  7865. },
  7866. "notification-url": "https://packagist.org/downloads/",
  7867. "license": [
  7868. "MIT"
  7869. ],
  7870. "description": "Send PHP errors to Flare",
  7871. "homepage": "https://github.com/facade/flare-client-php",
  7872. "keywords": [
  7873. "exception",
  7874. "facade",
  7875. "flare",
  7876. "reporting"
  7877. ],
  7878. "support": {
  7879. "issues": "https://github.com/facade/flare-client-php/issues",
  7880. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://github.com/spatie",
  7885. "type": "github"
  7886. }
  7887. ],
  7888. "time": "2022-08-09T11:23:57+00:00"
  7889. },
  7890. {
  7891. "name": "facade/ignition",
  7892. "version": "2.17.7",
  7893. "source": {
  7894. "type": "git",
  7895. "url": "https://github.com/facade/ignition.git",
  7896. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  7897. },
  7898. "dist": {
  7899. "type": "zip",
  7900. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  7901. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  7902. "shasum": "",
  7903. "mirrors": [
  7904. {
  7905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7906. "preferred": true
  7907. }
  7908. ]
  7909. },
  7910. "require": {
  7911. "ext-curl": "*",
  7912. "ext-json": "*",
  7913. "ext-mbstring": "*",
  7914. "facade/flare-client-php": "^1.9.1",
  7915. "facade/ignition-contracts": "^1.0.2",
  7916. "illuminate/support": "^7.0|^8.0",
  7917. "monolog/monolog": "^2.0",
  7918. "php": "^7.2.5|^8.0",
  7919. "symfony/console": "^5.0",
  7920. "symfony/var-dumper": "^5.0"
  7921. },
  7922. "require-dev": {
  7923. "friendsofphp/php-cs-fixer": "^2.14",
  7924. "livewire/livewire": "^2.4",
  7925. "mockery/mockery": "^1.3",
  7926. "orchestra/testbench": "^5.0|^6.0",
  7927. "psalm/plugin-laravel": "^1.2"
  7928. },
  7929. "suggest": {
  7930. "laravel/telescope": "^3.1"
  7931. },
  7932. "type": "library",
  7933. "extra": {
  7934. "branch-alias": {
  7935. "dev-master": "2.x-dev"
  7936. },
  7937. "laravel": {
  7938. "providers": [
  7939. "Facade\\Ignition\\IgnitionServiceProvider"
  7940. ],
  7941. "aliases": {
  7942. "Flare": "Facade\\Ignition\\Facades\\Flare"
  7943. }
  7944. }
  7945. },
  7946. "autoload": {
  7947. "files": [
  7948. "src/helpers.php"
  7949. ],
  7950. "psr-4": {
  7951. "Facade\\Ignition\\": "src"
  7952. }
  7953. },
  7954. "notification-url": "https://packagist.org/downloads/",
  7955. "license": [
  7956. "MIT"
  7957. ],
  7958. "description": "A beautiful error page for Laravel applications.",
  7959. "homepage": "https://github.com/facade/ignition",
  7960. "keywords": [
  7961. "error",
  7962. "flare",
  7963. "laravel",
  7964. "page"
  7965. ],
  7966. "support": {
  7967. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  7968. "forum": "https://twitter.com/flareappio",
  7969. "issues": "https://github.com/facade/ignition/issues",
  7970. "source": "https://github.com/facade/ignition"
  7971. },
  7972. "time": "2023-01-26T12:34:59+00:00"
  7973. },
  7974. {
  7975. "name": "facade/ignition-contracts",
  7976. "version": "1.0.2",
  7977. "source": {
  7978. "type": "git",
  7979. "url": "https://github.com/facade/ignition-contracts.git",
  7980. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  7981. },
  7982. "dist": {
  7983. "type": "zip",
  7984. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7985. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  7986. "shasum": "",
  7987. "mirrors": [
  7988. {
  7989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7990. "preferred": true
  7991. }
  7992. ]
  7993. },
  7994. "require": {
  7995. "php": "^7.3|^8.0"
  7996. },
  7997. "require-dev": {
  7998. "friendsofphp/php-cs-fixer": "^v2.15.8",
  7999. "phpunit/phpunit": "^9.3.11",
  8000. "vimeo/psalm": "^3.17.1"
  8001. },
  8002. "type": "library",
  8003. "autoload": {
  8004. "psr-4": {
  8005. "Facade\\IgnitionContracts\\": "src"
  8006. }
  8007. },
  8008. "notification-url": "https://packagist.org/downloads/",
  8009. "license": [
  8010. "MIT"
  8011. ],
  8012. "authors": [
  8013. {
  8014. "name": "Freek Van der Herten",
  8015. "email": "freek@spatie.be",
  8016. "homepage": "https://flareapp.io",
  8017. "role": "Developer"
  8018. }
  8019. ],
  8020. "description": "Solution contracts for Ignition",
  8021. "homepage": "https://github.com/facade/ignition-contracts",
  8022. "keywords": [
  8023. "contracts",
  8024. "flare",
  8025. "ignition"
  8026. ],
  8027. "support": {
  8028. "issues": "https://github.com/facade/ignition-contracts/issues",
  8029. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8030. },
  8031. "time": "2020-10-16T08:27:54+00:00"
  8032. },
  8033. {
  8034. "name": "fakerphp/faker",
  8035. "version": "v1.23.0",
  8036. "source": {
  8037. "type": "git",
  8038. "url": "https://github.com/FakerPHP/Faker.git",
  8039. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8040. },
  8041. "dist": {
  8042. "type": "zip",
  8043. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8044. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8045. "shasum": "",
  8046. "mirrors": [
  8047. {
  8048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8049. "preferred": true
  8050. }
  8051. ]
  8052. },
  8053. "require": {
  8054. "php": "^7.4 || ^8.0",
  8055. "psr/container": "^1.0 || ^2.0",
  8056. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8057. },
  8058. "conflict": {
  8059. "fzaninotto/faker": "*"
  8060. },
  8061. "require-dev": {
  8062. "bamarni/composer-bin-plugin": "^1.4.1",
  8063. "doctrine/persistence": "^1.3 || ^2.0",
  8064. "ext-intl": "*",
  8065. "phpunit/phpunit": "^9.5.26",
  8066. "symfony/phpunit-bridge": "^5.4.16"
  8067. },
  8068. "suggest": {
  8069. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8070. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8071. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8072. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8073. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8074. },
  8075. "type": "library",
  8076. "extra": {
  8077. "branch-alias": {
  8078. "dev-main": "v1.21-dev"
  8079. }
  8080. },
  8081. "autoload": {
  8082. "psr-4": {
  8083. "Faker\\": "src/Faker/"
  8084. }
  8085. },
  8086. "notification-url": "https://packagist.org/downloads/",
  8087. "license": [
  8088. "MIT"
  8089. ],
  8090. "authors": [
  8091. {
  8092. "name": "François Zaninotto"
  8093. }
  8094. ],
  8095. "description": "Faker is a PHP library that generates fake data for you.",
  8096. "keywords": [
  8097. "data",
  8098. "faker",
  8099. "fixtures"
  8100. ],
  8101. "support": {
  8102. "issues": "https://github.com/FakerPHP/Faker/issues",
  8103. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8104. },
  8105. "time": "2023-06-12T08:44:38+00:00"
  8106. },
  8107. {
  8108. "name": "filp/whoops",
  8109. "version": "2.15.4",
  8110. "source": {
  8111. "type": "git",
  8112. "url": "https://github.com/filp/whoops.git",
  8113. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8114. },
  8115. "dist": {
  8116. "type": "zip",
  8117. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8118. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8119. "shasum": "",
  8120. "mirrors": [
  8121. {
  8122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8123. "preferred": true
  8124. }
  8125. ]
  8126. },
  8127. "require": {
  8128. "php": "^5.5.9 || ^7.0 || ^8.0",
  8129. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8130. },
  8131. "require-dev": {
  8132. "mockery/mockery": "^0.9 || ^1.0",
  8133. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8134. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8135. },
  8136. "suggest": {
  8137. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8138. "whoops/soap": "Formats errors as SOAP responses"
  8139. },
  8140. "type": "library",
  8141. "extra": {
  8142. "branch-alias": {
  8143. "dev-master": "2.7-dev"
  8144. }
  8145. },
  8146. "autoload": {
  8147. "psr-4": {
  8148. "Whoops\\": "src/Whoops/"
  8149. }
  8150. },
  8151. "notification-url": "https://packagist.org/downloads/",
  8152. "license": [
  8153. "MIT"
  8154. ],
  8155. "authors": [
  8156. {
  8157. "name": "Filipe Dobreira",
  8158. "homepage": "https://github.com/filp",
  8159. "role": "Developer"
  8160. }
  8161. ],
  8162. "description": "php error handling for cool kids",
  8163. "homepage": "https://filp.github.io/whoops/",
  8164. "keywords": [
  8165. "error",
  8166. "exception",
  8167. "handling",
  8168. "library",
  8169. "throwable",
  8170. "whoops"
  8171. ],
  8172. "support": {
  8173. "issues": "https://github.com/filp/whoops/issues",
  8174. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8175. },
  8176. "funding": [
  8177. {
  8178. "url": "https://github.com/denis-sokolov",
  8179. "type": "github"
  8180. }
  8181. ],
  8182. "time": "2023-11-03T12:00:00+00:00"
  8183. },
  8184. {
  8185. "name": "hamcrest/hamcrest-php",
  8186. "version": "v2.0.1",
  8187. "source": {
  8188. "type": "git",
  8189. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8190. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8191. },
  8192. "dist": {
  8193. "type": "zip",
  8194. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8195. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8196. "shasum": "",
  8197. "mirrors": [
  8198. {
  8199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8200. "preferred": true
  8201. }
  8202. ]
  8203. },
  8204. "require": {
  8205. "php": "^5.3|^7.0|^8.0"
  8206. },
  8207. "replace": {
  8208. "cordoval/hamcrest-php": "*",
  8209. "davedevelopment/hamcrest-php": "*",
  8210. "kodova/hamcrest-php": "*"
  8211. },
  8212. "require-dev": {
  8213. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8214. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8215. },
  8216. "type": "library",
  8217. "extra": {
  8218. "branch-alias": {
  8219. "dev-master": "2.1-dev"
  8220. }
  8221. },
  8222. "autoload": {
  8223. "classmap": [
  8224. "hamcrest"
  8225. ]
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "BSD-3-Clause"
  8230. ],
  8231. "description": "This is the PHP port of Hamcrest Matchers",
  8232. "keywords": [
  8233. "test"
  8234. ],
  8235. "support": {
  8236. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8237. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8238. },
  8239. "time": "2020-07-09T08:09:16+00:00"
  8240. },
  8241. {
  8242. "name": "laravel/sail",
  8243. "version": "v1.19.0",
  8244. "source": {
  8245. "type": "git",
  8246. "url": "https://github.com/laravel/sail.git",
  8247. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  8248. },
  8249. "dist": {
  8250. "type": "zip",
  8251. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8252. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8253. "shasum": "",
  8254. "mirrors": [
  8255. {
  8256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8257. "preferred": true
  8258. }
  8259. ]
  8260. },
  8261. "require": {
  8262. "illuminate/console": "^8.0|^9.0|^10.0",
  8263. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8264. "illuminate/support": "^8.0|^9.0|^10.0",
  8265. "php": "^7.3|^8.0"
  8266. },
  8267. "bin": [
  8268. "bin/sail"
  8269. ],
  8270. "type": "library",
  8271. "extra": {
  8272. "branch-alias": {
  8273. "dev-master": "1.x-dev"
  8274. },
  8275. "laravel": {
  8276. "providers": [
  8277. "Laravel\\Sail\\SailServiceProvider"
  8278. ]
  8279. }
  8280. },
  8281. "autoload": {
  8282. "psr-4": {
  8283. "Laravel\\Sail\\": "src/"
  8284. }
  8285. },
  8286. "notification-url": "https://packagist.org/downloads/",
  8287. "license": [
  8288. "MIT"
  8289. ],
  8290. "authors": [
  8291. {
  8292. "name": "Taylor Otwell",
  8293. "email": "taylor@laravel.com"
  8294. }
  8295. ],
  8296. "description": "Docker files for running a basic Laravel application.",
  8297. "keywords": [
  8298. "docker",
  8299. "laravel"
  8300. ],
  8301. "support": {
  8302. "issues": "https://github.com/laravel/sail/issues",
  8303. "source": "https://github.com/laravel/sail"
  8304. },
  8305. "time": "2023-01-31T13:37:57+00:00"
  8306. },
  8307. {
  8308. "name": "mockery/mockery",
  8309. "version": "1.6.6",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/mockery/mockery.git",
  8313. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  8318. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  8319. "shasum": "",
  8320. "mirrors": [
  8321. {
  8322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8323. "preferred": true
  8324. }
  8325. ]
  8326. },
  8327. "require": {
  8328. "hamcrest/hamcrest-php": "^2.0.1",
  8329. "lib-pcre": ">=7.0",
  8330. "php": ">=7.3"
  8331. },
  8332. "conflict": {
  8333. "phpunit/phpunit": "<8.0"
  8334. },
  8335. "require-dev": {
  8336. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8337. "psalm/plugin-phpunit": "^0.18.4",
  8338. "symplify/easy-coding-standard": "^11.5.0",
  8339. "vimeo/psalm": "^4.30"
  8340. },
  8341. "type": "library",
  8342. "autoload": {
  8343. "files": [
  8344. "library/helpers.php",
  8345. "library/Mockery.php"
  8346. ],
  8347. "psr-4": {
  8348. "Mockery\\": "library/Mockery"
  8349. }
  8350. },
  8351. "notification-url": "https://packagist.org/downloads/",
  8352. "license": [
  8353. "BSD-3-Clause"
  8354. ],
  8355. "authors": [
  8356. {
  8357. "name": "Pádraic Brady",
  8358. "email": "padraic.brady@gmail.com",
  8359. "homepage": "https://github.com/padraic",
  8360. "role": "Author"
  8361. },
  8362. {
  8363. "name": "Dave Marshall",
  8364. "email": "dave.marshall@atstsolutions.co.uk",
  8365. "homepage": "https://davedevelopment.co.uk",
  8366. "role": "Developer"
  8367. },
  8368. {
  8369. "name": "Nathanael Esayeas",
  8370. "email": "nathanael.esayeas@protonmail.com",
  8371. "homepage": "https://github.com/ghostwriter",
  8372. "role": "Lead Developer"
  8373. }
  8374. ],
  8375. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8376. "homepage": "https://github.com/mockery/mockery",
  8377. "keywords": [
  8378. "BDD",
  8379. "TDD",
  8380. "library",
  8381. "mock",
  8382. "mock objects",
  8383. "mockery",
  8384. "stub",
  8385. "test",
  8386. "test double",
  8387. "testing"
  8388. ],
  8389. "support": {
  8390. "docs": "https://docs.mockery.io/",
  8391. "issues": "https://github.com/mockery/mockery/issues",
  8392. "rss": "https://github.com/mockery/mockery/releases.atom",
  8393. "security": "https://github.com/mockery/mockery/security/advisories",
  8394. "source": "https://github.com/mockery/mockery"
  8395. },
  8396. "time": "2023-08-09T00:03:52+00:00"
  8397. },
  8398. {
  8399. "name": "myclabs/deep-copy",
  8400. "version": "1.11.1",
  8401. "source": {
  8402. "type": "git",
  8403. "url": "https://github.com/myclabs/DeepCopy.git",
  8404. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8405. },
  8406. "dist": {
  8407. "type": "zip",
  8408. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8409. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8410. "shasum": "",
  8411. "mirrors": [
  8412. {
  8413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8414. "preferred": true
  8415. }
  8416. ]
  8417. },
  8418. "require": {
  8419. "php": "^7.1 || ^8.0"
  8420. },
  8421. "conflict": {
  8422. "doctrine/collections": "<1.6.8",
  8423. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8424. },
  8425. "require-dev": {
  8426. "doctrine/collections": "^1.6.8",
  8427. "doctrine/common": "^2.13.3 || ^3.2.2",
  8428. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8429. },
  8430. "type": "library",
  8431. "autoload": {
  8432. "files": [
  8433. "src/DeepCopy/deep_copy.php"
  8434. ],
  8435. "psr-4": {
  8436. "DeepCopy\\": "src/DeepCopy/"
  8437. }
  8438. },
  8439. "notification-url": "https://packagist.org/downloads/",
  8440. "license": [
  8441. "MIT"
  8442. ],
  8443. "description": "Create deep copies (clones) of your objects",
  8444. "keywords": [
  8445. "clone",
  8446. "copy",
  8447. "duplicate",
  8448. "object",
  8449. "object graph"
  8450. ],
  8451. "support": {
  8452. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8453. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8454. },
  8455. "funding": [
  8456. {
  8457. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8458. "type": "tidelift"
  8459. }
  8460. ],
  8461. "time": "2023-03-08T13:26:56+00:00"
  8462. },
  8463. {
  8464. "name": "nunomaduro/collision",
  8465. "version": "v5.11.0",
  8466. "source": {
  8467. "type": "git",
  8468. "url": "https://github.com/nunomaduro/collision.git",
  8469. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8470. },
  8471. "dist": {
  8472. "type": "zip",
  8473. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8474. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8475. "shasum": "",
  8476. "mirrors": [
  8477. {
  8478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8479. "preferred": true
  8480. }
  8481. ]
  8482. },
  8483. "require": {
  8484. "facade/ignition-contracts": "^1.0",
  8485. "filp/whoops": "^2.14.3",
  8486. "php": "^7.3 || ^8.0",
  8487. "symfony/console": "^5.0"
  8488. },
  8489. "require-dev": {
  8490. "brianium/paratest": "^6.1",
  8491. "fideloper/proxy": "^4.4.1",
  8492. "fruitcake/laravel-cors": "^2.0.3",
  8493. "laravel/framework": "8.x-dev",
  8494. "nunomaduro/larastan": "^0.6.2",
  8495. "nunomaduro/mock-final-classes": "^1.0",
  8496. "orchestra/testbench": "^6.0",
  8497. "phpstan/phpstan": "^0.12.64",
  8498. "phpunit/phpunit": "^9.5.0"
  8499. },
  8500. "type": "library",
  8501. "extra": {
  8502. "laravel": {
  8503. "providers": [
  8504. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8505. ]
  8506. }
  8507. },
  8508. "autoload": {
  8509. "psr-4": {
  8510. "NunoMaduro\\Collision\\": "src/"
  8511. }
  8512. },
  8513. "notification-url": "https://packagist.org/downloads/",
  8514. "license": [
  8515. "MIT"
  8516. ],
  8517. "authors": [
  8518. {
  8519. "name": "Nuno Maduro",
  8520. "email": "enunomaduro@gmail.com"
  8521. }
  8522. ],
  8523. "description": "Cli error handling for console/command-line PHP applications.",
  8524. "keywords": [
  8525. "artisan",
  8526. "cli",
  8527. "command-line",
  8528. "console",
  8529. "error",
  8530. "handling",
  8531. "laravel",
  8532. "laravel-zero",
  8533. "php",
  8534. "symfony"
  8535. ],
  8536. "support": {
  8537. "issues": "https://github.com/nunomaduro/collision/issues",
  8538. "source": "https://github.com/nunomaduro/collision"
  8539. },
  8540. "funding": [
  8541. {
  8542. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8543. "type": "custom"
  8544. },
  8545. {
  8546. "url": "https://github.com/nunomaduro",
  8547. "type": "github"
  8548. },
  8549. {
  8550. "url": "https://www.patreon.com/nunomaduro",
  8551. "type": "patreon"
  8552. }
  8553. ],
  8554. "time": "2022-01-10T16:22:52+00:00"
  8555. },
  8556. {
  8557. "name": "phar-io/manifest",
  8558. "version": "2.0.3",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/phar-io/manifest.git",
  8562. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8567. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8568. "shasum": "",
  8569. "mirrors": [
  8570. {
  8571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8572. "preferred": true
  8573. }
  8574. ]
  8575. },
  8576. "require": {
  8577. "ext-dom": "*",
  8578. "ext-phar": "*",
  8579. "ext-xmlwriter": "*",
  8580. "phar-io/version": "^3.0.1",
  8581. "php": "^7.2 || ^8.0"
  8582. },
  8583. "type": "library",
  8584. "extra": {
  8585. "branch-alias": {
  8586. "dev-master": "2.0.x-dev"
  8587. }
  8588. },
  8589. "autoload": {
  8590. "classmap": [
  8591. "src/"
  8592. ]
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "BSD-3-Clause"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "Arne Blankerts",
  8601. "email": "arne@blankerts.de",
  8602. "role": "Developer"
  8603. },
  8604. {
  8605. "name": "Sebastian Heuer",
  8606. "email": "sebastian@phpeople.de",
  8607. "role": "Developer"
  8608. },
  8609. {
  8610. "name": "Sebastian Bergmann",
  8611. "email": "sebastian@phpunit.de",
  8612. "role": "Developer"
  8613. }
  8614. ],
  8615. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8616. "support": {
  8617. "issues": "https://github.com/phar-io/manifest/issues",
  8618. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8619. },
  8620. "time": "2021-07-20T11:28:43+00:00"
  8621. },
  8622. {
  8623. "name": "phar-io/version",
  8624. "version": "3.2.1",
  8625. "source": {
  8626. "type": "git",
  8627. "url": "https://github.com/phar-io/version.git",
  8628. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8629. },
  8630. "dist": {
  8631. "type": "zip",
  8632. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8633. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8634. "shasum": "",
  8635. "mirrors": [
  8636. {
  8637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8638. "preferred": true
  8639. }
  8640. ]
  8641. },
  8642. "require": {
  8643. "php": "^7.2 || ^8.0"
  8644. },
  8645. "type": "library",
  8646. "autoload": {
  8647. "classmap": [
  8648. "src/"
  8649. ]
  8650. },
  8651. "notification-url": "https://packagist.org/downloads/",
  8652. "license": [
  8653. "BSD-3-Clause"
  8654. ],
  8655. "authors": [
  8656. {
  8657. "name": "Arne Blankerts",
  8658. "email": "arne@blankerts.de",
  8659. "role": "Developer"
  8660. },
  8661. {
  8662. "name": "Sebastian Heuer",
  8663. "email": "sebastian@phpeople.de",
  8664. "role": "Developer"
  8665. },
  8666. {
  8667. "name": "Sebastian Bergmann",
  8668. "email": "sebastian@phpunit.de",
  8669. "role": "Developer"
  8670. }
  8671. ],
  8672. "description": "Library for handling version information and constraints",
  8673. "support": {
  8674. "issues": "https://github.com/phar-io/version/issues",
  8675. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8676. },
  8677. "time": "2022-02-21T01:04:05+00:00"
  8678. },
  8679. {
  8680. "name": "phpunit/php-code-coverage",
  8681. "version": "9.2.30",
  8682. "source": {
  8683. "type": "git",
  8684. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8685. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  8686. },
  8687. "dist": {
  8688. "type": "zip",
  8689. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8690. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8691. "shasum": "",
  8692. "mirrors": [
  8693. {
  8694. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8695. "preferred": true
  8696. }
  8697. ]
  8698. },
  8699. "require": {
  8700. "ext-dom": "*",
  8701. "ext-libxml": "*",
  8702. "ext-xmlwriter": "*",
  8703. "nikic/php-parser": "^4.18 || ^5.0",
  8704. "php": ">=7.3",
  8705. "phpunit/php-file-iterator": "^3.0.3",
  8706. "phpunit/php-text-template": "^2.0.2",
  8707. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8708. "sebastian/complexity": "^2.0",
  8709. "sebastian/environment": "^5.1.2",
  8710. "sebastian/lines-of-code": "^1.0.3",
  8711. "sebastian/version": "^3.0.1",
  8712. "theseer/tokenizer": "^1.2.0"
  8713. },
  8714. "require-dev": {
  8715. "phpunit/phpunit": "^9.3"
  8716. },
  8717. "suggest": {
  8718. "ext-pcov": "PHP extension that provides line coverage",
  8719. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8720. },
  8721. "type": "library",
  8722. "extra": {
  8723. "branch-alias": {
  8724. "dev-master": "9.2-dev"
  8725. }
  8726. },
  8727. "autoload": {
  8728. "classmap": [
  8729. "src/"
  8730. ]
  8731. },
  8732. "notification-url": "https://packagist.org/downloads/",
  8733. "license": [
  8734. "BSD-3-Clause"
  8735. ],
  8736. "authors": [
  8737. {
  8738. "name": "Sebastian Bergmann",
  8739. "email": "sebastian@phpunit.de",
  8740. "role": "lead"
  8741. }
  8742. ],
  8743. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8744. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8745. "keywords": [
  8746. "coverage",
  8747. "testing",
  8748. "xunit"
  8749. ],
  8750. "support": {
  8751. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8752. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8753. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  8754. },
  8755. "funding": [
  8756. {
  8757. "url": "https://github.com/sebastianbergmann",
  8758. "type": "github"
  8759. }
  8760. ],
  8761. "time": "2023-12-22T06:47:57+00:00"
  8762. },
  8763. {
  8764. "name": "phpunit/php-file-iterator",
  8765. "version": "3.0.6",
  8766. "source": {
  8767. "type": "git",
  8768. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8769. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8770. },
  8771. "dist": {
  8772. "type": "zip",
  8773. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8774. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8775. "shasum": "",
  8776. "mirrors": [
  8777. {
  8778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8779. "preferred": true
  8780. }
  8781. ]
  8782. },
  8783. "require": {
  8784. "php": ">=7.3"
  8785. },
  8786. "require-dev": {
  8787. "phpunit/phpunit": "^9.3"
  8788. },
  8789. "type": "library",
  8790. "extra": {
  8791. "branch-alias": {
  8792. "dev-master": "3.0-dev"
  8793. }
  8794. },
  8795. "autoload": {
  8796. "classmap": [
  8797. "src/"
  8798. ]
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "BSD-3-Clause"
  8803. ],
  8804. "authors": [
  8805. {
  8806. "name": "Sebastian Bergmann",
  8807. "email": "sebastian@phpunit.de",
  8808. "role": "lead"
  8809. }
  8810. ],
  8811. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8812. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8813. "keywords": [
  8814. "filesystem",
  8815. "iterator"
  8816. ],
  8817. "support": {
  8818. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8819. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8820. },
  8821. "funding": [
  8822. {
  8823. "url": "https://github.com/sebastianbergmann",
  8824. "type": "github"
  8825. }
  8826. ],
  8827. "time": "2021-12-02T12:48:52+00:00"
  8828. },
  8829. {
  8830. "name": "phpunit/php-invoker",
  8831. "version": "3.1.1",
  8832. "source": {
  8833. "type": "git",
  8834. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8835. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8836. },
  8837. "dist": {
  8838. "type": "zip",
  8839. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8840. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8841. "shasum": "",
  8842. "mirrors": [
  8843. {
  8844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8845. "preferred": true
  8846. }
  8847. ]
  8848. },
  8849. "require": {
  8850. "php": ">=7.3"
  8851. },
  8852. "require-dev": {
  8853. "ext-pcntl": "*",
  8854. "phpunit/phpunit": "^9.3"
  8855. },
  8856. "suggest": {
  8857. "ext-pcntl": "*"
  8858. },
  8859. "type": "library",
  8860. "extra": {
  8861. "branch-alias": {
  8862. "dev-master": "3.1-dev"
  8863. }
  8864. },
  8865. "autoload": {
  8866. "classmap": [
  8867. "src/"
  8868. ]
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "BSD-3-Clause"
  8873. ],
  8874. "authors": [
  8875. {
  8876. "name": "Sebastian Bergmann",
  8877. "email": "sebastian@phpunit.de",
  8878. "role": "lead"
  8879. }
  8880. ],
  8881. "description": "Invoke callables with a timeout",
  8882. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8883. "keywords": [
  8884. "process"
  8885. ],
  8886. "support": {
  8887. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8888. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8889. },
  8890. "funding": [
  8891. {
  8892. "url": "https://github.com/sebastianbergmann",
  8893. "type": "github"
  8894. }
  8895. ],
  8896. "time": "2020-09-28T05:58:55+00:00"
  8897. },
  8898. {
  8899. "name": "phpunit/php-text-template",
  8900. "version": "2.0.4",
  8901. "source": {
  8902. "type": "git",
  8903. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8904. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8905. },
  8906. "dist": {
  8907. "type": "zip",
  8908. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8909. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8910. "shasum": "",
  8911. "mirrors": [
  8912. {
  8913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8914. "preferred": true
  8915. }
  8916. ]
  8917. },
  8918. "require": {
  8919. "php": ">=7.3"
  8920. },
  8921. "require-dev": {
  8922. "phpunit/phpunit": "^9.3"
  8923. },
  8924. "type": "library",
  8925. "extra": {
  8926. "branch-alias": {
  8927. "dev-master": "2.0-dev"
  8928. }
  8929. },
  8930. "autoload": {
  8931. "classmap": [
  8932. "src/"
  8933. ]
  8934. },
  8935. "notification-url": "https://packagist.org/downloads/",
  8936. "license": [
  8937. "BSD-3-Clause"
  8938. ],
  8939. "authors": [
  8940. {
  8941. "name": "Sebastian Bergmann",
  8942. "email": "sebastian@phpunit.de",
  8943. "role": "lead"
  8944. }
  8945. ],
  8946. "description": "Simple template engine.",
  8947. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8948. "keywords": [
  8949. "template"
  8950. ],
  8951. "support": {
  8952. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8953. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8954. },
  8955. "funding": [
  8956. {
  8957. "url": "https://github.com/sebastianbergmann",
  8958. "type": "github"
  8959. }
  8960. ],
  8961. "time": "2020-10-26T05:33:50+00:00"
  8962. },
  8963. {
  8964. "name": "phpunit/php-timer",
  8965. "version": "5.0.3",
  8966. "source": {
  8967. "type": "git",
  8968. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8969. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8970. },
  8971. "dist": {
  8972. "type": "zip",
  8973. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8974. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8975. "shasum": "",
  8976. "mirrors": [
  8977. {
  8978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8979. "preferred": true
  8980. }
  8981. ]
  8982. },
  8983. "require": {
  8984. "php": ">=7.3"
  8985. },
  8986. "require-dev": {
  8987. "phpunit/phpunit": "^9.3"
  8988. },
  8989. "type": "library",
  8990. "extra": {
  8991. "branch-alias": {
  8992. "dev-master": "5.0-dev"
  8993. }
  8994. },
  8995. "autoload": {
  8996. "classmap": [
  8997. "src/"
  8998. ]
  8999. },
  9000. "notification-url": "https://packagist.org/downloads/",
  9001. "license": [
  9002. "BSD-3-Clause"
  9003. ],
  9004. "authors": [
  9005. {
  9006. "name": "Sebastian Bergmann",
  9007. "email": "sebastian@phpunit.de",
  9008. "role": "lead"
  9009. }
  9010. ],
  9011. "description": "Utility class for timing",
  9012. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9013. "keywords": [
  9014. "timer"
  9015. ],
  9016. "support": {
  9017. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9018. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://github.com/sebastianbergmann",
  9023. "type": "github"
  9024. }
  9025. ],
  9026. "time": "2020-10-26T13:16:10+00:00"
  9027. },
  9028. {
  9029. "name": "phpunit/phpunit",
  9030. "version": "9.6.15",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9034. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9039. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9040. "shasum": "",
  9041. "mirrors": [
  9042. {
  9043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9044. "preferred": true
  9045. }
  9046. ]
  9047. },
  9048. "require": {
  9049. "doctrine/instantiator": "^1.3.1 || ^2",
  9050. "ext-dom": "*",
  9051. "ext-json": "*",
  9052. "ext-libxml": "*",
  9053. "ext-mbstring": "*",
  9054. "ext-xml": "*",
  9055. "ext-xmlwriter": "*",
  9056. "myclabs/deep-copy": "^1.10.1",
  9057. "phar-io/manifest": "^2.0.3",
  9058. "phar-io/version": "^3.0.2",
  9059. "php": ">=7.3",
  9060. "phpunit/php-code-coverage": "^9.2.28",
  9061. "phpunit/php-file-iterator": "^3.0.5",
  9062. "phpunit/php-invoker": "^3.1.1",
  9063. "phpunit/php-text-template": "^2.0.3",
  9064. "phpunit/php-timer": "^5.0.2",
  9065. "sebastian/cli-parser": "^1.0.1",
  9066. "sebastian/code-unit": "^1.0.6",
  9067. "sebastian/comparator": "^4.0.8",
  9068. "sebastian/diff": "^4.0.3",
  9069. "sebastian/environment": "^5.1.3",
  9070. "sebastian/exporter": "^4.0.5",
  9071. "sebastian/global-state": "^5.0.1",
  9072. "sebastian/object-enumerator": "^4.0.3",
  9073. "sebastian/resource-operations": "^3.0.3",
  9074. "sebastian/type": "^3.2",
  9075. "sebastian/version": "^3.0.2"
  9076. },
  9077. "suggest": {
  9078. "ext-soap": "To be able to generate mocks based on WSDL files",
  9079. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9080. },
  9081. "bin": [
  9082. "phpunit"
  9083. ],
  9084. "type": "library",
  9085. "extra": {
  9086. "branch-alias": {
  9087. "dev-master": "9.6-dev"
  9088. }
  9089. },
  9090. "autoload": {
  9091. "files": [
  9092. "src/Framework/Assert/Functions.php"
  9093. ],
  9094. "classmap": [
  9095. "src/"
  9096. ]
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "BSD-3-Clause"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Sebastian Bergmann",
  9105. "email": "sebastian@phpunit.de",
  9106. "role": "lead"
  9107. }
  9108. ],
  9109. "description": "The PHP Unit Testing framework.",
  9110. "homepage": "https://phpunit.de/",
  9111. "keywords": [
  9112. "phpunit",
  9113. "testing",
  9114. "xunit"
  9115. ],
  9116. "support": {
  9117. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9118. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9119. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9120. },
  9121. "funding": [
  9122. {
  9123. "url": "https://phpunit.de/sponsors.html",
  9124. "type": "custom"
  9125. },
  9126. {
  9127. "url": "https://github.com/sebastianbergmann",
  9128. "type": "github"
  9129. },
  9130. {
  9131. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9132. "type": "tidelift"
  9133. }
  9134. ],
  9135. "time": "2023-12-01T16:55:19+00:00"
  9136. },
  9137. {
  9138. "name": "sebastian/cli-parser",
  9139. "version": "1.0.1",
  9140. "source": {
  9141. "type": "git",
  9142. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9143. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9144. },
  9145. "dist": {
  9146. "type": "zip",
  9147. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9148. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9149. "shasum": "",
  9150. "mirrors": [
  9151. {
  9152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9153. "preferred": true
  9154. }
  9155. ]
  9156. },
  9157. "require": {
  9158. "php": ">=7.3"
  9159. },
  9160. "require-dev": {
  9161. "phpunit/phpunit": "^9.3"
  9162. },
  9163. "type": "library",
  9164. "extra": {
  9165. "branch-alias": {
  9166. "dev-master": "1.0-dev"
  9167. }
  9168. },
  9169. "autoload": {
  9170. "classmap": [
  9171. "src/"
  9172. ]
  9173. },
  9174. "notification-url": "https://packagist.org/downloads/",
  9175. "license": [
  9176. "BSD-3-Clause"
  9177. ],
  9178. "authors": [
  9179. {
  9180. "name": "Sebastian Bergmann",
  9181. "email": "sebastian@phpunit.de",
  9182. "role": "lead"
  9183. }
  9184. ],
  9185. "description": "Library for parsing CLI options",
  9186. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9187. "support": {
  9188. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9189. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9190. },
  9191. "funding": [
  9192. {
  9193. "url": "https://github.com/sebastianbergmann",
  9194. "type": "github"
  9195. }
  9196. ],
  9197. "time": "2020-09-28T06:08:49+00:00"
  9198. },
  9199. {
  9200. "name": "sebastian/code-unit",
  9201. "version": "1.0.8",
  9202. "source": {
  9203. "type": "git",
  9204. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9205. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9206. },
  9207. "dist": {
  9208. "type": "zip",
  9209. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9210. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9211. "shasum": "",
  9212. "mirrors": [
  9213. {
  9214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9215. "preferred": true
  9216. }
  9217. ]
  9218. },
  9219. "require": {
  9220. "php": ">=7.3"
  9221. },
  9222. "require-dev": {
  9223. "phpunit/phpunit": "^9.3"
  9224. },
  9225. "type": "library",
  9226. "extra": {
  9227. "branch-alias": {
  9228. "dev-master": "1.0-dev"
  9229. }
  9230. },
  9231. "autoload": {
  9232. "classmap": [
  9233. "src/"
  9234. ]
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "BSD-3-Clause"
  9239. ],
  9240. "authors": [
  9241. {
  9242. "name": "Sebastian Bergmann",
  9243. "email": "sebastian@phpunit.de",
  9244. "role": "lead"
  9245. }
  9246. ],
  9247. "description": "Collection of value objects that represent the PHP code units",
  9248. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9249. "support": {
  9250. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9251. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9252. },
  9253. "funding": [
  9254. {
  9255. "url": "https://github.com/sebastianbergmann",
  9256. "type": "github"
  9257. }
  9258. ],
  9259. "time": "2020-10-26T13:08:54+00:00"
  9260. },
  9261. {
  9262. "name": "sebastian/code-unit-reverse-lookup",
  9263. "version": "2.0.3",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9267. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9272. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9273. "shasum": "",
  9274. "mirrors": [
  9275. {
  9276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9277. "preferred": true
  9278. }
  9279. ]
  9280. },
  9281. "require": {
  9282. "php": ">=7.3"
  9283. },
  9284. "require-dev": {
  9285. "phpunit/phpunit": "^9.3"
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-master": "2.0-dev"
  9291. }
  9292. },
  9293. "autoload": {
  9294. "classmap": [
  9295. "src/"
  9296. ]
  9297. },
  9298. "notification-url": "https://packagist.org/downloads/",
  9299. "license": [
  9300. "BSD-3-Clause"
  9301. ],
  9302. "authors": [
  9303. {
  9304. "name": "Sebastian Bergmann",
  9305. "email": "sebastian@phpunit.de"
  9306. }
  9307. ],
  9308. "description": "Looks up which function or method a line of code belongs to",
  9309. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9310. "support": {
  9311. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9312. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9313. },
  9314. "funding": [
  9315. {
  9316. "url": "https://github.com/sebastianbergmann",
  9317. "type": "github"
  9318. }
  9319. ],
  9320. "time": "2020-09-28T05:30:19+00:00"
  9321. },
  9322. {
  9323. "name": "sebastian/comparator",
  9324. "version": "4.0.8",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/sebastianbergmann/comparator.git",
  9328. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9333. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9334. "shasum": "",
  9335. "mirrors": [
  9336. {
  9337. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9338. "preferred": true
  9339. }
  9340. ]
  9341. },
  9342. "require": {
  9343. "php": ">=7.3",
  9344. "sebastian/diff": "^4.0",
  9345. "sebastian/exporter": "^4.0"
  9346. },
  9347. "require-dev": {
  9348. "phpunit/phpunit": "^9.3"
  9349. },
  9350. "type": "library",
  9351. "extra": {
  9352. "branch-alias": {
  9353. "dev-master": "4.0-dev"
  9354. }
  9355. },
  9356. "autoload": {
  9357. "classmap": [
  9358. "src/"
  9359. ]
  9360. },
  9361. "notification-url": "https://packagist.org/downloads/",
  9362. "license": [
  9363. "BSD-3-Clause"
  9364. ],
  9365. "authors": [
  9366. {
  9367. "name": "Sebastian Bergmann",
  9368. "email": "sebastian@phpunit.de"
  9369. },
  9370. {
  9371. "name": "Jeff Welch",
  9372. "email": "whatthejeff@gmail.com"
  9373. },
  9374. {
  9375. "name": "Volker Dusch",
  9376. "email": "github@wallbash.com"
  9377. },
  9378. {
  9379. "name": "Bernhard Schussek",
  9380. "email": "bschussek@2bepublished.at"
  9381. }
  9382. ],
  9383. "description": "Provides the functionality to compare PHP values for equality",
  9384. "homepage": "https://github.com/sebastianbergmann/comparator",
  9385. "keywords": [
  9386. "comparator",
  9387. "compare",
  9388. "equality"
  9389. ],
  9390. "support": {
  9391. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9392. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://github.com/sebastianbergmann",
  9397. "type": "github"
  9398. }
  9399. ],
  9400. "time": "2022-09-14T12:41:17+00:00"
  9401. },
  9402. {
  9403. "name": "sebastian/complexity",
  9404. "version": "2.0.3",
  9405. "source": {
  9406. "type": "git",
  9407. "url": "https://github.com/sebastianbergmann/complexity.git",
  9408. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9409. },
  9410. "dist": {
  9411. "type": "zip",
  9412. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9413. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9414. "shasum": "",
  9415. "mirrors": [
  9416. {
  9417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9418. "preferred": true
  9419. }
  9420. ]
  9421. },
  9422. "require": {
  9423. "nikic/php-parser": "^4.18 || ^5.0",
  9424. "php": ">=7.3"
  9425. },
  9426. "require-dev": {
  9427. "phpunit/phpunit": "^9.3"
  9428. },
  9429. "type": "library",
  9430. "extra": {
  9431. "branch-alias": {
  9432. "dev-master": "2.0-dev"
  9433. }
  9434. },
  9435. "autoload": {
  9436. "classmap": [
  9437. "src/"
  9438. ]
  9439. },
  9440. "notification-url": "https://packagist.org/downloads/",
  9441. "license": [
  9442. "BSD-3-Clause"
  9443. ],
  9444. "authors": [
  9445. {
  9446. "name": "Sebastian Bergmann",
  9447. "email": "sebastian@phpunit.de",
  9448. "role": "lead"
  9449. }
  9450. ],
  9451. "description": "Library for calculating the complexity of PHP code units",
  9452. "homepage": "https://github.com/sebastianbergmann/complexity",
  9453. "support": {
  9454. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9455. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9456. },
  9457. "funding": [
  9458. {
  9459. "url": "https://github.com/sebastianbergmann",
  9460. "type": "github"
  9461. }
  9462. ],
  9463. "time": "2023-12-22T06:19:30+00:00"
  9464. },
  9465. {
  9466. "name": "sebastian/diff",
  9467. "version": "4.0.5",
  9468. "source": {
  9469. "type": "git",
  9470. "url": "https://github.com/sebastianbergmann/diff.git",
  9471. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9472. },
  9473. "dist": {
  9474. "type": "zip",
  9475. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9476. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9477. "shasum": "",
  9478. "mirrors": [
  9479. {
  9480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9481. "preferred": true
  9482. }
  9483. ]
  9484. },
  9485. "require": {
  9486. "php": ">=7.3"
  9487. },
  9488. "require-dev": {
  9489. "phpunit/phpunit": "^9.3",
  9490. "symfony/process": "^4.2 || ^5"
  9491. },
  9492. "type": "library",
  9493. "extra": {
  9494. "branch-alias": {
  9495. "dev-master": "4.0-dev"
  9496. }
  9497. },
  9498. "autoload": {
  9499. "classmap": [
  9500. "src/"
  9501. ]
  9502. },
  9503. "notification-url": "https://packagist.org/downloads/",
  9504. "license": [
  9505. "BSD-3-Clause"
  9506. ],
  9507. "authors": [
  9508. {
  9509. "name": "Sebastian Bergmann",
  9510. "email": "sebastian@phpunit.de"
  9511. },
  9512. {
  9513. "name": "Kore Nordmann",
  9514. "email": "mail@kore-nordmann.de"
  9515. }
  9516. ],
  9517. "description": "Diff implementation",
  9518. "homepage": "https://github.com/sebastianbergmann/diff",
  9519. "keywords": [
  9520. "diff",
  9521. "udiff",
  9522. "unidiff",
  9523. "unified diff"
  9524. ],
  9525. "support": {
  9526. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9527. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9528. },
  9529. "funding": [
  9530. {
  9531. "url": "https://github.com/sebastianbergmann",
  9532. "type": "github"
  9533. }
  9534. ],
  9535. "time": "2023-05-07T05:35:17+00:00"
  9536. },
  9537. {
  9538. "name": "sebastian/environment",
  9539. "version": "5.1.5",
  9540. "source": {
  9541. "type": "git",
  9542. "url": "https://github.com/sebastianbergmann/environment.git",
  9543. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9544. },
  9545. "dist": {
  9546. "type": "zip",
  9547. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9548. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9549. "shasum": "",
  9550. "mirrors": [
  9551. {
  9552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9553. "preferred": true
  9554. }
  9555. ]
  9556. },
  9557. "require": {
  9558. "php": ">=7.3"
  9559. },
  9560. "require-dev": {
  9561. "phpunit/phpunit": "^9.3"
  9562. },
  9563. "suggest": {
  9564. "ext-posix": "*"
  9565. },
  9566. "type": "library",
  9567. "extra": {
  9568. "branch-alias": {
  9569. "dev-master": "5.1-dev"
  9570. }
  9571. },
  9572. "autoload": {
  9573. "classmap": [
  9574. "src/"
  9575. ]
  9576. },
  9577. "notification-url": "https://packagist.org/downloads/",
  9578. "license": [
  9579. "BSD-3-Clause"
  9580. ],
  9581. "authors": [
  9582. {
  9583. "name": "Sebastian Bergmann",
  9584. "email": "sebastian@phpunit.de"
  9585. }
  9586. ],
  9587. "description": "Provides functionality to handle HHVM/PHP environments",
  9588. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9589. "keywords": [
  9590. "Xdebug",
  9591. "environment",
  9592. "hhvm"
  9593. ],
  9594. "support": {
  9595. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9596. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9597. },
  9598. "funding": [
  9599. {
  9600. "url": "https://github.com/sebastianbergmann",
  9601. "type": "github"
  9602. }
  9603. ],
  9604. "time": "2023-02-03T06:03:51+00:00"
  9605. },
  9606. {
  9607. "name": "sebastian/exporter",
  9608. "version": "4.0.5",
  9609. "source": {
  9610. "type": "git",
  9611. "url": "https://github.com/sebastianbergmann/exporter.git",
  9612. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9613. },
  9614. "dist": {
  9615. "type": "zip",
  9616. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9617. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9618. "shasum": "",
  9619. "mirrors": [
  9620. {
  9621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9622. "preferred": true
  9623. }
  9624. ]
  9625. },
  9626. "require": {
  9627. "php": ">=7.3",
  9628. "sebastian/recursion-context": "^4.0"
  9629. },
  9630. "require-dev": {
  9631. "ext-mbstring": "*",
  9632. "phpunit/phpunit": "^9.3"
  9633. },
  9634. "type": "library",
  9635. "extra": {
  9636. "branch-alias": {
  9637. "dev-master": "4.0-dev"
  9638. }
  9639. },
  9640. "autoload": {
  9641. "classmap": [
  9642. "src/"
  9643. ]
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "BSD-3-Clause"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Sebastian Bergmann",
  9652. "email": "sebastian@phpunit.de"
  9653. },
  9654. {
  9655. "name": "Jeff Welch",
  9656. "email": "whatthejeff@gmail.com"
  9657. },
  9658. {
  9659. "name": "Volker Dusch",
  9660. "email": "github@wallbash.com"
  9661. },
  9662. {
  9663. "name": "Adam Harvey",
  9664. "email": "aharvey@php.net"
  9665. },
  9666. {
  9667. "name": "Bernhard Schussek",
  9668. "email": "bschussek@gmail.com"
  9669. }
  9670. ],
  9671. "description": "Provides the functionality to export PHP variables for visualization",
  9672. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9673. "keywords": [
  9674. "export",
  9675. "exporter"
  9676. ],
  9677. "support": {
  9678. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9679. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9680. },
  9681. "funding": [
  9682. {
  9683. "url": "https://github.com/sebastianbergmann",
  9684. "type": "github"
  9685. }
  9686. ],
  9687. "time": "2022-09-14T06:03:37+00:00"
  9688. },
  9689. {
  9690. "name": "sebastian/global-state",
  9691. "version": "5.0.6",
  9692. "source": {
  9693. "type": "git",
  9694. "url": "https://github.com/sebastianbergmann/global-state.git",
  9695. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  9696. },
  9697. "dist": {
  9698. "type": "zip",
  9699. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  9700. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  9701. "shasum": "",
  9702. "mirrors": [
  9703. {
  9704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9705. "preferred": true
  9706. }
  9707. ]
  9708. },
  9709. "require": {
  9710. "php": ">=7.3",
  9711. "sebastian/object-reflector": "^2.0",
  9712. "sebastian/recursion-context": "^4.0"
  9713. },
  9714. "require-dev": {
  9715. "ext-dom": "*",
  9716. "phpunit/phpunit": "^9.3"
  9717. },
  9718. "suggest": {
  9719. "ext-uopz": "*"
  9720. },
  9721. "type": "library",
  9722. "extra": {
  9723. "branch-alias": {
  9724. "dev-master": "5.0-dev"
  9725. }
  9726. },
  9727. "autoload": {
  9728. "classmap": [
  9729. "src/"
  9730. ]
  9731. },
  9732. "notification-url": "https://packagist.org/downloads/",
  9733. "license": [
  9734. "BSD-3-Clause"
  9735. ],
  9736. "authors": [
  9737. {
  9738. "name": "Sebastian Bergmann",
  9739. "email": "sebastian@phpunit.de"
  9740. }
  9741. ],
  9742. "description": "Snapshotting of global state",
  9743. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9744. "keywords": [
  9745. "global state"
  9746. ],
  9747. "support": {
  9748. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9749. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  9750. },
  9751. "funding": [
  9752. {
  9753. "url": "https://github.com/sebastianbergmann",
  9754. "type": "github"
  9755. }
  9756. ],
  9757. "time": "2023-08-02T09:26:13+00:00"
  9758. },
  9759. {
  9760. "name": "sebastian/lines-of-code",
  9761. "version": "1.0.x-dev",
  9762. "source": {
  9763. "type": "git",
  9764. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9765. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9766. },
  9767. "dist": {
  9768. "type": "zip",
  9769. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9770. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9771. "shasum": "",
  9772. "mirrors": [
  9773. {
  9774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9775. "preferred": true
  9776. }
  9777. ]
  9778. },
  9779. "require": {
  9780. "nikic/php-parser": "^4.18 || ^5.0",
  9781. "php": ">=7.3"
  9782. },
  9783. "require-dev": {
  9784. "phpunit/phpunit": "^9.3"
  9785. },
  9786. "type": "library",
  9787. "extra": {
  9788. "branch-alias": {
  9789. "dev-master": "1.0-dev"
  9790. }
  9791. },
  9792. "autoload": {
  9793. "classmap": [
  9794. "src/"
  9795. ]
  9796. },
  9797. "notification-url": "https://packagist.org/downloads/",
  9798. "license": [
  9799. "BSD-3-Clause"
  9800. ],
  9801. "authors": [
  9802. {
  9803. "name": "Sebastian Bergmann",
  9804. "email": "sebastian@phpunit.de",
  9805. "role": "lead"
  9806. }
  9807. ],
  9808. "description": "Library for counting the lines of code in PHP source code",
  9809. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9810. "support": {
  9811. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9812. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9813. },
  9814. "funding": [
  9815. {
  9816. "url": "https://github.com/sebastianbergmann",
  9817. "type": "github"
  9818. }
  9819. ],
  9820. "time": "2023-12-22T06:20:34+00:00"
  9821. },
  9822. {
  9823. "name": "sebastian/object-enumerator",
  9824. "version": "4.0.4",
  9825. "source": {
  9826. "type": "git",
  9827. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9828. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9829. },
  9830. "dist": {
  9831. "type": "zip",
  9832. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9833. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9834. "shasum": "",
  9835. "mirrors": [
  9836. {
  9837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9838. "preferred": true
  9839. }
  9840. ]
  9841. },
  9842. "require": {
  9843. "php": ">=7.3",
  9844. "sebastian/object-reflector": "^2.0",
  9845. "sebastian/recursion-context": "^4.0"
  9846. },
  9847. "require-dev": {
  9848. "phpunit/phpunit": "^9.3"
  9849. },
  9850. "type": "library",
  9851. "extra": {
  9852. "branch-alias": {
  9853. "dev-master": "4.0-dev"
  9854. }
  9855. },
  9856. "autoload": {
  9857. "classmap": [
  9858. "src/"
  9859. ]
  9860. },
  9861. "notification-url": "https://packagist.org/downloads/",
  9862. "license": [
  9863. "BSD-3-Clause"
  9864. ],
  9865. "authors": [
  9866. {
  9867. "name": "Sebastian Bergmann",
  9868. "email": "sebastian@phpunit.de"
  9869. }
  9870. ],
  9871. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9872. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9873. "support": {
  9874. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9875. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9876. },
  9877. "funding": [
  9878. {
  9879. "url": "https://github.com/sebastianbergmann",
  9880. "type": "github"
  9881. }
  9882. ],
  9883. "time": "2020-10-26T13:12:34+00:00"
  9884. },
  9885. {
  9886. "name": "sebastian/object-reflector",
  9887. "version": "2.0.4",
  9888. "source": {
  9889. "type": "git",
  9890. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9891. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9892. },
  9893. "dist": {
  9894. "type": "zip",
  9895. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9896. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9897. "shasum": "",
  9898. "mirrors": [
  9899. {
  9900. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9901. "preferred": true
  9902. }
  9903. ]
  9904. },
  9905. "require": {
  9906. "php": ">=7.3"
  9907. },
  9908. "require-dev": {
  9909. "phpunit/phpunit": "^9.3"
  9910. },
  9911. "type": "library",
  9912. "extra": {
  9913. "branch-alias": {
  9914. "dev-master": "2.0-dev"
  9915. }
  9916. },
  9917. "autoload": {
  9918. "classmap": [
  9919. "src/"
  9920. ]
  9921. },
  9922. "notification-url": "https://packagist.org/downloads/",
  9923. "license": [
  9924. "BSD-3-Clause"
  9925. ],
  9926. "authors": [
  9927. {
  9928. "name": "Sebastian Bergmann",
  9929. "email": "sebastian@phpunit.de"
  9930. }
  9931. ],
  9932. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9933. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9934. "support": {
  9935. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9936. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9937. },
  9938. "funding": [
  9939. {
  9940. "url": "https://github.com/sebastianbergmann",
  9941. "type": "github"
  9942. }
  9943. ],
  9944. "time": "2020-10-26T13:14:26+00:00"
  9945. },
  9946. {
  9947. "name": "sebastian/recursion-context",
  9948. "version": "4.0.5",
  9949. "source": {
  9950. "type": "git",
  9951. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9952. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9953. },
  9954. "dist": {
  9955. "type": "zip",
  9956. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9957. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9958. "shasum": "",
  9959. "mirrors": [
  9960. {
  9961. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9962. "preferred": true
  9963. }
  9964. ]
  9965. },
  9966. "require": {
  9967. "php": ">=7.3"
  9968. },
  9969. "require-dev": {
  9970. "phpunit/phpunit": "^9.3"
  9971. },
  9972. "type": "library",
  9973. "extra": {
  9974. "branch-alias": {
  9975. "dev-master": "4.0-dev"
  9976. }
  9977. },
  9978. "autoload": {
  9979. "classmap": [
  9980. "src/"
  9981. ]
  9982. },
  9983. "notification-url": "https://packagist.org/downloads/",
  9984. "license": [
  9985. "BSD-3-Clause"
  9986. ],
  9987. "authors": [
  9988. {
  9989. "name": "Sebastian Bergmann",
  9990. "email": "sebastian@phpunit.de"
  9991. },
  9992. {
  9993. "name": "Jeff Welch",
  9994. "email": "whatthejeff@gmail.com"
  9995. },
  9996. {
  9997. "name": "Adam Harvey",
  9998. "email": "aharvey@php.net"
  9999. }
  10000. ],
  10001. "description": "Provides functionality to recursively process PHP variables",
  10002. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10003. "support": {
  10004. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10005. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10006. },
  10007. "funding": [
  10008. {
  10009. "url": "https://github.com/sebastianbergmann",
  10010. "type": "github"
  10011. }
  10012. ],
  10013. "time": "2023-02-03T06:07:39+00:00"
  10014. },
  10015. {
  10016. "name": "sebastian/resource-operations",
  10017. "version": "3.0.3",
  10018. "source": {
  10019. "type": "git",
  10020. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10021. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10022. },
  10023. "dist": {
  10024. "type": "zip",
  10025. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10026. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10027. "shasum": "",
  10028. "mirrors": [
  10029. {
  10030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10031. "preferred": true
  10032. }
  10033. ]
  10034. },
  10035. "require": {
  10036. "php": ">=7.3"
  10037. },
  10038. "require-dev": {
  10039. "phpunit/phpunit": "^9.0"
  10040. },
  10041. "type": "library",
  10042. "extra": {
  10043. "branch-alias": {
  10044. "dev-master": "3.0-dev"
  10045. }
  10046. },
  10047. "autoload": {
  10048. "classmap": [
  10049. "src/"
  10050. ]
  10051. },
  10052. "notification-url": "https://packagist.org/downloads/",
  10053. "license": [
  10054. "BSD-3-Clause"
  10055. ],
  10056. "authors": [
  10057. {
  10058. "name": "Sebastian Bergmann",
  10059. "email": "sebastian@phpunit.de"
  10060. }
  10061. ],
  10062. "description": "Provides a list of PHP built-in functions that operate on resources",
  10063. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10064. "support": {
  10065. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10066. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10067. },
  10068. "funding": [
  10069. {
  10070. "url": "https://github.com/sebastianbergmann",
  10071. "type": "github"
  10072. }
  10073. ],
  10074. "time": "2020-09-28T06:45:17+00:00"
  10075. },
  10076. {
  10077. "name": "sebastian/type",
  10078. "version": "3.2.1",
  10079. "source": {
  10080. "type": "git",
  10081. "url": "https://github.com/sebastianbergmann/type.git",
  10082. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10083. },
  10084. "dist": {
  10085. "type": "zip",
  10086. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10087. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10088. "shasum": "",
  10089. "mirrors": [
  10090. {
  10091. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10092. "preferred": true
  10093. }
  10094. ]
  10095. },
  10096. "require": {
  10097. "php": ">=7.3"
  10098. },
  10099. "require-dev": {
  10100. "phpunit/phpunit": "^9.5"
  10101. },
  10102. "type": "library",
  10103. "extra": {
  10104. "branch-alias": {
  10105. "dev-master": "3.2-dev"
  10106. }
  10107. },
  10108. "autoload": {
  10109. "classmap": [
  10110. "src/"
  10111. ]
  10112. },
  10113. "notification-url": "https://packagist.org/downloads/",
  10114. "license": [
  10115. "BSD-3-Clause"
  10116. ],
  10117. "authors": [
  10118. {
  10119. "name": "Sebastian Bergmann",
  10120. "email": "sebastian@phpunit.de",
  10121. "role": "lead"
  10122. }
  10123. ],
  10124. "description": "Collection of value objects that represent the types of the PHP type system",
  10125. "homepage": "https://github.com/sebastianbergmann/type",
  10126. "support": {
  10127. "issues": "https://github.com/sebastianbergmann/type/issues",
  10128. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10129. },
  10130. "funding": [
  10131. {
  10132. "url": "https://github.com/sebastianbergmann",
  10133. "type": "github"
  10134. }
  10135. ],
  10136. "time": "2023-02-03T06:13:03+00:00"
  10137. },
  10138. {
  10139. "name": "sebastian/version",
  10140. "version": "3.0.2",
  10141. "source": {
  10142. "type": "git",
  10143. "url": "https://github.com/sebastianbergmann/version.git",
  10144. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10145. },
  10146. "dist": {
  10147. "type": "zip",
  10148. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10149. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10150. "shasum": "",
  10151. "mirrors": [
  10152. {
  10153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10154. "preferred": true
  10155. }
  10156. ]
  10157. },
  10158. "require": {
  10159. "php": ">=7.3"
  10160. },
  10161. "type": "library",
  10162. "extra": {
  10163. "branch-alias": {
  10164. "dev-master": "3.0-dev"
  10165. }
  10166. },
  10167. "autoload": {
  10168. "classmap": [
  10169. "src/"
  10170. ]
  10171. },
  10172. "notification-url": "https://packagist.org/downloads/",
  10173. "license": [
  10174. "BSD-3-Clause"
  10175. ],
  10176. "authors": [
  10177. {
  10178. "name": "Sebastian Bergmann",
  10179. "email": "sebastian@phpunit.de",
  10180. "role": "lead"
  10181. }
  10182. ],
  10183. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10184. "homepage": "https://github.com/sebastianbergmann/version",
  10185. "support": {
  10186. "issues": "https://github.com/sebastianbergmann/version/issues",
  10187. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10188. },
  10189. "funding": [
  10190. {
  10191. "url": "https://github.com/sebastianbergmann",
  10192. "type": "github"
  10193. }
  10194. ],
  10195. "time": "2020-09-28T06:39:44+00:00"
  10196. },
  10197. {
  10198. "name": "theseer/tokenizer",
  10199. "version": "1.2.1",
  10200. "source": {
  10201. "type": "git",
  10202. "url": "https://github.com/theseer/tokenizer.git",
  10203. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10204. },
  10205. "dist": {
  10206. "type": "zip",
  10207. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10208. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10209. "shasum": "",
  10210. "mirrors": [
  10211. {
  10212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10213. "preferred": true
  10214. }
  10215. ]
  10216. },
  10217. "require": {
  10218. "ext-dom": "*",
  10219. "ext-tokenizer": "*",
  10220. "ext-xmlwriter": "*",
  10221. "php": "^7.2 || ^8.0"
  10222. },
  10223. "type": "library",
  10224. "autoload": {
  10225. "classmap": [
  10226. "src/"
  10227. ]
  10228. },
  10229. "notification-url": "https://packagist.org/downloads/",
  10230. "license": [
  10231. "BSD-3-Clause"
  10232. ],
  10233. "authors": [
  10234. {
  10235. "name": "Arne Blankerts",
  10236. "email": "arne@blankerts.de",
  10237. "role": "Developer"
  10238. }
  10239. ],
  10240. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10241. "support": {
  10242. "issues": "https://github.com/theseer/tokenizer/issues",
  10243. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10244. },
  10245. "funding": [
  10246. {
  10247. "url": "https://github.com/theseer",
  10248. "type": "github"
  10249. }
  10250. ],
  10251. "time": "2021-07-28T10:34:58+00:00"
  10252. }
  10253. ],
  10254. "aliases": [],
  10255. "minimum-stability": "dev",
  10256. "stability-flags": [],
  10257. "prefer-stable": true,
  10258. "prefer-lowest": false,
  10259. "platform": {
  10260. "php": "^7.3|^8.0"
  10261. },
  10262. "platform-dev": [],
  10263. "plugin-api-version": "2.6.0"
  10264. }