composer.lock 376 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417
  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": "96a63dd17e9e451d6b3fa27d2502abc0",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.2|^8.0",
  31. "symfony/http-foundation": "^4|^5|^6",
  32. "symfony/http-kernel": "^4|^5|^6"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^7|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  68. },
  69. "time": "2022-01-18T09:12:03+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.9.3",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  82. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "ext-json": "*",
  93. "php": "^7.1 || ^8.0"
  94. },
  95. "require-dev": {
  96. "php-coveralls/php-coveralls": "^2.2",
  97. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  98. "vimeo/psalm": "4.9.2"
  99. },
  100. "type": "library",
  101. "autoload": {
  102. "psr-4": {
  103. "Brick\\Math\\": "src/"
  104. }
  105. },
  106. "notification-url": "https://packagist.org/downloads/",
  107. "license": [
  108. "MIT"
  109. ],
  110. "description": "Arbitrary-precision arithmetic library",
  111. "keywords": [
  112. "Arbitrary-precision",
  113. "BigInteger",
  114. "BigRational",
  115. "arithmetic",
  116. "bigdecimal",
  117. "bignum",
  118. "brick",
  119. "math"
  120. ],
  121. "support": {
  122. "issues": "https://github.com/brick/math/issues",
  123. "source": "https://github.com/brick/math/tree/0.9.3"
  124. },
  125. "funding": [
  126. {
  127. "url": "https://github.com/BenMorel",
  128. "type": "github"
  129. },
  130. {
  131. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  132. "type": "tidelift"
  133. }
  134. ],
  135. "time": "2021-08-15T20:50:18+00:00"
  136. },
  137. {
  138. "name": "carbonphp/carbon-doctrine-types",
  139. "version": "2.1.0",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  143. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  148. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  149. "shasum": "",
  150. "mirrors": [
  151. {
  152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  153. "preferred": true
  154. }
  155. ]
  156. },
  157. "require": {
  158. "php": "^7.4 || ^8.0"
  159. },
  160. "conflict": {
  161. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  162. },
  163. "require-dev": {
  164. "doctrine/dbal": "^3.7.0",
  165. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  166. "phpunit/phpunit": "^10.3"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "KyleKatarn",
  181. "email": "kylekatarnls@gmail.com"
  182. }
  183. ],
  184. "description": "Types to use Carbon in Doctrine",
  185. "keywords": [
  186. "carbon",
  187. "date",
  188. "datetime",
  189. "doctrine",
  190. "time"
  191. ],
  192. "support": {
  193. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  194. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  195. },
  196. "funding": [
  197. {
  198. "url": "https://github.com/kylekatarnls",
  199. "type": "github"
  200. },
  201. {
  202. "url": "https://opencollective.com/Carbon",
  203. "type": "open_collective"
  204. },
  205. {
  206. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  207. "type": "tidelift"
  208. }
  209. ],
  210. "time": "2023-12-11T17:09:12+00:00"
  211. },
  212. {
  213. "name": "dflydev/dot-access-data",
  214. "version": "v3.0.2",
  215. "source": {
  216. "type": "git",
  217. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  218. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  219. },
  220. "dist": {
  221. "type": "zip",
  222. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  223. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  224. "shasum": "",
  225. "mirrors": [
  226. {
  227. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  228. "preferred": true
  229. }
  230. ]
  231. },
  232. "require": {
  233. "php": "^7.1 || ^8.0"
  234. },
  235. "require-dev": {
  236. "phpstan/phpstan": "^0.12.42",
  237. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  238. "scrutinizer/ocular": "1.6.0",
  239. "squizlabs/php_codesniffer": "^3.5",
  240. "vimeo/psalm": "^4.0.0"
  241. },
  242. "type": "library",
  243. "extra": {
  244. "branch-alias": {
  245. "dev-main": "3.x-dev"
  246. }
  247. },
  248. "autoload": {
  249. "psr-4": {
  250. "Dflydev\\DotAccessData\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "MIT"
  256. ],
  257. "authors": [
  258. {
  259. "name": "Dragonfly Development Inc.",
  260. "email": "info@dflydev.com",
  261. "homepage": "http://dflydev.com"
  262. },
  263. {
  264. "name": "Beau Simensen",
  265. "email": "beau@dflydev.com",
  266. "homepage": "http://beausimensen.com"
  267. },
  268. {
  269. "name": "Carlos Frutos",
  270. "email": "carlos@kiwing.it",
  271. "homepage": "https://github.com/cfrutos"
  272. },
  273. {
  274. "name": "Colin O'Dell",
  275. "email": "colinodell@gmail.com",
  276. "homepage": "https://www.colinodell.com"
  277. }
  278. ],
  279. "description": "Given a deep data structure, access data by dot notation.",
  280. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  281. "keywords": [
  282. "access",
  283. "data",
  284. "dot",
  285. "notation"
  286. ],
  287. "support": {
  288. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  289. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  290. },
  291. "time": "2022-10-27T11:44:00+00:00"
  292. },
  293. {
  294. "name": "doctrine/inflector",
  295. "version": "2.0.8",
  296. "source": {
  297. "type": "git",
  298. "url": "https://github.com/doctrine/inflector.git",
  299. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  300. },
  301. "dist": {
  302. "type": "zip",
  303. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  304. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  305. "shasum": "",
  306. "mirrors": [
  307. {
  308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  309. "preferred": true
  310. }
  311. ]
  312. },
  313. "require": {
  314. "php": "^7.2 || ^8.0"
  315. },
  316. "require-dev": {
  317. "doctrine/coding-standard": "^11.0",
  318. "phpstan/phpstan": "^1.8",
  319. "phpstan/phpstan-phpunit": "^1.1",
  320. "phpstan/phpstan-strict-rules": "^1.3",
  321. "phpunit/phpunit": "^8.5 || ^9.5",
  322. "vimeo/psalm": "^4.25 || ^5.4"
  323. },
  324. "type": "library",
  325. "autoload": {
  326. "psr-4": {
  327. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  328. }
  329. },
  330. "notification-url": "https://packagist.org/downloads/",
  331. "license": [
  332. "MIT"
  333. ],
  334. "authors": [
  335. {
  336. "name": "Guilherme Blanco",
  337. "email": "guilhermeblanco@gmail.com"
  338. },
  339. {
  340. "name": "Roman Borschel",
  341. "email": "roman@code-factory.org"
  342. },
  343. {
  344. "name": "Benjamin Eberlei",
  345. "email": "kontakt@beberlei.de"
  346. },
  347. {
  348. "name": "Jonathan Wage",
  349. "email": "jonwage@gmail.com"
  350. },
  351. {
  352. "name": "Johannes Schmitt",
  353. "email": "schmittjoh@gmail.com"
  354. }
  355. ],
  356. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  357. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  358. "keywords": [
  359. "inflection",
  360. "inflector",
  361. "lowercase",
  362. "manipulation",
  363. "php",
  364. "plural",
  365. "singular",
  366. "strings",
  367. "uppercase",
  368. "words"
  369. ],
  370. "support": {
  371. "issues": "https://github.com/doctrine/inflector/issues",
  372. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  373. },
  374. "funding": [
  375. {
  376. "url": "https://www.doctrine-project.org/sponsorship.html",
  377. "type": "custom"
  378. },
  379. {
  380. "url": "https://www.patreon.com/phpdoctrine",
  381. "type": "patreon"
  382. },
  383. {
  384. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  385. "type": "tidelift"
  386. }
  387. ],
  388. "time": "2023-06-16T13:40:37+00:00"
  389. },
  390. {
  391. "name": "doctrine/lexer",
  392. "version": "1.2.3",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/doctrine/lexer.git",
  396. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  401. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  402. "shasum": ""
  403. },
  404. "require": {
  405. "php": "^7.1 || ^8.0"
  406. },
  407. "require-dev": {
  408. "doctrine/coding-standard": "^9.0",
  409. "phpstan/phpstan": "^1.3",
  410. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  411. "vimeo/psalm": "^4.11"
  412. },
  413. "type": "library",
  414. "autoload": {
  415. "psr-4": {
  416. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  417. }
  418. },
  419. "notification-url": "https://packagist.org/downloads/",
  420. "license": [
  421. "MIT"
  422. ],
  423. "authors": [
  424. {
  425. "name": "Guilherme Blanco",
  426. "email": "guilhermeblanco@gmail.com"
  427. },
  428. {
  429. "name": "Roman Borschel",
  430. "email": "roman@code-factory.org"
  431. },
  432. {
  433. "name": "Johannes Schmitt",
  434. "email": "schmittjoh@gmail.com"
  435. }
  436. ],
  437. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  438. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  439. "keywords": [
  440. "annotations",
  441. "docblock",
  442. "lexer",
  443. "parser",
  444. "php"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/lexer/issues",
  448. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2022-02-28T11:07:21+00:00"
  465. },
  466. {
  467. "name": "dragonmantank/cron-expression",
  468. "version": "v3.3.3",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/dragonmantank/cron-expression.git",
  472. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  477. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  478. "shasum": "",
  479. "mirrors": [
  480. {
  481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  482. "preferred": true
  483. }
  484. ]
  485. },
  486. "require": {
  487. "php": "^7.2|^8.0",
  488. "webmozart/assert": "^1.0"
  489. },
  490. "replace": {
  491. "mtdowling/cron-expression": "^1.0"
  492. },
  493. "require-dev": {
  494. "phpstan/extension-installer": "^1.0",
  495. "phpstan/phpstan": "^1.0",
  496. "phpstan/phpstan-webmozart-assert": "^1.0",
  497. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  498. },
  499. "type": "library",
  500. "autoload": {
  501. "psr-4": {
  502. "Cron\\": "src/Cron/"
  503. }
  504. },
  505. "notification-url": "https://packagist.org/downloads/",
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Chris Tankersley",
  512. "email": "chris@ctankersley.com",
  513. "homepage": "https://github.com/dragonmantank"
  514. }
  515. ],
  516. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  517. "keywords": [
  518. "cron",
  519. "schedule"
  520. ],
  521. "support": {
  522. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  523. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  524. },
  525. "funding": [
  526. {
  527. "url": "https://github.com/dragonmantank",
  528. "type": "github"
  529. }
  530. ],
  531. "time": "2023-08-10T19:36:49+00:00"
  532. },
  533. {
  534. "name": "easywechat-composer/easywechat-composer",
  535. "version": "1.4.1",
  536. "source": {
  537. "type": "git",
  538. "url": "https://github.com/mingyoung/easywechat-composer.git",
  539. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  540. },
  541. "dist": {
  542. "type": "zip",
  543. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  544. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  545. "shasum": ""
  546. },
  547. "require": {
  548. "composer-plugin-api": "^1.0 || ^2.0",
  549. "php": ">=7.0"
  550. },
  551. "require-dev": {
  552. "composer/composer": "^1.0 || ^2.0",
  553. "phpunit/phpunit": "^6.5 || ^7.0"
  554. },
  555. "type": "composer-plugin",
  556. "extra": {
  557. "class": "EasyWeChatComposer\\Plugin"
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "EasyWeChatComposer\\": "src/"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "MIT"
  567. ],
  568. "authors": [
  569. {
  570. "name": "张铭阳",
  571. "email": "mingyoungcheung@gmail.com"
  572. }
  573. ],
  574. "description": "The composer plugin for EasyWeChat",
  575. "support": {
  576. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  577. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  578. },
  579. "time": "2021-07-05T04:03:22+00:00"
  580. },
  581. {
  582. "name": "egulias/email-validator",
  583. "version": "2.1.25",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/egulias/EmailValidator.git",
  587. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  592. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  593. "shasum": ""
  594. },
  595. "require": {
  596. "doctrine/lexer": "^1.0.1",
  597. "php": ">=5.5",
  598. "symfony/polyfill-intl-idn": "^1.10"
  599. },
  600. "require-dev": {
  601. "dominicsayers/isemail": "^3.0.7",
  602. "phpunit/phpunit": "^4.8.36|^7.5.15",
  603. "satooshi/php-coveralls": "^1.0.1"
  604. },
  605. "suggest": {
  606. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  607. },
  608. "type": "library",
  609. "extra": {
  610. "branch-alias": {
  611. "dev-master": "2.1.x-dev"
  612. }
  613. },
  614. "autoload": {
  615. "psr-4": {
  616. "Egulias\\EmailValidator\\": "src"
  617. }
  618. },
  619. "notification-url": "https://packagist.org/downloads/",
  620. "license": [
  621. "MIT"
  622. ],
  623. "authors": [
  624. {
  625. "name": "Eduardo Gulias Davis"
  626. }
  627. ],
  628. "description": "A library for validating emails against several RFCs",
  629. "homepage": "https://github.com/egulias/EmailValidator",
  630. "keywords": [
  631. "email",
  632. "emailvalidation",
  633. "emailvalidator",
  634. "validation",
  635. "validator"
  636. ],
  637. "support": {
  638. "issues": "https://github.com/egulias/EmailValidator/issues",
  639. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  640. },
  641. "funding": [
  642. {
  643. "url": "https://github.com/egulias",
  644. "type": "github"
  645. }
  646. ],
  647. "time": "2020-12-29T14:50:06+00:00"
  648. },
  649. {
  650. "name": "ezyang/htmlpurifier",
  651. "version": "v4.16.0",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/ezyang/htmlpurifier.git",
  655. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  660. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  661. "shasum": "",
  662. "mirrors": [
  663. {
  664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  665. "preferred": true
  666. }
  667. ]
  668. },
  669. "require": {
  670. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0"
  671. },
  672. "require-dev": {
  673. "cerdic/css-tidy": "^1.7 || ^2.0",
  674. "simpletest/simpletest": "dev-master"
  675. },
  676. "suggest": {
  677. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  678. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  679. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  680. "ext-tidy": "Used for pretty-printing HTML"
  681. },
  682. "type": "library",
  683. "autoload": {
  684. "files": [
  685. "library/HTMLPurifier.composer.php"
  686. ],
  687. "psr-0": {
  688. "HTMLPurifier": "library/"
  689. },
  690. "exclude-from-classmap": [
  691. "/library/HTMLPurifier/Language/"
  692. ]
  693. },
  694. "notification-url": "https://packagist.org/downloads/",
  695. "license": [
  696. "LGPL-2.1-or-later"
  697. ],
  698. "authors": [
  699. {
  700. "name": "Edward Z. Yang",
  701. "email": "admin@htmlpurifier.org",
  702. "homepage": "http://ezyang.com"
  703. }
  704. ],
  705. "description": "Standards compliant HTML filter written in PHP",
  706. "homepage": "http://htmlpurifier.org/",
  707. "keywords": [
  708. "html"
  709. ],
  710. "support": {
  711. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  712. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  713. },
  714. "time": "2022-09-18T07:06:19+00:00"
  715. },
  716. {
  717. "name": "fideloper/proxy",
  718. "version": "4.4.2",
  719. "source": {
  720. "type": "git",
  721. "url": "https://github.com/fideloper/TrustedProxy.git",
  722. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  723. },
  724. "dist": {
  725. "type": "zip",
  726. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  727. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  728. "shasum": "",
  729. "mirrors": [
  730. {
  731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  732. "preferred": true
  733. }
  734. ]
  735. },
  736. "require": {
  737. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  738. "php": ">=5.4.0"
  739. },
  740. "require-dev": {
  741. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  742. "mockery/mockery": "^1.0",
  743. "phpunit/phpunit": "^8.5.8|^9.3.3"
  744. },
  745. "type": "library",
  746. "extra": {
  747. "laravel": {
  748. "providers": [
  749. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  750. ]
  751. }
  752. },
  753. "autoload": {
  754. "psr-4": {
  755. "Fideloper\\Proxy\\": "src/"
  756. }
  757. },
  758. "notification-url": "https://packagist.org/downloads/",
  759. "license": [
  760. "MIT"
  761. ],
  762. "authors": [
  763. {
  764. "name": "Chris Fidao",
  765. "email": "fideloper@gmail.com"
  766. }
  767. ],
  768. "description": "Set trusted proxies for Laravel",
  769. "keywords": [
  770. "load balancing",
  771. "proxy",
  772. "trusted proxy"
  773. ],
  774. "support": {
  775. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  776. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  777. },
  778. "time": "2022-02-09T13:33:34+00:00"
  779. },
  780. {
  781. "name": "firebase/php-jwt",
  782. "version": "v6.10.0",
  783. "source": {
  784. "type": "git",
  785. "url": "https://github.com/firebase/php-jwt.git",
  786. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  787. },
  788. "dist": {
  789. "type": "zip",
  790. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  791. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  792. "shasum": ""
  793. },
  794. "require": {
  795. "php": "^7.4||^8.0"
  796. },
  797. "require-dev": {
  798. "guzzlehttp/guzzle": "^6.5||^7.4",
  799. "phpspec/prophecy-phpunit": "^2.0",
  800. "phpunit/phpunit": "^9.5",
  801. "psr/cache": "^1.0||^2.0",
  802. "psr/http-client": "^1.0",
  803. "psr/http-factory": "^1.0"
  804. },
  805. "suggest": {
  806. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  807. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  808. },
  809. "type": "library",
  810. "autoload": {
  811. "psr-4": {
  812. "Firebase\\JWT\\": "src"
  813. }
  814. },
  815. "notification-url": "https://packagist.org/downloads/",
  816. "license": [
  817. "BSD-3-Clause"
  818. ],
  819. "authors": [
  820. {
  821. "name": "Neuman Vong",
  822. "email": "neuman+pear@twilio.com",
  823. "role": "Developer"
  824. },
  825. {
  826. "name": "Anant Narayanan",
  827. "email": "anant@php.net",
  828. "role": "Developer"
  829. }
  830. ],
  831. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  832. "homepage": "https://github.com/firebase/php-jwt",
  833. "keywords": [
  834. "jwt",
  835. "php"
  836. ],
  837. "support": {
  838. "issues": "https://github.com/firebase/php-jwt/issues",
  839. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  840. },
  841. "time": "2023-12-01T16:26:39+00:00"
  842. },
  843. {
  844. "name": "fruitcake/laravel-cors",
  845. "version": "v2.2.0",
  846. "source": {
  847. "type": "git",
  848. "url": "https://github.com/fruitcake/laravel-cors.git",
  849. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  850. },
  851. "dist": {
  852. "type": "zip",
  853. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  854. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  855. "shasum": "",
  856. "mirrors": [
  857. {
  858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  859. "preferred": true
  860. }
  861. ]
  862. },
  863. "require": {
  864. "asm89/stack-cors": "^2.0.1",
  865. "illuminate/contracts": "^6|^7|^8|^9",
  866. "illuminate/support": "^6|^7|^8|^9",
  867. "php": ">=7.2"
  868. },
  869. "require-dev": {
  870. "laravel/framework": "^6|^7.24|^8",
  871. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  872. "phpunit/phpunit": "^6|^7|^8|^9",
  873. "squizlabs/php_codesniffer": "^3.5"
  874. },
  875. "type": "library",
  876. "extra": {
  877. "branch-alias": {
  878. "dev-master": "2.1-dev"
  879. },
  880. "laravel": {
  881. "providers": [
  882. "Fruitcake\\Cors\\CorsServiceProvider"
  883. ]
  884. }
  885. },
  886. "autoload": {
  887. "psr-4": {
  888. "Fruitcake\\Cors\\": "src/"
  889. }
  890. },
  891. "notification-url": "https://packagist.org/downloads/",
  892. "license": [
  893. "MIT"
  894. ],
  895. "authors": [
  896. {
  897. "name": "Fruitcake",
  898. "homepage": "https://fruitcake.nl"
  899. },
  900. {
  901. "name": "Barry vd. Heuvel",
  902. "email": "barryvdh@gmail.com"
  903. }
  904. ],
  905. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  906. "keywords": [
  907. "api",
  908. "cors",
  909. "crossdomain",
  910. "laravel"
  911. ],
  912. "support": {
  913. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  914. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  915. },
  916. "funding": [
  917. {
  918. "url": "https://fruitcake.nl",
  919. "type": "custom"
  920. },
  921. {
  922. "url": "https://github.com/barryvdh",
  923. "type": "github"
  924. }
  925. ],
  926. "abandoned": true,
  927. "time": "2022-02-23T14:25:13+00:00"
  928. },
  929. {
  930. "name": "graham-campbell/manager",
  931. "version": "v4.7.0",
  932. "source": {
  933. "type": "git",
  934. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  935. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  936. },
  937. "dist": {
  938. "type": "zip",
  939. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  940. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  941. "shasum": "",
  942. "mirrors": [
  943. {
  944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  945. "preferred": true
  946. }
  947. ]
  948. },
  949. "require": {
  950. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  951. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  952. "php": "^7.1.3 || ^8.0"
  953. },
  954. "require-dev": {
  955. "graham-campbell/analyzer": "^2.4 || ^3.0",
  956. "graham-campbell/testbench-core": "^3.4",
  957. "mockery/mockery": "^1.3.1",
  958. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  959. },
  960. "type": "library",
  961. "autoload": {
  962. "psr-4": {
  963. "GrahamCampbell\\Manager\\": "src/"
  964. }
  965. },
  966. "notification-url": "https://packagist.org/downloads/",
  967. "license": [
  968. "MIT"
  969. ],
  970. "authors": [
  971. {
  972. "name": "Graham Campbell",
  973. "email": "hello@gjcampbell.co.uk",
  974. "homepage": "https://github.com/GrahamCampbell"
  975. }
  976. ],
  977. "description": "Manager Provides Some Manager Functionality For Laravel",
  978. "keywords": [
  979. "Graham Campbell",
  980. "GrahamCampbell",
  981. "Laravel Manager",
  982. "Laravel-Manager",
  983. "connector",
  984. "framework",
  985. "interface",
  986. "laravel",
  987. "manager"
  988. ],
  989. "support": {
  990. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  991. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  992. },
  993. "funding": [
  994. {
  995. "url": "https://github.com/GrahamCampbell",
  996. "type": "github"
  997. },
  998. {
  999. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1000. "type": "tidelift"
  1001. }
  1002. ],
  1003. "time": "2022-01-24T01:59:19+00:00"
  1004. },
  1005. {
  1006. "name": "graham-campbell/result-type",
  1007. "version": "v1.1.2",
  1008. "source": {
  1009. "type": "git",
  1010. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1011. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1012. },
  1013. "dist": {
  1014. "type": "zip",
  1015. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1016. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1017. "shasum": "",
  1018. "mirrors": [
  1019. {
  1020. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1021. "preferred": true
  1022. }
  1023. ]
  1024. },
  1025. "require": {
  1026. "php": "^7.2.5 || ^8.0",
  1027. "phpoption/phpoption": "^1.9.2"
  1028. },
  1029. "require-dev": {
  1030. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1031. },
  1032. "type": "library",
  1033. "autoload": {
  1034. "psr-4": {
  1035. "GrahamCampbell\\ResultType\\": "src/"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "Graham Campbell",
  1045. "email": "hello@gjcampbell.co.uk",
  1046. "homepage": "https://github.com/GrahamCampbell"
  1047. }
  1048. ],
  1049. "description": "An Implementation Of The Result Type",
  1050. "keywords": [
  1051. "Graham Campbell",
  1052. "GrahamCampbell",
  1053. "Result Type",
  1054. "Result-Type",
  1055. "result"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1059. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1060. },
  1061. "funding": [
  1062. {
  1063. "url": "https://github.com/GrahamCampbell",
  1064. "type": "github"
  1065. },
  1066. {
  1067. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1068. "type": "tidelift"
  1069. }
  1070. ],
  1071. "time": "2023-11-12T22:16:48+00:00"
  1072. },
  1073. {
  1074. "name": "guzzlehttp/guzzle",
  1075. "version": "7.8.1",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/guzzle/guzzle.git",
  1079. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1084. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1085. "shasum": "",
  1086. "mirrors": [
  1087. {
  1088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1089. "preferred": true
  1090. }
  1091. ]
  1092. },
  1093. "require": {
  1094. "ext-json": "*",
  1095. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1096. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1097. "php": "^7.2.5 || ^8.0",
  1098. "psr/http-client": "^1.0",
  1099. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1100. },
  1101. "provide": {
  1102. "psr/http-client-implementation": "1.0"
  1103. },
  1104. "require-dev": {
  1105. "bamarni/composer-bin-plugin": "^1.8.2",
  1106. "ext-curl": "*",
  1107. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1108. "php-http/message-factory": "^1.1",
  1109. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1110. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1111. },
  1112. "suggest": {
  1113. "ext-curl": "Required for CURL handler support",
  1114. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1115. "psr/log": "Required for using the Log middleware"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "bamarni-bin": {
  1120. "bin-links": true,
  1121. "forward-command": false
  1122. }
  1123. },
  1124. "autoload": {
  1125. "files": [
  1126. "src/functions_include.php"
  1127. ],
  1128. "psr-4": {
  1129. "GuzzleHttp\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Graham Campbell",
  1139. "email": "hello@gjcampbell.co.uk",
  1140. "homepage": "https://github.com/GrahamCampbell"
  1141. },
  1142. {
  1143. "name": "Michael Dowling",
  1144. "email": "mtdowling@gmail.com",
  1145. "homepage": "https://github.com/mtdowling"
  1146. },
  1147. {
  1148. "name": "Jeremy Lindblom",
  1149. "email": "jeremeamia@gmail.com",
  1150. "homepage": "https://github.com/jeremeamia"
  1151. },
  1152. {
  1153. "name": "George Mponos",
  1154. "email": "gmponos@gmail.com",
  1155. "homepage": "https://github.com/gmponos"
  1156. },
  1157. {
  1158. "name": "Tobias Nyholm",
  1159. "email": "tobias.nyholm@gmail.com",
  1160. "homepage": "https://github.com/Nyholm"
  1161. },
  1162. {
  1163. "name": "Márk Sági-Kazár",
  1164. "email": "mark.sagikazar@gmail.com",
  1165. "homepage": "https://github.com/sagikazarmark"
  1166. },
  1167. {
  1168. "name": "Tobias Schultze",
  1169. "email": "webmaster@tubo-world.de",
  1170. "homepage": "https://github.com/Tobion"
  1171. }
  1172. ],
  1173. "description": "Guzzle is a PHP HTTP client library",
  1174. "keywords": [
  1175. "client",
  1176. "curl",
  1177. "framework",
  1178. "http",
  1179. "http client",
  1180. "psr-18",
  1181. "psr-7",
  1182. "rest",
  1183. "web service"
  1184. ],
  1185. "support": {
  1186. "issues": "https://github.com/guzzle/guzzle/issues",
  1187. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1188. },
  1189. "funding": [
  1190. {
  1191. "url": "https://github.com/GrahamCampbell",
  1192. "type": "github"
  1193. },
  1194. {
  1195. "url": "https://github.com/Nyholm",
  1196. "type": "github"
  1197. },
  1198. {
  1199. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1200. "type": "tidelift"
  1201. }
  1202. ],
  1203. "time": "2023-12-03T20:35:24+00:00"
  1204. },
  1205. {
  1206. "name": "guzzlehttp/promises",
  1207. "version": "2.0.1",
  1208. "source": {
  1209. "type": "git",
  1210. "url": "https://github.com/guzzle/promises.git",
  1211. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1212. },
  1213. "dist": {
  1214. "type": "zip",
  1215. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1216. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1217. "shasum": "",
  1218. "mirrors": [
  1219. {
  1220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1221. "preferred": true
  1222. }
  1223. ]
  1224. },
  1225. "require": {
  1226. "php": "^7.2.5 || ^8.0"
  1227. },
  1228. "require-dev": {
  1229. "bamarni/composer-bin-plugin": "^1.8.1",
  1230. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "bamarni-bin": {
  1235. "bin-links": true,
  1236. "forward-command": false
  1237. }
  1238. },
  1239. "autoload": {
  1240. "psr-4": {
  1241. "GuzzleHttp\\Promise\\": "src/"
  1242. }
  1243. },
  1244. "notification-url": "https://packagist.org/downloads/",
  1245. "license": [
  1246. "MIT"
  1247. ],
  1248. "authors": [
  1249. {
  1250. "name": "Graham Campbell",
  1251. "email": "hello@gjcampbell.co.uk",
  1252. "homepage": "https://github.com/GrahamCampbell"
  1253. },
  1254. {
  1255. "name": "Michael Dowling",
  1256. "email": "mtdowling@gmail.com",
  1257. "homepage": "https://github.com/mtdowling"
  1258. },
  1259. {
  1260. "name": "Tobias Nyholm",
  1261. "email": "tobias.nyholm@gmail.com",
  1262. "homepage": "https://github.com/Nyholm"
  1263. },
  1264. {
  1265. "name": "Tobias Schultze",
  1266. "email": "webmaster@tubo-world.de",
  1267. "homepage": "https://github.com/Tobion"
  1268. }
  1269. ],
  1270. "description": "Guzzle promises library",
  1271. "keywords": [
  1272. "promise"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/guzzle/promises/issues",
  1276. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1277. },
  1278. "funding": [
  1279. {
  1280. "url": "https://github.com/GrahamCampbell",
  1281. "type": "github"
  1282. },
  1283. {
  1284. "url": "https://github.com/Nyholm",
  1285. "type": "github"
  1286. },
  1287. {
  1288. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1289. "type": "tidelift"
  1290. }
  1291. ],
  1292. "time": "2023-08-03T15:11:55+00:00"
  1293. },
  1294. {
  1295. "name": "guzzlehttp/psr7",
  1296. "version": "2.6.2",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/guzzle/psr7.git",
  1300. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1305. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1306. "shasum": "",
  1307. "mirrors": [
  1308. {
  1309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1310. "preferred": true
  1311. }
  1312. ]
  1313. },
  1314. "require": {
  1315. "php": "^7.2.5 || ^8.0",
  1316. "psr/http-factory": "^1.0",
  1317. "psr/http-message": "^1.1 || ^2.0",
  1318. "ralouphie/getallheaders": "^3.0"
  1319. },
  1320. "provide": {
  1321. "psr/http-factory-implementation": "1.0",
  1322. "psr/http-message-implementation": "1.0"
  1323. },
  1324. "require-dev": {
  1325. "bamarni/composer-bin-plugin": "^1.8.2",
  1326. "http-interop/http-factory-tests": "^0.9",
  1327. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1328. },
  1329. "suggest": {
  1330. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1331. },
  1332. "type": "library",
  1333. "extra": {
  1334. "bamarni-bin": {
  1335. "bin-links": true,
  1336. "forward-command": false
  1337. }
  1338. },
  1339. "autoload": {
  1340. "psr-4": {
  1341. "GuzzleHttp\\Psr7\\": "src/"
  1342. }
  1343. },
  1344. "notification-url": "https://packagist.org/downloads/",
  1345. "license": [
  1346. "MIT"
  1347. ],
  1348. "authors": [
  1349. {
  1350. "name": "Graham Campbell",
  1351. "email": "hello@gjcampbell.co.uk",
  1352. "homepage": "https://github.com/GrahamCampbell"
  1353. },
  1354. {
  1355. "name": "Michael Dowling",
  1356. "email": "mtdowling@gmail.com",
  1357. "homepage": "https://github.com/mtdowling"
  1358. },
  1359. {
  1360. "name": "George Mponos",
  1361. "email": "gmponos@gmail.com",
  1362. "homepage": "https://github.com/gmponos"
  1363. },
  1364. {
  1365. "name": "Tobias Nyholm",
  1366. "email": "tobias.nyholm@gmail.com",
  1367. "homepage": "https://github.com/Nyholm"
  1368. },
  1369. {
  1370. "name": "Márk Sági-Kazár",
  1371. "email": "mark.sagikazar@gmail.com",
  1372. "homepage": "https://github.com/sagikazarmark"
  1373. },
  1374. {
  1375. "name": "Tobias Schultze",
  1376. "email": "webmaster@tubo-world.de",
  1377. "homepage": "https://github.com/Tobion"
  1378. },
  1379. {
  1380. "name": "Márk Sági-Kazár",
  1381. "email": "mark.sagikazar@gmail.com",
  1382. "homepage": "https://sagikazarmark.hu"
  1383. }
  1384. ],
  1385. "description": "PSR-7 message implementation that also provides common utility methods",
  1386. "keywords": [
  1387. "http",
  1388. "message",
  1389. "psr-7",
  1390. "request",
  1391. "response",
  1392. "stream",
  1393. "uri",
  1394. "url"
  1395. ],
  1396. "support": {
  1397. "issues": "https://github.com/guzzle/psr7/issues",
  1398. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1399. },
  1400. "funding": [
  1401. {
  1402. "url": "https://github.com/GrahamCampbell",
  1403. "type": "github"
  1404. },
  1405. {
  1406. "url": "https://github.com/Nyholm",
  1407. "type": "github"
  1408. },
  1409. {
  1410. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1411. "type": "tidelift"
  1412. }
  1413. ],
  1414. "time": "2023-12-03T20:05:35+00:00"
  1415. },
  1416. {
  1417. "name": "guzzlehttp/uri-template",
  1418. "version": "v1.0.3",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/guzzle/uri-template.git",
  1422. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1427. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "php": "^7.2.5 || ^8.0",
  1432. "symfony/polyfill-php80": "^1.24"
  1433. },
  1434. "require-dev": {
  1435. "bamarni/composer-bin-plugin": "^1.8.2",
  1436. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1437. "uri-template/tests": "1.0.0"
  1438. },
  1439. "type": "library",
  1440. "extra": {
  1441. "bamarni-bin": {
  1442. "bin-links": true,
  1443. "forward-command": false
  1444. }
  1445. },
  1446. "autoload": {
  1447. "psr-4": {
  1448. "GuzzleHttp\\UriTemplate\\": "src"
  1449. }
  1450. },
  1451. "notification-url": "https://packagist.org/downloads/",
  1452. "license": [
  1453. "MIT"
  1454. ],
  1455. "authors": [
  1456. {
  1457. "name": "Graham Campbell",
  1458. "email": "hello@gjcampbell.co.uk",
  1459. "homepage": "https://github.com/GrahamCampbell"
  1460. },
  1461. {
  1462. "name": "Michael Dowling",
  1463. "email": "mtdowling@gmail.com",
  1464. "homepage": "https://github.com/mtdowling"
  1465. },
  1466. {
  1467. "name": "George Mponos",
  1468. "email": "gmponos@gmail.com",
  1469. "homepage": "https://github.com/gmponos"
  1470. },
  1471. {
  1472. "name": "Tobias Nyholm",
  1473. "email": "tobias.nyholm@gmail.com",
  1474. "homepage": "https://github.com/Nyholm"
  1475. }
  1476. ],
  1477. "description": "A polyfill class for uri_template of PHP",
  1478. "keywords": [
  1479. "guzzlehttp",
  1480. "uri-template"
  1481. ],
  1482. "support": {
  1483. "issues": "https://github.com/guzzle/uri-template/issues",
  1484. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1485. },
  1486. "funding": [
  1487. {
  1488. "url": "https://github.com/GrahamCampbell",
  1489. "type": "github"
  1490. },
  1491. {
  1492. "url": "https://github.com/Nyholm",
  1493. "type": "github"
  1494. },
  1495. {
  1496. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1497. "type": "tidelift"
  1498. }
  1499. ],
  1500. "time": "2023-12-03T19:50:20+00:00"
  1501. },
  1502. {
  1503. "name": "hashids/hashids",
  1504. "version": "4.1.0",
  1505. "source": {
  1506. "type": "git",
  1507. "url": "https://github.com/vinkla/hashids.git",
  1508. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1509. },
  1510. "dist": {
  1511. "type": "zip",
  1512. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  1513. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  1514. "shasum": "",
  1515. "mirrors": [
  1516. {
  1517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1518. "preferred": true
  1519. }
  1520. ]
  1521. },
  1522. "require": {
  1523. "ext-mbstring": "*",
  1524. "php": "^7.2 || ^8.0"
  1525. },
  1526. "require-dev": {
  1527. "phpunit/phpunit": "^8.0 || ^9.4",
  1528. "squizlabs/php_codesniffer": "^3.5"
  1529. },
  1530. "suggest": {
  1531. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  1532. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-master": "4.1-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "Hashids\\": "src/"
  1543. }
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Ivan Akimov",
  1552. "email": "ivan@barreleye.com"
  1553. },
  1554. {
  1555. "name": "Vincent Klaiber",
  1556. "email": "hello@doubledip.se"
  1557. }
  1558. ],
  1559. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  1560. "homepage": "https://hashids.org/php",
  1561. "keywords": [
  1562. "bitly",
  1563. "decode",
  1564. "encode",
  1565. "hash",
  1566. "hashid",
  1567. "hashids",
  1568. "ids",
  1569. "obfuscate",
  1570. "youtube"
  1571. ],
  1572. "support": {
  1573. "issues": "https://github.com/vinkla/hashids/issues",
  1574. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  1575. },
  1576. "time": "2020-11-26T19:24:33+00:00"
  1577. },
  1578. {
  1579. "name": "intervention/image",
  1580. "version": "2.7.2",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/Intervention/image.git",
  1584. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1589. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1590. "shasum": "",
  1591. "mirrors": [
  1592. {
  1593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1594. "preferred": true
  1595. }
  1596. ]
  1597. },
  1598. "require": {
  1599. "ext-fileinfo": "*",
  1600. "guzzlehttp/psr7": "~1.1 || ^2.0",
  1601. "php": ">=5.4.0"
  1602. },
  1603. "require-dev": {
  1604. "mockery/mockery": "~0.9.2",
  1605. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  1606. },
  1607. "suggest": {
  1608. "ext-gd": "to use GD library based image processing.",
  1609. "ext-imagick": "to use Imagick based image processing.",
  1610. "intervention/imagecache": "Caching extension for the Intervention Image library"
  1611. },
  1612. "type": "library",
  1613. "extra": {
  1614. "branch-alias": {
  1615. "dev-master": "2.4-dev"
  1616. },
  1617. "laravel": {
  1618. "providers": [
  1619. "Intervention\\Image\\ImageServiceProvider"
  1620. ],
  1621. "aliases": {
  1622. "Image": "Intervention\\Image\\Facades\\Image"
  1623. }
  1624. }
  1625. },
  1626. "autoload": {
  1627. "psr-4": {
  1628. "Intervention\\Image\\": "src/Intervention/Image"
  1629. }
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "authors": [
  1636. {
  1637. "name": "Oliver Vogel",
  1638. "email": "oliver@intervention.io",
  1639. "homepage": "https://intervention.io/"
  1640. }
  1641. ],
  1642. "description": "Image handling and manipulation library with support for Laravel integration",
  1643. "homepage": "http://image.intervention.io/",
  1644. "keywords": [
  1645. "gd",
  1646. "image",
  1647. "imagick",
  1648. "laravel",
  1649. "thumbnail",
  1650. "watermark"
  1651. ],
  1652. "support": {
  1653. "issues": "https://github.com/Intervention/image/issues",
  1654. "source": "https://github.com/Intervention/image/tree/2.7.2"
  1655. },
  1656. "funding": [
  1657. {
  1658. "url": "https://paypal.me/interventionio",
  1659. "type": "custom"
  1660. },
  1661. {
  1662. "url": "https://github.com/Intervention",
  1663. "type": "github"
  1664. }
  1665. ],
  1666. "time": "2022-05-21T17:30:32+00:00"
  1667. },
  1668. {
  1669. "name": "ixudra/curl",
  1670. "version": "6.22.1",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/ixudra/curl.git",
  1674. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1679. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  1680. "shasum": "",
  1681. "mirrors": [
  1682. {
  1683. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1684. "preferred": true
  1685. }
  1686. ]
  1687. },
  1688. "require": {
  1689. "ext-curl": "*",
  1690. "illuminate/support": ">=4.0",
  1691. "php": ">=5.4.0"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "laravel": {
  1696. "providers": [
  1697. "Ixudra\\Curl\\CurlServiceProvider"
  1698. ],
  1699. "aliases": {
  1700. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  1701. }
  1702. }
  1703. },
  1704. "autoload": {
  1705. "psr-4": {
  1706. "Ixudra\\Curl\\": "src/"
  1707. }
  1708. },
  1709. "notification-url": "https://packagist.org/downloads/",
  1710. "license": [
  1711. "MIT"
  1712. ],
  1713. "authors": [
  1714. {
  1715. "name": "Jan Oris",
  1716. "email": "jan.oris@ixudra.be"
  1717. }
  1718. ],
  1719. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  1720. "homepage": "http://ixudra.be",
  1721. "keywords": [
  1722. "Ixudra",
  1723. "curl",
  1724. "laravel"
  1725. ],
  1726. "support": {
  1727. "issues": "https://github.com/ixudra/curl/issues",
  1728. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  1729. },
  1730. "time": "2022-07-31T09:58:52+00:00"
  1731. },
  1732. {
  1733. "name": "laravel/framework",
  1734. "version": "v8.83.27",
  1735. "source": {
  1736. "type": "git",
  1737. "url": "https://github.com/laravel/framework.git",
  1738. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  1739. },
  1740. "dist": {
  1741. "type": "zip",
  1742. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1743. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1744. "shasum": ""
  1745. },
  1746. "require": {
  1747. "doctrine/inflector": "^1.4|^2.0",
  1748. "dragonmantank/cron-expression": "^3.0.2",
  1749. "egulias/email-validator": "^2.1.10",
  1750. "ext-json": "*",
  1751. "ext-mbstring": "*",
  1752. "ext-openssl": "*",
  1753. "laravel/serializable-closure": "^1.0",
  1754. "league/commonmark": "^1.3|^2.0.2",
  1755. "league/flysystem": "^1.1",
  1756. "monolog/monolog": "^2.0",
  1757. "nesbot/carbon": "^2.53.1",
  1758. "opis/closure": "^3.6",
  1759. "php": "^7.3|^8.0",
  1760. "psr/container": "^1.0",
  1761. "psr/log": "^1.0|^2.0",
  1762. "psr/simple-cache": "^1.0",
  1763. "ramsey/uuid": "^4.2.2",
  1764. "swiftmailer/swiftmailer": "^6.3",
  1765. "symfony/console": "^5.4",
  1766. "symfony/error-handler": "^5.4",
  1767. "symfony/finder": "^5.4",
  1768. "symfony/http-foundation": "^5.4",
  1769. "symfony/http-kernel": "^5.4",
  1770. "symfony/mime": "^5.4",
  1771. "symfony/process": "^5.4",
  1772. "symfony/routing": "^5.4",
  1773. "symfony/var-dumper": "^5.4",
  1774. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1775. "vlucas/phpdotenv": "^5.4.1",
  1776. "voku/portable-ascii": "^1.6.1"
  1777. },
  1778. "conflict": {
  1779. "tightenco/collect": "<5.5.33"
  1780. },
  1781. "provide": {
  1782. "psr/container-implementation": "1.0",
  1783. "psr/simple-cache-implementation": "1.0"
  1784. },
  1785. "replace": {
  1786. "illuminate/auth": "self.version",
  1787. "illuminate/broadcasting": "self.version",
  1788. "illuminate/bus": "self.version",
  1789. "illuminate/cache": "self.version",
  1790. "illuminate/collections": "self.version",
  1791. "illuminate/config": "self.version",
  1792. "illuminate/console": "self.version",
  1793. "illuminate/container": "self.version",
  1794. "illuminate/contracts": "self.version",
  1795. "illuminate/cookie": "self.version",
  1796. "illuminate/database": "self.version",
  1797. "illuminate/encryption": "self.version",
  1798. "illuminate/events": "self.version",
  1799. "illuminate/filesystem": "self.version",
  1800. "illuminate/hashing": "self.version",
  1801. "illuminate/http": "self.version",
  1802. "illuminate/log": "self.version",
  1803. "illuminate/macroable": "self.version",
  1804. "illuminate/mail": "self.version",
  1805. "illuminate/notifications": "self.version",
  1806. "illuminate/pagination": "self.version",
  1807. "illuminate/pipeline": "self.version",
  1808. "illuminate/queue": "self.version",
  1809. "illuminate/redis": "self.version",
  1810. "illuminate/routing": "self.version",
  1811. "illuminate/session": "self.version",
  1812. "illuminate/support": "self.version",
  1813. "illuminate/testing": "self.version",
  1814. "illuminate/translation": "self.version",
  1815. "illuminate/validation": "self.version",
  1816. "illuminate/view": "self.version"
  1817. },
  1818. "require-dev": {
  1819. "aws/aws-sdk-php": "^3.198.1",
  1820. "doctrine/dbal": "^2.13.3|^3.1.4",
  1821. "filp/whoops": "^2.14.3",
  1822. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1823. "league/flysystem-cached-adapter": "^1.0",
  1824. "mockery/mockery": "^1.4.4",
  1825. "orchestra/testbench-core": "^6.27",
  1826. "pda/pheanstalk": "^4.0",
  1827. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1828. "predis/predis": "^1.1.9",
  1829. "symfony/cache": "^5.4"
  1830. },
  1831. "suggest": {
  1832. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1833. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1834. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1835. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1836. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1837. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1838. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1839. "ext-memcached": "Required to use the memcache cache driver.",
  1840. "ext-pcntl": "Required to use all features of the queue worker.",
  1841. "ext-posix": "Required to use all features of the queue worker.",
  1842. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1843. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1844. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1845. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1846. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1847. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1848. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1849. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1850. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1851. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1852. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1853. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1854. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1855. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1856. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1857. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1858. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1859. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1860. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1861. },
  1862. "type": "library",
  1863. "extra": {
  1864. "branch-alias": {
  1865. "dev-master": "8.x-dev"
  1866. }
  1867. },
  1868. "autoload": {
  1869. "files": [
  1870. "src/Illuminate/Collections/helpers.php",
  1871. "src/Illuminate/Events/functions.php",
  1872. "src/Illuminate/Foundation/helpers.php",
  1873. "src/Illuminate/Support/helpers.php"
  1874. ],
  1875. "psr-4": {
  1876. "Illuminate\\": "src/Illuminate/",
  1877. "Illuminate\\Support\\": [
  1878. "src/Illuminate/Macroable/",
  1879. "src/Illuminate/Collections/"
  1880. ]
  1881. }
  1882. },
  1883. "notification-url": "https://packagist.org/downloads/",
  1884. "license": [
  1885. "MIT"
  1886. ],
  1887. "authors": [
  1888. {
  1889. "name": "Taylor Otwell",
  1890. "email": "taylor@laravel.com"
  1891. }
  1892. ],
  1893. "description": "The Laravel Framework.",
  1894. "homepage": "https://laravel.com",
  1895. "keywords": [
  1896. "framework",
  1897. "laravel"
  1898. ],
  1899. "support": {
  1900. "issues": "https://github.com/laravel/framework/issues",
  1901. "source": "https://github.com/laravel/framework"
  1902. },
  1903. "time": "2022-12-08T15:28:55+00:00"
  1904. },
  1905. {
  1906. "name": "laravel/serializable-closure",
  1907. "version": "v1.3.3",
  1908. "source": {
  1909. "type": "git",
  1910. "url": "https://github.com/laravel/serializable-closure.git",
  1911. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  1912. },
  1913. "dist": {
  1914. "type": "zip",
  1915. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  1916. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  1917. "shasum": "",
  1918. "mirrors": [
  1919. {
  1920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1921. "preferred": true
  1922. }
  1923. ]
  1924. },
  1925. "require": {
  1926. "php": "^7.3|^8.0"
  1927. },
  1928. "require-dev": {
  1929. "nesbot/carbon": "^2.61",
  1930. "pestphp/pest": "^1.21.3",
  1931. "phpstan/phpstan": "^1.8.2",
  1932. "symfony/var-dumper": "^5.4.11"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "branch-alias": {
  1937. "dev-master": "1.x-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "Laravel\\SerializableClosure\\": "src/"
  1943. }
  1944. },
  1945. "notification-url": "https://packagist.org/downloads/",
  1946. "license": [
  1947. "MIT"
  1948. ],
  1949. "authors": [
  1950. {
  1951. "name": "Taylor Otwell",
  1952. "email": "taylor@laravel.com"
  1953. },
  1954. {
  1955. "name": "Nuno Maduro",
  1956. "email": "nuno@laravel.com"
  1957. }
  1958. ],
  1959. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1960. "keywords": [
  1961. "closure",
  1962. "laravel",
  1963. "serializable"
  1964. ],
  1965. "support": {
  1966. "issues": "https://github.com/laravel/serializable-closure/issues",
  1967. "source": "https://github.com/laravel/serializable-closure"
  1968. },
  1969. "time": "2023-11-08T14:08:06+00:00"
  1970. },
  1971. {
  1972. "name": "laravel/tinker",
  1973. "version": "v2.9.0",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://github.com/laravel/tinker.git",
  1977. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1982. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1983. "shasum": "",
  1984. "mirrors": [
  1985. {
  1986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1987. "preferred": true
  1988. }
  1989. ]
  1990. },
  1991. "require": {
  1992. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1993. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1994. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1995. "php": "^7.2.5|^8.0",
  1996. "psy/psysh": "^0.11.1|^0.12.0",
  1997. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1998. },
  1999. "require-dev": {
  2000. "mockery/mockery": "~1.3.3|^1.4.2",
  2001. "phpstan/phpstan": "^1.10",
  2002. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2003. },
  2004. "suggest": {
  2005. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2006. },
  2007. "type": "library",
  2008. "extra": {
  2009. "laravel": {
  2010. "providers": [
  2011. "Laravel\\Tinker\\TinkerServiceProvider"
  2012. ]
  2013. }
  2014. },
  2015. "autoload": {
  2016. "psr-4": {
  2017. "Laravel\\Tinker\\": "src/"
  2018. }
  2019. },
  2020. "notification-url": "https://packagist.org/downloads/",
  2021. "license": [
  2022. "MIT"
  2023. ],
  2024. "authors": [
  2025. {
  2026. "name": "Taylor Otwell",
  2027. "email": "taylor@laravel.com"
  2028. }
  2029. ],
  2030. "description": "Powerful REPL for the Laravel framework.",
  2031. "keywords": [
  2032. "REPL",
  2033. "Tinker",
  2034. "laravel",
  2035. "psysh"
  2036. ],
  2037. "support": {
  2038. "issues": "https://github.com/laravel/tinker/issues",
  2039. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2040. },
  2041. "time": "2024-01-04T16:10:04+00:00"
  2042. },
  2043. {
  2044. "name": "league/commonmark",
  2045. "version": "2.4.1",
  2046. "source": {
  2047. "type": "git",
  2048. "url": "https://github.com/thephpleague/commonmark.git",
  2049. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2050. },
  2051. "dist": {
  2052. "type": "zip",
  2053. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2054. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2055. "shasum": "",
  2056. "mirrors": [
  2057. {
  2058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2059. "preferred": true
  2060. }
  2061. ]
  2062. },
  2063. "require": {
  2064. "ext-mbstring": "*",
  2065. "league/config": "^1.1.1",
  2066. "php": "^7.4 || ^8.0",
  2067. "psr/event-dispatcher": "^1.0",
  2068. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2069. "symfony/polyfill-php80": "^1.16"
  2070. },
  2071. "require-dev": {
  2072. "cebe/markdown": "^1.0",
  2073. "commonmark/cmark": "0.30.0",
  2074. "commonmark/commonmark.js": "0.30.0",
  2075. "composer/package-versions-deprecated": "^1.8",
  2076. "embed/embed": "^4.4",
  2077. "erusev/parsedown": "^1.0",
  2078. "ext-json": "*",
  2079. "github/gfm": "0.29.0",
  2080. "michelf/php-markdown": "^1.4 || ^2.0",
  2081. "nyholm/psr7": "^1.5",
  2082. "phpstan/phpstan": "^1.8.2",
  2083. "phpunit/phpunit": "^9.5.21",
  2084. "scrutinizer/ocular": "^1.8.1",
  2085. "symfony/finder": "^5.3 | ^6.0",
  2086. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2087. "unleashedtech/php-coding-standard": "^3.1.1",
  2088. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2089. },
  2090. "suggest": {
  2091. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2092. },
  2093. "type": "library",
  2094. "extra": {
  2095. "branch-alias": {
  2096. "dev-main": "2.5-dev"
  2097. }
  2098. },
  2099. "autoload": {
  2100. "psr-4": {
  2101. "League\\CommonMark\\": "src"
  2102. }
  2103. },
  2104. "notification-url": "https://packagist.org/downloads/",
  2105. "license": [
  2106. "BSD-3-Clause"
  2107. ],
  2108. "authors": [
  2109. {
  2110. "name": "Colin O'Dell",
  2111. "email": "colinodell@gmail.com",
  2112. "homepage": "https://www.colinodell.com",
  2113. "role": "Lead Developer"
  2114. }
  2115. ],
  2116. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2117. "homepage": "https://commonmark.thephpleague.com",
  2118. "keywords": [
  2119. "commonmark",
  2120. "flavored",
  2121. "gfm",
  2122. "github",
  2123. "github-flavored",
  2124. "markdown",
  2125. "md",
  2126. "parser"
  2127. ],
  2128. "support": {
  2129. "docs": "https://commonmark.thephpleague.com/",
  2130. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2131. "issues": "https://github.com/thephpleague/commonmark/issues",
  2132. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2133. "source": "https://github.com/thephpleague/commonmark"
  2134. },
  2135. "funding": [
  2136. {
  2137. "url": "https://www.colinodell.com/sponsor",
  2138. "type": "custom"
  2139. },
  2140. {
  2141. "url": "https://www.paypal.me/colinpodell/10.00",
  2142. "type": "custom"
  2143. },
  2144. {
  2145. "url": "https://github.com/colinodell",
  2146. "type": "github"
  2147. },
  2148. {
  2149. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2150. "type": "tidelift"
  2151. }
  2152. ],
  2153. "time": "2023-08-30T16:55:00+00:00"
  2154. },
  2155. {
  2156. "name": "league/config",
  2157. "version": "v1.2.0",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/thephpleague/config.git",
  2161. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2166. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2167. "shasum": "",
  2168. "mirrors": [
  2169. {
  2170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2171. "preferred": true
  2172. }
  2173. ]
  2174. },
  2175. "require": {
  2176. "dflydev/dot-access-data": "^3.0.1",
  2177. "nette/schema": "^1.2",
  2178. "php": "^7.4 || ^8.0"
  2179. },
  2180. "require-dev": {
  2181. "phpstan/phpstan": "^1.8.2",
  2182. "phpunit/phpunit": "^9.5.5",
  2183. "scrutinizer/ocular": "^1.8.1",
  2184. "unleashedtech/php-coding-standard": "^3.1",
  2185. "vimeo/psalm": "^4.7.3"
  2186. },
  2187. "type": "library",
  2188. "extra": {
  2189. "branch-alias": {
  2190. "dev-main": "1.2-dev"
  2191. }
  2192. },
  2193. "autoload": {
  2194. "psr-4": {
  2195. "League\\Config\\": "src"
  2196. }
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "BSD-3-Clause"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Colin O'Dell",
  2205. "email": "colinodell@gmail.com",
  2206. "homepage": "https://www.colinodell.com",
  2207. "role": "Lead Developer"
  2208. }
  2209. ],
  2210. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2211. "homepage": "https://config.thephpleague.com",
  2212. "keywords": [
  2213. "array",
  2214. "config",
  2215. "configuration",
  2216. "dot",
  2217. "dot-access",
  2218. "nested",
  2219. "schema"
  2220. ],
  2221. "support": {
  2222. "docs": "https://config.thephpleague.com/",
  2223. "issues": "https://github.com/thephpleague/config/issues",
  2224. "rss": "https://github.com/thephpleague/config/releases.atom",
  2225. "source": "https://github.com/thephpleague/config"
  2226. },
  2227. "funding": [
  2228. {
  2229. "url": "https://www.colinodell.com/sponsor",
  2230. "type": "custom"
  2231. },
  2232. {
  2233. "url": "https://www.paypal.me/colinpodell/10.00",
  2234. "type": "custom"
  2235. },
  2236. {
  2237. "url": "https://github.com/colinodell",
  2238. "type": "github"
  2239. }
  2240. ],
  2241. "time": "2022-12-11T20:36:23+00:00"
  2242. },
  2243. {
  2244. "name": "league/flysystem",
  2245. "version": "1.1.10",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/thephpleague/flysystem.git",
  2249. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2254. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2255. "shasum": "",
  2256. "mirrors": [
  2257. {
  2258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2259. "preferred": true
  2260. }
  2261. ]
  2262. },
  2263. "require": {
  2264. "ext-fileinfo": "*",
  2265. "league/mime-type-detection": "^1.3",
  2266. "php": "^7.2.5 || ^8.0"
  2267. },
  2268. "conflict": {
  2269. "league/flysystem-sftp": "<1.0.6"
  2270. },
  2271. "require-dev": {
  2272. "phpspec/prophecy": "^1.11.1",
  2273. "phpunit/phpunit": "^8.5.8"
  2274. },
  2275. "suggest": {
  2276. "ext-ftp": "Allows you to use FTP server storage",
  2277. "ext-openssl": "Allows you to use FTPS server storage",
  2278. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2279. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2280. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2281. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2282. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2283. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2284. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2285. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2286. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2287. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2288. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2289. },
  2290. "type": "library",
  2291. "extra": {
  2292. "branch-alias": {
  2293. "dev-master": "1.1-dev"
  2294. }
  2295. },
  2296. "autoload": {
  2297. "psr-4": {
  2298. "League\\Flysystem\\": "src/"
  2299. }
  2300. },
  2301. "notification-url": "https://packagist.org/downloads/",
  2302. "license": [
  2303. "MIT"
  2304. ],
  2305. "authors": [
  2306. {
  2307. "name": "Frank de Jonge",
  2308. "email": "info@frenky.net"
  2309. }
  2310. ],
  2311. "description": "Filesystem abstraction: Many filesystems, one API.",
  2312. "keywords": [
  2313. "Cloud Files",
  2314. "WebDAV",
  2315. "abstraction",
  2316. "aws",
  2317. "cloud",
  2318. "copy.com",
  2319. "dropbox",
  2320. "file systems",
  2321. "files",
  2322. "filesystem",
  2323. "filesystems",
  2324. "ftp",
  2325. "rackspace",
  2326. "remote",
  2327. "s3",
  2328. "sftp",
  2329. "storage"
  2330. ],
  2331. "support": {
  2332. "issues": "https://github.com/thephpleague/flysystem/issues",
  2333. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2334. },
  2335. "funding": [
  2336. {
  2337. "url": "https://offset.earth/frankdejonge",
  2338. "type": "other"
  2339. }
  2340. ],
  2341. "time": "2022-10-04T09:16:37+00:00"
  2342. },
  2343. {
  2344. "name": "league/mime-type-detection",
  2345. "version": "1.13.0",
  2346. "source": {
  2347. "type": "git",
  2348. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2349. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  2350. },
  2351. "dist": {
  2352. "type": "zip",
  2353. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2354. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2355. "shasum": "",
  2356. "mirrors": [
  2357. {
  2358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2359. "preferred": true
  2360. }
  2361. ]
  2362. },
  2363. "require": {
  2364. "ext-fileinfo": "*",
  2365. "php": "^7.4 || ^8.0"
  2366. },
  2367. "require-dev": {
  2368. "friendsofphp/php-cs-fixer": "^3.2",
  2369. "phpstan/phpstan": "^0.12.68",
  2370. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2371. },
  2372. "type": "library",
  2373. "autoload": {
  2374. "psr-4": {
  2375. "League\\MimeTypeDetection\\": "src"
  2376. }
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Frank de Jonge",
  2385. "email": "info@frankdejonge.nl"
  2386. }
  2387. ],
  2388. "description": "Mime-type detection for Flysystem",
  2389. "support": {
  2390. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2391. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  2392. },
  2393. "funding": [
  2394. {
  2395. "url": "https://github.com/frankdejonge",
  2396. "type": "github"
  2397. },
  2398. {
  2399. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2400. "type": "tidelift"
  2401. }
  2402. ],
  2403. "time": "2023-08-05T12:09:49+00:00"
  2404. },
  2405. {
  2406. "name": "maennchen/zipstream-php",
  2407. "version": "2.2.6",
  2408. "source": {
  2409. "type": "git",
  2410. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2411. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2412. },
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2416. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2417. "shasum": "",
  2418. "mirrors": [
  2419. {
  2420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2421. "preferred": true
  2422. }
  2423. ]
  2424. },
  2425. "require": {
  2426. "myclabs/php-enum": "^1.5",
  2427. "php": "^7.4 || ^8.0",
  2428. "psr/http-message": "^1.0",
  2429. "symfony/polyfill-mbstring": "^1.0"
  2430. },
  2431. "require-dev": {
  2432. "ext-zip": "*",
  2433. "friendsofphp/php-cs-fixer": "^3.9",
  2434. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2435. "mikey179/vfsstream": "^1.6",
  2436. "php-coveralls/php-coveralls": "^2.4",
  2437. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2438. "vimeo/psalm": "^4.1"
  2439. },
  2440. "type": "library",
  2441. "autoload": {
  2442. "psr-4": {
  2443. "ZipStream\\": "src/"
  2444. }
  2445. },
  2446. "notification-url": "https://packagist.org/downloads/",
  2447. "license": [
  2448. "MIT"
  2449. ],
  2450. "authors": [
  2451. {
  2452. "name": "Paul Duncan",
  2453. "email": "pabs@pablotron.org"
  2454. },
  2455. {
  2456. "name": "Jonatan Männchen",
  2457. "email": "jonatan@maennchen.ch"
  2458. },
  2459. {
  2460. "name": "Jesse Donat",
  2461. "email": "donatj@gmail.com"
  2462. },
  2463. {
  2464. "name": "András Kolesár",
  2465. "email": "kolesar@kolesar.hu"
  2466. }
  2467. ],
  2468. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2469. "keywords": [
  2470. "stream",
  2471. "zip"
  2472. ],
  2473. "support": {
  2474. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2475. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2476. },
  2477. "funding": [
  2478. {
  2479. "url": "https://github.com/maennchen",
  2480. "type": "github"
  2481. },
  2482. {
  2483. "url": "https://opencollective.com/zipstream",
  2484. "type": "open_collective"
  2485. }
  2486. ],
  2487. "time": "2022-11-25T18:57:19+00:00"
  2488. },
  2489. {
  2490. "name": "markbaker/complex",
  2491. "version": "3.0.2",
  2492. "source": {
  2493. "type": "git",
  2494. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2495. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2496. },
  2497. "dist": {
  2498. "type": "zip",
  2499. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2500. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2501. "shasum": "",
  2502. "mirrors": [
  2503. {
  2504. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2505. "preferred": true
  2506. }
  2507. ]
  2508. },
  2509. "require": {
  2510. "php": "^7.2 || ^8.0"
  2511. },
  2512. "require-dev": {
  2513. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2514. "phpcompatibility/php-compatibility": "^9.3",
  2515. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2516. "squizlabs/php_codesniffer": "^3.7"
  2517. },
  2518. "type": "library",
  2519. "autoload": {
  2520. "psr-4": {
  2521. "Complex\\": "classes/src/"
  2522. }
  2523. },
  2524. "notification-url": "https://packagist.org/downloads/",
  2525. "license": [
  2526. "MIT"
  2527. ],
  2528. "authors": [
  2529. {
  2530. "name": "Mark Baker",
  2531. "email": "mark@lange.demon.co.uk"
  2532. }
  2533. ],
  2534. "description": "PHP Class for working with complex numbers",
  2535. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2536. "keywords": [
  2537. "complex",
  2538. "mathematics"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2542. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2543. },
  2544. "time": "2022-12-06T16:21:08+00:00"
  2545. },
  2546. {
  2547. "name": "markbaker/matrix",
  2548. "version": "3.0.1",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2552. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2557. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2558. "shasum": "",
  2559. "mirrors": [
  2560. {
  2561. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2562. "preferred": true
  2563. }
  2564. ]
  2565. },
  2566. "require": {
  2567. "php": "^7.1 || ^8.0"
  2568. },
  2569. "require-dev": {
  2570. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2571. "phpcompatibility/php-compatibility": "^9.3",
  2572. "phpdocumentor/phpdocumentor": "2.*",
  2573. "phploc/phploc": "^4.0",
  2574. "phpmd/phpmd": "2.*",
  2575. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2576. "sebastian/phpcpd": "^4.0",
  2577. "squizlabs/php_codesniffer": "^3.7"
  2578. },
  2579. "type": "library",
  2580. "autoload": {
  2581. "psr-4": {
  2582. "Matrix\\": "classes/src/"
  2583. }
  2584. },
  2585. "notification-url": "https://packagist.org/downloads/",
  2586. "license": [
  2587. "MIT"
  2588. ],
  2589. "authors": [
  2590. {
  2591. "name": "Mark Baker",
  2592. "email": "mark@demon-angel.eu"
  2593. }
  2594. ],
  2595. "description": "PHP Class for working with matrices",
  2596. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2597. "keywords": [
  2598. "mathematics",
  2599. "matrix",
  2600. "vector"
  2601. ],
  2602. "support": {
  2603. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2604. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2605. },
  2606. "time": "2022-12-02T22:17:43+00:00"
  2607. },
  2608. {
  2609. "name": "monolog/monolog",
  2610. "version": "2.9.2",
  2611. "source": {
  2612. "type": "git",
  2613. "url": "https://github.com/Seldaek/monolog.git",
  2614. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  2615. },
  2616. "dist": {
  2617. "type": "zip",
  2618. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  2619. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  2620. "shasum": "",
  2621. "mirrors": [
  2622. {
  2623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2624. "preferred": true
  2625. }
  2626. ]
  2627. },
  2628. "require": {
  2629. "php": ">=7.2",
  2630. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2631. },
  2632. "provide": {
  2633. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2634. },
  2635. "require-dev": {
  2636. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2637. "doctrine/couchdb": "~1.0@dev",
  2638. "elasticsearch/elasticsearch": "^7 || ^8",
  2639. "ext-json": "*",
  2640. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2641. "guzzlehttp/guzzle": "^7.4",
  2642. "guzzlehttp/psr7": "^2.2",
  2643. "mongodb/mongodb": "^1.8",
  2644. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2645. "phpspec/prophecy": "^1.15",
  2646. "phpstan/phpstan": "^0.12.91",
  2647. "phpunit/phpunit": "^8.5.14",
  2648. "predis/predis": "^1.1 || ^2.0",
  2649. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2650. "ruflin/elastica": "^7",
  2651. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2652. "symfony/mailer": "^5.4 || ^6",
  2653. "symfony/mime": "^5.4 || ^6"
  2654. },
  2655. "suggest": {
  2656. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2657. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2658. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2659. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2660. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2661. "ext-mbstring": "Allow to work properly with unicode symbols",
  2662. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2663. "ext-openssl": "Required to send log messages using SSL",
  2664. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2665. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2666. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2667. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2668. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2669. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2670. },
  2671. "type": "library",
  2672. "extra": {
  2673. "branch-alias": {
  2674. "dev-main": "2.x-dev"
  2675. }
  2676. },
  2677. "autoload": {
  2678. "psr-4": {
  2679. "Monolog\\": "src/Monolog"
  2680. }
  2681. },
  2682. "notification-url": "https://packagist.org/downloads/",
  2683. "license": [
  2684. "MIT"
  2685. ],
  2686. "authors": [
  2687. {
  2688. "name": "Jordi Boggiano",
  2689. "email": "j.boggiano@seld.be",
  2690. "homepage": "https://seld.be"
  2691. }
  2692. ],
  2693. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2694. "homepage": "https://github.com/Seldaek/monolog",
  2695. "keywords": [
  2696. "log",
  2697. "logging",
  2698. "psr-3"
  2699. ],
  2700. "support": {
  2701. "issues": "https://github.com/Seldaek/monolog/issues",
  2702. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  2703. },
  2704. "funding": [
  2705. {
  2706. "url": "https://github.com/Seldaek",
  2707. "type": "github"
  2708. },
  2709. {
  2710. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2711. "type": "tidelift"
  2712. }
  2713. ],
  2714. "time": "2023-10-27T15:25:26+00:00"
  2715. },
  2716. {
  2717. "name": "myclabs/php-enum",
  2718. "version": "1.8.4",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/myclabs/php-enum.git",
  2722. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2727. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2728. "shasum": "",
  2729. "mirrors": [
  2730. {
  2731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2732. "preferred": true
  2733. }
  2734. ]
  2735. },
  2736. "require": {
  2737. "ext-json": "*",
  2738. "php": "^7.3 || ^8.0"
  2739. },
  2740. "require-dev": {
  2741. "phpunit/phpunit": "^9.5",
  2742. "squizlabs/php_codesniffer": "1.*",
  2743. "vimeo/psalm": "^4.6.2"
  2744. },
  2745. "type": "library",
  2746. "autoload": {
  2747. "psr-4": {
  2748. "MyCLabs\\Enum\\": "src/"
  2749. },
  2750. "classmap": [
  2751. "stubs/Stringable.php"
  2752. ]
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "PHP Enum contributors",
  2761. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2762. }
  2763. ],
  2764. "description": "PHP Enum implementation",
  2765. "homepage": "http://github.com/myclabs/php-enum",
  2766. "keywords": [
  2767. "enum"
  2768. ],
  2769. "support": {
  2770. "issues": "https://github.com/myclabs/php-enum/issues",
  2771. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2772. },
  2773. "funding": [
  2774. {
  2775. "url": "https://github.com/mnapoli",
  2776. "type": "github"
  2777. },
  2778. {
  2779. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2780. "type": "tidelift"
  2781. }
  2782. ],
  2783. "time": "2022-08-04T09:53:51+00:00"
  2784. },
  2785. {
  2786. "name": "nesbot/carbon",
  2787. "version": "2.72.1",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/briannesbitt/Carbon.git",
  2791. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2796. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2797. "shasum": "",
  2798. "mirrors": [
  2799. {
  2800. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2801. "preferred": true
  2802. }
  2803. ]
  2804. },
  2805. "require": {
  2806. "carbonphp/carbon-doctrine-types": "*",
  2807. "ext-json": "*",
  2808. "php": "^7.1.8 || ^8.0",
  2809. "psr/clock": "^1.0",
  2810. "symfony/polyfill-mbstring": "^1.0",
  2811. "symfony/polyfill-php80": "^1.16",
  2812. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2813. },
  2814. "provide": {
  2815. "psr/clock-implementation": "1.0"
  2816. },
  2817. "require-dev": {
  2818. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2819. "doctrine/orm": "^2.7 || ^3.0",
  2820. "friendsofphp/php-cs-fixer": "^3.0",
  2821. "kylekatarnls/multi-tester": "^2.0",
  2822. "ondrejmirtes/better-reflection": "*",
  2823. "phpmd/phpmd": "^2.9",
  2824. "phpstan/extension-installer": "^1.0",
  2825. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2826. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2827. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2828. "squizlabs/php_codesniffer": "^3.4"
  2829. },
  2830. "bin": [
  2831. "bin/carbon"
  2832. ],
  2833. "type": "library",
  2834. "extra": {
  2835. "branch-alias": {
  2836. "dev-3.x": "3.x-dev",
  2837. "dev-master": "2.x-dev"
  2838. },
  2839. "laravel": {
  2840. "providers": [
  2841. "Carbon\\Laravel\\ServiceProvider"
  2842. ]
  2843. },
  2844. "phpstan": {
  2845. "includes": [
  2846. "extension.neon"
  2847. ]
  2848. }
  2849. },
  2850. "autoload": {
  2851. "psr-4": {
  2852. "Carbon\\": "src/Carbon/"
  2853. }
  2854. },
  2855. "notification-url": "https://packagist.org/downloads/",
  2856. "license": [
  2857. "MIT"
  2858. ],
  2859. "authors": [
  2860. {
  2861. "name": "Brian Nesbitt",
  2862. "email": "brian@nesbot.com",
  2863. "homepage": "https://markido.com"
  2864. },
  2865. {
  2866. "name": "kylekatarnls",
  2867. "homepage": "https://github.com/kylekatarnls"
  2868. }
  2869. ],
  2870. "description": "An API extension for DateTime that supports 281 different languages.",
  2871. "homepage": "https://carbon.nesbot.com",
  2872. "keywords": [
  2873. "date",
  2874. "datetime",
  2875. "time"
  2876. ],
  2877. "support": {
  2878. "docs": "https://carbon.nesbot.com/docs",
  2879. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2880. "source": "https://github.com/briannesbitt/Carbon"
  2881. },
  2882. "funding": [
  2883. {
  2884. "url": "https://github.com/sponsors/kylekatarnls",
  2885. "type": "github"
  2886. },
  2887. {
  2888. "url": "https://opencollective.com/Carbon#sponsor",
  2889. "type": "opencollective"
  2890. },
  2891. {
  2892. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2893. "type": "tidelift"
  2894. }
  2895. ],
  2896. "time": "2023-12-08T23:47:49+00:00"
  2897. },
  2898. {
  2899. "name": "nette/schema",
  2900. "version": "v1.2.5",
  2901. "source": {
  2902. "type": "git",
  2903. "url": "https://github.com/nette/schema.git",
  2904. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  2905. },
  2906. "dist": {
  2907. "type": "zip",
  2908. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  2909. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  2910. "shasum": "",
  2911. "mirrors": [
  2912. {
  2913. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2914. "preferred": true
  2915. }
  2916. ]
  2917. },
  2918. "require": {
  2919. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2920. "php": "7.1 - 8.3"
  2921. },
  2922. "require-dev": {
  2923. "nette/tester": "^2.3 || ^2.4",
  2924. "phpstan/phpstan-nette": "^1.0",
  2925. "tracy/tracy": "^2.7"
  2926. },
  2927. "type": "library",
  2928. "extra": {
  2929. "branch-alias": {
  2930. "dev-master": "1.2-dev"
  2931. }
  2932. },
  2933. "autoload": {
  2934. "classmap": [
  2935. "src/"
  2936. ]
  2937. },
  2938. "notification-url": "https://packagist.org/downloads/",
  2939. "license": [
  2940. "BSD-3-Clause",
  2941. "GPL-2.0-only",
  2942. "GPL-3.0-only"
  2943. ],
  2944. "authors": [
  2945. {
  2946. "name": "David Grudl",
  2947. "homepage": "https://davidgrudl.com"
  2948. },
  2949. {
  2950. "name": "Nette Community",
  2951. "homepage": "https://nette.org/contributors"
  2952. }
  2953. ],
  2954. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2955. "homepage": "https://nette.org",
  2956. "keywords": [
  2957. "config",
  2958. "nette"
  2959. ],
  2960. "support": {
  2961. "issues": "https://github.com/nette/schema/issues",
  2962. "source": "https://github.com/nette/schema/tree/v1.2.5"
  2963. },
  2964. "time": "2023-10-05T20:37:59+00:00"
  2965. },
  2966. {
  2967. "name": "nette/utils",
  2968. "version": "v3.2.10",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://github.com/nette/utils.git",
  2972. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2977. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2978. "shasum": "",
  2979. "mirrors": [
  2980. {
  2981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2982. "preferred": true
  2983. }
  2984. ]
  2985. },
  2986. "require": {
  2987. "php": ">=7.2 <8.4"
  2988. },
  2989. "conflict": {
  2990. "nette/di": "<3.0.6"
  2991. },
  2992. "require-dev": {
  2993. "jetbrains/phpstorm-attributes": "dev-master",
  2994. "nette/tester": "~2.0",
  2995. "phpstan/phpstan": "^1.0",
  2996. "tracy/tracy": "^2.3"
  2997. },
  2998. "suggest": {
  2999. "ext-gd": "to use Image",
  3000. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3001. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3002. "ext-json": "to use Nette\\Utils\\Json",
  3003. "ext-mbstring": "to use Strings::lower() etc...",
  3004. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3005. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3006. },
  3007. "type": "library",
  3008. "extra": {
  3009. "branch-alias": {
  3010. "dev-master": "3.2-dev"
  3011. }
  3012. },
  3013. "autoload": {
  3014. "classmap": [
  3015. "src/"
  3016. ]
  3017. },
  3018. "notification-url": "https://packagist.org/downloads/",
  3019. "license": [
  3020. "BSD-3-Clause",
  3021. "GPL-2.0-only",
  3022. "GPL-3.0-only"
  3023. ],
  3024. "authors": [
  3025. {
  3026. "name": "David Grudl",
  3027. "homepage": "https://davidgrudl.com"
  3028. },
  3029. {
  3030. "name": "Nette Community",
  3031. "homepage": "https://nette.org/contributors"
  3032. }
  3033. ],
  3034. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3035. "homepage": "https://nette.org",
  3036. "keywords": [
  3037. "array",
  3038. "core",
  3039. "datetime",
  3040. "images",
  3041. "json",
  3042. "nette",
  3043. "paginator",
  3044. "password",
  3045. "slugify",
  3046. "string",
  3047. "unicode",
  3048. "utf-8",
  3049. "utility",
  3050. "validation"
  3051. ],
  3052. "support": {
  3053. "issues": "https://github.com/nette/utils/issues",
  3054. "source": "https://github.com/nette/utils/tree/v3.2.10"
  3055. },
  3056. "time": "2023-07-30T15:38:18+00:00"
  3057. },
  3058. {
  3059. "name": "nikic/php-parser",
  3060. "version": "v5.0.0",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/nikic/PHP-Parser.git",
  3064. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3069. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3070. "shasum": "",
  3071. "mirrors": [
  3072. {
  3073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3074. "preferred": true
  3075. }
  3076. ]
  3077. },
  3078. "require": {
  3079. "ext-ctype": "*",
  3080. "ext-json": "*",
  3081. "ext-tokenizer": "*",
  3082. "php": ">=7.4"
  3083. },
  3084. "require-dev": {
  3085. "ircmaxell/php-yacc": "^0.0.7",
  3086. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3087. },
  3088. "bin": [
  3089. "bin/php-parse"
  3090. ],
  3091. "type": "library",
  3092. "extra": {
  3093. "branch-alias": {
  3094. "dev-master": "5.0-dev"
  3095. }
  3096. },
  3097. "autoload": {
  3098. "psr-4": {
  3099. "PhpParser\\": "lib/PhpParser"
  3100. }
  3101. },
  3102. "notification-url": "https://packagist.org/downloads/",
  3103. "license": [
  3104. "BSD-3-Clause"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Nikita Popov"
  3109. }
  3110. ],
  3111. "description": "A PHP parser written in PHP",
  3112. "keywords": [
  3113. "parser",
  3114. "php"
  3115. ],
  3116. "support": {
  3117. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3118. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  3119. },
  3120. "time": "2024-01-07T17:17:35+00:00"
  3121. },
  3122. {
  3123. "name": "opis/closure",
  3124. "version": "3.6.3",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/opis/closure.git",
  3128. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3133. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3134. "shasum": "",
  3135. "mirrors": [
  3136. {
  3137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3138. "preferred": true
  3139. }
  3140. ]
  3141. },
  3142. "require": {
  3143. "php": "^5.4 || ^7.0 || ^8.0"
  3144. },
  3145. "require-dev": {
  3146. "jeremeamia/superclosure": "^2.0",
  3147. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3148. },
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "3.6.x-dev"
  3153. }
  3154. },
  3155. "autoload": {
  3156. "files": [
  3157. "functions.php"
  3158. ],
  3159. "psr-4": {
  3160. "Opis\\Closure\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "authors": [
  3168. {
  3169. "name": "Marius Sarca",
  3170. "email": "marius.sarca@gmail.com"
  3171. },
  3172. {
  3173. "name": "Sorin Sarca",
  3174. "email": "sarca_sorin@hotmail.com"
  3175. }
  3176. ],
  3177. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3178. "homepage": "https://opis.io/closure",
  3179. "keywords": [
  3180. "anonymous functions",
  3181. "closure",
  3182. "function",
  3183. "serializable",
  3184. "serialization",
  3185. "serialize"
  3186. ],
  3187. "support": {
  3188. "issues": "https://github.com/opis/closure/issues",
  3189. "source": "https://github.com/opis/closure/tree/3.6.3"
  3190. },
  3191. "time": "2022-01-27T09:35:39+00:00"
  3192. },
  3193. {
  3194. "name": "overtrue/qcloud-cos-client",
  3195. "version": "1.0.4",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  3199. "reference": "64ca47881afe4fd0961958f85674dcae71421913"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/64ca47881afe4fd0961958f85674dcae71421913",
  3204. "reference": "64ca47881afe4fd0961958f85674dcae71421913",
  3205. "shasum": "",
  3206. "mirrors": [
  3207. {
  3208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3209. "preferred": true
  3210. }
  3211. ]
  3212. },
  3213. "require": {
  3214. "ext-dom": "*",
  3215. "ext-json": "*",
  3216. "ext-libxml": "*",
  3217. "ext-simplexml": "*",
  3218. "guzzlehttp/guzzle": "^7.2",
  3219. "php": ">=7.4",
  3220. "psr/http-message": "^1.0"
  3221. },
  3222. "require-dev": {
  3223. "brainmaestro/composer-git-hooks": "^2.7",
  3224. "friendsofphp/php-cs-fixer": "^3.4.0",
  3225. "mockery/mockery": "^1.0",
  3226. "monolog/monolog": "^2.1",
  3227. "phpunit/phpunit": "^9.0"
  3228. },
  3229. "type": "library",
  3230. "extra": {
  3231. "hooks": {
  3232. "pre-commit": [
  3233. "composer test",
  3234. "composer check-style"
  3235. ],
  3236. "pre-push": [
  3237. "composer test",
  3238. "composer check-style"
  3239. ]
  3240. }
  3241. },
  3242. "autoload": {
  3243. "psr-4": {
  3244. "Overtrue\\CosClient\\": "src"
  3245. }
  3246. },
  3247. "notification-url": "https://packagist.org/downloads/",
  3248. "license": [
  3249. "MIT"
  3250. ],
  3251. "authors": [
  3252. {
  3253. "name": "overtrue",
  3254. "email": "anzhengchao@gmail.com"
  3255. }
  3256. ],
  3257. "description": "Client of QCloud.com COS",
  3258. "support": {
  3259. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  3260. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.4"
  3261. },
  3262. "funding": [
  3263. {
  3264. "url": "https://github.com/overtrue",
  3265. "type": "github"
  3266. }
  3267. ],
  3268. "time": "2022-11-07T00:18:25+00:00"
  3269. },
  3270. {
  3271. "name": "overtrue/socialite",
  3272. "version": "3.5.5",
  3273. "source": {
  3274. "type": "git",
  3275. "url": "https://github.com/overtrue/socialite.git",
  3276. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401"
  3277. },
  3278. "dist": {
  3279. "type": "zip",
  3280. "url": "https://api.github.com/repos/overtrue/socialite/zipball/3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3281. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3282. "shasum": ""
  3283. },
  3284. "require": {
  3285. "ext-json": "*",
  3286. "ext-openssl": "*",
  3287. "guzzlehttp/guzzle": "~6.0|~7.0",
  3288. "php": ">=7.4",
  3289. "symfony/psr-http-message-bridge": "^2.0"
  3290. },
  3291. "require-dev": {
  3292. "friendsofphp/php-cs-fixer": "^3.0",
  3293. "mockery/mockery": "~1.2",
  3294. "phpunit/phpunit": "~9.0"
  3295. },
  3296. "type": "library",
  3297. "autoload": {
  3298. "psr-4": {
  3299. "Overtrue\\Socialite\\": "src/"
  3300. }
  3301. },
  3302. "notification-url": "https://packagist.org/downloads/",
  3303. "license": [
  3304. "MIT"
  3305. ],
  3306. "authors": [
  3307. {
  3308. "name": "overtrue",
  3309. "email": "anzhengchao@gmail.com"
  3310. }
  3311. ],
  3312. "description": "A collection of OAuth 2 packages.",
  3313. "keywords": [
  3314. "Feishu",
  3315. "login",
  3316. "oauth",
  3317. "qcloud",
  3318. "qq",
  3319. "social",
  3320. "wechat",
  3321. "weibo"
  3322. ],
  3323. "support": {
  3324. "issues": "https://github.com/overtrue/socialite/issues",
  3325. "source": "https://github.com/overtrue/socialite/tree/3.5.5"
  3326. },
  3327. "funding": [
  3328. {
  3329. "url": "https://github.com/overtrue",
  3330. "type": "github"
  3331. }
  3332. ],
  3333. "time": "2024-06-24T09:26:56+00:00"
  3334. },
  3335. {
  3336. "name": "phpoffice/phpspreadsheet",
  3337. "version": "1.29.0",
  3338. "source": {
  3339. "type": "git",
  3340. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3341. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3342. },
  3343. "dist": {
  3344. "type": "zip",
  3345. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3346. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3347. "shasum": ""
  3348. },
  3349. "require": {
  3350. "ext-ctype": "*",
  3351. "ext-dom": "*",
  3352. "ext-fileinfo": "*",
  3353. "ext-gd": "*",
  3354. "ext-iconv": "*",
  3355. "ext-libxml": "*",
  3356. "ext-mbstring": "*",
  3357. "ext-simplexml": "*",
  3358. "ext-xml": "*",
  3359. "ext-xmlreader": "*",
  3360. "ext-xmlwriter": "*",
  3361. "ext-zip": "*",
  3362. "ext-zlib": "*",
  3363. "ezyang/htmlpurifier": "^4.15",
  3364. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3365. "markbaker/complex": "^3.0",
  3366. "markbaker/matrix": "^3.0",
  3367. "php": "^7.4 || ^8.0",
  3368. "psr/http-client": "^1.0",
  3369. "psr/http-factory": "^1.0",
  3370. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3371. },
  3372. "require-dev": {
  3373. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3374. "dompdf/dompdf": "^1.0 || ^2.0",
  3375. "friendsofphp/php-cs-fixer": "^3.2",
  3376. "mitoteam/jpgraph": "^10.3",
  3377. "mpdf/mpdf": "^8.1.1",
  3378. "phpcompatibility/php-compatibility": "^9.3",
  3379. "phpstan/phpstan": "^1.1",
  3380. "phpstan/phpstan-phpunit": "^1.0",
  3381. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  3382. "squizlabs/php_codesniffer": "^3.7",
  3383. "tecnickcom/tcpdf": "^6.5"
  3384. },
  3385. "suggest": {
  3386. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3387. "ext-intl": "PHP Internationalization Functions",
  3388. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3389. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3390. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3391. },
  3392. "type": "library",
  3393. "autoload": {
  3394. "psr-4": {
  3395. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3396. }
  3397. },
  3398. "notification-url": "https://packagist.org/downloads/",
  3399. "license": [
  3400. "MIT"
  3401. ],
  3402. "authors": [
  3403. {
  3404. "name": "Maarten Balliauw",
  3405. "homepage": "https://blog.maartenballiauw.be"
  3406. },
  3407. {
  3408. "name": "Mark Baker",
  3409. "homepage": "https://markbakeruk.net"
  3410. },
  3411. {
  3412. "name": "Franck Lefevre",
  3413. "homepage": "https://rootslabs.net"
  3414. },
  3415. {
  3416. "name": "Erik Tilt"
  3417. },
  3418. {
  3419. "name": "Adrien Crivelli"
  3420. }
  3421. ],
  3422. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3423. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3424. "keywords": [
  3425. "OpenXML",
  3426. "excel",
  3427. "gnumeric",
  3428. "ods",
  3429. "php",
  3430. "spreadsheet",
  3431. "xls",
  3432. "xlsx"
  3433. ],
  3434. "support": {
  3435. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3436. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  3437. },
  3438. "time": "2023-06-14T22:48:31+00:00"
  3439. },
  3440. {
  3441. "name": "phpoption/phpoption",
  3442. "version": "1.9.2",
  3443. "source": {
  3444. "type": "git",
  3445. "url": "https://github.com/schmittjoh/php-option.git",
  3446. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  3447. },
  3448. "dist": {
  3449. "type": "zip",
  3450. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  3451. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  3452. "shasum": "",
  3453. "mirrors": [
  3454. {
  3455. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3456. "preferred": true
  3457. }
  3458. ]
  3459. },
  3460. "require": {
  3461. "php": "^7.2.5 || ^8.0"
  3462. },
  3463. "require-dev": {
  3464. "bamarni/composer-bin-plugin": "^1.8.2",
  3465. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  3466. },
  3467. "type": "library",
  3468. "extra": {
  3469. "bamarni-bin": {
  3470. "bin-links": true,
  3471. "forward-command": true
  3472. },
  3473. "branch-alias": {
  3474. "dev-master": "1.9-dev"
  3475. }
  3476. },
  3477. "autoload": {
  3478. "psr-4": {
  3479. "PhpOption\\": "src/PhpOption/"
  3480. }
  3481. },
  3482. "notification-url": "https://packagist.org/downloads/",
  3483. "license": [
  3484. "Apache-2.0"
  3485. ],
  3486. "authors": [
  3487. {
  3488. "name": "Johannes M. Schmitt",
  3489. "email": "schmittjoh@gmail.com",
  3490. "homepage": "https://github.com/schmittjoh"
  3491. },
  3492. {
  3493. "name": "Graham Campbell",
  3494. "email": "hello@gjcampbell.co.uk",
  3495. "homepage": "https://github.com/GrahamCampbell"
  3496. }
  3497. ],
  3498. "description": "Option Type for PHP",
  3499. "keywords": [
  3500. "language",
  3501. "option",
  3502. "php",
  3503. "type"
  3504. ],
  3505. "support": {
  3506. "issues": "https://github.com/schmittjoh/php-option/issues",
  3507. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  3508. },
  3509. "funding": [
  3510. {
  3511. "url": "https://github.com/GrahamCampbell",
  3512. "type": "github"
  3513. },
  3514. {
  3515. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3516. "type": "tidelift"
  3517. }
  3518. ],
  3519. "time": "2023-11-12T21:59:55+00:00"
  3520. },
  3521. {
  3522. "name": "pimple/pimple",
  3523. "version": "v3.5.0",
  3524. "source": {
  3525. "type": "git",
  3526. "url": "https://github.com/silexphp/Pimple.git",
  3527. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  3528. },
  3529. "dist": {
  3530. "type": "zip",
  3531. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3532. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  3533. "shasum": ""
  3534. },
  3535. "require": {
  3536. "php": ">=7.2.5",
  3537. "psr/container": "^1.1 || ^2.0"
  3538. },
  3539. "require-dev": {
  3540. "symfony/phpunit-bridge": "^5.4@dev"
  3541. },
  3542. "type": "library",
  3543. "extra": {
  3544. "branch-alias": {
  3545. "dev-master": "3.4.x-dev"
  3546. }
  3547. },
  3548. "autoload": {
  3549. "psr-0": {
  3550. "Pimple": "src/"
  3551. }
  3552. },
  3553. "notification-url": "https://packagist.org/downloads/",
  3554. "license": [
  3555. "MIT"
  3556. ],
  3557. "authors": [
  3558. {
  3559. "name": "Fabien Potencier",
  3560. "email": "fabien@symfony.com"
  3561. }
  3562. ],
  3563. "description": "Pimple, a simple Dependency Injection Container",
  3564. "homepage": "https://pimple.symfony.com",
  3565. "keywords": [
  3566. "container",
  3567. "dependency injection"
  3568. ],
  3569. "support": {
  3570. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  3571. },
  3572. "time": "2021-10-28T11:13:42+00:00"
  3573. },
  3574. {
  3575. "name": "predis/predis",
  3576. "version": "v1.1.10",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/predis/predis.git",
  3580. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3585. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  3586. "shasum": "",
  3587. "mirrors": [
  3588. {
  3589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3590. "preferred": true
  3591. }
  3592. ]
  3593. },
  3594. "require": {
  3595. "php": ">=5.3.9"
  3596. },
  3597. "require-dev": {
  3598. "phpunit/phpunit": "~4.8"
  3599. },
  3600. "suggest": {
  3601. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3602. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3603. },
  3604. "type": "library",
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Predis\\": "src/"
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Daniele Alessandri",
  3617. "email": "suppakilla@gmail.com",
  3618. "homepage": "http://clorophilla.net",
  3619. "role": "Creator & Maintainer"
  3620. },
  3621. {
  3622. "name": "Till Krüss",
  3623. "homepage": "https://till.im",
  3624. "role": "Maintainer"
  3625. }
  3626. ],
  3627. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  3628. "homepage": "http://github.com/predis/predis",
  3629. "keywords": [
  3630. "nosql",
  3631. "predis",
  3632. "redis"
  3633. ],
  3634. "support": {
  3635. "issues": "https://github.com/predis/predis/issues",
  3636. "source": "https://github.com/predis/predis/tree/v1.1.10"
  3637. },
  3638. "funding": [
  3639. {
  3640. "url": "https://github.com/sponsors/tillkruss",
  3641. "type": "github"
  3642. }
  3643. ],
  3644. "time": "2022-01-05T17:46:08+00:00"
  3645. },
  3646. {
  3647. "name": "psr/cache",
  3648. "version": "1.0.1",
  3649. "source": {
  3650. "type": "git",
  3651. "url": "https://github.com/php-fig/cache.git",
  3652. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3653. },
  3654. "dist": {
  3655. "type": "zip",
  3656. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3657. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3658. "shasum": ""
  3659. },
  3660. "require": {
  3661. "php": ">=5.3.0"
  3662. },
  3663. "type": "library",
  3664. "extra": {
  3665. "branch-alias": {
  3666. "dev-master": "1.0.x-dev"
  3667. }
  3668. },
  3669. "autoload": {
  3670. "psr-4": {
  3671. "Psr\\Cache\\": "src/"
  3672. }
  3673. },
  3674. "notification-url": "https://packagist.org/downloads/",
  3675. "license": [
  3676. "MIT"
  3677. ],
  3678. "authors": [
  3679. {
  3680. "name": "PHP-FIG",
  3681. "homepage": "http://www.php-fig.org/"
  3682. }
  3683. ],
  3684. "description": "Common interface for caching libraries",
  3685. "keywords": [
  3686. "cache",
  3687. "psr",
  3688. "psr-6"
  3689. ],
  3690. "support": {
  3691. "source": "https://github.com/php-fig/cache/tree/master"
  3692. },
  3693. "time": "2016-08-06T20:24:11+00:00"
  3694. },
  3695. {
  3696. "name": "psr/clock",
  3697. "version": "1.0.0",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/php-fig/clock.git",
  3701. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3706. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3707. "shasum": "",
  3708. "mirrors": [
  3709. {
  3710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3711. "preferred": true
  3712. }
  3713. ]
  3714. },
  3715. "require": {
  3716. "php": "^7.0 || ^8.0"
  3717. },
  3718. "type": "library",
  3719. "autoload": {
  3720. "psr-4": {
  3721. "Psr\\Clock\\": "src/"
  3722. }
  3723. },
  3724. "notification-url": "https://packagist.org/downloads/",
  3725. "license": [
  3726. "MIT"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "PHP-FIG",
  3731. "homepage": "https://www.php-fig.org/"
  3732. }
  3733. ],
  3734. "description": "Common interface for reading the clock.",
  3735. "homepage": "https://github.com/php-fig/clock",
  3736. "keywords": [
  3737. "clock",
  3738. "now",
  3739. "psr",
  3740. "psr-20",
  3741. "time"
  3742. ],
  3743. "support": {
  3744. "issues": "https://github.com/php-fig/clock/issues",
  3745. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3746. },
  3747. "time": "2022-11-25T14:36:26+00:00"
  3748. },
  3749. {
  3750. "name": "psr/container",
  3751. "version": "1.1.2",
  3752. "source": {
  3753. "type": "git",
  3754. "url": "https://github.com/php-fig/container.git",
  3755. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3756. },
  3757. "dist": {
  3758. "type": "zip",
  3759. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3760. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3761. "shasum": "",
  3762. "mirrors": [
  3763. {
  3764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3765. "preferred": true
  3766. }
  3767. ]
  3768. },
  3769. "require": {
  3770. "php": ">=7.4.0"
  3771. },
  3772. "type": "library",
  3773. "autoload": {
  3774. "psr-4": {
  3775. "Psr\\Container\\": "src/"
  3776. }
  3777. },
  3778. "notification-url": "https://packagist.org/downloads/",
  3779. "license": [
  3780. "MIT"
  3781. ],
  3782. "authors": [
  3783. {
  3784. "name": "PHP-FIG",
  3785. "homepage": "https://www.php-fig.org/"
  3786. }
  3787. ],
  3788. "description": "Common Container Interface (PHP FIG PSR-11)",
  3789. "homepage": "https://github.com/php-fig/container",
  3790. "keywords": [
  3791. "PSR-11",
  3792. "container",
  3793. "container-interface",
  3794. "container-interop",
  3795. "psr"
  3796. ],
  3797. "support": {
  3798. "issues": "https://github.com/php-fig/container/issues",
  3799. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3800. },
  3801. "time": "2021-11-05T16:50:12+00:00"
  3802. },
  3803. {
  3804. "name": "psr/event-dispatcher",
  3805. "version": "1.0.0",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/php-fig/event-dispatcher.git",
  3809. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3814. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3815. "shasum": "",
  3816. "mirrors": [
  3817. {
  3818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3819. "preferred": true
  3820. }
  3821. ]
  3822. },
  3823. "require": {
  3824. "php": ">=7.2.0"
  3825. },
  3826. "type": "library",
  3827. "extra": {
  3828. "branch-alias": {
  3829. "dev-master": "1.0.x-dev"
  3830. }
  3831. },
  3832. "autoload": {
  3833. "psr-4": {
  3834. "Psr\\EventDispatcher\\": "src/"
  3835. }
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "MIT"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "PHP-FIG",
  3844. "homepage": "http://www.php-fig.org/"
  3845. }
  3846. ],
  3847. "description": "Standard interfaces for event handling.",
  3848. "keywords": [
  3849. "events",
  3850. "psr",
  3851. "psr-14"
  3852. ],
  3853. "support": {
  3854. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3855. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3856. },
  3857. "time": "2019-01-08T18:20:26+00:00"
  3858. },
  3859. {
  3860. "name": "psr/http-client",
  3861. "version": "1.0.3",
  3862. "source": {
  3863. "type": "git",
  3864. "url": "https://github.com/php-fig/http-client.git",
  3865. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3866. },
  3867. "dist": {
  3868. "type": "zip",
  3869. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3870. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3871. "shasum": "",
  3872. "mirrors": [
  3873. {
  3874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3875. "preferred": true
  3876. }
  3877. ]
  3878. },
  3879. "require": {
  3880. "php": "^7.0 || ^8.0",
  3881. "psr/http-message": "^1.0 || ^2.0"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-master": "1.0.x-dev"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "psr-4": {
  3891. "Psr\\Http\\Client\\": "src/"
  3892. }
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "PHP-FIG",
  3901. "homepage": "https://www.php-fig.org/"
  3902. }
  3903. ],
  3904. "description": "Common interface for HTTP clients",
  3905. "homepage": "https://github.com/php-fig/http-client",
  3906. "keywords": [
  3907. "http",
  3908. "http-client",
  3909. "psr",
  3910. "psr-18"
  3911. ],
  3912. "support": {
  3913. "source": "https://github.com/php-fig/http-client"
  3914. },
  3915. "time": "2023-09-23T14:17:50+00:00"
  3916. },
  3917. {
  3918. "name": "psr/http-factory",
  3919. "version": "1.0.2",
  3920. "source": {
  3921. "type": "git",
  3922. "url": "https://github.com/php-fig/http-factory.git",
  3923. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3924. },
  3925. "dist": {
  3926. "type": "zip",
  3927. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3928. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3929. "shasum": "",
  3930. "mirrors": [
  3931. {
  3932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3933. "preferred": true
  3934. }
  3935. ]
  3936. },
  3937. "require": {
  3938. "php": ">=7.0.0",
  3939. "psr/http-message": "^1.0 || ^2.0"
  3940. },
  3941. "type": "library",
  3942. "extra": {
  3943. "branch-alias": {
  3944. "dev-master": "1.0.x-dev"
  3945. }
  3946. },
  3947. "autoload": {
  3948. "psr-4": {
  3949. "Psr\\Http\\Message\\": "src/"
  3950. }
  3951. },
  3952. "notification-url": "https://packagist.org/downloads/",
  3953. "license": [
  3954. "MIT"
  3955. ],
  3956. "authors": [
  3957. {
  3958. "name": "PHP-FIG",
  3959. "homepage": "https://www.php-fig.org/"
  3960. }
  3961. ],
  3962. "description": "Common interfaces for PSR-7 HTTP message factories",
  3963. "keywords": [
  3964. "factory",
  3965. "http",
  3966. "message",
  3967. "psr",
  3968. "psr-17",
  3969. "psr-7",
  3970. "request",
  3971. "response"
  3972. ],
  3973. "support": {
  3974. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3975. },
  3976. "time": "2023-04-10T20:10:41+00:00"
  3977. },
  3978. {
  3979. "name": "psr/http-message",
  3980. "version": "1.1",
  3981. "source": {
  3982. "type": "git",
  3983. "url": "https://github.com/php-fig/http-message.git",
  3984. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3985. },
  3986. "dist": {
  3987. "type": "zip",
  3988. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3989. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3990. "shasum": "",
  3991. "mirrors": [
  3992. {
  3993. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3994. "preferred": true
  3995. }
  3996. ]
  3997. },
  3998. "require": {
  3999. "php": "^7.2 || ^8.0"
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "branch-alias": {
  4004. "dev-master": "1.1.x-dev"
  4005. }
  4006. },
  4007. "autoload": {
  4008. "psr-4": {
  4009. "Psr\\Http\\Message\\": "src/"
  4010. }
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "MIT"
  4015. ],
  4016. "authors": [
  4017. {
  4018. "name": "PHP-FIG",
  4019. "homepage": "http://www.php-fig.org/"
  4020. }
  4021. ],
  4022. "description": "Common interface for HTTP messages",
  4023. "homepage": "https://github.com/php-fig/http-message",
  4024. "keywords": [
  4025. "http",
  4026. "http-message",
  4027. "psr",
  4028. "psr-7",
  4029. "request",
  4030. "response"
  4031. ],
  4032. "support": {
  4033. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4034. },
  4035. "time": "2023-04-04T09:50:52+00:00"
  4036. },
  4037. {
  4038. "name": "psr/log",
  4039. "version": "1.1.4",
  4040. "source": {
  4041. "type": "git",
  4042. "url": "https://github.com/php-fig/log.git",
  4043. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4044. },
  4045. "dist": {
  4046. "type": "zip",
  4047. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4048. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4049. "shasum": "",
  4050. "mirrors": [
  4051. {
  4052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4053. "preferred": true
  4054. }
  4055. ]
  4056. },
  4057. "require": {
  4058. "php": ">=5.3.0"
  4059. },
  4060. "type": "library",
  4061. "extra": {
  4062. "branch-alias": {
  4063. "dev-master": "1.1.x-dev"
  4064. }
  4065. },
  4066. "autoload": {
  4067. "psr-4": {
  4068. "Psr\\Log\\": "Psr/Log/"
  4069. }
  4070. },
  4071. "notification-url": "https://packagist.org/downloads/",
  4072. "license": [
  4073. "MIT"
  4074. ],
  4075. "authors": [
  4076. {
  4077. "name": "PHP-FIG",
  4078. "homepage": "https://www.php-fig.org/"
  4079. }
  4080. ],
  4081. "description": "Common interface for logging libraries",
  4082. "homepage": "https://github.com/php-fig/log",
  4083. "keywords": [
  4084. "log",
  4085. "psr",
  4086. "psr-3"
  4087. ],
  4088. "support": {
  4089. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4090. },
  4091. "time": "2021-05-03T11:20:27+00:00"
  4092. },
  4093. {
  4094. "name": "psr/simple-cache",
  4095. "version": "1.0.1",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://github.com/php-fig/simple-cache.git",
  4099. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4100. },
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4104. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4105. "shasum": "",
  4106. "mirrors": [
  4107. {
  4108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4109. "preferred": true
  4110. }
  4111. ]
  4112. },
  4113. "require": {
  4114. "php": ">=5.3.0"
  4115. },
  4116. "type": "library",
  4117. "extra": {
  4118. "branch-alias": {
  4119. "dev-master": "1.0.x-dev"
  4120. }
  4121. },
  4122. "autoload": {
  4123. "psr-4": {
  4124. "Psr\\SimpleCache\\": "src/"
  4125. }
  4126. },
  4127. "notification-url": "https://packagist.org/downloads/",
  4128. "license": [
  4129. "MIT"
  4130. ],
  4131. "authors": [
  4132. {
  4133. "name": "PHP-FIG",
  4134. "homepage": "http://www.php-fig.org/"
  4135. }
  4136. ],
  4137. "description": "Common interfaces for simple caching",
  4138. "keywords": [
  4139. "cache",
  4140. "caching",
  4141. "psr",
  4142. "psr-16",
  4143. "simple-cache"
  4144. ],
  4145. "support": {
  4146. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4147. },
  4148. "time": "2017-10-23T01:57:42+00:00"
  4149. },
  4150. {
  4151. "name": "psy/psysh",
  4152. "version": "v0.12.0",
  4153. "source": {
  4154. "type": "git",
  4155. "url": "https://github.com/bobthecow/psysh.git",
  4156. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  4157. },
  4158. "dist": {
  4159. "type": "zip",
  4160. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4161. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4162. "shasum": "",
  4163. "mirrors": [
  4164. {
  4165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4166. "preferred": true
  4167. }
  4168. ]
  4169. },
  4170. "require": {
  4171. "ext-json": "*",
  4172. "ext-tokenizer": "*",
  4173. "nikic/php-parser": "^5.0 || ^4.0",
  4174. "php": "^8.0 || ^7.4",
  4175. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4176. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4177. },
  4178. "conflict": {
  4179. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4180. },
  4181. "require-dev": {
  4182. "bamarni/composer-bin-plugin": "^1.2"
  4183. },
  4184. "suggest": {
  4185. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4186. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4187. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4188. },
  4189. "bin": [
  4190. "bin/psysh"
  4191. ],
  4192. "type": "library",
  4193. "extra": {
  4194. "branch-alias": {
  4195. "dev-main": "0.12.x-dev"
  4196. },
  4197. "bamarni-bin": {
  4198. "bin-links": false,
  4199. "forward-command": false
  4200. }
  4201. },
  4202. "autoload": {
  4203. "files": [
  4204. "src/functions.php"
  4205. ],
  4206. "psr-4": {
  4207. "Psy\\": "src/"
  4208. }
  4209. },
  4210. "notification-url": "https://packagist.org/downloads/",
  4211. "license": [
  4212. "MIT"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "Justin Hileman",
  4217. "email": "justin@justinhileman.info",
  4218. "homepage": "http://justinhileman.com"
  4219. }
  4220. ],
  4221. "description": "An interactive shell for modern PHP.",
  4222. "homepage": "http://psysh.org",
  4223. "keywords": [
  4224. "REPL",
  4225. "console",
  4226. "interactive",
  4227. "shell"
  4228. ],
  4229. "support": {
  4230. "issues": "https://github.com/bobthecow/psysh/issues",
  4231. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  4232. },
  4233. "time": "2023-12-20T15:28:09+00:00"
  4234. },
  4235. {
  4236. "name": "ralouphie/getallheaders",
  4237. "version": "3.0.3",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://github.com/ralouphie/getallheaders.git",
  4241. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4246. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4247. "shasum": "",
  4248. "mirrors": [
  4249. {
  4250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4251. "preferred": true
  4252. }
  4253. ]
  4254. },
  4255. "require": {
  4256. "php": ">=5.6"
  4257. },
  4258. "require-dev": {
  4259. "php-coveralls/php-coveralls": "^2.1",
  4260. "phpunit/phpunit": "^5 || ^6.5"
  4261. },
  4262. "type": "library",
  4263. "autoload": {
  4264. "files": [
  4265. "src/getallheaders.php"
  4266. ]
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "MIT"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "Ralph Khattar",
  4275. "email": "ralph.khattar@gmail.com"
  4276. }
  4277. ],
  4278. "description": "A polyfill for getallheaders.",
  4279. "support": {
  4280. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4281. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4282. },
  4283. "time": "2019-03-08T08:55:37+00:00"
  4284. },
  4285. {
  4286. "name": "ramsey/collection",
  4287. "version": "1.3.0",
  4288. "source": {
  4289. "type": "git",
  4290. "url": "https://github.com/ramsey/collection.git",
  4291. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4292. },
  4293. "dist": {
  4294. "type": "zip",
  4295. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4296. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4297. "shasum": "",
  4298. "mirrors": [
  4299. {
  4300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4301. "preferred": true
  4302. }
  4303. ]
  4304. },
  4305. "require": {
  4306. "php": "^7.4 || ^8.0",
  4307. "symfony/polyfill-php81": "^1.23"
  4308. },
  4309. "require-dev": {
  4310. "captainhook/plugin-composer": "^5.3",
  4311. "ergebnis/composer-normalize": "^2.28.3",
  4312. "fakerphp/faker": "^1.21",
  4313. "hamcrest/hamcrest-php": "^2.0",
  4314. "jangregor/phpstan-prophecy": "^1.0",
  4315. "mockery/mockery": "^1.5",
  4316. "php-parallel-lint/php-console-highlighter": "^1.0",
  4317. "php-parallel-lint/php-parallel-lint": "^1.3",
  4318. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4319. "phpspec/prophecy-phpunit": "^2.0",
  4320. "phpstan/extension-installer": "^1.2",
  4321. "phpstan/phpstan": "^1.9",
  4322. "phpstan/phpstan-mockery": "^1.1",
  4323. "phpstan/phpstan-phpunit": "^1.3",
  4324. "phpunit/phpunit": "^9.5",
  4325. "psalm/plugin-mockery": "^1.1",
  4326. "psalm/plugin-phpunit": "^0.18.4",
  4327. "ramsey/coding-standard": "^2.0.3",
  4328. "ramsey/conventional-commits": "^1.3",
  4329. "vimeo/psalm": "^5.4"
  4330. },
  4331. "type": "library",
  4332. "extra": {
  4333. "captainhook": {
  4334. "force-install": true
  4335. },
  4336. "ramsey/conventional-commits": {
  4337. "configFile": "conventional-commits.json"
  4338. }
  4339. },
  4340. "autoload": {
  4341. "psr-4": {
  4342. "Ramsey\\Collection\\": "src/"
  4343. }
  4344. },
  4345. "notification-url": "https://packagist.org/downloads/",
  4346. "license": [
  4347. "MIT"
  4348. ],
  4349. "authors": [
  4350. {
  4351. "name": "Ben Ramsey",
  4352. "email": "ben@benramsey.com",
  4353. "homepage": "https://benramsey.com"
  4354. }
  4355. ],
  4356. "description": "A PHP library for representing and manipulating collections.",
  4357. "keywords": [
  4358. "array",
  4359. "collection",
  4360. "hash",
  4361. "map",
  4362. "queue",
  4363. "set"
  4364. ],
  4365. "support": {
  4366. "issues": "https://github.com/ramsey/collection/issues",
  4367. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4368. },
  4369. "funding": [
  4370. {
  4371. "url": "https://github.com/ramsey",
  4372. "type": "github"
  4373. },
  4374. {
  4375. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4376. "type": "tidelift"
  4377. }
  4378. ],
  4379. "time": "2022-12-27T19:12:24+00:00"
  4380. },
  4381. {
  4382. "name": "ramsey/uuid",
  4383. "version": "4.2.3",
  4384. "source": {
  4385. "type": "git",
  4386. "url": "https://github.com/ramsey/uuid.git",
  4387. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  4388. },
  4389. "dist": {
  4390. "type": "zip",
  4391. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4392. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  4393. "shasum": "",
  4394. "mirrors": [
  4395. {
  4396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4397. "preferred": true
  4398. }
  4399. ]
  4400. },
  4401. "require": {
  4402. "brick/math": "^0.8 || ^0.9",
  4403. "ext-json": "*",
  4404. "php": "^7.2 || ^8.0",
  4405. "ramsey/collection": "^1.0",
  4406. "symfony/polyfill-ctype": "^1.8",
  4407. "symfony/polyfill-php80": "^1.14"
  4408. },
  4409. "replace": {
  4410. "rhumsaa/uuid": "self.version"
  4411. },
  4412. "require-dev": {
  4413. "captainhook/captainhook": "^5.10",
  4414. "captainhook/plugin-composer": "^5.3",
  4415. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4416. "doctrine/annotations": "^1.8",
  4417. "ergebnis/composer-normalize": "^2.15",
  4418. "mockery/mockery": "^1.3",
  4419. "moontoast/math": "^1.1",
  4420. "paragonie/random-lib": "^2",
  4421. "php-mock/php-mock": "^2.2",
  4422. "php-mock/php-mock-mockery": "^1.3",
  4423. "php-parallel-lint/php-parallel-lint": "^1.1",
  4424. "phpbench/phpbench": "^1.0",
  4425. "phpstan/extension-installer": "^1.0",
  4426. "phpstan/phpstan": "^0.12",
  4427. "phpstan/phpstan-mockery": "^0.12",
  4428. "phpstan/phpstan-phpunit": "^0.12",
  4429. "phpunit/phpunit": "^8.5 || ^9",
  4430. "slevomat/coding-standard": "^7.0",
  4431. "squizlabs/php_codesniffer": "^3.5",
  4432. "vimeo/psalm": "^4.9"
  4433. },
  4434. "suggest": {
  4435. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4436. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4437. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4438. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4439. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4440. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4441. },
  4442. "type": "library",
  4443. "extra": {
  4444. "branch-alias": {
  4445. "dev-main": "4.x-dev"
  4446. },
  4447. "captainhook": {
  4448. "force-install": true
  4449. }
  4450. },
  4451. "autoload": {
  4452. "files": [
  4453. "src/functions.php"
  4454. ],
  4455. "psr-4": {
  4456. "Ramsey\\Uuid\\": "src/"
  4457. }
  4458. },
  4459. "notification-url": "https://packagist.org/downloads/",
  4460. "license": [
  4461. "MIT"
  4462. ],
  4463. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4464. "keywords": [
  4465. "guid",
  4466. "identifier",
  4467. "uuid"
  4468. ],
  4469. "support": {
  4470. "issues": "https://github.com/ramsey/uuid/issues",
  4471. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  4472. },
  4473. "funding": [
  4474. {
  4475. "url": "https://github.com/ramsey",
  4476. "type": "github"
  4477. },
  4478. {
  4479. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4480. "type": "tidelift"
  4481. }
  4482. ],
  4483. "time": "2021-09-25T23:10:38+00:00"
  4484. },
  4485. {
  4486. "name": "swiftmailer/swiftmailer",
  4487. "version": "v6.3.0",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4491. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4496. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4497. "shasum": ""
  4498. },
  4499. "require": {
  4500. "egulias/email-validator": "^2.0|^3.1",
  4501. "php": ">=7.0.0",
  4502. "symfony/polyfill-iconv": "^1.0",
  4503. "symfony/polyfill-intl-idn": "^1.10",
  4504. "symfony/polyfill-mbstring": "^1.0"
  4505. },
  4506. "require-dev": {
  4507. "mockery/mockery": "^1.0",
  4508. "symfony/phpunit-bridge": "^4.4|^5.4"
  4509. },
  4510. "suggest": {
  4511. "ext-intl": "Needed to support internationalized email addresses"
  4512. },
  4513. "type": "library",
  4514. "extra": {
  4515. "branch-alias": {
  4516. "dev-master": "6.2-dev"
  4517. }
  4518. },
  4519. "autoload": {
  4520. "files": [
  4521. "lib/swift_required.php"
  4522. ]
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "authors": [
  4529. {
  4530. "name": "Chris Corbyn"
  4531. },
  4532. {
  4533. "name": "Fabien Potencier",
  4534. "email": "fabien@symfony.com"
  4535. }
  4536. ],
  4537. "description": "Swiftmailer, free feature-rich PHP mailer",
  4538. "homepage": "https://swiftmailer.symfony.com",
  4539. "keywords": [
  4540. "email",
  4541. "mail",
  4542. "mailer"
  4543. ],
  4544. "support": {
  4545. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4546. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4547. },
  4548. "funding": [
  4549. {
  4550. "url": "https://github.com/fabpot",
  4551. "type": "github"
  4552. },
  4553. {
  4554. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4555. "type": "tidelift"
  4556. }
  4557. ],
  4558. "abandoned": "symfony/mailer",
  4559. "time": "2021-10-18T15:26:12+00:00"
  4560. },
  4561. {
  4562. "name": "symfony/cache",
  4563. "version": "v5.4.42",
  4564. "source": {
  4565. "type": "git",
  4566. "url": "https://github.com/symfony/cache.git",
  4567. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e"
  4568. },
  4569. "dist": {
  4570. "type": "zip",
  4571. "url": "https://api.github.com/repos/symfony/cache/zipball/6f5f750692bd5a212e01a4f1945fd856bceef89e",
  4572. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e",
  4573. "shasum": ""
  4574. },
  4575. "require": {
  4576. "php": ">=7.2.5",
  4577. "psr/cache": "^1.0|^2.0",
  4578. "psr/log": "^1.1|^2|^3",
  4579. "symfony/cache-contracts": "^1.1.7|^2",
  4580. "symfony/deprecation-contracts": "^2.1|^3",
  4581. "symfony/polyfill-php73": "^1.9",
  4582. "symfony/polyfill-php80": "^1.16",
  4583. "symfony/service-contracts": "^1.1|^2|^3",
  4584. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4585. },
  4586. "conflict": {
  4587. "doctrine/dbal": "<2.13.1",
  4588. "symfony/dependency-injection": "<4.4",
  4589. "symfony/http-kernel": "<4.4",
  4590. "symfony/var-dumper": "<4.4"
  4591. },
  4592. "provide": {
  4593. "psr/cache-implementation": "1.0|2.0",
  4594. "psr/simple-cache-implementation": "1.0|2.0",
  4595. "symfony/cache-implementation": "1.0|2.0"
  4596. },
  4597. "require-dev": {
  4598. "cache/integration-tests": "dev-master",
  4599. "doctrine/cache": "^1.6|^2.0",
  4600. "doctrine/dbal": "^2.13.1|^3|^4",
  4601. "predis/predis": "^1.1|^2.0",
  4602. "psr/simple-cache": "^1.0|^2.0",
  4603. "symfony/config": "^4.4|^5.0|^6.0",
  4604. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4605. "symfony/filesystem": "^4.4|^5.0|^6.0",
  4606. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  4607. "symfony/messenger": "^4.4|^5.0|^6.0",
  4608. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4609. },
  4610. "type": "library",
  4611. "autoload": {
  4612. "psr-4": {
  4613. "Symfony\\Component\\Cache\\": ""
  4614. },
  4615. "exclude-from-classmap": [
  4616. "/Tests/"
  4617. ]
  4618. },
  4619. "notification-url": "https://packagist.org/downloads/",
  4620. "license": [
  4621. "MIT"
  4622. ],
  4623. "authors": [
  4624. {
  4625. "name": "Nicolas Grekas",
  4626. "email": "p@tchwork.com"
  4627. },
  4628. {
  4629. "name": "Symfony Community",
  4630. "homepage": "https://symfony.com/contributors"
  4631. }
  4632. ],
  4633. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4634. "homepage": "https://symfony.com",
  4635. "keywords": [
  4636. "caching",
  4637. "psr6"
  4638. ],
  4639. "support": {
  4640. "source": "https://github.com/symfony/cache/tree/v5.4.42"
  4641. },
  4642. "funding": [
  4643. {
  4644. "url": "https://symfony.com/sponsor",
  4645. "type": "custom"
  4646. },
  4647. {
  4648. "url": "https://github.com/fabpot",
  4649. "type": "github"
  4650. },
  4651. {
  4652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4653. "type": "tidelift"
  4654. }
  4655. ],
  4656. "time": "2024-07-10T06:02:18+00:00"
  4657. },
  4658. {
  4659. "name": "symfony/cache-contracts",
  4660. "version": "v2.5.3",
  4661. "source": {
  4662. "type": "git",
  4663. "url": "https://github.com/symfony/cache-contracts.git",
  4664. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463"
  4665. },
  4666. "dist": {
  4667. "type": "zip",
  4668. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/fee6db04d913094e2fb55ff8e7db5685a8134463",
  4669. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463",
  4670. "shasum": ""
  4671. },
  4672. "require": {
  4673. "php": ">=7.2.5",
  4674. "psr/cache": "^1.0|^2.0|^3.0"
  4675. },
  4676. "suggest": {
  4677. "symfony/cache-implementation": ""
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-main": "2.5-dev"
  4683. },
  4684. "thanks": {
  4685. "name": "symfony/contracts",
  4686. "url": "https://github.com/symfony/contracts"
  4687. }
  4688. },
  4689. "autoload": {
  4690. "psr-4": {
  4691. "Symfony\\Contracts\\Cache\\": ""
  4692. }
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "authors": [
  4699. {
  4700. "name": "Nicolas Grekas",
  4701. "email": "p@tchwork.com"
  4702. },
  4703. {
  4704. "name": "Symfony Community",
  4705. "homepage": "https://symfony.com/contributors"
  4706. }
  4707. ],
  4708. "description": "Generic abstractions related to caching",
  4709. "homepage": "https://symfony.com",
  4710. "keywords": [
  4711. "abstractions",
  4712. "contracts",
  4713. "decoupling",
  4714. "interfaces",
  4715. "interoperability",
  4716. "standards"
  4717. ],
  4718. "support": {
  4719. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.3"
  4720. },
  4721. "funding": [
  4722. {
  4723. "url": "https://symfony.com/sponsor",
  4724. "type": "custom"
  4725. },
  4726. {
  4727. "url": "https://github.com/fabpot",
  4728. "type": "github"
  4729. },
  4730. {
  4731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4732. "type": "tidelift"
  4733. }
  4734. ],
  4735. "time": "2024-01-23T13:51:25+00:00"
  4736. },
  4737. {
  4738. "name": "symfony/console",
  4739. "version": "v5.4.34",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://github.com/symfony/console.git",
  4743. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c",
  4748. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c",
  4749. "shasum": "",
  4750. "mirrors": [
  4751. {
  4752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4753. "preferred": true
  4754. }
  4755. ]
  4756. },
  4757. "require": {
  4758. "php": ">=7.2.5",
  4759. "symfony/deprecation-contracts": "^2.1|^3",
  4760. "symfony/polyfill-mbstring": "~1.0",
  4761. "symfony/polyfill-php73": "^1.9",
  4762. "symfony/polyfill-php80": "^1.16",
  4763. "symfony/service-contracts": "^1.1|^2|^3",
  4764. "symfony/string": "^5.1|^6.0"
  4765. },
  4766. "conflict": {
  4767. "psr/log": ">=3",
  4768. "symfony/dependency-injection": "<4.4",
  4769. "symfony/dotenv": "<5.1",
  4770. "symfony/event-dispatcher": "<4.4",
  4771. "symfony/lock": "<4.4",
  4772. "symfony/process": "<4.4"
  4773. },
  4774. "provide": {
  4775. "psr/log-implementation": "1.0|2.0"
  4776. },
  4777. "require-dev": {
  4778. "psr/log": "^1|^2",
  4779. "symfony/config": "^4.4|^5.0|^6.0",
  4780. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4781. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4782. "symfony/lock": "^4.4|^5.0|^6.0",
  4783. "symfony/process": "^4.4|^5.0|^6.0",
  4784. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4785. },
  4786. "suggest": {
  4787. "psr/log": "For using the console logger",
  4788. "symfony/event-dispatcher": "",
  4789. "symfony/lock": "",
  4790. "symfony/process": ""
  4791. },
  4792. "type": "library",
  4793. "autoload": {
  4794. "psr-4": {
  4795. "Symfony\\Component\\Console\\": ""
  4796. },
  4797. "exclude-from-classmap": [
  4798. "/Tests/"
  4799. ]
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Fabien Potencier",
  4808. "email": "fabien@symfony.com"
  4809. },
  4810. {
  4811. "name": "Symfony Community",
  4812. "homepage": "https://symfony.com/contributors"
  4813. }
  4814. ],
  4815. "description": "Eases the creation of beautiful and testable command line interfaces",
  4816. "homepage": "https://symfony.com",
  4817. "keywords": [
  4818. "cli",
  4819. "command-line",
  4820. "console",
  4821. "terminal"
  4822. ],
  4823. "support": {
  4824. "source": "https://github.com/symfony/console/tree/v5.4.34"
  4825. },
  4826. "funding": [
  4827. {
  4828. "url": "https://symfony.com/sponsor",
  4829. "type": "custom"
  4830. },
  4831. {
  4832. "url": "https://github.com/fabpot",
  4833. "type": "github"
  4834. },
  4835. {
  4836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4837. "type": "tidelift"
  4838. }
  4839. ],
  4840. "time": "2023-12-08T13:33:03+00:00"
  4841. },
  4842. {
  4843. "name": "symfony/css-selector",
  4844. "version": "v5.4.26",
  4845. "source": {
  4846. "type": "git",
  4847. "url": "https://github.com/symfony/css-selector.git",
  4848. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  4849. },
  4850. "dist": {
  4851. "type": "zip",
  4852. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  4853. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  4854. "shasum": "",
  4855. "mirrors": [
  4856. {
  4857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4858. "preferred": true
  4859. }
  4860. ]
  4861. },
  4862. "require": {
  4863. "php": ">=7.2.5",
  4864. "symfony/polyfill-php80": "^1.16"
  4865. },
  4866. "type": "library",
  4867. "autoload": {
  4868. "psr-4": {
  4869. "Symfony\\Component\\CssSelector\\": ""
  4870. },
  4871. "exclude-from-classmap": [
  4872. "/Tests/"
  4873. ]
  4874. },
  4875. "notification-url": "https://packagist.org/downloads/",
  4876. "license": [
  4877. "MIT"
  4878. ],
  4879. "authors": [
  4880. {
  4881. "name": "Fabien Potencier",
  4882. "email": "fabien@symfony.com"
  4883. },
  4884. {
  4885. "name": "Jean-François Simon",
  4886. "email": "jeanfrancois.simon@sensiolabs.com"
  4887. },
  4888. {
  4889. "name": "Symfony Community",
  4890. "homepage": "https://symfony.com/contributors"
  4891. }
  4892. ],
  4893. "description": "Converts CSS selectors to XPath expressions",
  4894. "homepage": "https://symfony.com",
  4895. "support": {
  4896. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  4897. },
  4898. "funding": [
  4899. {
  4900. "url": "https://symfony.com/sponsor",
  4901. "type": "custom"
  4902. },
  4903. {
  4904. "url": "https://github.com/fabpot",
  4905. "type": "github"
  4906. },
  4907. {
  4908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4909. "type": "tidelift"
  4910. }
  4911. ],
  4912. "time": "2023-07-07T06:10:25+00:00"
  4913. },
  4914. {
  4915. "name": "symfony/deprecation-contracts",
  4916. "version": "v2.5.2",
  4917. "source": {
  4918. "type": "git",
  4919. "url": "https://github.com/symfony/deprecation-contracts.git",
  4920. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  4921. },
  4922. "dist": {
  4923. "type": "zip",
  4924. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4925. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4926. "shasum": "",
  4927. "mirrors": [
  4928. {
  4929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4930. "preferred": true
  4931. }
  4932. ]
  4933. },
  4934. "require": {
  4935. "php": ">=7.1"
  4936. },
  4937. "type": "library",
  4938. "extra": {
  4939. "branch-alias": {
  4940. "dev-main": "2.5-dev"
  4941. },
  4942. "thanks": {
  4943. "name": "symfony/contracts",
  4944. "url": "https://github.com/symfony/contracts"
  4945. }
  4946. },
  4947. "autoload": {
  4948. "files": [
  4949. "function.php"
  4950. ]
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "MIT"
  4955. ],
  4956. "authors": [
  4957. {
  4958. "name": "Nicolas Grekas",
  4959. "email": "p@tchwork.com"
  4960. },
  4961. {
  4962. "name": "Symfony Community",
  4963. "homepage": "https://symfony.com/contributors"
  4964. }
  4965. ],
  4966. "description": "A generic function and convention to trigger deprecation notices",
  4967. "homepage": "https://symfony.com",
  4968. "support": {
  4969. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  4970. },
  4971. "funding": [
  4972. {
  4973. "url": "https://symfony.com/sponsor",
  4974. "type": "custom"
  4975. },
  4976. {
  4977. "url": "https://github.com/fabpot",
  4978. "type": "github"
  4979. },
  4980. {
  4981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4982. "type": "tidelift"
  4983. }
  4984. ],
  4985. "time": "2022-01-02T09:53:40+00:00"
  4986. },
  4987. {
  4988. "name": "symfony/error-handler",
  4989. "version": "v5.4.29",
  4990. "source": {
  4991. "type": "git",
  4992. "url": "https://github.com/symfony/error-handler.git",
  4993. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  4994. },
  4995. "dist": {
  4996. "type": "zip",
  4997. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  4998. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  4999. "shasum": "",
  5000. "mirrors": [
  5001. {
  5002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5003. "preferred": true
  5004. }
  5005. ]
  5006. },
  5007. "require": {
  5008. "php": ">=7.2.5",
  5009. "psr/log": "^1|^2|^3",
  5010. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5011. },
  5012. "require-dev": {
  5013. "symfony/deprecation-contracts": "^2.1|^3",
  5014. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5015. "symfony/serializer": "^4.4|^5.0|^6.0"
  5016. },
  5017. "bin": [
  5018. "Resources/bin/patch-type-declarations"
  5019. ],
  5020. "type": "library",
  5021. "autoload": {
  5022. "psr-4": {
  5023. "Symfony\\Component\\ErrorHandler\\": ""
  5024. },
  5025. "exclude-from-classmap": [
  5026. "/Tests/"
  5027. ]
  5028. },
  5029. "notification-url": "https://packagist.org/downloads/",
  5030. "license": [
  5031. "MIT"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "Fabien Potencier",
  5036. "email": "fabien@symfony.com"
  5037. },
  5038. {
  5039. "name": "Symfony Community",
  5040. "homepage": "https://symfony.com/contributors"
  5041. }
  5042. ],
  5043. "description": "Provides tools to manage errors and ease debugging PHP code",
  5044. "homepage": "https://symfony.com",
  5045. "support": {
  5046. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  5047. },
  5048. "funding": [
  5049. {
  5050. "url": "https://symfony.com/sponsor",
  5051. "type": "custom"
  5052. },
  5053. {
  5054. "url": "https://github.com/fabpot",
  5055. "type": "github"
  5056. },
  5057. {
  5058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5059. "type": "tidelift"
  5060. }
  5061. ],
  5062. "time": "2023-09-06T21:54:06+00:00"
  5063. },
  5064. {
  5065. "name": "symfony/event-dispatcher",
  5066. "version": "v5.4.34",
  5067. "source": {
  5068. "type": "git",
  5069. "url": "https://github.com/symfony/event-dispatcher.git",
  5070. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3"
  5071. },
  5072. "dist": {
  5073. "type": "zip",
  5074. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5075. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5076. "shasum": "",
  5077. "mirrors": [
  5078. {
  5079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5080. "preferred": true
  5081. }
  5082. ]
  5083. },
  5084. "require": {
  5085. "php": ">=7.2.5",
  5086. "symfony/deprecation-contracts": "^2.1|^3",
  5087. "symfony/event-dispatcher-contracts": "^2|^3",
  5088. "symfony/polyfill-php80": "^1.16"
  5089. },
  5090. "conflict": {
  5091. "symfony/dependency-injection": "<4.4"
  5092. },
  5093. "provide": {
  5094. "psr/event-dispatcher-implementation": "1.0",
  5095. "symfony/event-dispatcher-implementation": "2.0"
  5096. },
  5097. "require-dev": {
  5098. "psr/log": "^1|^2|^3",
  5099. "symfony/config": "^4.4|^5.0|^6.0",
  5100. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5101. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5102. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5103. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5104. "symfony/service-contracts": "^1.1|^2|^3",
  5105. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5106. },
  5107. "suggest": {
  5108. "symfony/dependency-injection": "",
  5109. "symfony/http-kernel": ""
  5110. },
  5111. "type": "library",
  5112. "autoload": {
  5113. "psr-4": {
  5114. "Symfony\\Component\\EventDispatcher\\": ""
  5115. },
  5116. "exclude-from-classmap": [
  5117. "/Tests/"
  5118. ]
  5119. },
  5120. "notification-url": "https://packagist.org/downloads/",
  5121. "license": [
  5122. "MIT"
  5123. ],
  5124. "authors": [
  5125. {
  5126. "name": "Fabien Potencier",
  5127. "email": "fabien@symfony.com"
  5128. },
  5129. {
  5130. "name": "Symfony Community",
  5131. "homepage": "https://symfony.com/contributors"
  5132. }
  5133. ],
  5134. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5135. "homepage": "https://symfony.com",
  5136. "support": {
  5137. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34"
  5138. },
  5139. "funding": [
  5140. {
  5141. "url": "https://symfony.com/sponsor",
  5142. "type": "custom"
  5143. },
  5144. {
  5145. "url": "https://github.com/fabpot",
  5146. "type": "github"
  5147. },
  5148. {
  5149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5150. "type": "tidelift"
  5151. }
  5152. ],
  5153. "time": "2023-12-27T21:12:56+00:00"
  5154. },
  5155. {
  5156. "name": "symfony/event-dispatcher-contracts",
  5157. "version": "v2.5.2",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5161. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5166. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5167. "shasum": "",
  5168. "mirrors": [
  5169. {
  5170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5171. "preferred": true
  5172. }
  5173. ]
  5174. },
  5175. "require": {
  5176. "php": ">=7.2.5",
  5177. "psr/event-dispatcher": "^1"
  5178. },
  5179. "suggest": {
  5180. "symfony/event-dispatcher-implementation": ""
  5181. },
  5182. "type": "library",
  5183. "extra": {
  5184. "branch-alias": {
  5185. "dev-main": "2.5-dev"
  5186. },
  5187. "thanks": {
  5188. "name": "symfony/contracts",
  5189. "url": "https://github.com/symfony/contracts"
  5190. }
  5191. },
  5192. "autoload": {
  5193. "psr-4": {
  5194. "Symfony\\Contracts\\EventDispatcher\\": ""
  5195. }
  5196. },
  5197. "notification-url": "https://packagist.org/downloads/",
  5198. "license": [
  5199. "MIT"
  5200. ],
  5201. "authors": [
  5202. {
  5203. "name": "Nicolas Grekas",
  5204. "email": "p@tchwork.com"
  5205. },
  5206. {
  5207. "name": "Symfony Community",
  5208. "homepage": "https://symfony.com/contributors"
  5209. }
  5210. ],
  5211. "description": "Generic abstractions related to dispatching event",
  5212. "homepage": "https://symfony.com",
  5213. "keywords": [
  5214. "abstractions",
  5215. "contracts",
  5216. "decoupling",
  5217. "interfaces",
  5218. "interoperability",
  5219. "standards"
  5220. ],
  5221. "support": {
  5222. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5223. },
  5224. "funding": [
  5225. {
  5226. "url": "https://symfony.com/sponsor",
  5227. "type": "custom"
  5228. },
  5229. {
  5230. "url": "https://github.com/fabpot",
  5231. "type": "github"
  5232. },
  5233. {
  5234. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5235. "type": "tidelift"
  5236. }
  5237. ],
  5238. "time": "2022-01-02T09:53:40+00:00"
  5239. },
  5240. {
  5241. "name": "symfony/finder",
  5242. "version": "v5.4.27",
  5243. "source": {
  5244. "type": "git",
  5245. "url": "https://github.com/symfony/finder.git",
  5246. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  5247. },
  5248. "dist": {
  5249. "type": "zip",
  5250. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5251. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5252. "shasum": "",
  5253. "mirrors": [
  5254. {
  5255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5256. "preferred": true
  5257. }
  5258. ]
  5259. },
  5260. "require": {
  5261. "php": ">=7.2.5",
  5262. "symfony/deprecation-contracts": "^2.1|^3",
  5263. "symfony/polyfill-php80": "^1.16"
  5264. },
  5265. "type": "library",
  5266. "autoload": {
  5267. "psr-4": {
  5268. "Symfony\\Component\\Finder\\": ""
  5269. },
  5270. "exclude-from-classmap": [
  5271. "/Tests/"
  5272. ]
  5273. },
  5274. "notification-url": "https://packagist.org/downloads/",
  5275. "license": [
  5276. "MIT"
  5277. ],
  5278. "authors": [
  5279. {
  5280. "name": "Fabien Potencier",
  5281. "email": "fabien@symfony.com"
  5282. },
  5283. {
  5284. "name": "Symfony Community",
  5285. "homepage": "https://symfony.com/contributors"
  5286. }
  5287. ],
  5288. "description": "Finds files and directories via an intuitive fluent interface",
  5289. "homepage": "https://symfony.com",
  5290. "support": {
  5291. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  5292. },
  5293. "funding": [
  5294. {
  5295. "url": "https://symfony.com/sponsor",
  5296. "type": "custom"
  5297. },
  5298. {
  5299. "url": "https://github.com/fabpot",
  5300. "type": "github"
  5301. },
  5302. {
  5303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5304. "type": "tidelift"
  5305. }
  5306. ],
  5307. "time": "2023-07-31T08:02:31+00:00"
  5308. },
  5309. {
  5310. "name": "symfony/http-foundation",
  5311. "version": "v5.4.34",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://github.com/symfony/http-foundation.git",
  5315. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5320. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5321. "shasum": "",
  5322. "mirrors": [
  5323. {
  5324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5325. "preferred": true
  5326. }
  5327. ]
  5328. },
  5329. "require": {
  5330. "php": ">=7.2.5",
  5331. "symfony/deprecation-contracts": "^2.1|^3",
  5332. "symfony/polyfill-mbstring": "~1.1",
  5333. "symfony/polyfill-php80": "^1.16"
  5334. },
  5335. "require-dev": {
  5336. "predis/predis": "~1.0",
  5337. "symfony/cache": "^4.4|^5.0|^6.0",
  5338. "symfony/dependency-injection": "^5.4|^6.0",
  5339. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5340. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5341. "symfony/mime": "^4.4|^5.0|^6.0",
  5342. "symfony/rate-limiter": "^5.2|^6.0"
  5343. },
  5344. "suggest": {
  5345. "symfony/mime": "To use the file extension guesser"
  5346. },
  5347. "type": "library",
  5348. "autoload": {
  5349. "psr-4": {
  5350. "Symfony\\Component\\HttpFoundation\\": ""
  5351. },
  5352. "exclude-from-classmap": [
  5353. "/Tests/"
  5354. ]
  5355. },
  5356. "notification-url": "https://packagist.org/downloads/",
  5357. "license": [
  5358. "MIT"
  5359. ],
  5360. "authors": [
  5361. {
  5362. "name": "Fabien Potencier",
  5363. "email": "fabien@symfony.com"
  5364. },
  5365. {
  5366. "name": "Symfony Community",
  5367. "homepage": "https://symfony.com/contributors"
  5368. }
  5369. ],
  5370. "description": "Defines an object-oriented layer for the HTTP specification",
  5371. "homepage": "https://symfony.com",
  5372. "support": {
  5373. "source": "https://github.com/symfony/http-foundation/tree/v5.4.34"
  5374. },
  5375. "funding": [
  5376. {
  5377. "url": "https://symfony.com/sponsor",
  5378. "type": "custom"
  5379. },
  5380. {
  5381. "url": "https://github.com/fabpot",
  5382. "type": "github"
  5383. },
  5384. {
  5385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5386. "type": "tidelift"
  5387. }
  5388. ],
  5389. "time": "2023-12-27T11:45:35+00:00"
  5390. },
  5391. {
  5392. "name": "symfony/http-kernel",
  5393. "version": "v5.4.34",
  5394. "source": {
  5395. "type": "git",
  5396. "url": "https://github.com/symfony/http-kernel.git",
  5397. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b"
  5398. },
  5399. "dist": {
  5400. "type": "zip",
  5401. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5402. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  5403. "shasum": "",
  5404. "mirrors": [
  5405. {
  5406. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5407. "preferred": true
  5408. }
  5409. ]
  5410. },
  5411. "require": {
  5412. "php": ">=7.2.5",
  5413. "psr/log": "^1|^2",
  5414. "symfony/deprecation-contracts": "^2.1|^3",
  5415. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5416. "symfony/event-dispatcher": "^5.0|^6.0",
  5417. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5418. "symfony/polyfill-ctype": "^1.8",
  5419. "symfony/polyfill-php73": "^1.9",
  5420. "symfony/polyfill-php80": "^1.16"
  5421. },
  5422. "conflict": {
  5423. "symfony/browser-kit": "<5.4",
  5424. "symfony/cache": "<5.0",
  5425. "symfony/config": "<5.0",
  5426. "symfony/console": "<4.4",
  5427. "symfony/dependency-injection": "<5.3",
  5428. "symfony/doctrine-bridge": "<5.0",
  5429. "symfony/form": "<5.0",
  5430. "symfony/http-client": "<5.0",
  5431. "symfony/mailer": "<5.0",
  5432. "symfony/messenger": "<5.0",
  5433. "symfony/translation": "<5.0",
  5434. "symfony/twig-bridge": "<5.0",
  5435. "symfony/validator": "<5.0",
  5436. "twig/twig": "<2.13"
  5437. },
  5438. "provide": {
  5439. "psr/log-implementation": "1.0|2.0"
  5440. },
  5441. "require-dev": {
  5442. "psr/cache": "^1.0|^2.0|^3.0",
  5443. "symfony/browser-kit": "^5.4|^6.0",
  5444. "symfony/config": "^5.0|^6.0",
  5445. "symfony/console": "^4.4|^5.0|^6.0",
  5446. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5447. "symfony/dependency-injection": "^5.3|^6.0",
  5448. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5449. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5450. "symfony/finder": "^4.4|^5.0|^6.0",
  5451. "symfony/http-client-contracts": "^1.1|^2|^3",
  5452. "symfony/process": "^4.4|^5.0|^6.0",
  5453. "symfony/routing": "^4.4|^5.0|^6.0",
  5454. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5455. "symfony/translation": "^4.4|^5.0|^6.0",
  5456. "symfony/translation-contracts": "^1.1|^2|^3",
  5457. "twig/twig": "^2.13|^3.0.4"
  5458. },
  5459. "suggest": {
  5460. "symfony/browser-kit": "",
  5461. "symfony/config": "",
  5462. "symfony/console": "",
  5463. "symfony/dependency-injection": ""
  5464. },
  5465. "type": "library",
  5466. "autoload": {
  5467. "psr-4": {
  5468. "Symfony\\Component\\HttpKernel\\": ""
  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": "Provides a structured process for converting a Request into a Response",
  5489. "homepage": "https://symfony.com",
  5490. "support": {
  5491. "source": "https://github.com/symfony/http-kernel/tree/v5.4.34"
  5492. },
  5493. "funding": [
  5494. {
  5495. "url": "https://symfony.com/sponsor",
  5496. "type": "custom"
  5497. },
  5498. {
  5499. "url": "https://github.com/fabpot",
  5500. "type": "github"
  5501. },
  5502. {
  5503. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5504. "type": "tidelift"
  5505. }
  5506. ],
  5507. "time": "2023-12-30T13:02:02+00:00"
  5508. },
  5509. {
  5510. "name": "symfony/mime",
  5511. "version": "v5.4.26",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://github.com/symfony/mime.git",
  5515. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5520. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  5521. "shasum": "",
  5522. "mirrors": [
  5523. {
  5524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5525. "preferred": true
  5526. }
  5527. ]
  5528. },
  5529. "require": {
  5530. "php": ">=7.2.5",
  5531. "symfony/deprecation-contracts": "^2.1|^3",
  5532. "symfony/polyfill-intl-idn": "^1.10",
  5533. "symfony/polyfill-mbstring": "^1.0",
  5534. "symfony/polyfill-php80": "^1.16"
  5535. },
  5536. "conflict": {
  5537. "egulias/email-validator": "~3.0.0",
  5538. "phpdocumentor/reflection-docblock": "<3.2.2",
  5539. "phpdocumentor/type-resolver": "<1.4.0",
  5540. "symfony/mailer": "<4.4",
  5541. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  5542. },
  5543. "require-dev": {
  5544. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5545. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5546. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5547. "symfony/property-access": "^4.4|^5.1|^6.0",
  5548. "symfony/property-info": "^4.4|^5.1|^6.0",
  5549. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  5550. },
  5551. "type": "library",
  5552. "autoload": {
  5553. "psr-4": {
  5554. "Symfony\\Component\\Mime\\": ""
  5555. },
  5556. "exclude-from-classmap": [
  5557. "/Tests/"
  5558. ]
  5559. },
  5560. "notification-url": "https://packagist.org/downloads/",
  5561. "license": [
  5562. "MIT"
  5563. ],
  5564. "authors": [
  5565. {
  5566. "name": "Fabien Potencier",
  5567. "email": "fabien@symfony.com"
  5568. },
  5569. {
  5570. "name": "Symfony Community",
  5571. "homepage": "https://symfony.com/contributors"
  5572. }
  5573. ],
  5574. "description": "Allows manipulating MIME messages",
  5575. "homepage": "https://symfony.com",
  5576. "keywords": [
  5577. "mime",
  5578. "mime-type"
  5579. ],
  5580. "support": {
  5581. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  5582. },
  5583. "funding": [
  5584. {
  5585. "url": "https://symfony.com/sponsor",
  5586. "type": "custom"
  5587. },
  5588. {
  5589. "url": "https://github.com/fabpot",
  5590. "type": "github"
  5591. },
  5592. {
  5593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5594. "type": "tidelift"
  5595. }
  5596. ],
  5597. "time": "2023-07-27T06:29:31+00:00"
  5598. },
  5599. {
  5600. "name": "symfony/polyfill-ctype",
  5601. "version": "v1.28.0",
  5602. "source": {
  5603. "type": "git",
  5604. "url": "https://github.com/symfony/polyfill-ctype.git",
  5605. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  5606. },
  5607. "dist": {
  5608. "type": "zip",
  5609. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5610. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5611. "shasum": "",
  5612. "mirrors": [
  5613. {
  5614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5615. "preferred": true
  5616. }
  5617. ]
  5618. },
  5619. "require": {
  5620. "php": ">=7.1"
  5621. },
  5622. "provide": {
  5623. "ext-ctype": "*"
  5624. },
  5625. "suggest": {
  5626. "ext-ctype": "For best performance"
  5627. },
  5628. "type": "library",
  5629. "extra": {
  5630. "branch-alias": {
  5631. "dev-main": "1.28-dev"
  5632. },
  5633. "thanks": {
  5634. "name": "symfony/polyfill",
  5635. "url": "https://github.com/symfony/polyfill"
  5636. }
  5637. },
  5638. "autoload": {
  5639. "files": [
  5640. "bootstrap.php"
  5641. ],
  5642. "psr-4": {
  5643. "Symfony\\Polyfill\\Ctype\\": ""
  5644. }
  5645. },
  5646. "notification-url": "https://packagist.org/downloads/",
  5647. "license": [
  5648. "MIT"
  5649. ],
  5650. "authors": [
  5651. {
  5652. "name": "Gert de Pagter",
  5653. "email": "BackEndTea@gmail.com"
  5654. },
  5655. {
  5656. "name": "Symfony Community",
  5657. "homepage": "https://symfony.com/contributors"
  5658. }
  5659. ],
  5660. "description": "Symfony polyfill for ctype functions",
  5661. "homepage": "https://symfony.com",
  5662. "keywords": [
  5663. "compatibility",
  5664. "ctype",
  5665. "polyfill",
  5666. "portable"
  5667. ],
  5668. "support": {
  5669. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  5670. },
  5671. "funding": [
  5672. {
  5673. "url": "https://symfony.com/sponsor",
  5674. "type": "custom"
  5675. },
  5676. {
  5677. "url": "https://github.com/fabpot",
  5678. "type": "github"
  5679. },
  5680. {
  5681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5682. "type": "tidelift"
  5683. }
  5684. ],
  5685. "time": "2023-01-26T09:26:14+00:00"
  5686. },
  5687. {
  5688. "name": "symfony/polyfill-iconv",
  5689. "version": "v1.30.0",
  5690. "source": {
  5691. "type": "git",
  5692. "url": "https://github.com/symfony/polyfill-iconv.git",
  5693. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805"
  5694. },
  5695. "dist": {
  5696. "type": "zip",
  5697. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805",
  5698. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805",
  5699. "shasum": ""
  5700. },
  5701. "require": {
  5702. "php": ">=7.1"
  5703. },
  5704. "provide": {
  5705. "ext-iconv": "*"
  5706. },
  5707. "suggest": {
  5708. "ext-iconv": "For best performance"
  5709. },
  5710. "type": "library",
  5711. "extra": {
  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\\Iconv\\": ""
  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 the Iconv extension",
  5740. "homepage": "https://symfony.com",
  5741. "keywords": [
  5742. "compatibility",
  5743. "iconv",
  5744. "polyfill",
  5745. "portable",
  5746. "shim"
  5747. ],
  5748. "support": {
  5749. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0"
  5750. },
  5751. "funding": [
  5752. {
  5753. "url": "https://symfony.com/sponsor",
  5754. "type": "custom"
  5755. },
  5756. {
  5757. "url": "https://github.com/fabpot",
  5758. "type": "github"
  5759. },
  5760. {
  5761. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5762. "type": "tidelift"
  5763. }
  5764. ],
  5765. "time": "2024-05-31T15:07:36+00:00"
  5766. },
  5767. {
  5768. "name": "symfony/polyfill-intl-grapheme",
  5769. "version": "v1.28.0",
  5770. "source": {
  5771. "type": "git",
  5772. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5773. "reference": "875e90aeea2777b6f135677f618529449334a612"
  5774. },
  5775. "dist": {
  5776. "type": "zip",
  5777. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  5778. "reference": "875e90aeea2777b6f135677f618529449334a612",
  5779. "shasum": "",
  5780. "mirrors": [
  5781. {
  5782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5783. "preferred": true
  5784. }
  5785. ]
  5786. },
  5787. "require": {
  5788. "php": ">=7.1"
  5789. },
  5790. "suggest": {
  5791. "ext-intl": "For best performance"
  5792. },
  5793. "type": "library",
  5794. "extra": {
  5795. "branch-alias": {
  5796. "dev-main": "1.28-dev"
  5797. },
  5798. "thanks": {
  5799. "name": "symfony/polyfill",
  5800. "url": "https://github.com/symfony/polyfill"
  5801. }
  5802. },
  5803. "autoload": {
  5804. "files": [
  5805. "bootstrap.php"
  5806. ],
  5807. "psr-4": {
  5808. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5809. }
  5810. },
  5811. "notification-url": "https://packagist.org/downloads/",
  5812. "license": [
  5813. "MIT"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "Nicolas Grekas",
  5818. "email": "p@tchwork.com"
  5819. },
  5820. {
  5821. "name": "Symfony Community",
  5822. "homepage": "https://symfony.com/contributors"
  5823. }
  5824. ],
  5825. "description": "Symfony polyfill for intl's grapheme_* functions",
  5826. "homepage": "https://symfony.com",
  5827. "keywords": [
  5828. "compatibility",
  5829. "grapheme",
  5830. "intl",
  5831. "polyfill",
  5832. "portable",
  5833. "shim"
  5834. ],
  5835. "support": {
  5836. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  5837. },
  5838. "funding": [
  5839. {
  5840. "url": "https://symfony.com/sponsor",
  5841. "type": "custom"
  5842. },
  5843. {
  5844. "url": "https://github.com/fabpot",
  5845. "type": "github"
  5846. },
  5847. {
  5848. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5849. "type": "tidelift"
  5850. }
  5851. ],
  5852. "time": "2023-01-26T09:26:14+00:00"
  5853. },
  5854. {
  5855. "name": "symfony/polyfill-intl-idn",
  5856. "version": "v1.30.0",
  5857. "source": {
  5858. "type": "git",
  5859. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5860. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  5861. },
  5862. "dist": {
  5863. "type": "zip",
  5864. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5865. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  5866. "shasum": ""
  5867. },
  5868. "require": {
  5869. "php": ">=7.1",
  5870. "symfony/polyfill-intl-normalizer": "^1.10",
  5871. "symfony/polyfill-php72": "^1.10"
  5872. },
  5873. "suggest": {
  5874. "ext-intl": "For best performance"
  5875. },
  5876. "type": "library",
  5877. "extra": {
  5878. "thanks": {
  5879. "name": "symfony/polyfill",
  5880. "url": "https://github.com/symfony/polyfill"
  5881. }
  5882. },
  5883. "autoload": {
  5884. "files": [
  5885. "bootstrap.php"
  5886. ],
  5887. "psr-4": {
  5888. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5889. }
  5890. },
  5891. "notification-url": "https://packagist.org/downloads/",
  5892. "license": [
  5893. "MIT"
  5894. ],
  5895. "authors": [
  5896. {
  5897. "name": "Laurent Bassin",
  5898. "email": "laurent@bassin.info"
  5899. },
  5900. {
  5901. "name": "Trevor Rowbotham",
  5902. "email": "trevor.rowbotham@pm.me"
  5903. },
  5904. {
  5905. "name": "Symfony Community",
  5906. "homepage": "https://symfony.com/contributors"
  5907. }
  5908. ],
  5909. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5910. "homepage": "https://symfony.com",
  5911. "keywords": [
  5912. "compatibility",
  5913. "idn",
  5914. "intl",
  5915. "polyfill",
  5916. "portable",
  5917. "shim"
  5918. ],
  5919. "support": {
  5920. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  5921. },
  5922. "funding": [
  5923. {
  5924. "url": "https://symfony.com/sponsor",
  5925. "type": "custom"
  5926. },
  5927. {
  5928. "url": "https://github.com/fabpot",
  5929. "type": "github"
  5930. },
  5931. {
  5932. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5933. "type": "tidelift"
  5934. }
  5935. ],
  5936. "time": "2024-05-31T15:07:36+00:00"
  5937. },
  5938. {
  5939. "name": "symfony/polyfill-intl-normalizer",
  5940. "version": "v1.30.0",
  5941. "source": {
  5942. "type": "git",
  5943. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5944. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  5945. },
  5946. "dist": {
  5947. "type": "zip",
  5948. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5949. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  5950. "shasum": ""
  5951. },
  5952. "require": {
  5953. "php": ">=7.1"
  5954. },
  5955. "suggest": {
  5956. "ext-intl": "For best performance"
  5957. },
  5958. "type": "library",
  5959. "extra": {
  5960. "thanks": {
  5961. "name": "symfony/polyfill",
  5962. "url": "https://github.com/symfony/polyfill"
  5963. }
  5964. },
  5965. "autoload": {
  5966. "files": [
  5967. "bootstrap.php"
  5968. ],
  5969. "psr-4": {
  5970. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5971. },
  5972. "classmap": [
  5973. "Resources/stubs"
  5974. ]
  5975. },
  5976. "notification-url": "https://packagist.org/downloads/",
  5977. "license": [
  5978. "MIT"
  5979. ],
  5980. "authors": [
  5981. {
  5982. "name": "Nicolas Grekas",
  5983. "email": "p@tchwork.com"
  5984. },
  5985. {
  5986. "name": "Symfony Community",
  5987. "homepage": "https://symfony.com/contributors"
  5988. }
  5989. ],
  5990. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5991. "homepage": "https://symfony.com",
  5992. "keywords": [
  5993. "compatibility",
  5994. "intl",
  5995. "normalizer",
  5996. "polyfill",
  5997. "portable",
  5998. "shim"
  5999. ],
  6000. "support": {
  6001. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  6002. },
  6003. "funding": [
  6004. {
  6005. "url": "https://symfony.com/sponsor",
  6006. "type": "custom"
  6007. },
  6008. {
  6009. "url": "https://github.com/fabpot",
  6010. "type": "github"
  6011. },
  6012. {
  6013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6014. "type": "tidelift"
  6015. }
  6016. ],
  6017. "time": "2024-05-31T15:07:36+00:00"
  6018. },
  6019. {
  6020. "name": "symfony/polyfill-mbstring",
  6021. "version": "v1.30.0",
  6022. "source": {
  6023. "type": "git",
  6024. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6025. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  6026. },
  6027. "dist": {
  6028. "type": "zip",
  6029. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6030. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6031. "shasum": ""
  6032. },
  6033. "require": {
  6034. "php": ">=7.1"
  6035. },
  6036. "provide": {
  6037. "ext-mbstring": "*"
  6038. },
  6039. "suggest": {
  6040. "ext-mbstring": "For best performance"
  6041. },
  6042. "type": "library",
  6043. "extra": {
  6044. "thanks": {
  6045. "name": "symfony/polyfill",
  6046. "url": "https://github.com/symfony/polyfill"
  6047. }
  6048. },
  6049. "autoload": {
  6050. "files": [
  6051. "bootstrap.php"
  6052. ],
  6053. "psr-4": {
  6054. "Symfony\\Polyfill\\Mbstring\\": ""
  6055. }
  6056. },
  6057. "notification-url": "https://packagist.org/downloads/",
  6058. "license": [
  6059. "MIT"
  6060. ],
  6061. "authors": [
  6062. {
  6063. "name": "Nicolas Grekas",
  6064. "email": "p@tchwork.com"
  6065. },
  6066. {
  6067. "name": "Symfony Community",
  6068. "homepage": "https://symfony.com/contributors"
  6069. }
  6070. ],
  6071. "description": "Symfony polyfill for the Mbstring extension",
  6072. "homepage": "https://symfony.com",
  6073. "keywords": [
  6074. "compatibility",
  6075. "mbstring",
  6076. "polyfill",
  6077. "portable",
  6078. "shim"
  6079. ],
  6080. "support": {
  6081. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  6082. },
  6083. "funding": [
  6084. {
  6085. "url": "https://symfony.com/sponsor",
  6086. "type": "custom"
  6087. },
  6088. {
  6089. "url": "https://github.com/fabpot",
  6090. "type": "github"
  6091. },
  6092. {
  6093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6094. "type": "tidelift"
  6095. }
  6096. ],
  6097. "time": "2024-06-19T12:30:46+00:00"
  6098. },
  6099. {
  6100. "name": "symfony/polyfill-php72",
  6101. "version": "v1.30.0",
  6102. "source": {
  6103. "type": "git",
  6104. "url": "https://github.com/symfony/polyfill-php72.git",
  6105. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  6106. },
  6107. "dist": {
  6108. "type": "zip",
  6109. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  6110. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  6111. "shasum": ""
  6112. },
  6113. "require": {
  6114. "php": ">=7.1"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "thanks": {
  6119. "name": "symfony/polyfill",
  6120. "url": "https://github.com/symfony/polyfill"
  6121. }
  6122. },
  6123. "autoload": {
  6124. "files": [
  6125. "bootstrap.php"
  6126. ],
  6127. "psr-4": {
  6128. "Symfony\\Polyfill\\Php72\\": ""
  6129. }
  6130. },
  6131. "notification-url": "https://packagist.org/downloads/",
  6132. "license": [
  6133. "MIT"
  6134. ],
  6135. "authors": [
  6136. {
  6137. "name": "Nicolas Grekas",
  6138. "email": "p@tchwork.com"
  6139. },
  6140. {
  6141. "name": "Symfony Community",
  6142. "homepage": "https://symfony.com/contributors"
  6143. }
  6144. ],
  6145. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6146. "homepage": "https://symfony.com",
  6147. "keywords": [
  6148. "compatibility",
  6149. "polyfill",
  6150. "portable",
  6151. "shim"
  6152. ],
  6153. "support": {
  6154. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  6155. },
  6156. "funding": [
  6157. {
  6158. "url": "https://symfony.com/sponsor",
  6159. "type": "custom"
  6160. },
  6161. {
  6162. "url": "https://github.com/fabpot",
  6163. "type": "github"
  6164. },
  6165. {
  6166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6167. "type": "tidelift"
  6168. }
  6169. ],
  6170. "time": "2024-06-19T12:30:46+00:00"
  6171. },
  6172. {
  6173. "name": "symfony/polyfill-php73",
  6174. "version": "v1.28.0",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/symfony/polyfill-php73.git",
  6178. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6183. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6184. "shasum": "",
  6185. "mirrors": [
  6186. {
  6187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6188. "preferred": true
  6189. }
  6190. ]
  6191. },
  6192. "require": {
  6193. "php": ">=7.1"
  6194. },
  6195. "type": "library",
  6196. "extra": {
  6197. "branch-alias": {
  6198. "dev-main": "1.28-dev"
  6199. },
  6200. "thanks": {
  6201. "name": "symfony/polyfill",
  6202. "url": "https://github.com/symfony/polyfill"
  6203. }
  6204. },
  6205. "autoload": {
  6206. "files": [
  6207. "bootstrap.php"
  6208. ],
  6209. "psr-4": {
  6210. "Symfony\\Polyfill\\Php73\\": ""
  6211. },
  6212. "classmap": [
  6213. "Resources/stubs"
  6214. ]
  6215. },
  6216. "notification-url": "https://packagist.org/downloads/",
  6217. "license": [
  6218. "MIT"
  6219. ],
  6220. "authors": [
  6221. {
  6222. "name": "Nicolas Grekas",
  6223. "email": "p@tchwork.com"
  6224. },
  6225. {
  6226. "name": "Symfony Community",
  6227. "homepage": "https://symfony.com/contributors"
  6228. }
  6229. ],
  6230. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6231. "homepage": "https://symfony.com",
  6232. "keywords": [
  6233. "compatibility",
  6234. "polyfill",
  6235. "portable",
  6236. "shim"
  6237. ],
  6238. "support": {
  6239. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  6240. },
  6241. "funding": [
  6242. {
  6243. "url": "https://symfony.com/sponsor",
  6244. "type": "custom"
  6245. },
  6246. {
  6247. "url": "https://github.com/fabpot",
  6248. "type": "github"
  6249. },
  6250. {
  6251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6252. "type": "tidelift"
  6253. }
  6254. ],
  6255. "time": "2023-01-26T09:26:14+00:00"
  6256. },
  6257. {
  6258. "name": "symfony/polyfill-php80",
  6259. "version": "v1.28.0",
  6260. "source": {
  6261. "type": "git",
  6262. "url": "https://github.com/symfony/polyfill-php80.git",
  6263. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6264. },
  6265. "dist": {
  6266. "type": "zip",
  6267. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6268. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6269. "shasum": "",
  6270. "mirrors": [
  6271. {
  6272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6273. "preferred": true
  6274. }
  6275. ]
  6276. },
  6277. "require": {
  6278. "php": ">=7.1"
  6279. },
  6280. "type": "library",
  6281. "extra": {
  6282. "branch-alias": {
  6283. "dev-main": "1.28-dev"
  6284. },
  6285. "thanks": {
  6286. "name": "symfony/polyfill",
  6287. "url": "https://github.com/symfony/polyfill"
  6288. }
  6289. },
  6290. "autoload": {
  6291. "files": [
  6292. "bootstrap.php"
  6293. ],
  6294. "psr-4": {
  6295. "Symfony\\Polyfill\\Php80\\": ""
  6296. },
  6297. "classmap": [
  6298. "Resources/stubs"
  6299. ]
  6300. },
  6301. "notification-url": "https://packagist.org/downloads/",
  6302. "license": [
  6303. "MIT"
  6304. ],
  6305. "authors": [
  6306. {
  6307. "name": "Ion Bazan",
  6308. "email": "ion.bazan@gmail.com"
  6309. },
  6310. {
  6311. "name": "Nicolas Grekas",
  6312. "email": "p@tchwork.com"
  6313. },
  6314. {
  6315. "name": "Symfony Community",
  6316. "homepage": "https://symfony.com/contributors"
  6317. }
  6318. ],
  6319. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6320. "homepage": "https://symfony.com",
  6321. "keywords": [
  6322. "compatibility",
  6323. "polyfill",
  6324. "portable",
  6325. "shim"
  6326. ],
  6327. "support": {
  6328. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  6329. },
  6330. "funding": [
  6331. {
  6332. "url": "https://symfony.com/sponsor",
  6333. "type": "custom"
  6334. },
  6335. {
  6336. "url": "https://github.com/fabpot",
  6337. "type": "github"
  6338. },
  6339. {
  6340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6341. "type": "tidelift"
  6342. }
  6343. ],
  6344. "time": "2023-01-26T09:26:14+00:00"
  6345. },
  6346. {
  6347. "name": "symfony/polyfill-php81",
  6348. "version": "v1.28.0",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://github.com/symfony/polyfill-php81.git",
  6352. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  6357. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  6358. "shasum": "",
  6359. "mirrors": [
  6360. {
  6361. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6362. "preferred": true
  6363. }
  6364. ]
  6365. },
  6366. "require": {
  6367. "php": ">=7.1"
  6368. },
  6369. "type": "library",
  6370. "extra": {
  6371. "branch-alias": {
  6372. "dev-main": "1.28-dev"
  6373. },
  6374. "thanks": {
  6375. "name": "symfony/polyfill",
  6376. "url": "https://github.com/symfony/polyfill"
  6377. }
  6378. },
  6379. "autoload": {
  6380. "files": [
  6381. "bootstrap.php"
  6382. ],
  6383. "psr-4": {
  6384. "Symfony\\Polyfill\\Php81\\": ""
  6385. },
  6386. "classmap": [
  6387. "Resources/stubs"
  6388. ]
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "MIT"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Nicolas Grekas",
  6397. "email": "p@tchwork.com"
  6398. },
  6399. {
  6400. "name": "Symfony Community",
  6401. "homepage": "https://symfony.com/contributors"
  6402. }
  6403. ],
  6404. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6405. "homepage": "https://symfony.com",
  6406. "keywords": [
  6407. "compatibility",
  6408. "polyfill",
  6409. "portable",
  6410. "shim"
  6411. ],
  6412. "support": {
  6413. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  6414. },
  6415. "funding": [
  6416. {
  6417. "url": "https://symfony.com/sponsor",
  6418. "type": "custom"
  6419. },
  6420. {
  6421. "url": "https://github.com/fabpot",
  6422. "type": "github"
  6423. },
  6424. {
  6425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6426. "type": "tidelift"
  6427. }
  6428. ],
  6429. "time": "2023-01-26T09:26:14+00:00"
  6430. },
  6431. {
  6432. "name": "symfony/process",
  6433. "version": "v5.4.34",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://github.com/symfony/process.git",
  6437. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://api.github.com/repos/symfony/process/zipball/8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6442. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  6443. "shasum": "",
  6444. "mirrors": [
  6445. {
  6446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6447. "preferred": true
  6448. }
  6449. ]
  6450. },
  6451. "require": {
  6452. "php": ">=7.2.5",
  6453. "symfony/polyfill-php80": "^1.16"
  6454. },
  6455. "type": "library",
  6456. "autoload": {
  6457. "psr-4": {
  6458. "Symfony\\Component\\Process\\": ""
  6459. },
  6460. "exclude-from-classmap": [
  6461. "/Tests/"
  6462. ]
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Fabien Potencier",
  6471. "email": "fabien@symfony.com"
  6472. },
  6473. {
  6474. "name": "Symfony Community",
  6475. "homepage": "https://symfony.com/contributors"
  6476. }
  6477. ],
  6478. "description": "Executes commands in sub-processes",
  6479. "homepage": "https://symfony.com",
  6480. "support": {
  6481. "source": "https://github.com/symfony/process/tree/v5.4.34"
  6482. },
  6483. "funding": [
  6484. {
  6485. "url": "https://symfony.com/sponsor",
  6486. "type": "custom"
  6487. },
  6488. {
  6489. "url": "https://github.com/fabpot",
  6490. "type": "github"
  6491. },
  6492. {
  6493. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6494. "type": "tidelift"
  6495. }
  6496. ],
  6497. "time": "2023-12-02T08:41:43+00:00"
  6498. },
  6499. {
  6500. "name": "symfony/psr-http-message-bridge",
  6501. "version": "v2.3.1",
  6502. "source": {
  6503. "type": "git",
  6504. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6505. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6506. },
  6507. "dist": {
  6508. "type": "zip",
  6509. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6510. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6511. "shasum": ""
  6512. },
  6513. "require": {
  6514. "php": ">=7.2.5",
  6515. "psr/http-message": "^1.0 || ^2.0",
  6516. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6517. "symfony/http-foundation": "^5.4 || ^6.0"
  6518. },
  6519. "require-dev": {
  6520. "nyholm/psr7": "^1.1",
  6521. "psr/log": "^1.1 || ^2 || ^3",
  6522. "symfony/browser-kit": "^5.4 || ^6.0",
  6523. "symfony/config": "^5.4 || ^6.0",
  6524. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6525. "symfony/framework-bundle": "^5.4 || ^6.0",
  6526. "symfony/http-kernel": "^5.4 || ^6.0",
  6527. "symfony/phpunit-bridge": "^6.2"
  6528. },
  6529. "suggest": {
  6530. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6531. },
  6532. "type": "symfony-bridge",
  6533. "extra": {
  6534. "branch-alias": {
  6535. "dev-main": "2.3-dev"
  6536. }
  6537. },
  6538. "autoload": {
  6539. "psr-4": {
  6540. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6541. },
  6542. "exclude-from-classmap": [
  6543. "/Tests/"
  6544. ]
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "MIT"
  6549. ],
  6550. "authors": [
  6551. {
  6552. "name": "Fabien Potencier",
  6553. "email": "fabien@symfony.com"
  6554. },
  6555. {
  6556. "name": "Symfony Community",
  6557. "homepage": "http://symfony.com/contributors"
  6558. }
  6559. ],
  6560. "description": "PSR HTTP message bridge",
  6561. "homepage": "http://symfony.com",
  6562. "keywords": [
  6563. "http",
  6564. "http-message",
  6565. "psr-17",
  6566. "psr-7"
  6567. ],
  6568. "support": {
  6569. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6570. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  6571. },
  6572. "funding": [
  6573. {
  6574. "url": "https://symfony.com/sponsor",
  6575. "type": "custom"
  6576. },
  6577. {
  6578. "url": "https://github.com/fabpot",
  6579. "type": "github"
  6580. },
  6581. {
  6582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6583. "type": "tidelift"
  6584. }
  6585. ],
  6586. "time": "2023-07-26T11:53:26+00:00"
  6587. },
  6588. {
  6589. "name": "symfony/routing",
  6590. "version": "v5.4.34",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/symfony/routing.git",
  6594. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/symfony/routing/zipball/f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  6599. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  6600. "shasum": "",
  6601. "mirrors": [
  6602. {
  6603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6604. "preferred": true
  6605. }
  6606. ]
  6607. },
  6608. "require": {
  6609. "php": ">=7.2.5",
  6610. "symfony/deprecation-contracts": "^2.1|^3",
  6611. "symfony/polyfill-php80": "^1.16"
  6612. },
  6613. "conflict": {
  6614. "doctrine/annotations": "<1.12",
  6615. "symfony/config": "<5.3",
  6616. "symfony/dependency-injection": "<4.4",
  6617. "symfony/yaml": "<4.4"
  6618. },
  6619. "require-dev": {
  6620. "doctrine/annotations": "^1.12|^2",
  6621. "psr/log": "^1|^2|^3",
  6622. "symfony/config": "^5.3|^6.0",
  6623. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6624. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6625. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6626. "symfony/yaml": "^4.4|^5.0|^6.0"
  6627. },
  6628. "suggest": {
  6629. "symfony/config": "For using the all-in-one router or any loader",
  6630. "symfony/expression-language": "For using expression matching",
  6631. "symfony/http-foundation": "For using a Symfony Request object",
  6632. "symfony/yaml": "For using the YAML loader"
  6633. },
  6634. "type": "library",
  6635. "autoload": {
  6636. "psr-4": {
  6637. "Symfony\\Component\\Routing\\": ""
  6638. },
  6639. "exclude-from-classmap": [
  6640. "/Tests/"
  6641. ]
  6642. },
  6643. "notification-url": "https://packagist.org/downloads/",
  6644. "license": [
  6645. "MIT"
  6646. ],
  6647. "authors": [
  6648. {
  6649. "name": "Fabien Potencier",
  6650. "email": "fabien@symfony.com"
  6651. },
  6652. {
  6653. "name": "Symfony Community",
  6654. "homepage": "https://symfony.com/contributors"
  6655. }
  6656. ],
  6657. "description": "Maps an HTTP request to a set of configuration variables",
  6658. "homepage": "https://symfony.com",
  6659. "keywords": [
  6660. "router",
  6661. "routing",
  6662. "uri",
  6663. "url"
  6664. ],
  6665. "support": {
  6666. "source": "https://github.com/symfony/routing/tree/v5.4.34"
  6667. },
  6668. "funding": [
  6669. {
  6670. "url": "https://symfony.com/sponsor",
  6671. "type": "custom"
  6672. },
  6673. {
  6674. "url": "https://github.com/fabpot",
  6675. "type": "github"
  6676. },
  6677. {
  6678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6679. "type": "tidelift"
  6680. }
  6681. ],
  6682. "time": "2023-12-27T12:51:02+00:00"
  6683. },
  6684. {
  6685. "name": "symfony/service-contracts",
  6686. "version": "v2.5.2",
  6687. "source": {
  6688. "type": "git",
  6689. "url": "https://github.com/symfony/service-contracts.git",
  6690. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  6691. },
  6692. "dist": {
  6693. "type": "zip",
  6694. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6695. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  6696. "shasum": "",
  6697. "mirrors": [
  6698. {
  6699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6700. "preferred": true
  6701. }
  6702. ]
  6703. },
  6704. "require": {
  6705. "php": ">=7.2.5",
  6706. "psr/container": "^1.1",
  6707. "symfony/deprecation-contracts": "^2.1|^3"
  6708. },
  6709. "conflict": {
  6710. "ext-psr": "<1.1|>=2"
  6711. },
  6712. "suggest": {
  6713. "symfony/service-implementation": ""
  6714. },
  6715. "type": "library",
  6716. "extra": {
  6717. "branch-alias": {
  6718. "dev-main": "2.5-dev"
  6719. },
  6720. "thanks": {
  6721. "name": "symfony/contracts",
  6722. "url": "https://github.com/symfony/contracts"
  6723. }
  6724. },
  6725. "autoload": {
  6726. "psr-4": {
  6727. "Symfony\\Contracts\\Service\\": ""
  6728. }
  6729. },
  6730. "notification-url": "https://packagist.org/downloads/",
  6731. "license": [
  6732. "MIT"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Nicolas Grekas",
  6737. "email": "p@tchwork.com"
  6738. },
  6739. {
  6740. "name": "Symfony Community",
  6741. "homepage": "https://symfony.com/contributors"
  6742. }
  6743. ],
  6744. "description": "Generic abstractions related to writing services",
  6745. "homepage": "https://symfony.com",
  6746. "keywords": [
  6747. "abstractions",
  6748. "contracts",
  6749. "decoupling",
  6750. "interfaces",
  6751. "interoperability",
  6752. "standards"
  6753. ],
  6754. "support": {
  6755. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  6756. },
  6757. "funding": [
  6758. {
  6759. "url": "https://symfony.com/sponsor",
  6760. "type": "custom"
  6761. },
  6762. {
  6763. "url": "https://github.com/fabpot",
  6764. "type": "github"
  6765. },
  6766. {
  6767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6768. "type": "tidelift"
  6769. }
  6770. ],
  6771. "time": "2022-05-30T19:17:29+00:00"
  6772. },
  6773. {
  6774. "name": "symfony/string",
  6775. "version": "v5.4.34",
  6776. "source": {
  6777. "type": "git",
  6778. "url": "https://github.com/symfony/string.git",
  6779. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061"
  6780. },
  6781. "dist": {
  6782. "type": "zip",
  6783. "url": "https://api.github.com/repos/symfony/string/zipball/e3f98bfc7885c957488f443df82d97814a3ce061",
  6784. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061",
  6785. "shasum": "",
  6786. "mirrors": [
  6787. {
  6788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6789. "preferred": true
  6790. }
  6791. ]
  6792. },
  6793. "require": {
  6794. "php": ">=7.2.5",
  6795. "symfony/polyfill-ctype": "~1.8",
  6796. "symfony/polyfill-intl-grapheme": "~1.0",
  6797. "symfony/polyfill-intl-normalizer": "~1.0",
  6798. "symfony/polyfill-mbstring": "~1.0",
  6799. "symfony/polyfill-php80": "~1.15"
  6800. },
  6801. "conflict": {
  6802. "symfony/translation-contracts": ">=3.0"
  6803. },
  6804. "require-dev": {
  6805. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6806. "symfony/http-client": "^4.4|^5.0|^6.0",
  6807. "symfony/translation-contracts": "^1.1|^2",
  6808. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6809. },
  6810. "type": "library",
  6811. "autoload": {
  6812. "files": [
  6813. "Resources/functions.php"
  6814. ],
  6815. "psr-4": {
  6816. "Symfony\\Component\\String\\": ""
  6817. },
  6818. "exclude-from-classmap": [
  6819. "/Tests/"
  6820. ]
  6821. },
  6822. "notification-url": "https://packagist.org/downloads/",
  6823. "license": [
  6824. "MIT"
  6825. ],
  6826. "authors": [
  6827. {
  6828. "name": "Nicolas Grekas",
  6829. "email": "p@tchwork.com"
  6830. },
  6831. {
  6832. "name": "Symfony Community",
  6833. "homepage": "https://symfony.com/contributors"
  6834. }
  6835. ],
  6836. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6837. "homepage": "https://symfony.com",
  6838. "keywords": [
  6839. "grapheme",
  6840. "i18n",
  6841. "string",
  6842. "unicode",
  6843. "utf-8",
  6844. "utf8"
  6845. ],
  6846. "support": {
  6847. "source": "https://github.com/symfony/string/tree/v5.4.34"
  6848. },
  6849. "funding": [
  6850. {
  6851. "url": "https://symfony.com/sponsor",
  6852. "type": "custom"
  6853. },
  6854. {
  6855. "url": "https://github.com/fabpot",
  6856. "type": "github"
  6857. },
  6858. {
  6859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6860. "type": "tidelift"
  6861. }
  6862. ],
  6863. "time": "2023-12-09T13:20:28+00:00"
  6864. },
  6865. {
  6866. "name": "symfony/translation",
  6867. "version": "v5.4.31",
  6868. "source": {
  6869. "type": "git",
  6870. "url": "https://github.com/symfony/translation.git",
  6871. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f"
  6872. },
  6873. "dist": {
  6874. "type": "zip",
  6875. "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  6876. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  6877. "shasum": "",
  6878. "mirrors": [
  6879. {
  6880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6881. "preferred": true
  6882. }
  6883. ]
  6884. },
  6885. "require": {
  6886. "php": ">=7.2.5",
  6887. "symfony/deprecation-contracts": "^2.1|^3",
  6888. "symfony/polyfill-mbstring": "~1.0",
  6889. "symfony/polyfill-php80": "^1.16",
  6890. "symfony/translation-contracts": "^2.3"
  6891. },
  6892. "conflict": {
  6893. "symfony/config": "<4.4",
  6894. "symfony/console": "<5.3",
  6895. "symfony/dependency-injection": "<5.0",
  6896. "symfony/http-kernel": "<5.0",
  6897. "symfony/twig-bundle": "<5.0",
  6898. "symfony/yaml": "<4.4"
  6899. },
  6900. "provide": {
  6901. "symfony/translation-implementation": "2.3"
  6902. },
  6903. "require-dev": {
  6904. "psr/log": "^1|^2|^3",
  6905. "symfony/config": "^4.4|^5.0|^6.0",
  6906. "symfony/console": "^5.4|^6.0",
  6907. "symfony/dependency-injection": "^5.0|^6.0",
  6908. "symfony/finder": "^4.4|^5.0|^6.0",
  6909. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6910. "symfony/http-kernel": "^5.0|^6.0",
  6911. "symfony/intl": "^4.4|^5.0|^6.0",
  6912. "symfony/polyfill-intl-icu": "^1.21",
  6913. "symfony/service-contracts": "^1.1.2|^2|^3",
  6914. "symfony/yaml": "^4.4|^5.0|^6.0"
  6915. },
  6916. "suggest": {
  6917. "psr/log-implementation": "To use logging capability in translator",
  6918. "symfony/config": "",
  6919. "symfony/yaml": ""
  6920. },
  6921. "type": "library",
  6922. "autoload": {
  6923. "files": [
  6924. "Resources/functions.php"
  6925. ],
  6926. "psr-4": {
  6927. "Symfony\\Component\\Translation\\": ""
  6928. },
  6929. "exclude-from-classmap": [
  6930. "/Tests/"
  6931. ]
  6932. },
  6933. "notification-url": "https://packagist.org/downloads/",
  6934. "license": [
  6935. "MIT"
  6936. ],
  6937. "authors": [
  6938. {
  6939. "name": "Fabien Potencier",
  6940. "email": "fabien@symfony.com"
  6941. },
  6942. {
  6943. "name": "Symfony Community",
  6944. "homepage": "https://symfony.com/contributors"
  6945. }
  6946. ],
  6947. "description": "Provides tools to internationalize your application",
  6948. "homepage": "https://symfony.com",
  6949. "support": {
  6950. "source": "https://github.com/symfony/translation/tree/v5.4.31"
  6951. },
  6952. "funding": [
  6953. {
  6954. "url": "https://symfony.com/sponsor",
  6955. "type": "custom"
  6956. },
  6957. {
  6958. "url": "https://github.com/fabpot",
  6959. "type": "github"
  6960. },
  6961. {
  6962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6963. "type": "tidelift"
  6964. }
  6965. ],
  6966. "time": "2023-11-03T16:16:43+00:00"
  6967. },
  6968. {
  6969. "name": "symfony/translation-contracts",
  6970. "version": "v2.5.2",
  6971. "source": {
  6972. "type": "git",
  6973. "url": "https://github.com/symfony/translation-contracts.git",
  6974. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  6975. },
  6976. "dist": {
  6977. "type": "zip",
  6978. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6979. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  6980. "shasum": "",
  6981. "mirrors": [
  6982. {
  6983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6984. "preferred": true
  6985. }
  6986. ]
  6987. },
  6988. "require": {
  6989. "php": ">=7.2.5"
  6990. },
  6991. "suggest": {
  6992. "symfony/translation-implementation": ""
  6993. },
  6994. "type": "library",
  6995. "extra": {
  6996. "branch-alias": {
  6997. "dev-main": "2.5-dev"
  6998. },
  6999. "thanks": {
  7000. "name": "symfony/contracts",
  7001. "url": "https://github.com/symfony/contracts"
  7002. }
  7003. },
  7004. "autoload": {
  7005. "psr-4": {
  7006. "Symfony\\Contracts\\Translation\\": ""
  7007. }
  7008. },
  7009. "notification-url": "https://packagist.org/downloads/",
  7010. "license": [
  7011. "MIT"
  7012. ],
  7013. "authors": [
  7014. {
  7015. "name": "Nicolas Grekas",
  7016. "email": "p@tchwork.com"
  7017. },
  7018. {
  7019. "name": "Symfony Community",
  7020. "homepage": "https://symfony.com/contributors"
  7021. }
  7022. ],
  7023. "description": "Generic abstractions related to translation",
  7024. "homepage": "https://symfony.com",
  7025. "keywords": [
  7026. "abstractions",
  7027. "contracts",
  7028. "decoupling",
  7029. "interfaces",
  7030. "interoperability",
  7031. "standards"
  7032. ],
  7033. "support": {
  7034. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7035. },
  7036. "funding": [
  7037. {
  7038. "url": "https://symfony.com/sponsor",
  7039. "type": "custom"
  7040. },
  7041. {
  7042. "url": "https://github.com/fabpot",
  7043. "type": "github"
  7044. },
  7045. {
  7046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7047. "type": "tidelift"
  7048. }
  7049. ],
  7050. "time": "2022-06-27T16:58:25+00:00"
  7051. },
  7052. {
  7053. "name": "symfony/var-dumper",
  7054. "version": "v5.4.29",
  7055. "source": {
  7056. "type": "git",
  7057. "url": "https://github.com/symfony/var-dumper.git",
  7058. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  7059. },
  7060. "dist": {
  7061. "type": "zip",
  7062. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7063. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7064. "shasum": "",
  7065. "mirrors": [
  7066. {
  7067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7068. "preferred": true
  7069. }
  7070. ]
  7071. },
  7072. "require": {
  7073. "php": ">=7.2.5",
  7074. "symfony/polyfill-mbstring": "~1.0",
  7075. "symfony/polyfill-php80": "^1.16"
  7076. },
  7077. "conflict": {
  7078. "symfony/console": "<4.4"
  7079. },
  7080. "require-dev": {
  7081. "ext-iconv": "*",
  7082. "symfony/console": "^4.4|^5.0|^6.0",
  7083. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7084. "symfony/process": "^4.4|^5.0|^6.0",
  7085. "symfony/uid": "^5.1|^6.0",
  7086. "twig/twig": "^2.13|^3.0.4"
  7087. },
  7088. "suggest": {
  7089. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7090. "ext-intl": "To show region name in time zone dump",
  7091. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7092. },
  7093. "bin": [
  7094. "Resources/bin/var-dump-server"
  7095. ],
  7096. "type": "library",
  7097. "autoload": {
  7098. "files": [
  7099. "Resources/functions/dump.php"
  7100. ],
  7101. "psr-4": {
  7102. "Symfony\\Component\\VarDumper\\": ""
  7103. },
  7104. "exclude-from-classmap": [
  7105. "/Tests/"
  7106. ]
  7107. },
  7108. "notification-url": "https://packagist.org/downloads/",
  7109. "license": [
  7110. "MIT"
  7111. ],
  7112. "authors": [
  7113. {
  7114. "name": "Nicolas Grekas",
  7115. "email": "p@tchwork.com"
  7116. },
  7117. {
  7118. "name": "Symfony Community",
  7119. "homepage": "https://symfony.com/contributors"
  7120. }
  7121. ],
  7122. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7123. "homepage": "https://symfony.com",
  7124. "keywords": [
  7125. "debug",
  7126. "dump"
  7127. ],
  7128. "support": {
  7129. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7130. },
  7131. "funding": [
  7132. {
  7133. "url": "https://symfony.com/sponsor",
  7134. "type": "custom"
  7135. },
  7136. {
  7137. "url": "https://github.com/fabpot",
  7138. "type": "github"
  7139. },
  7140. {
  7141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7142. "type": "tidelift"
  7143. }
  7144. ],
  7145. "time": "2023-09-12T10:09:58+00:00"
  7146. },
  7147. {
  7148. "name": "symfony/var-exporter",
  7149. "version": "v5.4.40",
  7150. "source": {
  7151. "type": "git",
  7152. "url": "https://github.com/symfony/var-exporter.git",
  7153. "reference": "6a13d37336d512927986e09f19a4bed24178baa6"
  7154. },
  7155. "dist": {
  7156. "type": "zip",
  7157. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6a13d37336d512927986e09f19a4bed24178baa6",
  7158. "reference": "6a13d37336d512927986e09f19a4bed24178baa6",
  7159. "shasum": ""
  7160. },
  7161. "require": {
  7162. "php": ">=7.2.5",
  7163. "symfony/polyfill-php80": "^1.16"
  7164. },
  7165. "require-dev": {
  7166. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7167. },
  7168. "type": "library",
  7169. "autoload": {
  7170. "psr-4": {
  7171. "Symfony\\Component\\VarExporter\\": ""
  7172. },
  7173. "exclude-from-classmap": [
  7174. "/Tests/"
  7175. ]
  7176. },
  7177. "notification-url": "https://packagist.org/downloads/",
  7178. "license": [
  7179. "MIT"
  7180. ],
  7181. "authors": [
  7182. {
  7183. "name": "Nicolas Grekas",
  7184. "email": "p@tchwork.com"
  7185. },
  7186. {
  7187. "name": "Symfony Community",
  7188. "homepage": "https://symfony.com/contributors"
  7189. }
  7190. ],
  7191. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7192. "homepage": "https://symfony.com",
  7193. "keywords": [
  7194. "clone",
  7195. "construct",
  7196. "export",
  7197. "hydrate",
  7198. "instantiate",
  7199. "serialize"
  7200. ],
  7201. "support": {
  7202. "source": "https://github.com/symfony/var-exporter/tree/v5.4.40"
  7203. },
  7204. "funding": [
  7205. {
  7206. "url": "https://symfony.com/sponsor",
  7207. "type": "custom"
  7208. },
  7209. {
  7210. "url": "https://github.com/fabpot",
  7211. "type": "github"
  7212. },
  7213. {
  7214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7215. "type": "tidelift"
  7216. }
  7217. ],
  7218. "time": "2024-05-31T14:33:22+00:00"
  7219. },
  7220. {
  7221. "name": "tencentcloud/common",
  7222. "version": "3.0.1067",
  7223. "source": {
  7224. "type": "git",
  7225. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  7226. "reference": "17d88323aaf68906984caa33b61559295a4837a0"
  7227. },
  7228. "dist": {
  7229. "type": "zip",
  7230. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/17d88323aaf68906984caa33b61559295a4837a0",
  7231. "reference": "17d88323aaf68906984caa33b61559295a4837a0",
  7232. "shasum": "",
  7233. "mirrors": [
  7234. {
  7235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7236. "preferred": true
  7237. }
  7238. ]
  7239. },
  7240. "require": {
  7241. "guzzlehttp/guzzle": "^6.3||^7.0",
  7242. "php": ">=5.6.0"
  7243. },
  7244. "type": "library",
  7245. "autoload": {
  7246. "psr-4": {
  7247. "TencentCloud\\": "./src/TencentCloud"
  7248. }
  7249. },
  7250. "notification-url": "https://packagist.org/downloads/",
  7251. "license": [
  7252. "Apache-2.0"
  7253. ],
  7254. "authors": [
  7255. {
  7256. "name": "tencentcloudapi",
  7257. "email": "tencentcloudapi@tencent.com",
  7258. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7259. "role": "Developer"
  7260. }
  7261. ],
  7262. "description": "TencentCloudApi php sdk",
  7263. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7264. "support": {
  7265. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  7266. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1067"
  7267. },
  7268. "time": "2024-01-12T07:53:31+00:00"
  7269. },
  7270. {
  7271. "name": "tencentcloud/sms",
  7272. "version": "3.0.1067",
  7273. "source": {
  7274. "type": "git",
  7275. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  7276. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a"
  7277. },
  7278. "dist": {
  7279. "type": "zip",
  7280. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7281. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7282. "shasum": "",
  7283. "mirrors": [
  7284. {
  7285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7286. "preferred": true
  7287. }
  7288. ]
  7289. },
  7290. "require": {
  7291. "tencentcloud/common": "3.0.1067"
  7292. },
  7293. "type": "library",
  7294. "autoload": {
  7295. "psr-4": {
  7296. "TencentCloud\\": "./src/TencentCloud"
  7297. }
  7298. },
  7299. "notification-url": "https://packagist.org/downloads/",
  7300. "license": [
  7301. "Apache-2.0"
  7302. ],
  7303. "authors": [
  7304. {
  7305. "name": "tencentcloudapi",
  7306. "email": "tencentcloudapi@tencent.com",
  7307. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7308. "role": "Developer"
  7309. }
  7310. ],
  7311. "description": "TencentCloudApi php sdk sms",
  7312. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7313. "support": {
  7314. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  7315. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1067"
  7316. },
  7317. "time": "2024-01-12T08:16:39+00:00"
  7318. },
  7319. {
  7320. "name": "tijsverkoyen/css-to-inline-styles",
  7321. "version": "v2.2.7",
  7322. "source": {
  7323. "type": "git",
  7324. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7325. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7326. },
  7327. "dist": {
  7328. "type": "zip",
  7329. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7330. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7331. "shasum": "",
  7332. "mirrors": [
  7333. {
  7334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7335. "preferred": true
  7336. }
  7337. ]
  7338. },
  7339. "require": {
  7340. "ext-dom": "*",
  7341. "ext-libxml": "*",
  7342. "php": "^5.5 || ^7.0 || ^8.0",
  7343. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7344. },
  7345. "require-dev": {
  7346. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7347. },
  7348. "type": "library",
  7349. "extra": {
  7350. "branch-alias": {
  7351. "dev-master": "2.2.x-dev"
  7352. }
  7353. },
  7354. "autoload": {
  7355. "psr-4": {
  7356. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7357. }
  7358. },
  7359. "notification-url": "https://packagist.org/downloads/",
  7360. "license": [
  7361. "BSD-3-Clause"
  7362. ],
  7363. "authors": [
  7364. {
  7365. "name": "Tijs Verkoyen",
  7366. "email": "css_to_inline_styles@verkoyen.eu",
  7367. "role": "Developer"
  7368. }
  7369. ],
  7370. "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.",
  7371. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7372. "support": {
  7373. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7374. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7375. },
  7376. "time": "2023-12-08T13:03:43+00:00"
  7377. },
  7378. {
  7379. "name": "vinkla/hashids",
  7380. "version": "9.1.0",
  7381. "source": {
  7382. "type": "git",
  7383. "url": "https://github.com/vinkla/laravel-hashids.git",
  7384. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7385. },
  7386. "dist": {
  7387. "type": "zip",
  7388. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7389. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7390. "shasum": "",
  7391. "mirrors": [
  7392. {
  7393. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7394. "preferred": true
  7395. }
  7396. ]
  7397. },
  7398. "require": {
  7399. "graham-campbell/manager": "^4.4",
  7400. "hashids/hashids": "^4.1",
  7401. "illuminate/contracts": "^8.0",
  7402. "illuminate/support": "^8.0",
  7403. "php": "^7.3 || ^8.0"
  7404. },
  7405. "require-dev": {
  7406. "graham-campbell/analyzer": "^3.0",
  7407. "graham-campbell/testbench": "^5.4",
  7408. "mockery/mockery": "^1.3",
  7409. "phpunit/phpunit": "^9.3",
  7410. "squizlabs/php_codesniffer": "^3.5"
  7411. },
  7412. "type": "library",
  7413. "extra": {
  7414. "branch-alias": {
  7415. "dev-master": "9.1-dev"
  7416. },
  7417. "laravel": {
  7418. "providers": [
  7419. "Vinkla\\Hashids\\HashidsServiceProvider"
  7420. ],
  7421. "aliases": {
  7422. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7423. }
  7424. }
  7425. },
  7426. "autoload": {
  7427. "psr-4": {
  7428. "Vinkla\\Hashids\\": "src/"
  7429. }
  7430. },
  7431. "notification-url": "https://packagist.org/downloads/",
  7432. "license": [
  7433. "MIT"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "Vincent Klaiber",
  7438. "email": "hello@doubledip.se"
  7439. }
  7440. ],
  7441. "description": "A Hashids bridge for Laravel",
  7442. "keywords": [
  7443. "hashids",
  7444. "laravel"
  7445. ],
  7446. "support": {
  7447. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7448. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7449. },
  7450. "time": "2020-11-26T19:38:22+00:00"
  7451. },
  7452. {
  7453. "name": "vlucas/phpdotenv",
  7454. "version": "v5.5.0",
  7455. "source": {
  7456. "type": "git",
  7457. "url": "https://github.com/vlucas/phpdotenv.git",
  7458. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  7459. },
  7460. "dist": {
  7461. "type": "zip",
  7462. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7463. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  7464. "shasum": "",
  7465. "mirrors": [
  7466. {
  7467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7468. "preferred": true
  7469. }
  7470. ]
  7471. },
  7472. "require": {
  7473. "ext-pcre": "*",
  7474. "graham-campbell/result-type": "^1.0.2",
  7475. "php": "^7.1.3 || ^8.0",
  7476. "phpoption/phpoption": "^1.8",
  7477. "symfony/polyfill-ctype": "^1.23",
  7478. "symfony/polyfill-mbstring": "^1.23.1",
  7479. "symfony/polyfill-php80": "^1.23.1"
  7480. },
  7481. "require-dev": {
  7482. "bamarni/composer-bin-plugin": "^1.4.1",
  7483. "ext-filter": "*",
  7484. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  7485. },
  7486. "suggest": {
  7487. "ext-filter": "Required to use the boolean validator."
  7488. },
  7489. "type": "library",
  7490. "extra": {
  7491. "bamarni-bin": {
  7492. "bin-links": true,
  7493. "forward-command": true
  7494. },
  7495. "branch-alias": {
  7496. "dev-master": "5.5-dev"
  7497. }
  7498. },
  7499. "autoload": {
  7500. "psr-4": {
  7501. "Dotenv\\": "src/"
  7502. }
  7503. },
  7504. "notification-url": "https://packagist.org/downloads/",
  7505. "license": [
  7506. "BSD-3-Clause"
  7507. ],
  7508. "authors": [
  7509. {
  7510. "name": "Graham Campbell",
  7511. "email": "hello@gjcampbell.co.uk",
  7512. "homepage": "https://github.com/GrahamCampbell"
  7513. },
  7514. {
  7515. "name": "Vance Lucas",
  7516. "email": "vance@vancelucas.com",
  7517. "homepage": "https://github.com/vlucas"
  7518. }
  7519. ],
  7520. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7521. "keywords": [
  7522. "dotenv",
  7523. "env",
  7524. "environment"
  7525. ],
  7526. "support": {
  7527. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7528. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  7529. },
  7530. "funding": [
  7531. {
  7532. "url": "https://github.com/GrahamCampbell",
  7533. "type": "github"
  7534. },
  7535. {
  7536. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7537. "type": "tidelift"
  7538. }
  7539. ],
  7540. "time": "2022-10-16T01:01:54+00:00"
  7541. },
  7542. {
  7543. "name": "voku/portable-ascii",
  7544. "version": "1.6.1",
  7545. "source": {
  7546. "type": "git",
  7547. "url": "https://github.com/voku/portable-ascii.git",
  7548. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7549. },
  7550. "dist": {
  7551. "type": "zip",
  7552. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7553. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7554. "shasum": "",
  7555. "mirrors": [
  7556. {
  7557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7558. "preferred": true
  7559. }
  7560. ]
  7561. },
  7562. "require": {
  7563. "php": ">=7.0.0"
  7564. },
  7565. "require-dev": {
  7566. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7567. },
  7568. "suggest": {
  7569. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7570. },
  7571. "type": "library",
  7572. "autoload": {
  7573. "psr-4": {
  7574. "voku\\": "src/voku/"
  7575. }
  7576. },
  7577. "notification-url": "https://packagist.org/downloads/",
  7578. "license": [
  7579. "MIT"
  7580. ],
  7581. "authors": [
  7582. {
  7583. "name": "Lars Moelleken",
  7584. "homepage": "http://www.moelleken.org/"
  7585. }
  7586. ],
  7587. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7588. "homepage": "https://github.com/voku/portable-ascii",
  7589. "keywords": [
  7590. "ascii",
  7591. "clean",
  7592. "php"
  7593. ],
  7594. "support": {
  7595. "issues": "https://github.com/voku/portable-ascii/issues",
  7596. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7597. },
  7598. "funding": [
  7599. {
  7600. "url": "https://www.paypal.me/moelleken",
  7601. "type": "custom"
  7602. },
  7603. {
  7604. "url": "https://github.com/voku",
  7605. "type": "github"
  7606. },
  7607. {
  7608. "url": "https://opencollective.com/portable-ascii",
  7609. "type": "open_collective"
  7610. },
  7611. {
  7612. "url": "https://www.patreon.com/voku",
  7613. "type": "patreon"
  7614. },
  7615. {
  7616. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7617. "type": "tidelift"
  7618. }
  7619. ],
  7620. "time": "2022-01-24T18:55:24+00:00"
  7621. },
  7622. {
  7623. "name": "w7corp/easywechat",
  7624. "version": "5.35.2",
  7625. "source": {
  7626. "type": "git",
  7627. "url": "https://github.com/w7corp/easywechat.git",
  7628. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f"
  7629. },
  7630. "dist": {
  7631. "type": "zip",
  7632. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/a9235a1d236a1892fccc989bd73008f2fe20094f",
  7633. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f",
  7634. "shasum": ""
  7635. },
  7636. "require": {
  7637. "easywechat-composer/easywechat-composer": "^1.1",
  7638. "ext-fileinfo": "*",
  7639. "ext-libxml": "*",
  7640. "ext-openssl": "*",
  7641. "ext-simplexml": "*",
  7642. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  7643. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  7644. "overtrue/socialite": "^3.2 || ^4.0",
  7645. "php": ">=7.4",
  7646. "pimple/pimple": "^3.0",
  7647. "psr/simple-cache": "^1.0||^2.0||^3.0",
  7648. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  7649. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  7650. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7651. },
  7652. "require-dev": {
  7653. "brainmaestro/composer-git-hooks": "^2.7",
  7654. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  7655. "friendsofphp/php-cs-fixer": "^3.5.0",
  7656. "mikey179/vfsstream": "^1.6",
  7657. "mockery/mockery": "^1.2.3",
  7658. "phpstan/phpstan": "^0.12.0",
  7659. "phpunit/phpunit": "^9.3"
  7660. },
  7661. "type": "library",
  7662. "extra": {
  7663. "hooks": {
  7664. "pre-commit": [
  7665. "composer test",
  7666. "composer fix-style"
  7667. ],
  7668. "pre-push": [
  7669. "composer test",
  7670. "composer fix-style"
  7671. ]
  7672. }
  7673. },
  7674. "autoload": {
  7675. "files": [
  7676. "src/Kernel/Support/Helpers.php",
  7677. "src/Kernel/Helpers.php"
  7678. ],
  7679. "psr-4": {
  7680. "EasyWeChat\\": "src/"
  7681. }
  7682. },
  7683. "notification-url": "https://packagist.org/downloads/",
  7684. "license": [
  7685. "MIT"
  7686. ],
  7687. "authors": [
  7688. {
  7689. "name": "overtrue",
  7690. "email": "anzhengchao@gmail.com"
  7691. }
  7692. ],
  7693. "description": "微信SDK",
  7694. "keywords": [
  7695. "easywechat",
  7696. "sdk",
  7697. "wechat",
  7698. "weixin",
  7699. "weixin-sdk"
  7700. ],
  7701. "support": {
  7702. "issues": "https://github.com/w7corp/easywechat/issues",
  7703. "source": "https://github.com/w7corp/easywechat/tree/5.35.2"
  7704. },
  7705. "funding": [
  7706. {
  7707. "url": "https://github.com/overtrue",
  7708. "type": "github"
  7709. }
  7710. ],
  7711. "time": "2024-08-06T13:21:05+00:00"
  7712. },
  7713. {
  7714. "name": "wantp/snowflake",
  7715. "version": "v1.2.0",
  7716. "source": {
  7717. "type": "git",
  7718. "url": "https://github.com/wantp/snowflake.git",
  7719. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  7720. },
  7721. "dist": {
  7722. "type": "zip",
  7723. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  7724. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  7725. "shasum": "",
  7726. "mirrors": [
  7727. {
  7728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7729. "preferred": true
  7730. }
  7731. ]
  7732. },
  7733. "require": {
  7734. "php": ">=7.0.0"
  7735. },
  7736. "type": "library",
  7737. "autoload": {
  7738. "psr-4": {
  7739. "wantp\\Snowflake\\": "src/Snowflake/"
  7740. }
  7741. },
  7742. "notification-url": "https://packagist.org/downloads/",
  7743. "license": [
  7744. "MIT"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "zhangrongwang",
  7749. "email": "zhangrongwang798@gmail.com"
  7750. }
  7751. ],
  7752. "description": "A package for create unique id by snowflake",
  7753. "keywords": [
  7754. "snowflake",
  7755. "uniqueId"
  7756. ],
  7757. "support": {
  7758. "issues": "https://github.com/wantp/snowflake/issues",
  7759. "source": "https://github.com/wantp/snowflake/tree/master"
  7760. },
  7761. "time": "2019-08-05T07:14:56+00:00"
  7762. },
  7763. {
  7764. "name": "webmozart/assert",
  7765. "version": "1.11.0",
  7766. "source": {
  7767. "type": "git",
  7768. "url": "https://github.com/webmozarts/assert.git",
  7769. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7770. },
  7771. "dist": {
  7772. "type": "zip",
  7773. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7774. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7775. "shasum": "",
  7776. "mirrors": [
  7777. {
  7778. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7779. "preferred": true
  7780. }
  7781. ]
  7782. },
  7783. "require": {
  7784. "ext-ctype": "*",
  7785. "php": "^7.2 || ^8.0"
  7786. },
  7787. "conflict": {
  7788. "phpstan/phpstan": "<0.12.20",
  7789. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7790. },
  7791. "require-dev": {
  7792. "phpunit/phpunit": "^8.5.13"
  7793. },
  7794. "type": "library",
  7795. "extra": {
  7796. "branch-alias": {
  7797. "dev-master": "1.10-dev"
  7798. }
  7799. },
  7800. "autoload": {
  7801. "psr-4": {
  7802. "Webmozart\\Assert\\": "src/"
  7803. }
  7804. },
  7805. "notification-url": "https://packagist.org/downloads/",
  7806. "license": [
  7807. "MIT"
  7808. ],
  7809. "authors": [
  7810. {
  7811. "name": "Bernhard Schussek",
  7812. "email": "bschussek@gmail.com"
  7813. }
  7814. ],
  7815. "description": "Assertions to validate method input/output with nice error messages.",
  7816. "keywords": [
  7817. "assert",
  7818. "check",
  7819. "validate"
  7820. ],
  7821. "support": {
  7822. "issues": "https://github.com/webmozarts/assert/issues",
  7823. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7824. },
  7825. "time": "2022-06-03T18:03:27+00:00"
  7826. },
  7827. {
  7828. "name": "wechatpay/wechatpay",
  7829. "version": "1.4.10",
  7830. "source": {
  7831. "type": "git",
  7832. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  7833. "reference": "9c364872bd2063bf3f10efc3765e96e3e1b20e2e"
  7834. },
  7835. "dist": {
  7836. "type": "zip",
  7837. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/9c364872bd2063bf3f10efc3765e96e3e1b20e2e",
  7838. "reference": "9c364872bd2063bf3f10efc3765e96e3e1b20e2e",
  7839. "shasum": ""
  7840. },
  7841. "require": {
  7842. "ext-curl": "*",
  7843. "ext-libxml": "*",
  7844. "ext-openssl": "*",
  7845. "ext-simplexml": "*",
  7846. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7847. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  7848. "php": ">=7.1.2"
  7849. },
  7850. "require-dev": {
  7851. "phpstan/phpstan": "^0.12.89 || ^1.0",
  7852. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  7853. },
  7854. "bin": [
  7855. "bin/CertificateDownloader.php"
  7856. ],
  7857. "type": "library",
  7858. "autoload": {
  7859. "psr-4": {
  7860. "WeChatPay\\": "src/"
  7861. }
  7862. },
  7863. "notification-url": "https://packagist.org/downloads/",
  7864. "license": [
  7865. "Apache-2.0"
  7866. ],
  7867. "authors": [
  7868. {
  7869. "name": "James ZHANG",
  7870. "homepage": "https://github.com/TheNorthMemory"
  7871. },
  7872. {
  7873. "name": "WeChatPay Community",
  7874. "homepage": "https://developers.weixin.qq.com/community/pay"
  7875. }
  7876. ],
  7877. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  7878. "homepage": "https://pay.weixin.qq.com/",
  7879. "keywords": [
  7880. "AES-GCM",
  7881. "aes-ecb",
  7882. "openapi-chainable",
  7883. "rsa-oaep",
  7884. "wechatpay",
  7885. "xml-builder",
  7886. "xml-parser"
  7887. ],
  7888. "support": {
  7889. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  7890. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.10"
  7891. },
  7892. "time": "2024-09-19T04:22:06+00:00"
  7893. }
  7894. ],
  7895. "packages-dev": [
  7896. {
  7897. "name": "doctrine/instantiator",
  7898. "version": "1.5.0",
  7899. "source": {
  7900. "type": "git",
  7901. "url": "https://github.com/doctrine/instantiator.git",
  7902. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  7903. },
  7904. "dist": {
  7905. "type": "zip",
  7906. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  7907. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  7908. "shasum": "",
  7909. "mirrors": [
  7910. {
  7911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7912. "preferred": true
  7913. }
  7914. ]
  7915. },
  7916. "require": {
  7917. "php": "^7.1 || ^8.0"
  7918. },
  7919. "require-dev": {
  7920. "doctrine/coding-standard": "^9 || ^11",
  7921. "ext-pdo": "*",
  7922. "ext-phar": "*",
  7923. "phpbench/phpbench": "^0.16 || ^1",
  7924. "phpstan/phpstan": "^1.4",
  7925. "phpstan/phpstan-phpunit": "^1",
  7926. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  7927. "vimeo/psalm": "^4.30 || ^5.4"
  7928. },
  7929. "type": "library",
  7930. "autoload": {
  7931. "psr-4": {
  7932. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7933. }
  7934. },
  7935. "notification-url": "https://packagist.org/downloads/",
  7936. "license": [
  7937. "MIT"
  7938. ],
  7939. "authors": [
  7940. {
  7941. "name": "Marco Pivetta",
  7942. "email": "ocramius@gmail.com",
  7943. "homepage": "https://ocramius.github.io/"
  7944. }
  7945. ],
  7946. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7947. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7948. "keywords": [
  7949. "constructor",
  7950. "instantiate"
  7951. ],
  7952. "support": {
  7953. "issues": "https://github.com/doctrine/instantiator/issues",
  7954. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  7955. },
  7956. "funding": [
  7957. {
  7958. "url": "https://www.doctrine-project.org/sponsorship.html",
  7959. "type": "custom"
  7960. },
  7961. {
  7962. "url": "https://www.patreon.com/phpdoctrine",
  7963. "type": "patreon"
  7964. },
  7965. {
  7966. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7967. "type": "tidelift"
  7968. }
  7969. ],
  7970. "time": "2022-12-30T00:15:36+00:00"
  7971. },
  7972. {
  7973. "name": "facade/flare-client-php",
  7974. "version": "1.10.0",
  7975. "source": {
  7976. "type": "git",
  7977. "url": "https://github.com/facade/flare-client-php.git",
  7978. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  7979. },
  7980. "dist": {
  7981. "type": "zip",
  7982. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  7983. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  7984. "shasum": "",
  7985. "mirrors": [
  7986. {
  7987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7988. "preferred": true
  7989. }
  7990. ]
  7991. },
  7992. "require": {
  7993. "facade/ignition-contracts": "~1.0",
  7994. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  7995. "php": "^7.1|^8.0",
  7996. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  7997. "symfony/mime": "^3.4|^4.0|^5.1",
  7998. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  7999. },
  8000. "require-dev": {
  8001. "friendsofphp/php-cs-fixer": "^2.14",
  8002. "phpunit/phpunit": "^7.5",
  8003. "spatie/phpunit-snapshot-assertions": "^2.0"
  8004. },
  8005. "type": "library",
  8006. "extra": {
  8007. "branch-alias": {
  8008. "dev-master": "1.0-dev"
  8009. }
  8010. },
  8011. "autoload": {
  8012. "files": [
  8013. "src/helpers.php"
  8014. ],
  8015. "psr-4": {
  8016. "Facade\\FlareClient\\": "src"
  8017. }
  8018. },
  8019. "notification-url": "https://packagist.org/downloads/",
  8020. "license": [
  8021. "MIT"
  8022. ],
  8023. "description": "Send PHP errors to Flare",
  8024. "homepage": "https://github.com/facade/flare-client-php",
  8025. "keywords": [
  8026. "exception",
  8027. "facade",
  8028. "flare",
  8029. "reporting"
  8030. ],
  8031. "support": {
  8032. "issues": "https://github.com/facade/flare-client-php/issues",
  8033. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8034. },
  8035. "funding": [
  8036. {
  8037. "url": "https://github.com/spatie",
  8038. "type": "github"
  8039. }
  8040. ],
  8041. "time": "2022-08-09T11:23:57+00:00"
  8042. },
  8043. {
  8044. "name": "facade/ignition",
  8045. "version": "2.17.7",
  8046. "source": {
  8047. "type": "git",
  8048. "url": "https://github.com/facade/ignition.git",
  8049. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8050. },
  8051. "dist": {
  8052. "type": "zip",
  8053. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8054. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8055. "shasum": "",
  8056. "mirrors": [
  8057. {
  8058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8059. "preferred": true
  8060. }
  8061. ]
  8062. },
  8063. "require": {
  8064. "ext-curl": "*",
  8065. "ext-json": "*",
  8066. "ext-mbstring": "*",
  8067. "facade/flare-client-php": "^1.9.1",
  8068. "facade/ignition-contracts": "^1.0.2",
  8069. "illuminate/support": "^7.0|^8.0",
  8070. "monolog/monolog": "^2.0",
  8071. "php": "^7.2.5|^8.0",
  8072. "symfony/console": "^5.0",
  8073. "symfony/var-dumper": "^5.0"
  8074. },
  8075. "require-dev": {
  8076. "friendsofphp/php-cs-fixer": "^2.14",
  8077. "livewire/livewire": "^2.4",
  8078. "mockery/mockery": "^1.3",
  8079. "orchestra/testbench": "^5.0|^6.0",
  8080. "psalm/plugin-laravel": "^1.2"
  8081. },
  8082. "suggest": {
  8083. "laravel/telescope": "^3.1"
  8084. },
  8085. "type": "library",
  8086. "extra": {
  8087. "branch-alias": {
  8088. "dev-master": "2.x-dev"
  8089. },
  8090. "laravel": {
  8091. "providers": [
  8092. "Facade\\Ignition\\IgnitionServiceProvider"
  8093. ],
  8094. "aliases": {
  8095. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8096. }
  8097. }
  8098. },
  8099. "autoload": {
  8100. "files": [
  8101. "src/helpers.php"
  8102. ],
  8103. "psr-4": {
  8104. "Facade\\Ignition\\": "src"
  8105. }
  8106. },
  8107. "notification-url": "https://packagist.org/downloads/",
  8108. "license": [
  8109. "MIT"
  8110. ],
  8111. "description": "A beautiful error page for Laravel applications.",
  8112. "homepage": "https://github.com/facade/ignition",
  8113. "keywords": [
  8114. "error",
  8115. "flare",
  8116. "laravel",
  8117. "page"
  8118. ],
  8119. "support": {
  8120. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8121. "forum": "https://twitter.com/flareappio",
  8122. "issues": "https://github.com/facade/ignition/issues",
  8123. "source": "https://github.com/facade/ignition"
  8124. },
  8125. "time": "2023-01-26T12:34:59+00:00"
  8126. },
  8127. {
  8128. "name": "facade/ignition-contracts",
  8129. "version": "1.0.2",
  8130. "source": {
  8131. "type": "git",
  8132. "url": "https://github.com/facade/ignition-contracts.git",
  8133. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8134. },
  8135. "dist": {
  8136. "type": "zip",
  8137. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8138. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8139. "shasum": "",
  8140. "mirrors": [
  8141. {
  8142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8143. "preferred": true
  8144. }
  8145. ]
  8146. },
  8147. "require": {
  8148. "php": "^7.3|^8.0"
  8149. },
  8150. "require-dev": {
  8151. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8152. "phpunit/phpunit": "^9.3.11",
  8153. "vimeo/psalm": "^3.17.1"
  8154. },
  8155. "type": "library",
  8156. "autoload": {
  8157. "psr-4": {
  8158. "Facade\\IgnitionContracts\\": "src"
  8159. }
  8160. },
  8161. "notification-url": "https://packagist.org/downloads/",
  8162. "license": [
  8163. "MIT"
  8164. ],
  8165. "authors": [
  8166. {
  8167. "name": "Freek Van der Herten",
  8168. "email": "freek@spatie.be",
  8169. "homepage": "https://flareapp.io",
  8170. "role": "Developer"
  8171. }
  8172. ],
  8173. "description": "Solution contracts for Ignition",
  8174. "homepage": "https://github.com/facade/ignition-contracts",
  8175. "keywords": [
  8176. "contracts",
  8177. "flare",
  8178. "ignition"
  8179. ],
  8180. "support": {
  8181. "issues": "https://github.com/facade/ignition-contracts/issues",
  8182. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8183. },
  8184. "time": "2020-10-16T08:27:54+00:00"
  8185. },
  8186. {
  8187. "name": "fakerphp/faker",
  8188. "version": "v1.23.0",
  8189. "source": {
  8190. "type": "git",
  8191. "url": "https://github.com/FakerPHP/Faker.git",
  8192. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8193. },
  8194. "dist": {
  8195. "type": "zip",
  8196. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8197. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8198. "shasum": "",
  8199. "mirrors": [
  8200. {
  8201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8202. "preferred": true
  8203. }
  8204. ]
  8205. },
  8206. "require": {
  8207. "php": "^7.4 || ^8.0",
  8208. "psr/container": "^1.0 || ^2.0",
  8209. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8210. },
  8211. "conflict": {
  8212. "fzaninotto/faker": "*"
  8213. },
  8214. "require-dev": {
  8215. "bamarni/composer-bin-plugin": "^1.4.1",
  8216. "doctrine/persistence": "^1.3 || ^2.0",
  8217. "ext-intl": "*",
  8218. "phpunit/phpunit": "^9.5.26",
  8219. "symfony/phpunit-bridge": "^5.4.16"
  8220. },
  8221. "suggest": {
  8222. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8223. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8224. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8225. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8226. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8227. },
  8228. "type": "library",
  8229. "extra": {
  8230. "branch-alias": {
  8231. "dev-main": "v1.21-dev"
  8232. }
  8233. },
  8234. "autoload": {
  8235. "psr-4": {
  8236. "Faker\\": "src/Faker/"
  8237. }
  8238. },
  8239. "notification-url": "https://packagist.org/downloads/",
  8240. "license": [
  8241. "MIT"
  8242. ],
  8243. "authors": [
  8244. {
  8245. "name": "François Zaninotto"
  8246. }
  8247. ],
  8248. "description": "Faker is a PHP library that generates fake data for you.",
  8249. "keywords": [
  8250. "data",
  8251. "faker",
  8252. "fixtures"
  8253. ],
  8254. "support": {
  8255. "issues": "https://github.com/FakerPHP/Faker/issues",
  8256. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8257. },
  8258. "time": "2023-06-12T08:44:38+00:00"
  8259. },
  8260. {
  8261. "name": "filp/whoops",
  8262. "version": "2.15.4",
  8263. "source": {
  8264. "type": "git",
  8265. "url": "https://github.com/filp/whoops.git",
  8266. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8267. },
  8268. "dist": {
  8269. "type": "zip",
  8270. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8271. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8272. "shasum": "",
  8273. "mirrors": [
  8274. {
  8275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8276. "preferred": true
  8277. }
  8278. ]
  8279. },
  8280. "require": {
  8281. "php": "^5.5.9 || ^7.0 || ^8.0",
  8282. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8283. },
  8284. "require-dev": {
  8285. "mockery/mockery": "^0.9 || ^1.0",
  8286. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8287. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8288. },
  8289. "suggest": {
  8290. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8291. "whoops/soap": "Formats errors as SOAP responses"
  8292. },
  8293. "type": "library",
  8294. "extra": {
  8295. "branch-alias": {
  8296. "dev-master": "2.7-dev"
  8297. }
  8298. },
  8299. "autoload": {
  8300. "psr-4": {
  8301. "Whoops\\": "src/Whoops/"
  8302. }
  8303. },
  8304. "notification-url": "https://packagist.org/downloads/",
  8305. "license": [
  8306. "MIT"
  8307. ],
  8308. "authors": [
  8309. {
  8310. "name": "Filipe Dobreira",
  8311. "homepage": "https://github.com/filp",
  8312. "role": "Developer"
  8313. }
  8314. ],
  8315. "description": "php error handling for cool kids",
  8316. "homepage": "https://filp.github.io/whoops/",
  8317. "keywords": [
  8318. "error",
  8319. "exception",
  8320. "handling",
  8321. "library",
  8322. "throwable",
  8323. "whoops"
  8324. ],
  8325. "support": {
  8326. "issues": "https://github.com/filp/whoops/issues",
  8327. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8328. },
  8329. "funding": [
  8330. {
  8331. "url": "https://github.com/denis-sokolov",
  8332. "type": "github"
  8333. }
  8334. ],
  8335. "time": "2023-11-03T12:00:00+00:00"
  8336. },
  8337. {
  8338. "name": "hamcrest/hamcrest-php",
  8339. "version": "v2.0.1",
  8340. "source": {
  8341. "type": "git",
  8342. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8343. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8344. },
  8345. "dist": {
  8346. "type": "zip",
  8347. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8348. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8349. "shasum": "",
  8350. "mirrors": [
  8351. {
  8352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8353. "preferred": true
  8354. }
  8355. ]
  8356. },
  8357. "require": {
  8358. "php": "^5.3|^7.0|^8.0"
  8359. },
  8360. "replace": {
  8361. "cordoval/hamcrest-php": "*",
  8362. "davedevelopment/hamcrest-php": "*",
  8363. "kodova/hamcrest-php": "*"
  8364. },
  8365. "require-dev": {
  8366. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8367. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8368. },
  8369. "type": "library",
  8370. "extra": {
  8371. "branch-alias": {
  8372. "dev-master": "2.1-dev"
  8373. }
  8374. },
  8375. "autoload": {
  8376. "classmap": [
  8377. "hamcrest"
  8378. ]
  8379. },
  8380. "notification-url": "https://packagist.org/downloads/",
  8381. "license": [
  8382. "BSD-3-Clause"
  8383. ],
  8384. "description": "This is the PHP port of Hamcrest Matchers",
  8385. "keywords": [
  8386. "test"
  8387. ],
  8388. "support": {
  8389. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8390. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8391. },
  8392. "time": "2020-07-09T08:09:16+00:00"
  8393. },
  8394. {
  8395. "name": "laravel/sail",
  8396. "version": "v1.19.0",
  8397. "source": {
  8398. "type": "git",
  8399. "url": "https://github.com/laravel/sail.git",
  8400. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  8401. },
  8402. "dist": {
  8403. "type": "zip",
  8404. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8405. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  8406. "shasum": "",
  8407. "mirrors": [
  8408. {
  8409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8410. "preferred": true
  8411. }
  8412. ]
  8413. },
  8414. "require": {
  8415. "illuminate/console": "^8.0|^9.0|^10.0",
  8416. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8417. "illuminate/support": "^8.0|^9.0|^10.0",
  8418. "php": "^7.3|^8.0"
  8419. },
  8420. "bin": [
  8421. "bin/sail"
  8422. ],
  8423. "type": "library",
  8424. "extra": {
  8425. "branch-alias": {
  8426. "dev-master": "1.x-dev"
  8427. },
  8428. "laravel": {
  8429. "providers": [
  8430. "Laravel\\Sail\\SailServiceProvider"
  8431. ]
  8432. }
  8433. },
  8434. "autoload": {
  8435. "psr-4": {
  8436. "Laravel\\Sail\\": "src/"
  8437. }
  8438. },
  8439. "notification-url": "https://packagist.org/downloads/",
  8440. "license": [
  8441. "MIT"
  8442. ],
  8443. "authors": [
  8444. {
  8445. "name": "Taylor Otwell",
  8446. "email": "taylor@laravel.com"
  8447. }
  8448. ],
  8449. "description": "Docker files for running a basic Laravel application.",
  8450. "keywords": [
  8451. "docker",
  8452. "laravel"
  8453. ],
  8454. "support": {
  8455. "issues": "https://github.com/laravel/sail/issues",
  8456. "source": "https://github.com/laravel/sail"
  8457. },
  8458. "time": "2023-01-31T13:37:57+00:00"
  8459. },
  8460. {
  8461. "name": "mockery/mockery",
  8462. "version": "1.6.6",
  8463. "source": {
  8464. "type": "git",
  8465. "url": "https://github.com/mockery/mockery.git",
  8466. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  8467. },
  8468. "dist": {
  8469. "type": "zip",
  8470. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  8471. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  8472. "shasum": "",
  8473. "mirrors": [
  8474. {
  8475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8476. "preferred": true
  8477. }
  8478. ]
  8479. },
  8480. "require": {
  8481. "hamcrest/hamcrest-php": "^2.0.1",
  8482. "lib-pcre": ">=7.0",
  8483. "php": ">=7.3"
  8484. },
  8485. "conflict": {
  8486. "phpunit/phpunit": "<8.0"
  8487. },
  8488. "require-dev": {
  8489. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8490. "psalm/plugin-phpunit": "^0.18.4",
  8491. "symplify/easy-coding-standard": "^11.5.0",
  8492. "vimeo/psalm": "^4.30"
  8493. },
  8494. "type": "library",
  8495. "autoload": {
  8496. "files": [
  8497. "library/helpers.php",
  8498. "library/Mockery.php"
  8499. ],
  8500. "psr-4": {
  8501. "Mockery\\": "library/Mockery"
  8502. }
  8503. },
  8504. "notification-url": "https://packagist.org/downloads/",
  8505. "license": [
  8506. "BSD-3-Clause"
  8507. ],
  8508. "authors": [
  8509. {
  8510. "name": "Pádraic Brady",
  8511. "email": "padraic.brady@gmail.com",
  8512. "homepage": "https://github.com/padraic",
  8513. "role": "Author"
  8514. },
  8515. {
  8516. "name": "Dave Marshall",
  8517. "email": "dave.marshall@atstsolutions.co.uk",
  8518. "homepage": "https://davedevelopment.co.uk",
  8519. "role": "Developer"
  8520. },
  8521. {
  8522. "name": "Nathanael Esayeas",
  8523. "email": "nathanael.esayeas@protonmail.com",
  8524. "homepage": "https://github.com/ghostwriter",
  8525. "role": "Lead Developer"
  8526. }
  8527. ],
  8528. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8529. "homepage": "https://github.com/mockery/mockery",
  8530. "keywords": [
  8531. "BDD",
  8532. "TDD",
  8533. "library",
  8534. "mock",
  8535. "mock objects",
  8536. "mockery",
  8537. "stub",
  8538. "test",
  8539. "test double",
  8540. "testing"
  8541. ],
  8542. "support": {
  8543. "docs": "https://docs.mockery.io/",
  8544. "issues": "https://github.com/mockery/mockery/issues",
  8545. "rss": "https://github.com/mockery/mockery/releases.atom",
  8546. "security": "https://github.com/mockery/mockery/security/advisories",
  8547. "source": "https://github.com/mockery/mockery"
  8548. },
  8549. "time": "2023-08-09T00:03:52+00:00"
  8550. },
  8551. {
  8552. "name": "myclabs/deep-copy",
  8553. "version": "1.11.1",
  8554. "source": {
  8555. "type": "git",
  8556. "url": "https://github.com/myclabs/DeepCopy.git",
  8557. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8558. },
  8559. "dist": {
  8560. "type": "zip",
  8561. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8562. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8563. "shasum": "",
  8564. "mirrors": [
  8565. {
  8566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8567. "preferred": true
  8568. }
  8569. ]
  8570. },
  8571. "require": {
  8572. "php": "^7.1 || ^8.0"
  8573. },
  8574. "conflict": {
  8575. "doctrine/collections": "<1.6.8",
  8576. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8577. },
  8578. "require-dev": {
  8579. "doctrine/collections": "^1.6.8",
  8580. "doctrine/common": "^2.13.3 || ^3.2.2",
  8581. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8582. },
  8583. "type": "library",
  8584. "autoload": {
  8585. "files": [
  8586. "src/DeepCopy/deep_copy.php"
  8587. ],
  8588. "psr-4": {
  8589. "DeepCopy\\": "src/DeepCopy/"
  8590. }
  8591. },
  8592. "notification-url": "https://packagist.org/downloads/",
  8593. "license": [
  8594. "MIT"
  8595. ],
  8596. "description": "Create deep copies (clones) of your objects",
  8597. "keywords": [
  8598. "clone",
  8599. "copy",
  8600. "duplicate",
  8601. "object",
  8602. "object graph"
  8603. ],
  8604. "support": {
  8605. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8606. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  8607. },
  8608. "funding": [
  8609. {
  8610. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8611. "type": "tidelift"
  8612. }
  8613. ],
  8614. "time": "2023-03-08T13:26:56+00:00"
  8615. },
  8616. {
  8617. "name": "nunomaduro/collision",
  8618. "version": "v5.11.0",
  8619. "source": {
  8620. "type": "git",
  8621. "url": "https://github.com/nunomaduro/collision.git",
  8622. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8623. },
  8624. "dist": {
  8625. "type": "zip",
  8626. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8627. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8628. "shasum": "",
  8629. "mirrors": [
  8630. {
  8631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8632. "preferred": true
  8633. }
  8634. ]
  8635. },
  8636. "require": {
  8637. "facade/ignition-contracts": "^1.0",
  8638. "filp/whoops": "^2.14.3",
  8639. "php": "^7.3 || ^8.0",
  8640. "symfony/console": "^5.0"
  8641. },
  8642. "require-dev": {
  8643. "brianium/paratest": "^6.1",
  8644. "fideloper/proxy": "^4.4.1",
  8645. "fruitcake/laravel-cors": "^2.0.3",
  8646. "laravel/framework": "8.x-dev",
  8647. "nunomaduro/larastan": "^0.6.2",
  8648. "nunomaduro/mock-final-classes": "^1.0",
  8649. "orchestra/testbench": "^6.0",
  8650. "phpstan/phpstan": "^0.12.64",
  8651. "phpunit/phpunit": "^9.5.0"
  8652. },
  8653. "type": "library",
  8654. "extra": {
  8655. "laravel": {
  8656. "providers": [
  8657. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8658. ]
  8659. }
  8660. },
  8661. "autoload": {
  8662. "psr-4": {
  8663. "NunoMaduro\\Collision\\": "src/"
  8664. }
  8665. },
  8666. "notification-url": "https://packagist.org/downloads/",
  8667. "license": [
  8668. "MIT"
  8669. ],
  8670. "authors": [
  8671. {
  8672. "name": "Nuno Maduro",
  8673. "email": "enunomaduro@gmail.com"
  8674. }
  8675. ],
  8676. "description": "Cli error handling for console/command-line PHP applications.",
  8677. "keywords": [
  8678. "artisan",
  8679. "cli",
  8680. "command-line",
  8681. "console",
  8682. "error",
  8683. "handling",
  8684. "laravel",
  8685. "laravel-zero",
  8686. "php",
  8687. "symfony"
  8688. ],
  8689. "support": {
  8690. "issues": "https://github.com/nunomaduro/collision/issues",
  8691. "source": "https://github.com/nunomaduro/collision"
  8692. },
  8693. "funding": [
  8694. {
  8695. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8696. "type": "custom"
  8697. },
  8698. {
  8699. "url": "https://github.com/nunomaduro",
  8700. "type": "github"
  8701. },
  8702. {
  8703. "url": "https://www.patreon.com/nunomaduro",
  8704. "type": "patreon"
  8705. }
  8706. ],
  8707. "time": "2022-01-10T16:22:52+00:00"
  8708. },
  8709. {
  8710. "name": "phar-io/manifest",
  8711. "version": "2.0.3",
  8712. "source": {
  8713. "type": "git",
  8714. "url": "https://github.com/phar-io/manifest.git",
  8715. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8716. },
  8717. "dist": {
  8718. "type": "zip",
  8719. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8720. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8721. "shasum": "",
  8722. "mirrors": [
  8723. {
  8724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8725. "preferred": true
  8726. }
  8727. ]
  8728. },
  8729. "require": {
  8730. "ext-dom": "*",
  8731. "ext-phar": "*",
  8732. "ext-xmlwriter": "*",
  8733. "phar-io/version": "^3.0.1",
  8734. "php": "^7.2 || ^8.0"
  8735. },
  8736. "type": "library",
  8737. "extra": {
  8738. "branch-alias": {
  8739. "dev-master": "2.0.x-dev"
  8740. }
  8741. },
  8742. "autoload": {
  8743. "classmap": [
  8744. "src/"
  8745. ]
  8746. },
  8747. "notification-url": "https://packagist.org/downloads/",
  8748. "license": [
  8749. "BSD-3-Clause"
  8750. ],
  8751. "authors": [
  8752. {
  8753. "name": "Arne Blankerts",
  8754. "email": "arne@blankerts.de",
  8755. "role": "Developer"
  8756. },
  8757. {
  8758. "name": "Sebastian Heuer",
  8759. "email": "sebastian@phpeople.de",
  8760. "role": "Developer"
  8761. },
  8762. {
  8763. "name": "Sebastian Bergmann",
  8764. "email": "sebastian@phpunit.de",
  8765. "role": "Developer"
  8766. }
  8767. ],
  8768. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8769. "support": {
  8770. "issues": "https://github.com/phar-io/manifest/issues",
  8771. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8772. },
  8773. "time": "2021-07-20T11:28:43+00:00"
  8774. },
  8775. {
  8776. "name": "phar-io/version",
  8777. "version": "3.2.1",
  8778. "source": {
  8779. "type": "git",
  8780. "url": "https://github.com/phar-io/version.git",
  8781. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8782. },
  8783. "dist": {
  8784. "type": "zip",
  8785. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8786. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8787. "shasum": "",
  8788. "mirrors": [
  8789. {
  8790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8791. "preferred": true
  8792. }
  8793. ]
  8794. },
  8795. "require": {
  8796. "php": "^7.2 || ^8.0"
  8797. },
  8798. "type": "library",
  8799. "autoload": {
  8800. "classmap": [
  8801. "src/"
  8802. ]
  8803. },
  8804. "notification-url": "https://packagist.org/downloads/",
  8805. "license": [
  8806. "BSD-3-Clause"
  8807. ],
  8808. "authors": [
  8809. {
  8810. "name": "Arne Blankerts",
  8811. "email": "arne@blankerts.de",
  8812. "role": "Developer"
  8813. },
  8814. {
  8815. "name": "Sebastian Heuer",
  8816. "email": "sebastian@phpeople.de",
  8817. "role": "Developer"
  8818. },
  8819. {
  8820. "name": "Sebastian Bergmann",
  8821. "email": "sebastian@phpunit.de",
  8822. "role": "Developer"
  8823. }
  8824. ],
  8825. "description": "Library for handling version information and constraints",
  8826. "support": {
  8827. "issues": "https://github.com/phar-io/version/issues",
  8828. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8829. },
  8830. "time": "2022-02-21T01:04:05+00:00"
  8831. },
  8832. {
  8833. "name": "phpunit/php-code-coverage",
  8834. "version": "9.2.30",
  8835. "source": {
  8836. "type": "git",
  8837. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8838. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  8839. },
  8840. "dist": {
  8841. "type": "zip",
  8842. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8843. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  8844. "shasum": "",
  8845. "mirrors": [
  8846. {
  8847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8848. "preferred": true
  8849. }
  8850. ]
  8851. },
  8852. "require": {
  8853. "ext-dom": "*",
  8854. "ext-libxml": "*",
  8855. "ext-xmlwriter": "*",
  8856. "nikic/php-parser": "^4.18 || ^5.0",
  8857. "php": ">=7.3",
  8858. "phpunit/php-file-iterator": "^3.0.3",
  8859. "phpunit/php-text-template": "^2.0.2",
  8860. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  8861. "sebastian/complexity": "^2.0",
  8862. "sebastian/environment": "^5.1.2",
  8863. "sebastian/lines-of-code": "^1.0.3",
  8864. "sebastian/version": "^3.0.1",
  8865. "theseer/tokenizer": "^1.2.0"
  8866. },
  8867. "require-dev": {
  8868. "phpunit/phpunit": "^9.3"
  8869. },
  8870. "suggest": {
  8871. "ext-pcov": "PHP extension that provides line coverage",
  8872. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8873. },
  8874. "type": "library",
  8875. "extra": {
  8876. "branch-alias": {
  8877. "dev-master": "9.2-dev"
  8878. }
  8879. },
  8880. "autoload": {
  8881. "classmap": [
  8882. "src/"
  8883. ]
  8884. },
  8885. "notification-url": "https://packagist.org/downloads/",
  8886. "license": [
  8887. "BSD-3-Clause"
  8888. ],
  8889. "authors": [
  8890. {
  8891. "name": "Sebastian Bergmann",
  8892. "email": "sebastian@phpunit.de",
  8893. "role": "lead"
  8894. }
  8895. ],
  8896. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8897. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8898. "keywords": [
  8899. "coverage",
  8900. "testing",
  8901. "xunit"
  8902. ],
  8903. "support": {
  8904. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8905. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8906. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  8907. },
  8908. "funding": [
  8909. {
  8910. "url": "https://github.com/sebastianbergmann",
  8911. "type": "github"
  8912. }
  8913. ],
  8914. "time": "2023-12-22T06:47:57+00:00"
  8915. },
  8916. {
  8917. "name": "phpunit/php-file-iterator",
  8918. "version": "3.0.6",
  8919. "source": {
  8920. "type": "git",
  8921. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8922. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8923. },
  8924. "dist": {
  8925. "type": "zip",
  8926. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8927. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8928. "shasum": "",
  8929. "mirrors": [
  8930. {
  8931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8932. "preferred": true
  8933. }
  8934. ]
  8935. },
  8936. "require": {
  8937. "php": ">=7.3"
  8938. },
  8939. "require-dev": {
  8940. "phpunit/phpunit": "^9.3"
  8941. },
  8942. "type": "library",
  8943. "extra": {
  8944. "branch-alias": {
  8945. "dev-master": "3.0-dev"
  8946. }
  8947. },
  8948. "autoload": {
  8949. "classmap": [
  8950. "src/"
  8951. ]
  8952. },
  8953. "notification-url": "https://packagist.org/downloads/",
  8954. "license": [
  8955. "BSD-3-Clause"
  8956. ],
  8957. "authors": [
  8958. {
  8959. "name": "Sebastian Bergmann",
  8960. "email": "sebastian@phpunit.de",
  8961. "role": "lead"
  8962. }
  8963. ],
  8964. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8965. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8966. "keywords": [
  8967. "filesystem",
  8968. "iterator"
  8969. ],
  8970. "support": {
  8971. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8972. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8973. },
  8974. "funding": [
  8975. {
  8976. "url": "https://github.com/sebastianbergmann",
  8977. "type": "github"
  8978. }
  8979. ],
  8980. "time": "2021-12-02T12:48:52+00:00"
  8981. },
  8982. {
  8983. "name": "phpunit/php-invoker",
  8984. "version": "3.1.1",
  8985. "source": {
  8986. "type": "git",
  8987. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8988. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8989. },
  8990. "dist": {
  8991. "type": "zip",
  8992. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8993. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8994. "shasum": "",
  8995. "mirrors": [
  8996. {
  8997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8998. "preferred": true
  8999. }
  9000. ]
  9001. },
  9002. "require": {
  9003. "php": ">=7.3"
  9004. },
  9005. "require-dev": {
  9006. "ext-pcntl": "*",
  9007. "phpunit/phpunit": "^9.3"
  9008. },
  9009. "suggest": {
  9010. "ext-pcntl": "*"
  9011. },
  9012. "type": "library",
  9013. "extra": {
  9014. "branch-alias": {
  9015. "dev-master": "3.1-dev"
  9016. }
  9017. },
  9018. "autoload": {
  9019. "classmap": [
  9020. "src/"
  9021. ]
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "BSD-3-Clause"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Sebastian Bergmann",
  9030. "email": "sebastian@phpunit.de",
  9031. "role": "lead"
  9032. }
  9033. ],
  9034. "description": "Invoke callables with a timeout",
  9035. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9036. "keywords": [
  9037. "process"
  9038. ],
  9039. "support": {
  9040. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9041. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9042. },
  9043. "funding": [
  9044. {
  9045. "url": "https://github.com/sebastianbergmann",
  9046. "type": "github"
  9047. }
  9048. ],
  9049. "time": "2020-09-28T05:58:55+00:00"
  9050. },
  9051. {
  9052. "name": "phpunit/php-text-template",
  9053. "version": "2.0.4",
  9054. "source": {
  9055. "type": "git",
  9056. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9057. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9058. },
  9059. "dist": {
  9060. "type": "zip",
  9061. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9062. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9063. "shasum": "",
  9064. "mirrors": [
  9065. {
  9066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9067. "preferred": true
  9068. }
  9069. ]
  9070. },
  9071. "require": {
  9072. "php": ">=7.3"
  9073. },
  9074. "require-dev": {
  9075. "phpunit/phpunit": "^9.3"
  9076. },
  9077. "type": "library",
  9078. "extra": {
  9079. "branch-alias": {
  9080. "dev-master": "2.0-dev"
  9081. }
  9082. },
  9083. "autoload": {
  9084. "classmap": [
  9085. "src/"
  9086. ]
  9087. },
  9088. "notification-url": "https://packagist.org/downloads/",
  9089. "license": [
  9090. "BSD-3-Clause"
  9091. ],
  9092. "authors": [
  9093. {
  9094. "name": "Sebastian Bergmann",
  9095. "email": "sebastian@phpunit.de",
  9096. "role": "lead"
  9097. }
  9098. ],
  9099. "description": "Simple template engine.",
  9100. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9101. "keywords": [
  9102. "template"
  9103. ],
  9104. "support": {
  9105. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9106. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9107. },
  9108. "funding": [
  9109. {
  9110. "url": "https://github.com/sebastianbergmann",
  9111. "type": "github"
  9112. }
  9113. ],
  9114. "time": "2020-10-26T05:33:50+00:00"
  9115. },
  9116. {
  9117. "name": "phpunit/php-timer",
  9118. "version": "5.0.3",
  9119. "source": {
  9120. "type": "git",
  9121. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9122. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9123. },
  9124. "dist": {
  9125. "type": "zip",
  9126. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9127. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9128. "shasum": "",
  9129. "mirrors": [
  9130. {
  9131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9132. "preferred": true
  9133. }
  9134. ]
  9135. },
  9136. "require": {
  9137. "php": ">=7.3"
  9138. },
  9139. "require-dev": {
  9140. "phpunit/phpunit": "^9.3"
  9141. },
  9142. "type": "library",
  9143. "extra": {
  9144. "branch-alias": {
  9145. "dev-master": "5.0-dev"
  9146. }
  9147. },
  9148. "autoload": {
  9149. "classmap": [
  9150. "src/"
  9151. ]
  9152. },
  9153. "notification-url": "https://packagist.org/downloads/",
  9154. "license": [
  9155. "BSD-3-Clause"
  9156. ],
  9157. "authors": [
  9158. {
  9159. "name": "Sebastian Bergmann",
  9160. "email": "sebastian@phpunit.de",
  9161. "role": "lead"
  9162. }
  9163. ],
  9164. "description": "Utility class for timing",
  9165. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9166. "keywords": [
  9167. "timer"
  9168. ],
  9169. "support": {
  9170. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9171. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9172. },
  9173. "funding": [
  9174. {
  9175. "url": "https://github.com/sebastianbergmann",
  9176. "type": "github"
  9177. }
  9178. ],
  9179. "time": "2020-10-26T13:16:10+00:00"
  9180. },
  9181. {
  9182. "name": "phpunit/phpunit",
  9183. "version": "9.6.15",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9187. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9192. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9193. "shasum": "",
  9194. "mirrors": [
  9195. {
  9196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9197. "preferred": true
  9198. }
  9199. ]
  9200. },
  9201. "require": {
  9202. "doctrine/instantiator": "^1.3.1 || ^2",
  9203. "ext-dom": "*",
  9204. "ext-json": "*",
  9205. "ext-libxml": "*",
  9206. "ext-mbstring": "*",
  9207. "ext-xml": "*",
  9208. "ext-xmlwriter": "*",
  9209. "myclabs/deep-copy": "^1.10.1",
  9210. "phar-io/manifest": "^2.0.3",
  9211. "phar-io/version": "^3.0.2",
  9212. "php": ">=7.3",
  9213. "phpunit/php-code-coverage": "^9.2.28",
  9214. "phpunit/php-file-iterator": "^3.0.5",
  9215. "phpunit/php-invoker": "^3.1.1",
  9216. "phpunit/php-text-template": "^2.0.3",
  9217. "phpunit/php-timer": "^5.0.2",
  9218. "sebastian/cli-parser": "^1.0.1",
  9219. "sebastian/code-unit": "^1.0.6",
  9220. "sebastian/comparator": "^4.0.8",
  9221. "sebastian/diff": "^4.0.3",
  9222. "sebastian/environment": "^5.1.3",
  9223. "sebastian/exporter": "^4.0.5",
  9224. "sebastian/global-state": "^5.0.1",
  9225. "sebastian/object-enumerator": "^4.0.3",
  9226. "sebastian/resource-operations": "^3.0.3",
  9227. "sebastian/type": "^3.2",
  9228. "sebastian/version": "^3.0.2"
  9229. },
  9230. "suggest": {
  9231. "ext-soap": "To be able to generate mocks based on WSDL files",
  9232. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9233. },
  9234. "bin": [
  9235. "phpunit"
  9236. ],
  9237. "type": "library",
  9238. "extra": {
  9239. "branch-alias": {
  9240. "dev-master": "9.6-dev"
  9241. }
  9242. },
  9243. "autoload": {
  9244. "files": [
  9245. "src/Framework/Assert/Functions.php"
  9246. ],
  9247. "classmap": [
  9248. "src/"
  9249. ]
  9250. },
  9251. "notification-url": "https://packagist.org/downloads/",
  9252. "license": [
  9253. "BSD-3-Clause"
  9254. ],
  9255. "authors": [
  9256. {
  9257. "name": "Sebastian Bergmann",
  9258. "email": "sebastian@phpunit.de",
  9259. "role": "lead"
  9260. }
  9261. ],
  9262. "description": "The PHP Unit Testing framework.",
  9263. "homepage": "https://phpunit.de/",
  9264. "keywords": [
  9265. "phpunit",
  9266. "testing",
  9267. "xunit"
  9268. ],
  9269. "support": {
  9270. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9271. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9272. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9273. },
  9274. "funding": [
  9275. {
  9276. "url": "https://phpunit.de/sponsors.html",
  9277. "type": "custom"
  9278. },
  9279. {
  9280. "url": "https://github.com/sebastianbergmann",
  9281. "type": "github"
  9282. },
  9283. {
  9284. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9285. "type": "tidelift"
  9286. }
  9287. ],
  9288. "time": "2023-12-01T16:55:19+00:00"
  9289. },
  9290. {
  9291. "name": "sebastian/cli-parser",
  9292. "version": "1.0.1",
  9293. "source": {
  9294. "type": "git",
  9295. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9296. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9297. },
  9298. "dist": {
  9299. "type": "zip",
  9300. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9301. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9302. "shasum": "",
  9303. "mirrors": [
  9304. {
  9305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9306. "preferred": true
  9307. }
  9308. ]
  9309. },
  9310. "require": {
  9311. "php": ">=7.3"
  9312. },
  9313. "require-dev": {
  9314. "phpunit/phpunit": "^9.3"
  9315. },
  9316. "type": "library",
  9317. "extra": {
  9318. "branch-alias": {
  9319. "dev-master": "1.0-dev"
  9320. }
  9321. },
  9322. "autoload": {
  9323. "classmap": [
  9324. "src/"
  9325. ]
  9326. },
  9327. "notification-url": "https://packagist.org/downloads/",
  9328. "license": [
  9329. "BSD-3-Clause"
  9330. ],
  9331. "authors": [
  9332. {
  9333. "name": "Sebastian Bergmann",
  9334. "email": "sebastian@phpunit.de",
  9335. "role": "lead"
  9336. }
  9337. ],
  9338. "description": "Library for parsing CLI options",
  9339. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9340. "support": {
  9341. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9342. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9343. },
  9344. "funding": [
  9345. {
  9346. "url": "https://github.com/sebastianbergmann",
  9347. "type": "github"
  9348. }
  9349. ],
  9350. "time": "2020-09-28T06:08:49+00:00"
  9351. },
  9352. {
  9353. "name": "sebastian/code-unit",
  9354. "version": "1.0.8",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9358. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9363. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9364. "shasum": "",
  9365. "mirrors": [
  9366. {
  9367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9368. "preferred": true
  9369. }
  9370. ]
  9371. },
  9372. "require": {
  9373. "php": ">=7.3"
  9374. },
  9375. "require-dev": {
  9376. "phpunit/phpunit": "^9.3"
  9377. },
  9378. "type": "library",
  9379. "extra": {
  9380. "branch-alias": {
  9381. "dev-master": "1.0-dev"
  9382. }
  9383. },
  9384. "autoload": {
  9385. "classmap": [
  9386. "src/"
  9387. ]
  9388. },
  9389. "notification-url": "https://packagist.org/downloads/",
  9390. "license": [
  9391. "BSD-3-Clause"
  9392. ],
  9393. "authors": [
  9394. {
  9395. "name": "Sebastian Bergmann",
  9396. "email": "sebastian@phpunit.de",
  9397. "role": "lead"
  9398. }
  9399. ],
  9400. "description": "Collection of value objects that represent the PHP code units",
  9401. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9402. "support": {
  9403. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9404. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9405. },
  9406. "funding": [
  9407. {
  9408. "url": "https://github.com/sebastianbergmann",
  9409. "type": "github"
  9410. }
  9411. ],
  9412. "time": "2020-10-26T13:08:54+00:00"
  9413. },
  9414. {
  9415. "name": "sebastian/code-unit-reverse-lookup",
  9416. "version": "2.0.3",
  9417. "source": {
  9418. "type": "git",
  9419. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9420. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9421. },
  9422. "dist": {
  9423. "type": "zip",
  9424. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9425. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9426. "shasum": "",
  9427. "mirrors": [
  9428. {
  9429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9430. "preferred": true
  9431. }
  9432. ]
  9433. },
  9434. "require": {
  9435. "php": ">=7.3"
  9436. },
  9437. "require-dev": {
  9438. "phpunit/phpunit": "^9.3"
  9439. },
  9440. "type": "library",
  9441. "extra": {
  9442. "branch-alias": {
  9443. "dev-master": "2.0-dev"
  9444. }
  9445. },
  9446. "autoload": {
  9447. "classmap": [
  9448. "src/"
  9449. ]
  9450. },
  9451. "notification-url": "https://packagist.org/downloads/",
  9452. "license": [
  9453. "BSD-3-Clause"
  9454. ],
  9455. "authors": [
  9456. {
  9457. "name": "Sebastian Bergmann",
  9458. "email": "sebastian@phpunit.de"
  9459. }
  9460. ],
  9461. "description": "Looks up which function or method a line of code belongs to",
  9462. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9463. "support": {
  9464. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9465. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9466. },
  9467. "funding": [
  9468. {
  9469. "url": "https://github.com/sebastianbergmann",
  9470. "type": "github"
  9471. }
  9472. ],
  9473. "time": "2020-09-28T05:30:19+00:00"
  9474. },
  9475. {
  9476. "name": "sebastian/comparator",
  9477. "version": "4.0.8",
  9478. "source": {
  9479. "type": "git",
  9480. "url": "https://github.com/sebastianbergmann/comparator.git",
  9481. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9482. },
  9483. "dist": {
  9484. "type": "zip",
  9485. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9486. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9487. "shasum": "",
  9488. "mirrors": [
  9489. {
  9490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9491. "preferred": true
  9492. }
  9493. ]
  9494. },
  9495. "require": {
  9496. "php": ">=7.3",
  9497. "sebastian/diff": "^4.0",
  9498. "sebastian/exporter": "^4.0"
  9499. },
  9500. "require-dev": {
  9501. "phpunit/phpunit": "^9.3"
  9502. },
  9503. "type": "library",
  9504. "extra": {
  9505. "branch-alias": {
  9506. "dev-master": "4.0-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "classmap": [
  9511. "src/"
  9512. ]
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "BSD-3-Clause"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Sebastian Bergmann",
  9521. "email": "sebastian@phpunit.de"
  9522. },
  9523. {
  9524. "name": "Jeff Welch",
  9525. "email": "whatthejeff@gmail.com"
  9526. },
  9527. {
  9528. "name": "Volker Dusch",
  9529. "email": "github@wallbash.com"
  9530. },
  9531. {
  9532. "name": "Bernhard Schussek",
  9533. "email": "bschussek@2bepublished.at"
  9534. }
  9535. ],
  9536. "description": "Provides the functionality to compare PHP values for equality",
  9537. "homepage": "https://github.com/sebastianbergmann/comparator",
  9538. "keywords": [
  9539. "comparator",
  9540. "compare",
  9541. "equality"
  9542. ],
  9543. "support": {
  9544. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9545. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9546. },
  9547. "funding": [
  9548. {
  9549. "url": "https://github.com/sebastianbergmann",
  9550. "type": "github"
  9551. }
  9552. ],
  9553. "time": "2022-09-14T12:41:17+00:00"
  9554. },
  9555. {
  9556. "name": "sebastian/complexity",
  9557. "version": "2.0.3",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/sebastianbergmann/complexity.git",
  9561. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9566. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9567. "shasum": "",
  9568. "mirrors": [
  9569. {
  9570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9571. "preferred": true
  9572. }
  9573. ]
  9574. },
  9575. "require": {
  9576. "nikic/php-parser": "^4.18 || ^5.0",
  9577. "php": ">=7.3"
  9578. },
  9579. "require-dev": {
  9580. "phpunit/phpunit": "^9.3"
  9581. },
  9582. "type": "library",
  9583. "extra": {
  9584. "branch-alias": {
  9585. "dev-master": "2.0-dev"
  9586. }
  9587. },
  9588. "autoload": {
  9589. "classmap": [
  9590. "src/"
  9591. ]
  9592. },
  9593. "notification-url": "https://packagist.org/downloads/",
  9594. "license": [
  9595. "BSD-3-Clause"
  9596. ],
  9597. "authors": [
  9598. {
  9599. "name": "Sebastian Bergmann",
  9600. "email": "sebastian@phpunit.de",
  9601. "role": "lead"
  9602. }
  9603. ],
  9604. "description": "Library for calculating the complexity of PHP code units",
  9605. "homepage": "https://github.com/sebastianbergmann/complexity",
  9606. "support": {
  9607. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9608. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9609. },
  9610. "funding": [
  9611. {
  9612. "url": "https://github.com/sebastianbergmann",
  9613. "type": "github"
  9614. }
  9615. ],
  9616. "time": "2023-12-22T06:19:30+00:00"
  9617. },
  9618. {
  9619. "name": "sebastian/diff",
  9620. "version": "4.0.5",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/sebastianbergmann/diff.git",
  9624. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9629. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9630. "shasum": "",
  9631. "mirrors": [
  9632. {
  9633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9634. "preferred": true
  9635. }
  9636. ]
  9637. },
  9638. "require": {
  9639. "php": ">=7.3"
  9640. },
  9641. "require-dev": {
  9642. "phpunit/phpunit": "^9.3",
  9643. "symfony/process": "^4.2 || ^5"
  9644. },
  9645. "type": "library",
  9646. "extra": {
  9647. "branch-alias": {
  9648. "dev-master": "4.0-dev"
  9649. }
  9650. },
  9651. "autoload": {
  9652. "classmap": [
  9653. "src/"
  9654. ]
  9655. },
  9656. "notification-url": "https://packagist.org/downloads/",
  9657. "license": [
  9658. "BSD-3-Clause"
  9659. ],
  9660. "authors": [
  9661. {
  9662. "name": "Sebastian Bergmann",
  9663. "email": "sebastian@phpunit.de"
  9664. },
  9665. {
  9666. "name": "Kore Nordmann",
  9667. "email": "mail@kore-nordmann.de"
  9668. }
  9669. ],
  9670. "description": "Diff implementation",
  9671. "homepage": "https://github.com/sebastianbergmann/diff",
  9672. "keywords": [
  9673. "diff",
  9674. "udiff",
  9675. "unidiff",
  9676. "unified diff"
  9677. ],
  9678. "support": {
  9679. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9680. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9681. },
  9682. "funding": [
  9683. {
  9684. "url": "https://github.com/sebastianbergmann",
  9685. "type": "github"
  9686. }
  9687. ],
  9688. "time": "2023-05-07T05:35:17+00:00"
  9689. },
  9690. {
  9691. "name": "sebastian/environment",
  9692. "version": "5.1.5",
  9693. "source": {
  9694. "type": "git",
  9695. "url": "https://github.com/sebastianbergmann/environment.git",
  9696. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9697. },
  9698. "dist": {
  9699. "type": "zip",
  9700. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9701. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9702. "shasum": "",
  9703. "mirrors": [
  9704. {
  9705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9706. "preferred": true
  9707. }
  9708. ]
  9709. },
  9710. "require": {
  9711. "php": ">=7.3"
  9712. },
  9713. "require-dev": {
  9714. "phpunit/phpunit": "^9.3"
  9715. },
  9716. "suggest": {
  9717. "ext-posix": "*"
  9718. },
  9719. "type": "library",
  9720. "extra": {
  9721. "branch-alias": {
  9722. "dev-master": "5.1-dev"
  9723. }
  9724. },
  9725. "autoload": {
  9726. "classmap": [
  9727. "src/"
  9728. ]
  9729. },
  9730. "notification-url": "https://packagist.org/downloads/",
  9731. "license": [
  9732. "BSD-3-Clause"
  9733. ],
  9734. "authors": [
  9735. {
  9736. "name": "Sebastian Bergmann",
  9737. "email": "sebastian@phpunit.de"
  9738. }
  9739. ],
  9740. "description": "Provides functionality to handle HHVM/PHP environments",
  9741. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9742. "keywords": [
  9743. "Xdebug",
  9744. "environment",
  9745. "hhvm"
  9746. ],
  9747. "support": {
  9748. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9749. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9750. },
  9751. "funding": [
  9752. {
  9753. "url": "https://github.com/sebastianbergmann",
  9754. "type": "github"
  9755. }
  9756. ],
  9757. "time": "2023-02-03T06:03:51+00:00"
  9758. },
  9759. {
  9760. "name": "sebastian/exporter",
  9761. "version": "4.0.5",
  9762. "source": {
  9763. "type": "git",
  9764. "url": "https://github.com/sebastianbergmann/exporter.git",
  9765. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  9766. },
  9767. "dist": {
  9768. "type": "zip",
  9769. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  9770. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  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. "php": ">=7.3",
  9781. "sebastian/recursion-context": "^4.0"
  9782. },
  9783. "require-dev": {
  9784. "ext-mbstring": "*",
  9785. "phpunit/phpunit": "^9.3"
  9786. },
  9787. "type": "library",
  9788. "extra": {
  9789. "branch-alias": {
  9790. "dev-master": "4.0-dev"
  9791. }
  9792. },
  9793. "autoload": {
  9794. "classmap": [
  9795. "src/"
  9796. ]
  9797. },
  9798. "notification-url": "https://packagist.org/downloads/",
  9799. "license": [
  9800. "BSD-3-Clause"
  9801. ],
  9802. "authors": [
  9803. {
  9804. "name": "Sebastian Bergmann",
  9805. "email": "sebastian@phpunit.de"
  9806. },
  9807. {
  9808. "name": "Jeff Welch",
  9809. "email": "whatthejeff@gmail.com"
  9810. },
  9811. {
  9812. "name": "Volker Dusch",
  9813. "email": "github@wallbash.com"
  9814. },
  9815. {
  9816. "name": "Adam Harvey",
  9817. "email": "aharvey@php.net"
  9818. },
  9819. {
  9820. "name": "Bernhard Schussek",
  9821. "email": "bschussek@gmail.com"
  9822. }
  9823. ],
  9824. "description": "Provides the functionality to export PHP variables for visualization",
  9825. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9826. "keywords": [
  9827. "export",
  9828. "exporter"
  9829. ],
  9830. "support": {
  9831. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9832. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  9833. },
  9834. "funding": [
  9835. {
  9836. "url": "https://github.com/sebastianbergmann",
  9837. "type": "github"
  9838. }
  9839. ],
  9840. "time": "2022-09-14T06:03:37+00:00"
  9841. },
  9842. {
  9843. "name": "sebastian/global-state",
  9844. "version": "5.0.6",
  9845. "source": {
  9846. "type": "git",
  9847. "url": "https://github.com/sebastianbergmann/global-state.git",
  9848. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  9849. },
  9850. "dist": {
  9851. "type": "zip",
  9852. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  9853. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  9854. "shasum": "",
  9855. "mirrors": [
  9856. {
  9857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9858. "preferred": true
  9859. }
  9860. ]
  9861. },
  9862. "require": {
  9863. "php": ">=7.3",
  9864. "sebastian/object-reflector": "^2.0",
  9865. "sebastian/recursion-context": "^4.0"
  9866. },
  9867. "require-dev": {
  9868. "ext-dom": "*",
  9869. "phpunit/phpunit": "^9.3"
  9870. },
  9871. "suggest": {
  9872. "ext-uopz": "*"
  9873. },
  9874. "type": "library",
  9875. "extra": {
  9876. "branch-alias": {
  9877. "dev-master": "5.0-dev"
  9878. }
  9879. },
  9880. "autoload": {
  9881. "classmap": [
  9882. "src/"
  9883. ]
  9884. },
  9885. "notification-url": "https://packagist.org/downloads/",
  9886. "license": [
  9887. "BSD-3-Clause"
  9888. ],
  9889. "authors": [
  9890. {
  9891. "name": "Sebastian Bergmann",
  9892. "email": "sebastian@phpunit.de"
  9893. }
  9894. ],
  9895. "description": "Snapshotting of global state",
  9896. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9897. "keywords": [
  9898. "global state"
  9899. ],
  9900. "support": {
  9901. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9902. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  9903. },
  9904. "funding": [
  9905. {
  9906. "url": "https://github.com/sebastianbergmann",
  9907. "type": "github"
  9908. }
  9909. ],
  9910. "time": "2023-08-02T09:26:13+00:00"
  9911. },
  9912. {
  9913. "name": "sebastian/lines-of-code",
  9914. "version": "1.0.x-dev",
  9915. "source": {
  9916. "type": "git",
  9917. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9918. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9919. },
  9920. "dist": {
  9921. "type": "zip",
  9922. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9923. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9924. "shasum": "",
  9925. "mirrors": [
  9926. {
  9927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9928. "preferred": true
  9929. }
  9930. ]
  9931. },
  9932. "require": {
  9933. "nikic/php-parser": "^4.18 || ^5.0",
  9934. "php": ">=7.3"
  9935. },
  9936. "require-dev": {
  9937. "phpunit/phpunit": "^9.3"
  9938. },
  9939. "type": "library",
  9940. "extra": {
  9941. "branch-alias": {
  9942. "dev-master": "1.0-dev"
  9943. }
  9944. },
  9945. "autoload": {
  9946. "classmap": [
  9947. "src/"
  9948. ]
  9949. },
  9950. "notification-url": "https://packagist.org/downloads/",
  9951. "license": [
  9952. "BSD-3-Clause"
  9953. ],
  9954. "authors": [
  9955. {
  9956. "name": "Sebastian Bergmann",
  9957. "email": "sebastian@phpunit.de",
  9958. "role": "lead"
  9959. }
  9960. ],
  9961. "description": "Library for counting the lines of code in PHP source code",
  9962. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9963. "support": {
  9964. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9965. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9966. },
  9967. "funding": [
  9968. {
  9969. "url": "https://github.com/sebastianbergmann",
  9970. "type": "github"
  9971. }
  9972. ],
  9973. "time": "2023-12-22T06:20:34+00:00"
  9974. },
  9975. {
  9976. "name": "sebastian/object-enumerator",
  9977. "version": "4.0.4",
  9978. "source": {
  9979. "type": "git",
  9980. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9981. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9982. },
  9983. "dist": {
  9984. "type": "zip",
  9985. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9986. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9987. "shasum": "",
  9988. "mirrors": [
  9989. {
  9990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9991. "preferred": true
  9992. }
  9993. ]
  9994. },
  9995. "require": {
  9996. "php": ">=7.3",
  9997. "sebastian/object-reflector": "^2.0",
  9998. "sebastian/recursion-context": "^4.0"
  9999. },
  10000. "require-dev": {
  10001. "phpunit/phpunit": "^9.3"
  10002. },
  10003. "type": "library",
  10004. "extra": {
  10005. "branch-alias": {
  10006. "dev-master": "4.0-dev"
  10007. }
  10008. },
  10009. "autoload": {
  10010. "classmap": [
  10011. "src/"
  10012. ]
  10013. },
  10014. "notification-url": "https://packagist.org/downloads/",
  10015. "license": [
  10016. "BSD-3-Clause"
  10017. ],
  10018. "authors": [
  10019. {
  10020. "name": "Sebastian Bergmann",
  10021. "email": "sebastian@phpunit.de"
  10022. }
  10023. ],
  10024. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10025. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10026. "support": {
  10027. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10028. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10029. },
  10030. "funding": [
  10031. {
  10032. "url": "https://github.com/sebastianbergmann",
  10033. "type": "github"
  10034. }
  10035. ],
  10036. "time": "2020-10-26T13:12:34+00:00"
  10037. },
  10038. {
  10039. "name": "sebastian/object-reflector",
  10040. "version": "2.0.4",
  10041. "source": {
  10042. "type": "git",
  10043. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10044. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10045. },
  10046. "dist": {
  10047. "type": "zip",
  10048. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10049. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10050. "shasum": "",
  10051. "mirrors": [
  10052. {
  10053. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10054. "preferred": true
  10055. }
  10056. ]
  10057. },
  10058. "require": {
  10059. "php": ">=7.3"
  10060. },
  10061. "require-dev": {
  10062. "phpunit/phpunit": "^9.3"
  10063. },
  10064. "type": "library",
  10065. "extra": {
  10066. "branch-alias": {
  10067. "dev-master": "2.0-dev"
  10068. }
  10069. },
  10070. "autoload": {
  10071. "classmap": [
  10072. "src/"
  10073. ]
  10074. },
  10075. "notification-url": "https://packagist.org/downloads/",
  10076. "license": [
  10077. "BSD-3-Clause"
  10078. ],
  10079. "authors": [
  10080. {
  10081. "name": "Sebastian Bergmann",
  10082. "email": "sebastian@phpunit.de"
  10083. }
  10084. ],
  10085. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10086. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10087. "support": {
  10088. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10089. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10090. },
  10091. "funding": [
  10092. {
  10093. "url": "https://github.com/sebastianbergmann",
  10094. "type": "github"
  10095. }
  10096. ],
  10097. "time": "2020-10-26T13:14:26+00:00"
  10098. },
  10099. {
  10100. "name": "sebastian/recursion-context",
  10101. "version": "4.0.5",
  10102. "source": {
  10103. "type": "git",
  10104. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10105. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10106. },
  10107. "dist": {
  10108. "type": "zip",
  10109. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10110. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10111. "shasum": "",
  10112. "mirrors": [
  10113. {
  10114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10115. "preferred": true
  10116. }
  10117. ]
  10118. },
  10119. "require": {
  10120. "php": ">=7.3"
  10121. },
  10122. "require-dev": {
  10123. "phpunit/phpunit": "^9.3"
  10124. },
  10125. "type": "library",
  10126. "extra": {
  10127. "branch-alias": {
  10128. "dev-master": "4.0-dev"
  10129. }
  10130. },
  10131. "autoload": {
  10132. "classmap": [
  10133. "src/"
  10134. ]
  10135. },
  10136. "notification-url": "https://packagist.org/downloads/",
  10137. "license": [
  10138. "BSD-3-Clause"
  10139. ],
  10140. "authors": [
  10141. {
  10142. "name": "Sebastian Bergmann",
  10143. "email": "sebastian@phpunit.de"
  10144. },
  10145. {
  10146. "name": "Jeff Welch",
  10147. "email": "whatthejeff@gmail.com"
  10148. },
  10149. {
  10150. "name": "Adam Harvey",
  10151. "email": "aharvey@php.net"
  10152. }
  10153. ],
  10154. "description": "Provides functionality to recursively process PHP variables",
  10155. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10156. "support": {
  10157. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10158. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10159. },
  10160. "funding": [
  10161. {
  10162. "url": "https://github.com/sebastianbergmann",
  10163. "type": "github"
  10164. }
  10165. ],
  10166. "time": "2023-02-03T06:07:39+00:00"
  10167. },
  10168. {
  10169. "name": "sebastian/resource-operations",
  10170. "version": "3.0.3",
  10171. "source": {
  10172. "type": "git",
  10173. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10174. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10175. },
  10176. "dist": {
  10177. "type": "zip",
  10178. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10179. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10180. "shasum": "",
  10181. "mirrors": [
  10182. {
  10183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10184. "preferred": true
  10185. }
  10186. ]
  10187. },
  10188. "require": {
  10189. "php": ">=7.3"
  10190. },
  10191. "require-dev": {
  10192. "phpunit/phpunit": "^9.0"
  10193. },
  10194. "type": "library",
  10195. "extra": {
  10196. "branch-alias": {
  10197. "dev-master": "3.0-dev"
  10198. }
  10199. },
  10200. "autoload": {
  10201. "classmap": [
  10202. "src/"
  10203. ]
  10204. },
  10205. "notification-url": "https://packagist.org/downloads/",
  10206. "license": [
  10207. "BSD-3-Clause"
  10208. ],
  10209. "authors": [
  10210. {
  10211. "name": "Sebastian Bergmann",
  10212. "email": "sebastian@phpunit.de"
  10213. }
  10214. ],
  10215. "description": "Provides a list of PHP built-in functions that operate on resources",
  10216. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10217. "support": {
  10218. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10219. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10220. },
  10221. "funding": [
  10222. {
  10223. "url": "https://github.com/sebastianbergmann",
  10224. "type": "github"
  10225. }
  10226. ],
  10227. "time": "2020-09-28T06:45:17+00:00"
  10228. },
  10229. {
  10230. "name": "sebastian/type",
  10231. "version": "3.2.1",
  10232. "source": {
  10233. "type": "git",
  10234. "url": "https://github.com/sebastianbergmann/type.git",
  10235. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10236. },
  10237. "dist": {
  10238. "type": "zip",
  10239. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10240. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10241. "shasum": "",
  10242. "mirrors": [
  10243. {
  10244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10245. "preferred": true
  10246. }
  10247. ]
  10248. },
  10249. "require": {
  10250. "php": ">=7.3"
  10251. },
  10252. "require-dev": {
  10253. "phpunit/phpunit": "^9.5"
  10254. },
  10255. "type": "library",
  10256. "extra": {
  10257. "branch-alias": {
  10258. "dev-master": "3.2-dev"
  10259. }
  10260. },
  10261. "autoload": {
  10262. "classmap": [
  10263. "src/"
  10264. ]
  10265. },
  10266. "notification-url": "https://packagist.org/downloads/",
  10267. "license": [
  10268. "BSD-3-Clause"
  10269. ],
  10270. "authors": [
  10271. {
  10272. "name": "Sebastian Bergmann",
  10273. "email": "sebastian@phpunit.de",
  10274. "role": "lead"
  10275. }
  10276. ],
  10277. "description": "Collection of value objects that represent the types of the PHP type system",
  10278. "homepage": "https://github.com/sebastianbergmann/type",
  10279. "support": {
  10280. "issues": "https://github.com/sebastianbergmann/type/issues",
  10281. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10282. },
  10283. "funding": [
  10284. {
  10285. "url": "https://github.com/sebastianbergmann",
  10286. "type": "github"
  10287. }
  10288. ],
  10289. "time": "2023-02-03T06:13:03+00:00"
  10290. },
  10291. {
  10292. "name": "sebastian/version",
  10293. "version": "3.0.2",
  10294. "source": {
  10295. "type": "git",
  10296. "url": "https://github.com/sebastianbergmann/version.git",
  10297. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10298. },
  10299. "dist": {
  10300. "type": "zip",
  10301. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10302. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10303. "shasum": "",
  10304. "mirrors": [
  10305. {
  10306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10307. "preferred": true
  10308. }
  10309. ]
  10310. },
  10311. "require": {
  10312. "php": ">=7.3"
  10313. },
  10314. "type": "library",
  10315. "extra": {
  10316. "branch-alias": {
  10317. "dev-master": "3.0-dev"
  10318. }
  10319. },
  10320. "autoload": {
  10321. "classmap": [
  10322. "src/"
  10323. ]
  10324. },
  10325. "notification-url": "https://packagist.org/downloads/",
  10326. "license": [
  10327. "BSD-3-Clause"
  10328. ],
  10329. "authors": [
  10330. {
  10331. "name": "Sebastian Bergmann",
  10332. "email": "sebastian@phpunit.de",
  10333. "role": "lead"
  10334. }
  10335. ],
  10336. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10337. "homepage": "https://github.com/sebastianbergmann/version",
  10338. "support": {
  10339. "issues": "https://github.com/sebastianbergmann/version/issues",
  10340. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10341. },
  10342. "funding": [
  10343. {
  10344. "url": "https://github.com/sebastianbergmann",
  10345. "type": "github"
  10346. }
  10347. ],
  10348. "time": "2020-09-28T06:39:44+00:00"
  10349. },
  10350. {
  10351. "name": "theseer/tokenizer",
  10352. "version": "1.2.1",
  10353. "source": {
  10354. "type": "git",
  10355. "url": "https://github.com/theseer/tokenizer.git",
  10356. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10357. },
  10358. "dist": {
  10359. "type": "zip",
  10360. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10361. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10362. "shasum": "",
  10363. "mirrors": [
  10364. {
  10365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10366. "preferred": true
  10367. }
  10368. ]
  10369. },
  10370. "require": {
  10371. "ext-dom": "*",
  10372. "ext-tokenizer": "*",
  10373. "ext-xmlwriter": "*",
  10374. "php": "^7.2 || ^8.0"
  10375. },
  10376. "type": "library",
  10377. "autoload": {
  10378. "classmap": [
  10379. "src/"
  10380. ]
  10381. },
  10382. "notification-url": "https://packagist.org/downloads/",
  10383. "license": [
  10384. "BSD-3-Clause"
  10385. ],
  10386. "authors": [
  10387. {
  10388. "name": "Arne Blankerts",
  10389. "email": "arne@blankerts.de",
  10390. "role": "Developer"
  10391. }
  10392. ],
  10393. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10394. "support": {
  10395. "issues": "https://github.com/theseer/tokenizer/issues",
  10396. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10397. },
  10398. "funding": [
  10399. {
  10400. "url": "https://github.com/theseer",
  10401. "type": "github"
  10402. }
  10403. ],
  10404. "time": "2021-07-28T10:34:58+00:00"
  10405. }
  10406. ],
  10407. "aliases": [],
  10408. "minimum-stability": "dev",
  10409. "stability-flags": [],
  10410. "prefer-stable": true,
  10411. "prefer-lowest": false,
  10412. "platform": {
  10413. "php": "^7.3|^8.0"
  10414. },
  10415. "platform-dev": [],
  10416. "plugin-api-version": "2.3.0"
  10417. }