composer.lock 309 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561
  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": "7ee24f946bd09d5146e203f4384b455e",
  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. "mirrors": [
  404. {
  405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  406. "preferred": true
  407. }
  408. ]
  409. },
  410. "require": {
  411. "php": "^7.1 || ^8.0"
  412. },
  413. "require-dev": {
  414. "doctrine/coding-standard": "^9.0",
  415. "phpstan/phpstan": "^1.3",
  416. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  417. "vimeo/psalm": "^4.11"
  418. },
  419. "type": "library",
  420. "autoload": {
  421. "psr-4": {
  422. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "MIT"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Guilherme Blanco",
  432. "email": "guilhermeblanco@gmail.com"
  433. },
  434. {
  435. "name": "Roman Borschel",
  436. "email": "roman@code-factory.org"
  437. },
  438. {
  439. "name": "Johannes Schmitt",
  440. "email": "schmittjoh@gmail.com"
  441. }
  442. ],
  443. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  444. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  445. "keywords": [
  446. "annotations",
  447. "docblock",
  448. "lexer",
  449. "parser",
  450. "php"
  451. ],
  452. "support": {
  453. "issues": "https://github.com/doctrine/lexer/issues",
  454. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  455. },
  456. "funding": [
  457. {
  458. "url": "https://www.doctrine-project.org/sponsorship.html",
  459. "type": "custom"
  460. },
  461. {
  462. "url": "https://www.patreon.com/phpdoctrine",
  463. "type": "patreon"
  464. },
  465. {
  466. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  467. "type": "tidelift"
  468. }
  469. ],
  470. "time": "2022-02-28T11:07:21+00:00"
  471. },
  472. {
  473. "name": "dragonmantank/cron-expression",
  474. "version": "v3.3.3",
  475. "source": {
  476. "type": "git",
  477. "url": "https://github.com/dragonmantank/cron-expression.git",
  478. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  479. },
  480. "dist": {
  481. "type": "zip",
  482. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  483. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  484. "shasum": "",
  485. "mirrors": [
  486. {
  487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  488. "preferred": true
  489. }
  490. ]
  491. },
  492. "require": {
  493. "php": "^7.2|^8.0",
  494. "webmozart/assert": "^1.0"
  495. },
  496. "replace": {
  497. "mtdowling/cron-expression": "^1.0"
  498. },
  499. "require-dev": {
  500. "phpstan/extension-installer": "^1.0",
  501. "phpstan/phpstan": "^1.0",
  502. "phpstan/phpstan-webmozart-assert": "^1.0",
  503. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  504. },
  505. "type": "library",
  506. "autoload": {
  507. "psr-4": {
  508. "Cron\\": "src/Cron/"
  509. }
  510. },
  511. "notification-url": "https://packagist.org/downloads/",
  512. "license": [
  513. "MIT"
  514. ],
  515. "authors": [
  516. {
  517. "name": "Chris Tankersley",
  518. "email": "chris@ctankersley.com",
  519. "homepage": "https://github.com/dragonmantank"
  520. }
  521. ],
  522. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  523. "keywords": [
  524. "cron",
  525. "schedule"
  526. ],
  527. "support": {
  528. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  529. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  530. },
  531. "funding": [
  532. {
  533. "url": "https://github.com/dragonmantank",
  534. "type": "github"
  535. }
  536. ],
  537. "time": "2023-08-10T19:36:49+00:00"
  538. },
  539. {
  540. "name": "egulias/email-validator",
  541. "version": "2.1.25",
  542. "source": {
  543. "type": "git",
  544. "url": "https://github.com/egulias/EmailValidator.git",
  545. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  546. },
  547. "dist": {
  548. "type": "zip",
  549. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  550. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  551. "shasum": "",
  552. "mirrors": [
  553. {
  554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  555. "preferred": true
  556. }
  557. ]
  558. },
  559. "require": {
  560. "doctrine/lexer": "^1.0.1",
  561. "php": ">=5.5",
  562. "symfony/polyfill-intl-idn": "^1.10"
  563. },
  564. "require-dev": {
  565. "dominicsayers/isemail": "^3.0.7",
  566. "phpunit/phpunit": "^4.8.36|^7.5.15",
  567. "satooshi/php-coveralls": "^1.0.1"
  568. },
  569. "suggest": {
  570. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  571. },
  572. "type": "library",
  573. "extra": {
  574. "branch-alias": {
  575. "dev-master": "2.1.x-dev"
  576. }
  577. },
  578. "autoload": {
  579. "psr-4": {
  580. "Egulias\\EmailValidator\\": "src"
  581. }
  582. },
  583. "notification-url": "https://packagist.org/downloads/",
  584. "license": [
  585. "MIT"
  586. ],
  587. "authors": [
  588. {
  589. "name": "Eduardo Gulias Davis"
  590. }
  591. ],
  592. "description": "A library for validating emails against several RFCs",
  593. "homepage": "https://github.com/egulias/EmailValidator",
  594. "keywords": [
  595. "email",
  596. "emailvalidation",
  597. "emailvalidator",
  598. "validation",
  599. "validator"
  600. ],
  601. "support": {
  602. "issues": "https://github.com/egulias/EmailValidator/issues",
  603. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  604. },
  605. "funding": [
  606. {
  607. "url": "https://github.com/egulias",
  608. "type": "github"
  609. }
  610. ],
  611. "time": "2020-12-29T14:50:06+00:00"
  612. },
  613. {
  614. "name": "fruitcake/laravel-cors",
  615. "version": "v2.2.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/fruitcake/laravel-cors.git",
  619. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  624. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  625. "shasum": "",
  626. "mirrors": [
  627. {
  628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  629. "preferred": true
  630. }
  631. ]
  632. },
  633. "require": {
  634. "asm89/stack-cors": "^2.0.1",
  635. "illuminate/contracts": "^6|^7|^8|^9",
  636. "illuminate/support": "^6|^7|^8|^9",
  637. "php": ">=7.2"
  638. },
  639. "require-dev": {
  640. "laravel/framework": "^6|^7.24|^8",
  641. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  642. "phpunit/phpunit": "^6|^7|^8|^9",
  643. "squizlabs/php_codesniffer": "^3.5"
  644. },
  645. "type": "library",
  646. "extra": {
  647. "branch-alias": {
  648. "dev-master": "2.1-dev"
  649. },
  650. "laravel": {
  651. "providers": [
  652. "Fruitcake\\Cors\\CorsServiceProvider"
  653. ]
  654. }
  655. },
  656. "autoload": {
  657. "psr-4": {
  658. "Fruitcake\\Cors\\": "src/"
  659. }
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "MIT"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Fruitcake",
  668. "homepage": "https://fruitcake.nl"
  669. },
  670. {
  671. "name": "Barry vd. Heuvel",
  672. "email": "barryvdh@gmail.com"
  673. }
  674. ],
  675. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  676. "keywords": [
  677. "api",
  678. "cors",
  679. "crossdomain",
  680. "laravel"
  681. ],
  682. "support": {
  683. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  684. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  685. },
  686. "funding": [
  687. {
  688. "url": "https://fruitcake.nl",
  689. "type": "custom"
  690. },
  691. {
  692. "url": "https://github.com/barryvdh",
  693. "type": "github"
  694. }
  695. ],
  696. "abandoned": true,
  697. "time": "2022-02-23T14:25:13+00:00"
  698. },
  699. {
  700. "name": "graham-campbell/result-type",
  701. "version": "v1.1.2",
  702. "source": {
  703. "type": "git",
  704. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  705. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  706. },
  707. "dist": {
  708. "type": "zip",
  709. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  710. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  711. "shasum": "",
  712. "mirrors": [
  713. {
  714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  715. "preferred": true
  716. }
  717. ]
  718. },
  719. "require": {
  720. "php": "^7.2.5 || ^8.0",
  721. "phpoption/phpoption": "^1.9.2"
  722. },
  723. "require-dev": {
  724. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  725. },
  726. "type": "library",
  727. "autoload": {
  728. "psr-4": {
  729. "GrahamCampbell\\ResultType\\": "src/"
  730. }
  731. },
  732. "notification-url": "https://packagist.org/downloads/",
  733. "license": [
  734. "MIT"
  735. ],
  736. "authors": [
  737. {
  738. "name": "Graham Campbell",
  739. "email": "hello@gjcampbell.co.uk",
  740. "homepage": "https://github.com/GrahamCampbell"
  741. }
  742. ],
  743. "description": "An Implementation Of The Result Type",
  744. "keywords": [
  745. "Graham Campbell",
  746. "GrahamCampbell",
  747. "Result Type",
  748. "Result-Type",
  749. "result"
  750. ],
  751. "support": {
  752. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  753. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  754. },
  755. "funding": [
  756. {
  757. "url": "https://github.com/GrahamCampbell",
  758. "type": "github"
  759. },
  760. {
  761. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  762. "type": "tidelift"
  763. }
  764. ],
  765. "time": "2023-11-12T22:16:48+00:00"
  766. },
  767. {
  768. "name": "guzzlehttp/guzzle",
  769. "version": "7.8.1",
  770. "source": {
  771. "type": "git",
  772. "url": "https://github.com/guzzle/guzzle.git",
  773. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  774. },
  775. "dist": {
  776. "type": "zip",
  777. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  778. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  779. "shasum": "",
  780. "mirrors": [
  781. {
  782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  783. "preferred": true
  784. }
  785. ]
  786. },
  787. "require": {
  788. "ext-json": "*",
  789. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  790. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  791. "php": "^7.2.5 || ^8.0",
  792. "psr/http-client": "^1.0",
  793. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  794. },
  795. "provide": {
  796. "psr/http-client-implementation": "1.0"
  797. },
  798. "require-dev": {
  799. "bamarni/composer-bin-plugin": "^1.8.2",
  800. "ext-curl": "*",
  801. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  802. "php-http/message-factory": "^1.1",
  803. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  804. "psr/log": "^1.1 || ^2.0 || ^3.0"
  805. },
  806. "suggest": {
  807. "ext-curl": "Required for CURL handler support",
  808. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  809. "psr/log": "Required for using the Log middleware"
  810. },
  811. "type": "library",
  812. "extra": {
  813. "bamarni-bin": {
  814. "bin-links": true,
  815. "forward-command": false
  816. }
  817. },
  818. "autoload": {
  819. "files": [
  820. "src/functions_include.php"
  821. ],
  822. "psr-4": {
  823. "GuzzleHttp\\": "src/"
  824. }
  825. },
  826. "notification-url": "https://packagist.org/downloads/",
  827. "license": [
  828. "MIT"
  829. ],
  830. "authors": [
  831. {
  832. "name": "Graham Campbell",
  833. "email": "hello@gjcampbell.co.uk",
  834. "homepage": "https://github.com/GrahamCampbell"
  835. },
  836. {
  837. "name": "Michael Dowling",
  838. "email": "mtdowling@gmail.com",
  839. "homepage": "https://github.com/mtdowling"
  840. },
  841. {
  842. "name": "Jeremy Lindblom",
  843. "email": "jeremeamia@gmail.com",
  844. "homepage": "https://github.com/jeremeamia"
  845. },
  846. {
  847. "name": "George Mponos",
  848. "email": "gmponos@gmail.com",
  849. "homepage": "https://github.com/gmponos"
  850. },
  851. {
  852. "name": "Tobias Nyholm",
  853. "email": "tobias.nyholm@gmail.com",
  854. "homepage": "https://github.com/Nyholm"
  855. },
  856. {
  857. "name": "Márk Sági-Kazár",
  858. "email": "mark.sagikazar@gmail.com",
  859. "homepage": "https://github.com/sagikazarmark"
  860. },
  861. {
  862. "name": "Tobias Schultze",
  863. "email": "webmaster@tubo-world.de",
  864. "homepage": "https://github.com/Tobion"
  865. }
  866. ],
  867. "description": "Guzzle is a PHP HTTP client library",
  868. "keywords": [
  869. "client",
  870. "curl",
  871. "framework",
  872. "http",
  873. "http client",
  874. "psr-18",
  875. "psr-7",
  876. "rest",
  877. "web service"
  878. ],
  879. "support": {
  880. "issues": "https://github.com/guzzle/guzzle/issues",
  881. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  882. },
  883. "funding": [
  884. {
  885. "url": "https://github.com/GrahamCampbell",
  886. "type": "github"
  887. },
  888. {
  889. "url": "https://github.com/Nyholm",
  890. "type": "github"
  891. },
  892. {
  893. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  894. "type": "tidelift"
  895. }
  896. ],
  897. "time": "2023-12-03T20:35:24+00:00"
  898. },
  899. {
  900. "name": "guzzlehttp/promises",
  901. "version": "2.0.1",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/guzzle/promises.git",
  905. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  910. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  911. "shasum": "",
  912. "mirrors": [
  913. {
  914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  915. "preferred": true
  916. }
  917. ]
  918. },
  919. "require": {
  920. "php": "^7.2.5 || ^8.0"
  921. },
  922. "require-dev": {
  923. "bamarni/composer-bin-plugin": "^1.8.1",
  924. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  925. },
  926. "type": "library",
  927. "extra": {
  928. "bamarni-bin": {
  929. "bin-links": true,
  930. "forward-command": false
  931. }
  932. },
  933. "autoload": {
  934. "psr-4": {
  935. "GuzzleHttp\\Promise\\": "src/"
  936. }
  937. },
  938. "notification-url": "https://packagist.org/downloads/",
  939. "license": [
  940. "MIT"
  941. ],
  942. "authors": [
  943. {
  944. "name": "Graham Campbell",
  945. "email": "hello@gjcampbell.co.uk",
  946. "homepage": "https://github.com/GrahamCampbell"
  947. },
  948. {
  949. "name": "Michael Dowling",
  950. "email": "mtdowling@gmail.com",
  951. "homepage": "https://github.com/mtdowling"
  952. },
  953. {
  954. "name": "Tobias Nyholm",
  955. "email": "tobias.nyholm@gmail.com",
  956. "homepage": "https://github.com/Nyholm"
  957. },
  958. {
  959. "name": "Tobias Schultze",
  960. "email": "webmaster@tubo-world.de",
  961. "homepage": "https://github.com/Tobion"
  962. }
  963. ],
  964. "description": "Guzzle promises library",
  965. "keywords": [
  966. "promise"
  967. ],
  968. "support": {
  969. "issues": "https://github.com/guzzle/promises/issues",
  970. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  971. },
  972. "funding": [
  973. {
  974. "url": "https://github.com/GrahamCampbell",
  975. "type": "github"
  976. },
  977. {
  978. "url": "https://github.com/Nyholm",
  979. "type": "github"
  980. },
  981. {
  982. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  983. "type": "tidelift"
  984. }
  985. ],
  986. "time": "2023-08-03T15:11:55+00:00"
  987. },
  988. {
  989. "name": "guzzlehttp/psr7",
  990. "version": "2.6.2",
  991. "source": {
  992. "type": "git",
  993. "url": "https://github.com/guzzle/psr7.git",
  994. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  995. },
  996. "dist": {
  997. "type": "zip",
  998. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  999. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1000. "shasum": "",
  1001. "mirrors": [
  1002. {
  1003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1004. "preferred": true
  1005. }
  1006. ]
  1007. },
  1008. "require": {
  1009. "php": "^7.2.5 || ^8.0",
  1010. "psr/http-factory": "^1.0",
  1011. "psr/http-message": "^1.1 || ^2.0",
  1012. "ralouphie/getallheaders": "^3.0"
  1013. },
  1014. "provide": {
  1015. "psr/http-factory-implementation": "1.0",
  1016. "psr/http-message-implementation": "1.0"
  1017. },
  1018. "require-dev": {
  1019. "bamarni/composer-bin-plugin": "^1.8.2",
  1020. "http-interop/http-factory-tests": "^0.9",
  1021. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1022. },
  1023. "suggest": {
  1024. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1025. },
  1026. "type": "library",
  1027. "extra": {
  1028. "bamarni-bin": {
  1029. "bin-links": true,
  1030. "forward-command": false
  1031. }
  1032. },
  1033. "autoload": {
  1034. "psr-4": {
  1035. "GuzzleHttp\\Psr7\\": "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. "name": "Michael Dowling",
  1050. "email": "mtdowling@gmail.com",
  1051. "homepage": "https://github.com/mtdowling"
  1052. },
  1053. {
  1054. "name": "George Mponos",
  1055. "email": "gmponos@gmail.com",
  1056. "homepage": "https://github.com/gmponos"
  1057. },
  1058. {
  1059. "name": "Tobias Nyholm",
  1060. "email": "tobias.nyholm@gmail.com",
  1061. "homepage": "https://github.com/Nyholm"
  1062. },
  1063. {
  1064. "name": "Márk Sági-Kazár",
  1065. "email": "mark.sagikazar@gmail.com",
  1066. "homepage": "https://github.com/sagikazarmark"
  1067. },
  1068. {
  1069. "name": "Tobias Schultze",
  1070. "email": "webmaster@tubo-world.de",
  1071. "homepage": "https://github.com/Tobion"
  1072. },
  1073. {
  1074. "name": "Márk Sági-Kazár",
  1075. "email": "mark.sagikazar@gmail.com",
  1076. "homepage": "https://sagikazarmark.hu"
  1077. }
  1078. ],
  1079. "description": "PSR-7 message implementation that also provides common utility methods",
  1080. "keywords": [
  1081. "http",
  1082. "message",
  1083. "psr-7",
  1084. "request",
  1085. "response",
  1086. "stream",
  1087. "uri",
  1088. "url"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/guzzle/psr7/issues",
  1092. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://github.com/GrahamCampbell",
  1097. "type": "github"
  1098. },
  1099. {
  1100. "url": "https://github.com/Nyholm",
  1101. "type": "github"
  1102. },
  1103. {
  1104. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1105. "type": "tidelift"
  1106. }
  1107. ],
  1108. "time": "2023-12-03T20:05:35+00:00"
  1109. },
  1110. {
  1111. "name": "laravel/framework",
  1112. "version": "v8.83.27",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/laravel/framework.git",
  1116. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1121. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  1122. "shasum": "",
  1123. "mirrors": [
  1124. {
  1125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1126. "preferred": true
  1127. }
  1128. ]
  1129. },
  1130. "require": {
  1131. "doctrine/inflector": "^1.4|^2.0",
  1132. "dragonmantank/cron-expression": "^3.0.2",
  1133. "egulias/email-validator": "^2.1.10",
  1134. "ext-json": "*",
  1135. "ext-mbstring": "*",
  1136. "ext-openssl": "*",
  1137. "laravel/serializable-closure": "^1.0",
  1138. "league/commonmark": "^1.3|^2.0.2",
  1139. "league/flysystem": "^1.1",
  1140. "monolog/monolog": "^2.0",
  1141. "nesbot/carbon": "^2.53.1",
  1142. "opis/closure": "^3.6",
  1143. "php": "^7.3|^8.0",
  1144. "psr/container": "^1.0",
  1145. "psr/log": "^1.0|^2.0",
  1146. "psr/simple-cache": "^1.0",
  1147. "ramsey/uuid": "^4.2.2",
  1148. "swiftmailer/swiftmailer": "^6.3",
  1149. "symfony/console": "^5.4",
  1150. "symfony/error-handler": "^5.4",
  1151. "symfony/finder": "^5.4",
  1152. "symfony/http-foundation": "^5.4",
  1153. "symfony/http-kernel": "^5.4",
  1154. "symfony/mime": "^5.4",
  1155. "symfony/process": "^5.4",
  1156. "symfony/routing": "^5.4",
  1157. "symfony/var-dumper": "^5.4",
  1158. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1159. "vlucas/phpdotenv": "^5.4.1",
  1160. "voku/portable-ascii": "^1.6.1"
  1161. },
  1162. "conflict": {
  1163. "tightenco/collect": "<5.5.33"
  1164. },
  1165. "provide": {
  1166. "psr/container-implementation": "1.0",
  1167. "psr/simple-cache-implementation": "1.0"
  1168. },
  1169. "replace": {
  1170. "illuminate/auth": "self.version",
  1171. "illuminate/broadcasting": "self.version",
  1172. "illuminate/bus": "self.version",
  1173. "illuminate/cache": "self.version",
  1174. "illuminate/collections": "self.version",
  1175. "illuminate/config": "self.version",
  1176. "illuminate/console": "self.version",
  1177. "illuminate/container": "self.version",
  1178. "illuminate/contracts": "self.version",
  1179. "illuminate/cookie": "self.version",
  1180. "illuminate/database": "self.version",
  1181. "illuminate/encryption": "self.version",
  1182. "illuminate/events": "self.version",
  1183. "illuminate/filesystem": "self.version",
  1184. "illuminate/hashing": "self.version",
  1185. "illuminate/http": "self.version",
  1186. "illuminate/log": "self.version",
  1187. "illuminate/macroable": "self.version",
  1188. "illuminate/mail": "self.version",
  1189. "illuminate/notifications": "self.version",
  1190. "illuminate/pagination": "self.version",
  1191. "illuminate/pipeline": "self.version",
  1192. "illuminate/queue": "self.version",
  1193. "illuminate/redis": "self.version",
  1194. "illuminate/routing": "self.version",
  1195. "illuminate/session": "self.version",
  1196. "illuminate/support": "self.version",
  1197. "illuminate/testing": "self.version",
  1198. "illuminate/translation": "self.version",
  1199. "illuminate/validation": "self.version",
  1200. "illuminate/view": "self.version"
  1201. },
  1202. "require-dev": {
  1203. "aws/aws-sdk-php": "^3.198.1",
  1204. "doctrine/dbal": "^2.13.3|^3.1.4",
  1205. "filp/whoops": "^2.14.3",
  1206. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1207. "league/flysystem-cached-adapter": "^1.0",
  1208. "mockery/mockery": "^1.4.4",
  1209. "orchestra/testbench-core": "^6.27",
  1210. "pda/pheanstalk": "^4.0",
  1211. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1212. "predis/predis": "^1.1.9",
  1213. "symfony/cache": "^5.4"
  1214. },
  1215. "suggest": {
  1216. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1217. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1218. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1219. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1220. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1221. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1222. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1223. "ext-memcached": "Required to use the memcache cache driver.",
  1224. "ext-pcntl": "Required to use all features of the queue worker.",
  1225. "ext-posix": "Required to use all features of the queue worker.",
  1226. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1227. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1228. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1229. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1230. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1231. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1232. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1233. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1234. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1235. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1236. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1237. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1238. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1239. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1240. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1241. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1242. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1243. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1244. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-master": "8.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "files": [
  1254. "src/Illuminate/Collections/helpers.php",
  1255. "src/Illuminate/Events/functions.php",
  1256. "src/Illuminate/Foundation/helpers.php",
  1257. "src/Illuminate/Support/helpers.php"
  1258. ],
  1259. "psr-4": {
  1260. "Illuminate\\": "src/Illuminate/",
  1261. "Illuminate\\Support\\": [
  1262. "src/Illuminate/Macroable/",
  1263. "src/Illuminate/Collections/"
  1264. ]
  1265. }
  1266. },
  1267. "notification-url": "https://packagist.org/downloads/",
  1268. "license": [
  1269. "MIT"
  1270. ],
  1271. "authors": [
  1272. {
  1273. "name": "Taylor Otwell",
  1274. "email": "taylor@laravel.com"
  1275. }
  1276. ],
  1277. "description": "The Laravel Framework.",
  1278. "homepage": "https://laravel.com",
  1279. "keywords": [
  1280. "framework",
  1281. "laravel"
  1282. ],
  1283. "support": {
  1284. "issues": "https://github.com/laravel/framework/issues",
  1285. "source": "https://github.com/laravel/framework"
  1286. },
  1287. "time": "2022-12-08T15:28:55+00:00"
  1288. },
  1289. {
  1290. "name": "laravel/sanctum",
  1291. "version": "v2.15.1",
  1292. "source": {
  1293. "type": "git",
  1294. "url": "https://github.com/laravel/sanctum.git",
  1295. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  1296. },
  1297. "dist": {
  1298. "type": "zip",
  1299. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1300. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  1301. "shasum": "",
  1302. "mirrors": [
  1303. {
  1304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1305. "preferred": true
  1306. }
  1307. ]
  1308. },
  1309. "require": {
  1310. "ext-json": "*",
  1311. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  1312. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  1313. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  1314. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  1315. "php": "^7.2|^8.0"
  1316. },
  1317. "require-dev": {
  1318. "mockery/mockery": "^1.0",
  1319. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  1320. "phpunit/phpunit": "^8.0|^9.3"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "branch-alias": {
  1325. "dev-master": "2.x-dev"
  1326. },
  1327. "laravel": {
  1328. "providers": [
  1329. "Laravel\\Sanctum\\SanctumServiceProvider"
  1330. ]
  1331. }
  1332. },
  1333. "autoload": {
  1334. "psr-4": {
  1335. "Laravel\\Sanctum\\": "src/"
  1336. }
  1337. },
  1338. "notification-url": "https://packagist.org/downloads/",
  1339. "license": [
  1340. "MIT"
  1341. ],
  1342. "authors": [
  1343. {
  1344. "name": "Taylor Otwell",
  1345. "email": "taylor@laravel.com"
  1346. }
  1347. ],
  1348. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1349. "keywords": [
  1350. "auth",
  1351. "laravel",
  1352. "sanctum"
  1353. ],
  1354. "support": {
  1355. "issues": "https://github.com/laravel/sanctum/issues",
  1356. "source": "https://github.com/laravel/sanctum"
  1357. },
  1358. "time": "2022-04-08T13:39:49+00:00"
  1359. },
  1360. {
  1361. "name": "laravel/serializable-closure",
  1362. "version": "v1.3.3",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/laravel/serializable-closure.git",
  1366. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  1371. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  1372. "shasum": "",
  1373. "mirrors": [
  1374. {
  1375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1376. "preferred": true
  1377. }
  1378. ]
  1379. },
  1380. "require": {
  1381. "php": "^7.3|^8.0"
  1382. },
  1383. "require-dev": {
  1384. "nesbot/carbon": "^2.61",
  1385. "pestphp/pest": "^1.21.3",
  1386. "phpstan/phpstan": "^1.8.2",
  1387. "symfony/var-dumper": "^5.4.11"
  1388. },
  1389. "type": "library",
  1390. "extra": {
  1391. "branch-alias": {
  1392. "dev-master": "1.x-dev"
  1393. }
  1394. },
  1395. "autoload": {
  1396. "psr-4": {
  1397. "Laravel\\SerializableClosure\\": "src/"
  1398. }
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "MIT"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "Taylor Otwell",
  1407. "email": "taylor@laravel.com"
  1408. },
  1409. {
  1410. "name": "Nuno Maduro",
  1411. "email": "nuno@laravel.com"
  1412. }
  1413. ],
  1414. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1415. "keywords": [
  1416. "closure",
  1417. "laravel",
  1418. "serializable"
  1419. ],
  1420. "support": {
  1421. "issues": "https://github.com/laravel/serializable-closure/issues",
  1422. "source": "https://github.com/laravel/serializable-closure"
  1423. },
  1424. "time": "2023-11-08T14:08:06+00:00"
  1425. },
  1426. {
  1427. "name": "laravel/tinker",
  1428. "version": "v2.9.0",
  1429. "source": {
  1430. "type": "git",
  1431. "url": "https://github.com/laravel/tinker.git",
  1432. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  1433. },
  1434. "dist": {
  1435. "type": "zip",
  1436. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1437. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  1438. "shasum": "",
  1439. "mirrors": [
  1440. {
  1441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1442. "preferred": true
  1443. }
  1444. ]
  1445. },
  1446. "require": {
  1447. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1448. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1449. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1450. "php": "^7.2.5|^8.0",
  1451. "psy/psysh": "^0.11.1|^0.12.0",
  1452. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1453. },
  1454. "require-dev": {
  1455. "mockery/mockery": "~1.3.3|^1.4.2",
  1456. "phpstan/phpstan": "^1.10",
  1457. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1458. },
  1459. "suggest": {
  1460. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1461. },
  1462. "type": "library",
  1463. "extra": {
  1464. "laravel": {
  1465. "providers": [
  1466. "Laravel\\Tinker\\TinkerServiceProvider"
  1467. ]
  1468. }
  1469. },
  1470. "autoload": {
  1471. "psr-4": {
  1472. "Laravel\\Tinker\\": "src/"
  1473. }
  1474. },
  1475. "notification-url": "https://packagist.org/downloads/",
  1476. "license": [
  1477. "MIT"
  1478. ],
  1479. "authors": [
  1480. {
  1481. "name": "Taylor Otwell",
  1482. "email": "taylor@laravel.com"
  1483. }
  1484. ],
  1485. "description": "Powerful REPL for the Laravel framework.",
  1486. "keywords": [
  1487. "REPL",
  1488. "Tinker",
  1489. "laravel",
  1490. "psysh"
  1491. ],
  1492. "support": {
  1493. "issues": "https://github.com/laravel/tinker/issues",
  1494. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  1495. },
  1496. "time": "2024-01-04T16:10:04+00:00"
  1497. },
  1498. {
  1499. "name": "league/commonmark",
  1500. "version": "2.4.1",
  1501. "source": {
  1502. "type": "git",
  1503. "url": "https://github.com/thephpleague/commonmark.git",
  1504. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  1505. },
  1506. "dist": {
  1507. "type": "zip",
  1508. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1509. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1510. "shasum": "",
  1511. "mirrors": [
  1512. {
  1513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1514. "preferred": true
  1515. }
  1516. ]
  1517. },
  1518. "require": {
  1519. "ext-mbstring": "*",
  1520. "league/config": "^1.1.1",
  1521. "php": "^7.4 || ^8.0",
  1522. "psr/event-dispatcher": "^1.0",
  1523. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1524. "symfony/polyfill-php80": "^1.16"
  1525. },
  1526. "require-dev": {
  1527. "cebe/markdown": "^1.0",
  1528. "commonmark/cmark": "0.30.0",
  1529. "commonmark/commonmark.js": "0.30.0",
  1530. "composer/package-versions-deprecated": "^1.8",
  1531. "embed/embed": "^4.4",
  1532. "erusev/parsedown": "^1.0",
  1533. "ext-json": "*",
  1534. "github/gfm": "0.29.0",
  1535. "michelf/php-markdown": "^1.4 || ^2.0",
  1536. "nyholm/psr7": "^1.5",
  1537. "phpstan/phpstan": "^1.8.2",
  1538. "phpunit/phpunit": "^9.5.21",
  1539. "scrutinizer/ocular": "^1.8.1",
  1540. "symfony/finder": "^5.3 | ^6.0",
  1541. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1542. "unleashedtech/php-coding-standard": "^3.1.1",
  1543. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1544. },
  1545. "suggest": {
  1546. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1547. },
  1548. "type": "library",
  1549. "extra": {
  1550. "branch-alias": {
  1551. "dev-main": "2.5-dev"
  1552. }
  1553. },
  1554. "autoload": {
  1555. "psr-4": {
  1556. "League\\CommonMark\\": "src"
  1557. }
  1558. },
  1559. "notification-url": "https://packagist.org/downloads/",
  1560. "license": [
  1561. "BSD-3-Clause"
  1562. ],
  1563. "authors": [
  1564. {
  1565. "name": "Colin O'Dell",
  1566. "email": "colinodell@gmail.com",
  1567. "homepage": "https://www.colinodell.com",
  1568. "role": "Lead Developer"
  1569. }
  1570. ],
  1571. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1572. "homepage": "https://commonmark.thephpleague.com",
  1573. "keywords": [
  1574. "commonmark",
  1575. "flavored",
  1576. "gfm",
  1577. "github",
  1578. "github-flavored",
  1579. "markdown",
  1580. "md",
  1581. "parser"
  1582. ],
  1583. "support": {
  1584. "docs": "https://commonmark.thephpleague.com/",
  1585. "forum": "https://github.com/thephpleague/commonmark/discussions",
  1586. "issues": "https://github.com/thephpleague/commonmark/issues",
  1587. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  1588. "source": "https://github.com/thephpleague/commonmark"
  1589. },
  1590. "funding": [
  1591. {
  1592. "url": "https://www.colinodell.com/sponsor",
  1593. "type": "custom"
  1594. },
  1595. {
  1596. "url": "https://www.paypal.me/colinpodell/10.00",
  1597. "type": "custom"
  1598. },
  1599. {
  1600. "url": "https://github.com/colinodell",
  1601. "type": "github"
  1602. },
  1603. {
  1604. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  1605. "type": "tidelift"
  1606. }
  1607. ],
  1608. "time": "2023-08-30T16:55:00+00:00"
  1609. },
  1610. {
  1611. "name": "league/config",
  1612. "version": "v1.2.0",
  1613. "source": {
  1614. "type": "git",
  1615. "url": "https://github.com/thephpleague/config.git",
  1616. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  1617. },
  1618. "dist": {
  1619. "type": "zip",
  1620. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1621. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1622. "shasum": "",
  1623. "mirrors": [
  1624. {
  1625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1626. "preferred": true
  1627. }
  1628. ]
  1629. },
  1630. "require": {
  1631. "dflydev/dot-access-data": "^3.0.1",
  1632. "nette/schema": "^1.2",
  1633. "php": "^7.4 || ^8.0"
  1634. },
  1635. "require-dev": {
  1636. "phpstan/phpstan": "^1.8.2",
  1637. "phpunit/phpunit": "^9.5.5",
  1638. "scrutinizer/ocular": "^1.8.1",
  1639. "unleashedtech/php-coding-standard": "^3.1",
  1640. "vimeo/psalm": "^4.7.3"
  1641. },
  1642. "type": "library",
  1643. "extra": {
  1644. "branch-alias": {
  1645. "dev-main": "1.2-dev"
  1646. }
  1647. },
  1648. "autoload": {
  1649. "psr-4": {
  1650. "League\\Config\\": "src"
  1651. }
  1652. },
  1653. "notification-url": "https://packagist.org/downloads/",
  1654. "license": [
  1655. "BSD-3-Clause"
  1656. ],
  1657. "authors": [
  1658. {
  1659. "name": "Colin O'Dell",
  1660. "email": "colinodell@gmail.com",
  1661. "homepage": "https://www.colinodell.com",
  1662. "role": "Lead Developer"
  1663. }
  1664. ],
  1665. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1666. "homepage": "https://config.thephpleague.com",
  1667. "keywords": [
  1668. "array",
  1669. "config",
  1670. "configuration",
  1671. "dot",
  1672. "dot-access",
  1673. "nested",
  1674. "schema"
  1675. ],
  1676. "support": {
  1677. "docs": "https://config.thephpleague.com/",
  1678. "issues": "https://github.com/thephpleague/config/issues",
  1679. "rss": "https://github.com/thephpleague/config/releases.atom",
  1680. "source": "https://github.com/thephpleague/config"
  1681. },
  1682. "funding": [
  1683. {
  1684. "url": "https://www.colinodell.com/sponsor",
  1685. "type": "custom"
  1686. },
  1687. {
  1688. "url": "https://www.paypal.me/colinpodell/10.00",
  1689. "type": "custom"
  1690. },
  1691. {
  1692. "url": "https://github.com/colinodell",
  1693. "type": "github"
  1694. }
  1695. ],
  1696. "time": "2022-12-11T20:36:23+00:00"
  1697. },
  1698. {
  1699. "name": "league/flysystem",
  1700. "version": "1.1.10",
  1701. "source": {
  1702. "type": "git",
  1703. "url": "https://github.com/thephpleague/flysystem.git",
  1704. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1705. },
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1709. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1710. "shasum": "",
  1711. "mirrors": [
  1712. {
  1713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1714. "preferred": true
  1715. }
  1716. ]
  1717. },
  1718. "require": {
  1719. "ext-fileinfo": "*",
  1720. "league/mime-type-detection": "^1.3",
  1721. "php": "^7.2.5 || ^8.0"
  1722. },
  1723. "conflict": {
  1724. "league/flysystem-sftp": "<1.0.6"
  1725. },
  1726. "require-dev": {
  1727. "phpspec/prophecy": "^1.11.1",
  1728. "phpunit/phpunit": "^8.5.8"
  1729. },
  1730. "suggest": {
  1731. "ext-ftp": "Allows you to use FTP server storage",
  1732. "ext-openssl": "Allows you to use FTPS server storage",
  1733. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1734. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1735. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1736. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1737. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1738. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1739. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1740. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1741. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1742. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  1743. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  1744. },
  1745. "type": "library",
  1746. "extra": {
  1747. "branch-alias": {
  1748. "dev-master": "1.1-dev"
  1749. }
  1750. },
  1751. "autoload": {
  1752. "psr-4": {
  1753. "League\\Flysystem\\": "src/"
  1754. }
  1755. },
  1756. "notification-url": "https://packagist.org/downloads/",
  1757. "license": [
  1758. "MIT"
  1759. ],
  1760. "authors": [
  1761. {
  1762. "name": "Frank de Jonge",
  1763. "email": "info@frenky.net"
  1764. }
  1765. ],
  1766. "description": "Filesystem abstraction: Many filesystems, one API.",
  1767. "keywords": [
  1768. "Cloud Files",
  1769. "WebDAV",
  1770. "abstraction",
  1771. "aws",
  1772. "cloud",
  1773. "copy.com",
  1774. "dropbox",
  1775. "file systems",
  1776. "files",
  1777. "filesystem",
  1778. "filesystems",
  1779. "ftp",
  1780. "rackspace",
  1781. "remote",
  1782. "s3",
  1783. "sftp",
  1784. "storage"
  1785. ],
  1786. "support": {
  1787. "issues": "https://github.com/thephpleague/flysystem/issues",
  1788. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  1789. },
  1790. "funding": [
  1791. {
  1792. "url": "https://offset.earth/frankdejonge",
  1793. "type": "other"
  1794. }
  1795. ],
  1796. "time": "2022-10-04T09:16:37+00:00"
  1797. },
  1798. {
  1799. "name": "league/mime-type-detection",
  1800. "version": "1.13.0",
  1801. "source": {
  1802. "type": "git",
  1803. "url": "https://github.com/thephpleague/mime-type-detection.git",
  1804. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  1805. },
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  1809. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  1810. "shasum": "",
  1811. "mirrors": [
  1812. {
  1813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1814. "preferred": true
  1815. }
  1816. ]
  1817. },
  1818. "require": {
  1819. "ext-fileinfo": "*",
  1820. "php": "^7.4 || ^8.0"
  1821. },
  1822. "require-dev": {
  1823. "friendsofphp/php-cs-fixer": "^3.2",
  1824. "phpstan/phpstan": "^0.12.68",
  1825. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1826. },
  1827. "type": "library",
  1828. "autoload": {
  1829. "psr-4": {
  1830. "League\\MimeTypeDetection\\": "src"
  1831. }
  1832. },
  1833. "notification-url": "https://packagist.org/downloads/",
  1834. "license": [
  1835. "MIT"
  1836. ],
  1837. "authors": [
  1838. {
  1839. "name": "Frank de Jonge",
  1840. "email": "info@frankdejonge.nl"
  1841. }
  1842. ],
  1843. "description": "Mime-type detection for Flysystem",
  1844. "support": {
  1845. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  1846. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  1847. },
  1848. "funding": [
  1849. {
  1850. "url": "https://github.com/frankdejonge",
  1851. "type": "github"
  1852. },
  1853. {
  1854. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  1855. "type": "tidelift"
  1856. }
  1857. ],
  1858. "time": "2023-08-05T12:09:49+00:00"
  1859. },
  1860. {
  1861. "name": "maniac/easemob-php",
  1862. "version": "1.0.0",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://github.com/easemob/im-php-server-sdk.git",
  1866. "reference": "36b550328c9911957becde2fd62b9379ba45865c"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://api.github.com/repos/easemob/im-php-server-sdk/zipball/36b550328c9911957becde2fd62b9379ba45865c",
  1871. "reference": "36b550328c9911957becde2fd62b9379ba45865c",
  1872. "shasum": "",
  1873. "mirrors": [
  1874. {
  1875. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1876. "preferred": true
  1877. }
  1878. ]
  1879. },
  1880. "require": {
  1881. "php": ">=5.3.3"
  1882. },
  1883. "type": "library",
  1884. "autoload": {
  1885. "files": [
  1886. "src/functions.php"
  1887. ],
  1888. "psr-4": {
  1889. "tests\\": "tests/",
  1890. "Easemob\\": "src/"
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "maniac",
  1900. "email": "maniac.liu@easemob.com"
  1901. }
  1902. ],
  1903. "description": "PHP Server SDK for IM.",
  1904. "support": {
  1905. "issues": "https://github.com/easemob/im-php-server-sdk/issues",
  1906. "source": "https://github.com/easemob/im-php-server-sdk/tree/1.0.0"
  1907. },
  1908. "time": "2022-06-13T07:32:04+00:00"
  1909. },
  1910. {
  1911. "name": "monolog/monolog",
  1912. "version": "2.9.2",
  1913. "source": {
  1914. "type": "git",
  1915. "url": "https://github.com/Seldaek/monolog.git",
  1916. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  1917. },
  1918. "dist": {
  1919. "type": "zip",
  1920. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  1921. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  1922. "shasum": "",
  1923. "mirrors": [
  1924. {
  1925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1926. "preferred": true
  1927. }
  1928. ]
  1929. },
  1930. "require": {
  1931. "php": ">=7.2",
  1932. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  1933. },
  1934. "provide": {
  1935. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  1936. },
  1937. "require-dev": {
  1938. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  1939. "doctrine/couchdb": "~1.0@dev",
  1940. "elasticsearch/elasticsearch": "^7 || ^8",
  1941. "ext-json": "*",
  1942. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  1943. "guzzlehttp/guzzle": "^7.4",
  1944. "guzzlehttp/psr7": "^2.2",
  1945. "mongodb/mongodb": "^1.8",
  1946. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1947. "phpspec/prophecy": "^1.15",
  1948. "phpstan/phpstan": "^0.12.91",
  1949. "phpunit/phpunit": "^8.5.14",
  1950. "predis/predis": "^1.1 || ^2.0",
  1951. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  1952. "ruflin/elastica": "^7",
  1953. "swiftmailer/swiftmailer": "^5.3|^6.0",
  1954. "symfony/mailer": "^5.4 || ^6",
  1955. "symfony/mime": "^5.4 || ^6"
  1956. },
  1957. "suggest": {
  1958. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1959. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1960. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1961. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1962. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1963. "ext-mbstring": "Allow to work properly with unicode symbols",
  1964. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1965. "ext-openssl": "Required to send log messages using SSL",
  1966. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1967. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1968. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1969. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1970. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1971. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "branch-alias": {
  1976. "dev-main": "2.x-dev"
  1977. }
  1978. },
  1979. "autoload": {
  1980. "psr-4": {
  1981. "Monolog\\": "src/Monolog"
  1982. }
  1983. },
  1984. "notification-url": "https://packagist.org/downloads/",
  1985. "license": [
  1986. "MIT"
  1987. ],
  1988. "authors": [
  1989. {
  1990. "name": "Jordi Boggiano",
  1991. "email": "j.boggiano@seld.be",
  1992. "homepage": "https://seld.be"
  1993. }
  1994. ],
  1995. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1996. "homepage": "https://github.com/Seldaek/monolog",
  1997. "keywords": [
  1998. "log",
  1999. "logging",
  2000. "psr-3"
  2001. ],
  2002. "support": {
  2003. "issues": "https://github.com/Seldaek/monolog/issues",
  2004. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  2005. },
  2006. "funding": [
  2007. {
  2008. "url": "https://github.com/Seldaek",
  2009. "type": "github"
  2010. },
  2011. {
  2012. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2013. "type": "tidelift"
  2014. }
  2015. ],
  2016. "time": "2023-10-27T15:25:26+00:00"
  2017. },
  2018. {
  2019. "name": "nesbot/carbon",
  2020. "version": "2.72.1",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/briannesbitt/Carbon.git",
  2024. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2029. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  2030. "shasum": "",
  2031. "mirrors": [
  2032. {
  2033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2034. "preferred": true
  2035. }
  2036. ]
  2037. },
  2038. "require": {
  2039. "carbonphp/carbon-doctrine-types": "*",
  2040. "ext-json": "*",
  2041. "php": "^7.1.8 || ^8.0",
  2042. "psr/clock": "^1.0",
  2043. "symfony/polyfill-mbstring": "^1.0",
  2044. "symfony/polyfill-php80": "^1.16",
  2045. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2046. },
  2047. "provide": {
  2048. "psr/clock-implementation": "1.0"
  2049. },
  2050. "require-dev": {
  2051. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2052. "doctrine/orm": "^2.7 || ^3.0",
  2053. "friendsofphp/php-cs-fixer": "^3.0",
  2054. "kylekatarnls/multi-tester": "^2.0",
  2055. "ondrejmirtes/better-reflection": "*",
  2056. "phpmd/phpmd": "^2.9",
  2057. "phpstan/extension-installer": "^1.0",
  2058. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2059. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2060. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2061. "squizlabs/php_codesniffer": "^3.4"
  2062. },
  2063. "bin": [
  2064. "bin/carbon"
  2065. ],
  2066. "type": "library",
  2067. "extra": {
  2068. "branch-alias": {
  2069. "dev-3.x": "3.x-dev",
  2070. "dev-master": "2.x-dev"
  2071. },
  2072. "laravel": {
  2073. "providers": [
  2074. "Carbon\\Laravel\\ServiceProvider"
  2075. ]
  2076. },
  2077. "phpstan": {
  2078. "includes": [
  2079. "extension.neon"
  2080. ]
  2081. }
  2082. },
  2083. "autoload": {
  2084. "psr-4": {
  2085. "Carbon\\": "src/Carbon/"
  2086. }
  2087. },
  2088. "notification-url": "https://packagist.org/downloads/",
  2089. "license": [
  2090. "MIT"
  2091. ],
  2092. "authors": [
  2093. {
  2094. "name": "Brian Nesbitt",
  2095. "email": "brian@nesbot.com",
  2096. "homepage": "https://markido.com"
  2097. },
  2098. {
  2099. "name": "kylekatarnls",
  2100. "homepage": "https://github.com/kylekatarnls"
  2101. }
  2102. ],
  2103. "description": "An API extension for DateTime that supports 281 different languages.",
  2104. "homepage": "https://carbon.nesbot.com",
  2105. "keywords": [
  2106. "date",
  2107. "datetime",
  2108. "time"
  2109. ],
  2110. "support": {
  2111. "docs": "https://carbon.nesbot.com/docs",
  2112. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2113. "source": "https://github.com/briannesbitt/Carbon"
  2114. },
  2115. "funding": [
  2116. {
  2117. "url": "https://github.com/sponsors/kylekatarnls",
  2118. "type": "github"
  2119. },
  2120. {
  2121. "url": "https://opencollective.com/Carbon#sponsor",
  2122. "type": "opencollective"
  2123. },
  2124. {
  2125. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2126. "type": "tidelift"
  2127. }
  2128. ],
  2129. "time": "2023-12-08T23:47:49+00:00"
  2130. },
  2131. {
  2132. "name": "nette/schema",
  2133. "version": "v1.2.5",
  2134. "source": {
  2135. "type": "git",
  2136. "url": "https://github.com/nette/schema.git",
  2137. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  2138. },
  2139. "dist": {
  2140. "type": "zip",
  2141. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  2142. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  2143. "shasum": "",
  2144. "mirrors": [
  2145. {
  2146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2147. "preferred": true
  2148. }
  2149. ]
  2150. },
  2151. "require": {
  2152. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  2153. "php": "7.1 - 8.3"
  2154. },
  2155. "require-dev": {
  2156. "nette/tester": "^2.3 || ^2.4",
  2157. "phpstan/phpstan-nette": "^1.0",
  2158. "tracy/tracy": "^2.7"
  2159. },
  2160. "type": "library",
  2161. "extra": {
  2162. "branch-alias": {
  2163. "dev-master": "1.2-dev"
  2164. }
  2165. },
  2166. "autoload": {
  2167. "classmap": [
  2168. "src/"
  2169. ]
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "BSD-3-Clause",
  2174. "GPL-2.0-only",
  2175. "GPL-3.0-only"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "David Grudl",
  2180. "homepage": "https://davidgrudl.com"
  2181. },
  2182. {
  2183. "name": "Nette Community",
  2184. "homepage": "https://nette.org/contributors"
  2185. }
  2186. ],
  2187. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2188. "homepage": "https://nette.org",
  2189. "keywords": [
  2190. "config",
  2191. "nette"
  2192. ],
  2193. "support": {
  2194. "issues": "https://github.com/nette/schema/issues",
  2195. "source": "https://github.com/nette/schema/tree/v1.2.5"
  2196. },
  2197. "time": "2023-10-05T20:37:59+00:00"
  2198. },
  2199. {
  2200. "name": "nette/utils",
  2201. "version": "v3.2.10",
  2202. "source": {
  2203. "type": "git",
  2204. "url": "https://github.com/nette/utils.git",
  2205. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  2206. },
  2207. "dist": {
  2208. "type": "zip",
  2209. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2210. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  2211. "shasum": "",
  2212. "mirrors": [
  2213. {
  2214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2215. "preferred": true
  2216. }
  2217. ]
  2218. },
  2219. "require": {
  2220. "php": ">=7.2 <8.4"
  2221. },
  2222. "conflict": {
  2223. "nette/di": "<3.0.6"
  2224. },
  2225. "require-dev": {
  2226. "jetbrains/phpstorm-attributes": "dev-master",
  2227. "nette/tester": "~2.0",
  2228. "phpstan/phpstan": "^1.0",
  2229. "tracy/tracy": "^2.3"
  2230. },
  2231. "suggest": {
  2232. "ext-gd": "to use Image",
  2233. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2234. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2235. "ext-json": "to use Nette\\Utils\\Json",
  2236. "ext-mbstring": "to use Strings::lower() etc...",
  2237. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  2238. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  2239. },
  2240. "type": "library",
  2241. "extra": {
  2242. "branch-alias": {
  2243. "dev-master": "3.2-dev"
  2244. }
  2245. },
  2246. "autoload": {
  2247. "classmap": [
  2248. "src/"
  2249. ]
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "BSD-3-Clause",
  2254. "GPL-2.0-only",
  2255. "GPL-3.0-only"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "David Grudl",
  2260. "homepage": "https://davidgrudl.com"
  2261. },
  2262. {
  2263. "name": "Nette Community",
  2264. "homepage": "https://nette.org/contributors"
  2265. }
  2266. ],
  2267. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2268. "homepage": "https://nette.org",
  2269. "keywords": [
  2270. "array",
  2271. "core",
  2272. "datetime",
  2273. "images",
  2274. "json",
  2275. "nette",
  2276. "paginator",
  2277. "password",
  2278. "slugify",
  2279. "string",
  2280. "unicode",
  2281. "utf-8",
  2282. "utility",
  2283. "validation"
  2284. ],
  2285. "support": {
  2286. "issues": "https://github.com/nette/utils/issues",
  2287. "source": "https://github.com/nette/utils/tree/v3.2.10"
  2288. },
  2289. "time": "2023-07-30T15:38:18+00:00"
  2290. },
  2291. {
  2292. "name": "nikic/php-parser",
  2293. "version": "v5.0.0",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://github.com/nikic/PHP-Parser.git",
  2297. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  2302. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  2303. "shasum": "",
  2304. "mirrors": [
  2305. {
  2306. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2307. "preferred": true
  2308. }
  2309. ]
  2310. },
  2311. "require": {
  2312. "ext-ctype": "*",
  2313. "ext-json": "*",
  2314. "ext-tokenizer": "*",
  2315. "php": ">=7.4"
  2316. },
  2317. "require-dev": {
  2318. "ircmaxell/php-yacc": "^0.0.7",
  2319. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  2320. },
  2321. "bin": [
  2322. "bin/php-parse"
  2323. ],
  2324. "type": "library",
  2325. "extra": {
  2326. "branch-alias": {
  2327. "dev-master": "5.0-dev"
  2328. }
  2329. },
  2330. "autoload": {
  2331. "psr-4": {
  2332. "PhpParser\\": "lib/PhpParser"
  2333. }
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "BSD-3-Clause"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Nikita Popov"
  2342. }
  2343. ],
  2344. "description": "A PHP parser written in PHP",
  2345. "keywords": [
  2346. "parser",
  2347. "php"
  2348. ],
  2349. "support": {
  2350. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2351. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  2352. },
  2353. "time": "2024-01-07T17:17:35+00:00"
  2354. },
  2355. {
  2356. "name": "opis/closure",
  2357. "version": "3.6.3",
  2358. "source": {
  2359. "type": "git",
  2360. "url": "https://github.com/opis/closure.git",
  2361. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  2362. },
  2363. "dist": {
  2364. "type": "zip",
  2365. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  2366. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  2367. "shasum": "",
  2368. "mirrors": [
  2369. {
  2370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2371. "preferred": true
  2372. }
  2373. ]
  2374. },
  2375. "require": {
  2376. "php": "^5.4 || ^7.0 || ^8.0"
  2377. },
  2378. "require-dev": {
  2379. "jeremeamia/superclosure": "^2.0",
  2380. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  2381. },
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-master": "3.6.x-dev"
  2386. }
  2387. },
  2388. "autoload": {
  2389. "files": [
  2390. "functions.php"
  2391. ],
  2392. "psr-4": {
  2393. "Opis\\Closure\\": "src/"
  2394. }
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "MIT"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "Marius Sarca",
  2403. "email": "marius.sarca@gmail.com"
  2404. },
  2405. {
  2406. "name": "Sorin Sarca",
  2407. "email": "sarca_sorin@hotmail.com"
  2408. }
  2409. ],
  2410. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  2411. "homepage": "https://opis.io/closure",
  2412. "keywords": [
  2413. "anonymous functions",
  2414. "closure",
  2415. "function",
  2416. "serializable",
  2417. "serialization",
  2418. "serialize"
  2419. ],
  2420. "support": {
  2421. "issues": "https://github.com/opis/closure/issues",
  2422. "source": "https://github.com/opis/closure/tree/3.6.3"
  2423. },
  2424. "time": "2022-01-27T09:35:39+00:00"
  2425. },
  2426. {
  2427. "name": "phpoption/phpoption",
  2428. "version": "1.9.2",
  2429. "source": {
  2430. "type": "git",
  2431. "url": "https://github.com/schmittjoh/php-option.git",
  2432. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  2433. },
  2434. "dist": {
  2435. "type": "zip",
  2436. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  2437. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  2438. "shasum": "",
  2439. "mirrors": [
  2440. {
  2441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2442. "preferred": true
  2443. }
  2444. ]
  2445. },
  2446. "require": {
  2447. "php": "^7.2.5 || ^8.0"
  2448. },
  2449. "require-dev": {
  2450. "bamarni/composer-bin-plugin": "^1.8.2",
  2451. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2452. },
  2453. "type": "library",
  2454. "extra": {
  2455. "bamarni-bin": {
  2456. "bin-links": true,
  2457. "forward-command": true
  2458. },
  2459. "branch-alias": {
  2460. "dev-master": "1.9-dev"
  2461. }
  2462. },
  2463. "autoload": {
  2464. "psr-4": {
  2465. "PhpOption\\": "src/PhpOption/"
  2466. }
  2467. },
  2468. "notification-url": "https://packagist.org/downloads/",
  2469. "license": [
  2470. "Apache-2.0"
  2471. ],
  2472. "authors": [
  2473. {
  2474. "name": "Johannes M. Schmitt",
  2475. "email": "schmittjoh@gmail.com",
  2476. "homepage": "https://github.com/schmittjoh"
  2477. },
  2478. {
  2479. "name": "Graham Campbell",
  2480. "email": "hello@gjcampbell.co.uk",
  2481. "homepage": "https://github.com/GrahamCampbell"
  2482. }
  2483. ],
  2484. "description": "Option Type for PHP",
  2485. "keywords": [
  2486. "language",
  2487. "option",
  2488. "php",
  2489. "type"
  2490. ],
  2491. "support": {
  2492. "issues": "https://github.com/schmittjoh/php-option/issues",
  2493. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  2494. },
  2495. "funding": [
  2496. {
  2497. "url": "https://github.com/GrahamCampbell",
  2498. "type": "github"
  2499. },
  2500. {
  2501. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  2502. "type": "tidelift"
  2503. }
  2504. ],
  2505. "time": "2023-11-12T21:59:55+00:00"
  2506. },
  2507. {
  2508. "name": "psr/clock",
  2509. "version": "1.0.0",
  2510. "source": {
  2511. "type": "git",
  2512. "url": "https://github.com/php-fig/clock.git",
  2513. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2514. },
  2515. "dist": {
  2516. "type": "zip",
  2517. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2518. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2519. "shasum": "",
  2520. "mirrors": [
  2521. {
  2522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2523. "preferred": true
  2524. }
  2525. ]
  2526. },
  2527. "require": {
  2528. "php": "^7.0 || ^8.0"
  2529. },
  2530. "type": "library",
  2531. "autoload": {
  2532. "psr-4": {
  2533. "Psr\\Clock\\": "src/"
  2534. }
  2535. },
  2536. "notification-url": "https://packagist.org/downloads/",
  2537. "license": [
  2538. "MIT"
  2539. ],
  2540. "authors": [
  2541. {
  2542. "name": "PHP-FIG",
  2543. "homepage": "https://www.php-fig.org/"
  2544. }
  2545. ],
  2546. "description": "Common interface for reading the clock.",
  2547. "homepage": "https://github.com/php-fig/clock",
  2548. "keywords": [
  2549. "clock",
  2550. "now",
  2551. "psr",
  2552. "psr-20",
  2553. "time"
  2554. ],
  2555. "support": {
  2556. "issues": "https://github.com/php-fig/clock/issues",
  2557. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2558. },
  2559. "time": "2022-11-25T14:36:26+00:00"
  2560. },
  2561. {
  2562. "name": "psr/container",
  2563. "version": "1.1.2",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://github.com/php-fig/container.git",
  2567. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2572. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2573. "shasum": "",
  2574. "mirrors": [
  2575. {
  2576. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2577. "preferred": true
  2578. }
  2579. ]
  2580. },
  2581. "require": {
  2582. "php": ">=7.4.0"
  2583. },
  2584. "type": "library",
  2585. "autoload": {
  2586. "psr-4": {
  2587. "Psr\\Container\\": "src/"
  2588. }
  2589. },
  2590. "notification-url": "https://packagist.org/downloads/",
  2591. "license": [
  2592. "MIT"
  2593. ],
  2594. "authors": [
  2595. {
  2596. "name": "PHP-FIG",
  2597. "homepage": "https://www.php-fig.org/"
  2598. }
  2599. ],
  2600. "description": "Common Container Interface (PHP FIG PSR-11)",
  2601. "homepage": "https://github.com/php-fig/container",
  2602. "keywords": [
  2603. "PSR-11",
  2604. "container",
  2605. "container-interface",
  2606. "container-interop",
  2607. "psr"
  2608. ],
  2609. "support": {
  2610. "issues": "https://github.com/php-fig/container/issues",
  2611. "source": "https://github.com/php-fig/container/tree/1.1.2"
  2612. },
  2613. "time": "2021-11-05T16:50:12+00:00"
  2614. },
  2615. {
  2616. "name": "psr/event-dispatcher",
  2617. "version": "1.0.0",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://github.com/php-fig/event-dispatcher.git",
  2621. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2626. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2627. "shasum": "",
  2628. "mirrors": [
  2629. {
  2630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2631. "preferred": true
  2632. }
  2633. ]
  2634. },
  2635. "require": {
  2636. "php": ">=7.2.0"
  2637. },
  2638. "type": "library",
  2639. "extra": {
  2640. "branch-alias": {
  2641. "dev-master": "1.0.x-dev"
  2642. }
  2643. },
  2644. "autoload": {
  2645. "psr-4": {
  2646. "Psr\\EventDispatcher\\": "src/"
  2647. }
  2648. },
  2649. "notification-url": "https://packagist.org/downloads/",
  2650. "license": [
  2651. "MIT"
  2652. ],
  2653. "authors": [
  2654. {
  2655. "name": "PHP-FIG",
  2656. "homepage": "http://www.php-fig.org/"
  2657. }
  2658. ],
  2659. "description": "Standard interfaces for event handling.",
  2660. "keywords": [
  2661. "events",
  2662. "psr",
  2663. "psr-14"
  2664. ],
  2665. "support": {
  2666. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2667. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2668. },
  2669. "time": "2019-01-08T18:20:26+00:00"
  2670. },
  2671. {
  2672. "name": "psr/http-client",
  2673. "version": "1.0.3",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://github.com/php-fig/http-client.git",
  2677. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2678. },
  2679. "dist": {
  2680. "type": "zip",
  2681. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2682. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2683. "shasum": "",
  2684. "mirrors": [
  2685. {
  2686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2687. "preferred": true
  2688. }
  2689. ]
  2690. },
  2691. "require": {
  2692. "php": "^7.0 || ^8.0",
  2693. "psr/http-message": "^1.0 || ^2.0"
  2694. },
  2695. "type": "library",
  2696. "extra": {
  2697. "branch-alias": {
  2698. "dev-master": "1.0.x-dev"
  2699. }
  2700. },
  2701. "autoload": {
  2702. "psr-4": {
  2703. "Psr\\Http\\Client\\": "src/"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "PHP-FIG",
  2713. "homepage": "https://www.php-fig.org/"
  2714. }
  2715. ],
  2716. "description": "Common interface for HTTP clients",
  2717. "homepage": "https://github.com/php-fig/http-client",
  2718. "keywords": [
  2719. "http",
  2720. "http-client",
  2721. "psr",
  2722. "psr-18"
  2723. ],
  2724. "support": {
  2725. "source": "https://github.com/php-fig/http-client"
  2726. },
  2727. "time": "2023-09-23T14:17:50+00:00"
  2728. },
  2729. {
  2730. "name": "psr/http-factory",
  2731. "version": "1.0.2",
  2732. "source": {
  2733. "type": "git",
  2734. "url": "https://github.com/php-fig/http-factory.git",
  2735. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  2736. },
  2737. "dist": {
  2738. "type": "zip",
  2739. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  2740. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2741. "shasum": "",
  2742. "mirrors": [
  2743. {
  2744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2745. "preferred": true
  2746. }
  2747. ]
  2748. },
  2749. "require": {
  2750. "php": ">=7.0.0",
  2751. "psr/http-message": "^1.0 || ^2.0"
  2752. },
  2753. "type": "library",
  2754. "extra": {
  2755. "branch-alias": {
  2756. "dev-master": "1.0.x-dev"
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Psr\\Http\\Message\\": "src/"
  2762. }
  2763. },
  2764. "notification-url": "https://packagist.org/downloads/",
  2765. "license": [
  2766. "MIT"
  2767. ],
  2768. "authors": [
  2769. {
  2770. "name": "PHP-FIG",
  2771. "homepage": "https://www.php-fig.org/"
  2772. }
  2773. ],
  2774. "description": "Common interfaces for PSR-7 HTTP message factories",
  2775. "keywords": [
  2776. "factory",
  2777. "http",
  2778. "message",
  2779. "psr",
  2780. "psr-17",
  2781. "psr-7",
  2782. "request",
  2783. "response"
  2784. ],
  2785. "support": {
  2786. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  2787. },
  2788. "time": "2023-04-10T20:10:41+00:00"
  2789. },
  2790. {
  2791. "name": "psr/http-message",
  2792. "version": "2.0",
  2793. "source": {
  2794. "type": "git",
  2795. "url": "https://github.com/php-fig/http-message.git",
  2796. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  2797. },
  2798. "dist": {
  2799. "type": "zip",
  2800. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2801. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2802. "shasum": "",
  2803. "mirrors": [
  2804. {
  2805. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2806. "preferred": true
  2807. }
  2808. ]
  2809. },
  2810. "require": {
  2811. "php": "^7.2 || ^8.0"
  2812. },
  2813. "type": "library",
  2814. "extra": {
  2815. "branch-alias": {
  2816. "dev-master": "2.0.x-dev"
  2817. }
  2818. },
  2819. "autoload": {
  2820. "psr-4": {
  2821. "Psr\\Http\\Message\\": "src/"
  2822. }
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "PHP-FIG",
  2831. "homepage": "https://www.php-fig.org/"
  2832. }
  2833. ],
  2834. "description": "Common interface for HTTP messages",
  2835. "homepage": "https://github.com/php-fig/http-message",
  2836. "keywords": [
  2837. "http",
  2838. "http-message",
  2839. "psr",
  2840. "psr-7",
  2841. "request",
  2842. "response"
  2843. ],
  2844. "support": {
  2845. "source": "https://github.com/php-fig/http-message/tree/2.0"
  2846. },
  2847. "time": "2023-04-04T09:54:51+00:00"
  2848. },
  2849. {
  2850. "name": "psr/log",
  2851. "version": "1.1.4",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/php-fig/log.git",
  2855. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  2860. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  2861. "shasum": "",
  2862. "mirrors": [
  2863. {
  2864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2865. "preferred": true
  2866. }
  2867. ]
  2868. },
  2869. "require": {
  2870. "php": ">=5.3.0"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "branch-alias": {
  2875. "dev-master": "1.1.x-dev"
  2876. }
  2877. },
  2878. "autoload": {
  2879. "psr-4": {
  2880. "Psr\\Log\\": "Psr/Log/"
  2881. }
  2882. },
  2883. "notification-url": "https://packagist.org/downloads/",
  2884. "license": [
  2885. "MIT"
  2886. ],
  2887. "authors": [
  2888. {
  2889. "name": "PHP-FIG",
  2890. "homepage": "https://www.php-fig.org/"
  2891. }
  2892. ],
  2893. "description": "Common interface for logging libraries",
  2894. "homepage": "https://github.com/php-fig/log",
  2895. "keywords": [
  2896. "log",
  2897. "psr",
  2898. "psr-3"
  2899. ],
  2900. "support": {
  2901. "source": "https://github.com/php-fig/log/tree/1.1.4"
  2902. },
  2903. "time": "2021-05-03T11:20:27+00:00"
  2904. },
  2905. {
  2906. "name": "psr/simple-cache",
  2907. "version": "1.0.1",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/php-fig/simple-cache.git",
  2911. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2916. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  2917. "shasum": "",
  2918. "mirrors": [
  2919. {
  2920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2921. "preferred": true
  2922. }
  2923. ]
  2924. },
  2925. "require": {
  2926. "php": ">=5.3.0"
  2927. },
  2928. "type": "library",
  2929. "extra": {
  2930. "branch-alias": {
  2931. "dev-master": "1.0.x-dev"
  2932. }
  2933. },
  2934. "autoload": {
  2935. "psr-4": {
  2936. "Psr\\SimpleCache\\": "src/"
  2937. }
  2938. },
  2939. "notification-url": "https://packagist.org/downloads/",
  2940. "license": [
  2941. "MIT"
  2942. ],
  2943. "authors": [
  2944. {
  2945. "name": "PHP-FIG",
  2946. "homepage": "http://www.php-fig.org/"
  2947. }
  2948. ],
  2949. "description": "Common interfaces for simple caching",
  2950. "keywords": [
  2951. "cache",
  2952. "caching",
  2953. "psr",
  2954. "psr-16",
  2955. "simple-cache"
  2956. ],
  2957. "support": {
  2958. "source": "https://github.com/php-fig/simple-cache/tree/master"
  2959. },
  2960. "time": "2017-10-23T01:57:42+00:00"
  2961. },
  2962. {
  2963. "name": "psy/psysh",
  2964. "version": "v0.12.0",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/bobthecow/psysh.git",
  2968. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  2973. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  2974. "shasum": "",
  2975. "mirrors": [
  2976. {
  2977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2978. "preferred": true
  2979. }
  2980. ]
  2981. },
  2982. "require": {
  2983. "ext-json": "*",
  2984. "ext-tokenizer": "*",
  2985. "nikic/php-parser": "^5.0 || ^4.0",
  2986. "php": "^8.0 || ^7.4",
  2987. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  2988. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  2989. },
  2990. "conflict": {
  2991. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2992. },
  2993. "require-dev": {
  2994. "bamarni/composer-bin-plugin": "^1.2"
  2995. },
  2996. "suggest": {
  2997. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2998. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2999. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3000. },
  3001. "bin": [
  3002. "bin/psysh"
  3003. ],
  3004. "type": "library",
  3005. "extra": {
  3006. "branch-alias": {
  3007. "dev-main": "0.12.x-dev"
  3008. },
  3009. "bamarni-bin": {
  3010. "bin-links": false,
  3011. "forward-command": false
  3012. }
  3013. },
  3014. "autoload": {
  3015. "files": [
  3016. "src/functions.php"
  3017. ],
  3018. "psr-4": {
  3019. "Psy\\": "src/"
  3020. }
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "Justin Hileman",
  3029. "email": "justin@justinhileman.info",
  3030. "homepage": "http://justinhileman.com"
  3031. }
  3032. ],
  3033. "description": "An interactive shell for modern PHP.",
  3034. "homepage": "http://psysh.org",
  3035. "keywords": [
  3036. "REPL",
  3037. "console",
  3038. "interactive",
  3039. "shell"
  3040. ],
  3041. "support": {
  3042. "issues": "https://github.com/bobthecow/psysh/issues",
  3043. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  3044. },
  3045. "time": "2023-12-20T15:28:09+00:00"
  3046. },
  3047. {
  3048. "name": "ralouphie/getallheaders",
  3049. "version": "3.0.3",
  3050. "source": {
  3051. "type": "git",
  3052. "url": "https://github.com/ralouphie/getallheaders.git",
  3053. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3054. },
  3055. "dist": {
  3056. "type": "zip",
  3057. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3058. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3059. "shasum": "",
  3060. "mirrors": [
  3061. {
  3062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3063. "preferred": true
  3064. }
  3065. ]
  3066. },
  3067. "require": {
  3068. "php": ">=5.6"
  3069. },
  3070. "require-dev": {
  3071. "php-coveralls/php-coveralls": "^2.1",
  3072. "phpunit/phpunit": "^5 || ^6.5"
  3073. },
  3074. "type": "library",
  3075. "autoload": {
  3076. "files": [
  3077. "src/getallheaders.php"
  3078. ]
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "Ralph Khattar",
  3087. "email": "ralph.khattar@gmail.com"
  3088. }
  3089. ],
  3090. "description": "A polyfill for getallheaders.",
  3091. "support": {
  3092. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3093. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3094. },
  3095. "time": "2019-03-08T08:55:37+00:00"
  3096. },
  3097. {
  3098. "name": "ramsey/collection",
  3099. "version": "1.3.0",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "https://github.com/ramsey/collection.git",
  3103. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3108. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  3109. "shasum": "",
  3110. "mirrors": [
  3111. {
  3112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3113. "preferred": true
  3114. }
  3115. ]
  3116. },
  3117. "require": {
  3118. "php": "^7.4 || ^8.0",
  3119. "symfony/polyfill-php81": "^1.23"
  3120. },
  3121. "require-dev": {
  3122. "captainhook/plugin-composer": "^5.3",
  3123. "ergebnis/composer-normalize": "^2.28.3",
  3124. "fakerphp/faker": "^1.21",
  3125. "hamcrest/hamcrest-php": "^2.0",
  3126. "jangregor/phpstan-prophecy": "^1.0",
  3127. "mockery/mockery": "^1.5",
  3128. "php-parallel-lint/php-console-highlighter": "^1.0",
  3129. "php-parallel-lint/php-parallel-lint": "^1.3",
  3130. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3131. "phpspec/prophecy-phpunit": "^2.0",
  3132. "phpstan/extension-installer": "^1.2",
  3133. "phpstan/phpstan": "^1.9",
  3134. "phpstan/phpstan-mockery": "^1.1",
  3135. "phpstan/phpstan-phpunit": "^1.3",
  3136. "phpunit/phpunit": "^9.5",
  3137. "psalm/plugin-mockery": "^1.1",
  3138. "psalm/plugin-phpunit": "^0.18.4",
  3139. "ramsey/coding-standard": "^2.0.3",
  3140. "ramsey/conventional-commits": "^1.3",
  3141. "vimeo/psalm": "^5.4"
  3142. },
  3143. "type": "library",
  3144. "extra": {
  3145. "captainhook": {
  3146. "force-install": true
  3147. },
  3148. "ramsey/conventional-commits": {
  3149. "configFile": "conventional-commits.json"
  3150. }
  3151. },
  3152. "autoload": {
  3153. "psr-4": {
  3154. "Ramsey\\Collection\\": "src/"
  3155. }
  3156. },
  3157. "notification-url": "https://packagist.org/downloads/",
  3158. "license": [
  3159. "MIT"
  3160. ],
  3161. "authors": [
  3162. {
  3163. "name": "Ben Ramsey",
  3164. "email": "ben@benramsey.com",
  3165. "homepage": "https://benramsey.com"
  3166. }
  3167. ],
  3168. "description": "A PHP library for representing and manipulating collections.",
  3169. "keywords": [
  3170. "array",
  3171. "collection",
  3172. "hash",
  3173. "map",
  3174. "queue",
  3175. "set"
  3176. ],
  3177. "support": {
  3178. "issues": "https://github.com/ramsey/collection/issues",
  3179. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  3180. },
  3181. "funding": [
  3182. {
  3183. "url": "https://github.com/ramsey",
  3184. "type": "github"
  3185. },
  3186. {
  3187. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3188. "type": "tidelift"
  3189. }
  3190. ],
  3191. "time": "2022-12-27T19:12:24+00:00"
  3192. },
  3193. {
  3194. "name": "ramsey/uuid",
  3195. "version": "4.2.3",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/ramsey/uuid.git",
  3199. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  3204. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  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. "brick/math": "^0.8 || ^0.9",
  3215. "ext-json": "*",
  3216. "php": "^7.2 || ^8.0",
  3217. "ramsey/collection": "^1.0",
  3218. "symfony/polyfill-ctype": "^1.8",
  3219. "symfony/polyfill-php80": "^1.14"
  3220. },
  3221. "replace": {
  3222. "rhumsaa/uuid": "self.version"
  3223. },
  3224. "require-dev": {
  3225. "captainhook/captainhook": "^5.10",
  3226. "captainhook/plugin-composer": "^5.3",
  3227. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3228. "doctrine/annotations": "^1.8",
  3229. "ergebnis/composer-normalize": "^2.15",
  3230. "mockery/mockery": "^1.3",
  3231. "moontoast/math": "^1.1",
  3232. "paragonie/random-lib": "^2",
  3233. "php-mock/php-mock": "^2.2",
  3234. "php-mock/php-mock-mockery": "^1.3",
  3235. "php-parallel-lint/php-parallel-lint": "^1.1",
  3236. "phpbench/phpbench": "^1.0",
  3237. "phpstan/extension-installer": "^1.0",
  3238. "phpstan/phpstan": "^0.12",
  3239. "phpstan/phpstan-mockery": "^0.12",
  3240. "phpstan/phpstan-phpunit": "^0.12",
  3241. "phpunit/phpunit": "^8.5 || ^9",
  3242. "slevomat/coding-standard": "^7.0",
  3243. "squizlabs/php_codesniffer": "^3.5",
  3244. "vimeo/psalm": "^4.9"
  3245. },
  3246. "suggest": {
  3247. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3248. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  3249. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3250. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3251. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3252. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3253. },
  3254. "type": "library",
  3255. "extra": {
  3256. "branch-alias": {
  3257. "dev-main": "4.x-dev"
  3258. },
  3259. "captainhook": {
  3260. "force-install": true
  3261. }
  3262. },
  3263. "autoload": {
  3264. "files": [
  3265. "src/functions.php"
  3266. ],
  3267. "psr-4": {
  3268. "Ramsey\\Uuid\\": "src/"
  3269. }
  3270. },
  3271. "notification-url": "https://packagist.org/downloads/",
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3276. "keywords": [
  3277. "guid",
  3278. "identifier",
  3279. "uuid"
  3280. ],
  3281. "support": {
  3282. "issues": "https://github.com/ramsey/uuid/issues",
  3283. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  3284. },
  3285. "funding": [
  3286. {
  3287. "url": "https://github.com/ramsey",
  3288. "type": "github"
  3289. },
  3290. {
  3291. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  3292. "type": "tidelift"
  3293. }
  3294. ],
  3295. "time": "2021-09-25T23:10:38+00:00"
  3296. },
  3297. {
  3298. "name": "swiftmailer/swiftmailer",
  3299. "version": "v6.3.0",
  3300. "source": {
  3301. "type": "git",
  3302. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3303. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  3304. },
  3305. "dist": {
  3306. "type": "zip",
  3307. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3308. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3309. "shasum": "",
  3310. "mirrors": [
  3311. {
  3312. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3313. "preferred": true
  3314. }
  3315. ]
  3316. },
  3317. "require": {
  3318. "egulias/email-validator": "^2.0|^3.1",
  3319. "php": ">=7.0.0",
  3320. "symfony/polyfill-iconv": "^1.0",
  3321. "symfony/polyfill-intl-idn": "^1.10",
  3322. "symfony/polyfill-mbstring": "^1.0"
  3323. },
  3324. "require-dev": {
  3325. "mockery/mockery": "^1.0",
  3326. "symfony/phpunit-bridge": "^4.4|^5.4"
  3327. },
  3328. "suggest": {
  3329. "ext-intl": "Needed to support internationalized email addresses"
  3330. },
  3331. "type": "library",
  3332. "extra": {
  3333. "branch-alias": {
  3334. "dev-master": "6.2-dev"
  3335. }
  3336. },
  3337. "autoload": {
  3338. "files": [
  3339. "lib/swift_required.php"
  3340. ]
  3341. },
  3342. "notification-url": "https://packagist.org/downloads/",
  3343. "license": [
  3344. "MIT"
  3345. ],
  3346. "authors": [
  3347. {
  3348. "name": "Chris Corbyn"
  3349. },
  3350. {
  3351. "name": "Fabien Potencier",
  3352. "email": "fabien@symfony.com"
  3353. }
  3354. ],
  3355. "description": "Swiftmailer, free feature-rich PHP mailer",
  3356. "homepage": "https://swiftmailer.symfony.com",
  3357. "keywords": [
  3358. "email",
  3359. "mail",
  3360. "mailer"
  3361. ],
  3362. "support": {
  3363. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  3364. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  3365. },
  3366. "funding": [
  3367. {
  3368. "url": "https://github.com/fabpot",
  3369. "type": "github"
  3370. },
  3371. {
  3372. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  3373. "type": "tidelift"
  3374. }
  3375. ],
  3376. "abandoned": "symfony/mailer",
  3377. "time": "2021-10-18T15:26:12+00:00"
  3378. },
  3379. {
  3380. "name": "symfony/console",
  3381. "version": "v5.4.34",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/symfony/console.git",
  3385. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c",
  3390. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c",
  3391. "shasum": "",
  3392. "mirrors": [
  3393. {
  3394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3395. "preferred": true
  3396. }
  3397. ]
  3398. },
  3399. "require": {
  3400. "php": ">=7.2.5",
  3401. "symfony/deprecation-contracts": "^2.1|^3",
  3402. "symfony/polyfill-mbstring": "~1.0",
  3403. "symfony/polyfill-php73": "^1.9",
  3404. "symfony/polyfill-php80": "^1.16",
  3405. "symfony/service-contracts": "^1.1|^2|^3",
  3406. "symfony/string": "^5.1|^6.0"
  3407. },
  3408. "conflict": {
  3409. "psr/log": ">=3",
  3410. "symfony/dependency-injection": "<4.4",
  3411. "symfony/dotenv": "<5.1",
  3412. "symfony/event-dispatcher": "<4.4",
  3413. "symfony/lock": "<4.4",
  3414. "symfony/process": "<4.4"
  3415. },
  3416. "provide": {
  3417. "psr/log-implementation": "1.0|2.0"
  3418. },
  3419. "require-dev": {
  3420. "psr/log": "^1|^2",
  3421. "symfony/config": "^4.4|^5.0|^6.0",
  3422. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3423. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  3424. "symfony/lock": "^4.4|^5.0|^6.0",
  3425. "symfony/process": "^4.4|^5.0|^6.0",
  3426. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3427. },
  3428. "suggest": {
  3429. "psr/log": "For using the console logger",
  3430. "symfony/event-dispatcher": "",
  3431. "symfony/lock": "",
  3432. "symfony/process": ""
  3433. },
  3434. "type": "library",
  3435. "autoload": {
  3436. "psr-4": {
  3437. "Symfony\\Component\\Console\\": ""
  3438. },
  3439. "exclude-from-classmap": [
  3440. "/Tests/"
  3441. ]
  3442. },
  3443. "notification-url": "https://packagist.org/downloads/",
  3444. "license": [
  3445. "MIT"
  3446. ],
  3447. "authors": [
  3448. {
  3449. "name": "Fabien Potencier",
  3450. "email": "fabien@symfony.com"
  3451. },
  3452. {
  3453. "name": "Symfony Community",
  3454. "homepage": "https://symfony.com/contributors"
  3455. }
  3456. ],
  3457. "description": "Eases the creation of beautiful and testable command line interfaces",
  3458. "homepage": "https://symfony.com",
  3459. "keywords": [
  3460. "cli",
  3461. "command-line",
  3462. "console",
  3463. "terminal"
  3464. ],
  3465. "support": {
  3466. "source": "https://github.com/symfony/console/tree/v5.4.34"
  3467. },
  3468. "funding": [
  3469. {
  3470. "url": "https://symfony.com/sponsor",
  3471. "type": "custom"
  3472. },
  3473. {
  3474. "url": "https://github.com/fabpot",
  3475. "type": "github"
  3476. },
  3477. {
  3478. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3479. "type": "tidelift"
  3480. }
  3481. ],
  3482. "time": "2023-12-08T13:33:03+00:00"
  3483. },
  3484. {
  3485. "name": "symfony/css-selector",
  3486. "version": "v5.4.26",
  3487. "source": {
  3488. "type": "git",
  3489. "url": "https://github.com/symfony/css-selector.git",
  3490. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  3491. },
  3492. "dist": {
  3493. "type": "zip",
  3494. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  3495. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  3496. "shasum": "",
  3497. "mirrors": [
  3498. {
  3499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3500. "preferred": true
  3501. }
  3502. ]
  3503. },
  3504. "require": {
  3505. "php": ">=7.2.5",
  3506. "symfony/polyfill-php80": "^1.16"
  3507. },
  3508. "type": "library",
  3509. "autoload": {
  3510. "psr-4": {
  3511. "Symfony\\Component\\CssSelector\\": ""
  3512. },
  3513. "exclude-from-classmap": [
  3514. "/Tests/"
  3515. ]
  3516. },
  3517. "notification-url": "https://packagist.org/downloads/",
  3518. "license": [
  3519. "MIT"
  3520. ],
  3521. "authors": [
  3522. {
  3523. "name": "Fabien Potencier",
  3524. "email": "fabien@symfony.com"
  3525. },
  3526. {
  3527. "name": "Jean-François Simon",
  3528. "email": "jeanfrancois.simon@sensiolabs.com"
  3529. },
  3530. {
  3531. "name": "Symfony Community",
  3532. "homepage": "https://symfony.com/contributors"
  3533. }
  3534. ],
  3535. "description": "Converts CSS selectors to XPath expressions",
  3536. "homepage": "https://symfony.com",
  3537. "support": {
  3538. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  3539. },
  3540. "funding": [
  3541. {
  3542. "url": "https://symfony.com/sponsor",
  3543. "type": "custom"
  3544. },
  3545. {
  3546. "url": "https://github.com/fabpot",
  3547. "type": "github"
  3548. },
  3549. {
  3550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3551. "type": "tidelift"
  3552. }
  3553. ],
  3554. "time": "2023-07-07T06:10:25+00:00"
  3555. },
  3556. {
  3557. "name": "symfony/deprecation-contracts",
  3558. "version": "v2.5.2",
  3559. "source": {
  3560. "type": "git",
  3561. "url": "https://github.com/symfony/deprecation-contracts.git",
  3562. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3563. },
  3564. "dist": {
  3565. "type": "zip",
  3566. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3567. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3568. "shasum": "",
  3569. "mirrors": [
  3570. {
  3571. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3572. "preferred": true
  3573. }
  3574. ]
  3575. },
  3576. "require": {
  3577. "php": ">=7.1"
  3578. },
  3579. "type": "library",
  3580. "extra": {
  3581. "branch-alias": {
  3582. "dev-main": "2.5-dev"
  3583. },
  3584. "thanks": {
  3585. "name": "symfony/contracts",
  3586. "url": "https://github.com/symfony/contracts"
  3587. }
  3588. },
  3589. "autoload": {
  3590. "files": [
  3591. "function.php"
  3592. ]
  3593. },
  3594. "notification-url": "https://packagist.org/downloads/",
  3595. "license": [
  3596. "MIT"
  3597. ],
  3598. "authors": [
  3599. {
  3600. "name": "Nicolas Grekas",
  3601. "email": "p@tchwork.com"
  3602. },
  3603. {
  3604. "name": "Symfony Community",
  3605. "homepage": "https://symfony.com/contributors"
  3606. }
  3607. ],
  3608. "description": "A generic function and convention to trigger deprecation notices",
  3609. "homepage": "https://symfony.com",
  3610. "support": {
  3611. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3612. },
  3613. "funding": [
  3614. {
  3615. "url": "https://symfony.com/sponsor",
  3616. "type": "custom"
  3617. },
  3618. {
  3619. "url": "https://github.com/fabpot",
  3620. "type": "github"
  3621. },
  3622. {
  3623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3624. "type": "tidelift"
  3625. }
  3626. ],
  3627. "time": "2022-01-02T09:53:40+00:00"
  3628. },
  3629. {
  3630. "name": "symfony/error-handler",
  3631. "version": "v5.4.29",
  3632. "source": {
  3633. "type": "git",
  3634. "url": "https://github.com/symfony/error-handler.git",
  3635. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  3636. },
  3637. "dist": {
  3638. "type": "zip",
  3639. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  3640. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  3641. "shasum": "",
  3642. "mirrors": [
  3643. {
  3644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3645. "preferred": true
  3646. }
  3647. ]
  3648. },
  3649. "require": {
  3650. "php": ">=7.2.5",
  3651. "psr/log": "^1|^2|^3",
  3652. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3653. },
  3654. "require-dev": {
  3655. "symfony/deprecation-contracts": "^2.1|^3",
  3656. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3657. "symfony/serializer": "^4.4|^5.0|^6.0"
  3658. },
  3659. "bin": [
  3660. "Resources/bin/patch-type-declarations"
  3661. ],
  3662. "type": "library",
  3663. "autoload": {
  3664. "psr-4": {
  3665. "Symfony\\Component\\ErrorHandler\\": ""
  3666. },
  3667. "exclude-from-classmap": [
  3668. "/Tests/"
  3669. ]
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "MIT"
  3674. ],
  3675. "authors": [
  3676. {
  3677. "name": "Fabien Potencier",
  3678. "email": "fabien@symfony.com"
  3679. },
  3680. {
  3681. "name": "Symfony Community",
  3682. "homepage": "https://symfony.com/contributors"
  3683. }
  3684. ],
  3685. "description": "Provides tools to manage errors and ease debugging PHP code",
  3686. "homepage": "https://symfony.com",
  3687. "support": {
  3688. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  3689. },
  3690. "funding": [
  3691. {
  3692. "url": "https://symfony.com/sponsor",
  3693. "type": "custom"
  3694. },
  3695. {
  3696. "url": "https://github.com/fabpot",
  3697. "type": "github"
  3698. },
  3699. {
  3700. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3701. "type": "tidelift"
  3702. }
  3703. ],
  3704. "time": "2023-09-06T21:54:06+00:00"
  3705. },
  3706. {
  3707. "name": "symfony/event-dispatcher",
  3708. "version": "v5.4.34",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/symfony/event-dispatcher.git",
  3712. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  3717. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  3718. "shasum": "",
  3719. "mirrors": [
  3720. {
  3721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3722. "preferred": true
  3723. }
  3724. ]
  3725. },
  3726. "require": {
  3727. "php": ">=7.2.5",
  3728. "symfony/deprecation-contracts": "^2.1|^3",
  3729. "symfony/event-dispatcher-contracts": "^2|^3",
  3730. "symfony/polyfill-php80": "^1.16"
  3731. },
  3732. "conflict": {
  3733. "symfony/dependency-injection": "<4.4"
  3734. },
  3735. "provide": {
  3736. "psr/event-dispatcher-implementation": "1.0",
  3737. "symfony/event-dispatcher-implementation": "2.0"
  3738. },
  3739. "require-dev": {
  3740. "psr/log": "^1|^2|^3",
  3741. "symfony/config": "^4.4|^5.0|^6.0",
  3742. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3743. "symfony/error-handler": "^4.4|^5.0|^6.0",
  3744. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3745. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  3746. "symfony/service-contracts": "^1.1|^2|^3",
  3747. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  3748. },
  3749. "suggest": {
  3750. "symfony/dependency-injection": "",
  3751. "symfony/http-kernel": ""
  3752. },
  3753. "type": "library",
  3754. "autoload": {
  3755. "psr-4": {
  3756. "Symfony\\Component\\EventDispatcher\\": ""
  3757. },
  3758. "exclude-from-classmap": [
  3759. "/Tests/"
  3760. ]
  3761. },
  3762. "notification-url": "https://packagist.org/downloads/",
  3763. "license": [
  3764. "MIT"
  3765. ],
  3766. "authors": [
  3767. {
  3768. "name": "Fabien Potencier",
  3769. "email": "fabien@symfony.com"
  3770. },
  3771. {
  3772. "name": "Symfony Community",
  3773. "homepage": "https://symfony.com/contributors"
  3774. }
  3775. ],
  3776. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3777. "homepage": "https://symfony.com",
  3778. "support": {
  3779. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34"
  3780. },
  3781. "funding": [
  3782. {
  3783. "url": "https://symfony.com/sponsor",
  3784. "type": "custom"
  3785. },
  3786. {
  3787. "url": "https://github.com/fabpot",
  3788. "type": "github"
  3789. },
  3790. {
  3791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3792. "type": "tidelift"
  3793. }
  3794. ],
  3795. "time": "2023-12-27T21:12:56+00:00"
  3796. },
  3797. {
  3798. "name": "symfony/event-dispatcher-contracts",
  3799. "version": "v2.5.2",
  3800. "source": {
  3801. "type": "git",
  3802. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3803. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  3804. },
  3805. "dist": {
  3806. "type": "zip",
  3807. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  3808. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  3809. "shasum": "",
  3810. "mirrors": [
  3811. {
  3812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3813. "preferred": true
  3814. }
  3815. ]
  3816. },
  3817. "require": {
  3818. "php": ">=7.2.5",
  3819. "psr/event-dispatcher": "^1"
  3820. },
  3821. "suggest": {
  3822. "symfony/event-dispatcher-implementation": ""
  3823. },
  3824. "type": "library",
  3825. "extra": {
  3826. "branch-alias": {
  3827. "dev-main": "2.5-dev"
  3828. },
  3829. "thanks": {
  3830. "name": "symfony/contracts",
  3831. "url": "https://github.com/symfony/contracts"
  3832. }
  3833. },
  3834. "autoload": {
  3835. "psr-4": {
  3836. "Symfony\\Contracts\\EventDispatcher\\": ""
  3837. }
  3838. },
  3839. "notification-url": "https://packagist.org/downloads/",
  3840. "license": [
  3841. "MIT"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "Nicolas Grekas",
  3846. "email": "p@tchwork.com"
  3847. },
  3848. {
  3849. "name": "Symfony Community",
  3850. "homepage": "https://symfony.com/contributors"
  3851. }
  3852. ],
  3853. "description": "Generic abstractions related to dispatching event",
  3854. "homepage": "https://symfony.com",
  3855. "keywords": [
  3856. "abstractions",
  3857. "contracts",
  3858. "decoupling",
  3859. "interfaces",
  3860. "interoperability",
  3861. "standards"
  3862. ],
  3863. "support": {
  3864. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  3865. },
  3866. "funding": [
  3867. {
  3868. "url": "https://symfony.com/sponsor",
  3869. "type": "custom"
  3870. },
  3871. {
  3872. "url": "https://github.com/fabpot",
  3873. "type": "github"
  3874. },
  3875. {
  3876. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3877. "type": "tidelift"
  3878. }
  3879. ],
  3880. "time": "2022-01-02T09:53:40+00:00"
  3881. },
  3882. {
  3883. "name": "symfony/finder",
  3884. "version": "v5.4.27",
  3885. "source": {
  3886. "type": "git",
  3887. "url": "https://github.com/symfony/finder.git",
  3888. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  3889. },
  3890. "dist": {
  3891. "type": "zip",
  3892. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  3893. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  3894. "shasum": "",
  3895. "mirrors": [
  3896. {
  3897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3898. "preferred": true
  3899. }
  3900. ]
  3901. },
  3902. "require": {
  3903. "php": ">=7.2.5",
  3904. "symfony/deprecation-contracts": "^2.1|^3",
  3905. "symfony/polyfill-php80": "^1.16"
  3906. },
  3907. "type": "library",
  3908. "autoload": {
  3909. "psr-4": {
  3910. "Symfony\\Component\\Finder\\": ""
  3911. },
  3912. "exclude-from-classmap": [
  3913. "/Tests/"
  3914. ]
  3915. },
  3916. "notification-url": "https://packagist.org/downloads/",
  3917. "license": [
  3918. "MIT"
  3919. ],
  3920. "authors": [
  3921. {
  3922. "name": "Fabien Potencier",
  3923. "email": "fabien@symfony.com"
  3924. },
  3925. {
  3926. "name": "Symfony Community",
  3927. "homepage": "https://symfony.com/contributors"
  3928. }
  3929. ],
  3930. "description": "Finds files and directories via an intuitive fluent interface",
  3931. "homepage": "https://symfony.com",
  3932. "support": {
  3933. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  3934. },
  3935. "funding": [
  3936. {
  3937. "url": "https://symfony.com/sponsor",
  3938. "type": "custom"
  3939. },
  3940. {
  3941. "url": "https://github.com/fabpot",
  3942. "type": "github"
  3943. },
  3944. {
  3945. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3946. "type": "tidelift"
  3947. }
  3948. ],
  3949. "time": "2023-07-31T08:02:31+00:00"
  3950. },
  3951. {
  3952. "name": "symfony/http-foundation",
  3953. "version": "v5.4.34",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/symfony/http-foundation.git",
  3957. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4da1713e88cf9c44bd4bf65f54772681222fcbec",
  3962. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec",
  3963. "shasum": "",
  3964. "mirrors": [
  3965. {
  3966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3967. "preferred": true
  3968. }
  3969. ]
  3970. },
  3971. "require": {
  3972. "php": ">=7.2.5",
  3973. "symfony/deprecation-contracts": "^2.1|^3",
  3974. "symfony/polyfill-mbstring": "~1.1",
  3975. "symfony/polyfill-php80": "^1.16"
  3976. },
  3977. "require-dev": {
  3978. "predis/predis": "~1.0",
  3979. "symfony/cache": "^4.4|^5.0|^6.0",
  3980. "symfony/dependency-injection": "^5.4|^6.0",
  3981. "symfony/expression-language": "^4.4|^5.0|^6.0",
  3982. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  3983. "symfony/mime": "^4.4|^5.0|^6.0",
  3984. "symfony/rate-limiter": "^5.2|^6.0"
  3985. },
  3986. "suggest": {
  3987. "symfony/mime": "To use the file extension guesser"
  3988. },
  3989. "type": "library",
  3990. "autoload": {
  3991. "psr-4": {
  3992. "Symfony\\Component\\HttpFoundation\\": ""
  3993. },
  3994. "exclude-from-classmap": [
  3995. "/Tests/"
  3996. ]
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "Fabien Potencier",
  4005. "email": "fabien@symfony.com"
  4006. },
  4007. {
  4008. "name": "Symfony Community",
  4009. "homepage": "https://symfony.com/contributors"
  4010. }
  4011. ],
  4012. "description": "Defines an object-oriented layer for the HTTP specification",
  4013. "homepage": "https://symfony.com",
  4014. "support": {
  4015. "source": "https://github.com/symfony/http-foundation/tree/v5.4.34"
  4016. },
  4017. "funding": [
  4018. {
  4019. "url": "https://symfony.com/sponsor",
  4020. "type": "custom"
  4021. },
  4022. {
  4023. "url": "https://github.com/fabpot",
  4024. "type": "github"
  4025. },
  4026. {
  4027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4028. "type": "tidelift"
  4029. }
  4030. ],
  4031. "time": "2023-12-27T11:45:35+00:00"
  4032. },
  4033. {
  4034. "name": "symfony/http-kernel",
  4035. "version": "v5.4.34",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://github.com/symfony/http-kernel.git",
  4039. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  4044. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  4045. "shasum": "",
  4046. "mirrors": [
  4047. {
  4048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4049. "preferred": true
  4050. }
  4051. ]
  4052. },
  4053. "require": {
  4054. "php": ">=7.2.5",
  4055. "psr/log": "^1|^2",
  4056. "symfony/deprecation-contracts": "^2.1|^3",
  4057. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4058. "symfony/event-dispatcher": "^5.0|^6.0",
  4059. "symfony/http-foundation": "^5.4.21|^6.2.7",
  4060. "symfony/polyfill-ctype": "^1.8",
  4061. "symfony/polyfill-php73": "^1.9",
  4062. "symfony/polyfill-php80": "^1.16"
  4063. },
  4064. "conflict": {
  4065. "symfony/browser-kit": "<5.4",
  4066. "symfony/cache": "<5.0",
  4067. "symfony/config": "<5.0",
  4068. "symfony/console": "<4.4",
  4069. "symfony/dependency-injection": "<5.3",
  4070. "symfony/doctrine-bridge": "<5.0",
  4071. "symfony/form": "<5.0",
  4072. "symfony/http-client": "<5.0",
  4073. "symfony/mailer": "<5.0",
  4074. "symfony/messenger": "<5.0",
  4075. "symfony/translation": "<5.0",
  4076. "symfony/twig-bridge": "<5.0",
  4077. "symfony/validator": "<5.0",
  4078. "twig/twig": "<2.13"
  4079. },
  4080. "provide": {
  4081. "psr/log-implementation": "1.0|2.0"
  4082. },
  4083. "require-dev": {
  4084. "psr/cache": "^1.0|^2.0|^3.0",
  4085. "symfony/browser-kit": "^5.4|^6.0",
  4086. "symfony/config": "^5.0|^6.0",
  4087. "symfony/console": "^4.4|^5.0|^6.0",
  4088. "symfony/css-selector": "^4.4|^5.0|^6.0",
  4089. "symfony/dependency-injection": "^5.3|^6.0",
  4090. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  4091. "symfony/expression-language": "^4.4|^5.0|^6.0",
  4092. "symfony/finder": "^4.4|^5.0|^6.0",
  4093. "symfony/http-client-contracts": "^1.1|^2|^3",
  4094. "symfony/process": "^4.4|^5.0|^6.0",
  4095. "symfony/routing": "^4.4|^5.0|^6.0",
  4096. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  4097. "symfony/translation": "^4.4|^5.0|^6.0",
  4098. "symfony/translation-contracts": "^1.1|^2|^3",
  4099. "twig/twig": "^2.13|^3.0.4"
  4100. },
  4101. "suggest": {
  4102. "symfony/browser-kit": "",
  4103. "symfony/config": "",
  4104. "symfony/console": "",
  4105. "symfony/dependency-injection": ""
  4106. },
  4107. "type": "library",
  4108. "autoload": {
  4109. "psr-4": {
  4110. "Symfony\\Component\\HttpKernel\\": ""
  4111. },
  4112. "exclude-from-classmap": [
  4113. "/Tests/"
  4114. ]
  4115. },
  4116. "notification-url": "https://packagist.org/downloads/",
  4117. "license": [
  4118. "MIT"
  4119. ],
  4120. "authors": [
  4121. {
  4122. "name": "Fabien Potencier",
  4123. "email": "fabien@symfony.com"
  4124. },
  4125. {
  4126. "name": "Symfony Community",
  4127. "homepage": "https://symfony.com/contributors"
  4128. }
  4129. ],
  4130. "description": "Provides a structured process for converting a Request into a Response",
  4131. "homepage": "https://symfony.com",
  4132. "support": {
  4133. "source": "https://github.com/symfony/http-kernel/tree/v5.4.34"
  4134. },
  4135. "funding": [
  4136. {
  4137. "url": "https://symfony.com/sponsor",
  4138. "type": "custom"
  4139. },
  4140. {
  4141. "url": "https://github.com/fabpot",
  4142. "type": "github"
  4143. },
  4144. {
  4145. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4146. "type": "tidelift"
  4147. }
  4148. ],
  4149. "time": "2023-12-30T13:02:02+00:00"
  4150. },
  4151. {
  4152. "name": "symfony/mime",
  4153. "version": "v5.4.26",
  4154. "source": {
  4155. "type": "git",
  4156. "url": "https://github.com/symfony/mime.git",
  4157. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  4158. },
  4159. "dist": {
  4160. "type": "zip",
  4161. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  4162. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  4163. "shasum": "",
  4164. "mirrors": [
  4165. {
  4166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4167. "preferred": true
  4168. }
  4169. ]
  4170. },
  4171. "require": {
  4172. "php": ">=7.2.5",
  4173. "symfony/deprecation-contracts": "^2.1|^3",
  4174. "symfony/polyfill-intl-idn": "^1.10",
  4175. "symfony/polyfill-mbstring": "^1.0",
  4176. "symfony/polyfill-php80": "^1.16"
  4177. },
  4178. "conflict": {
  4179. "egulias/email-validator": "~3.0.0",
  4180. "phpdocumentor/reflection-docblock": "<3.2.2",
  4181. "phpdocumentor/type-resolver": "<1.4.0",
  4182. "symfony/mailer": "<4.4",
  4183. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  4184. },
  4185. "require-dev": {
  4186. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4187. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4188. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4189. "symfony/property-access": "^4.4|^5.1|^6.0",
  4190. "symfony/property-info": "^4.4|^5.1|^6.0",
  4191. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  4192. },
  4193. "type": "library",
  4194. "autoload": {
  4195. "psr-4": {
  4196. "Symfony\\Component\\Mime\\": ""
  4197. },
  4198. "exclude-from-classmap": [
  4199. "/Tests/"
  4200. ]
  4201. },
  4202. "notification-url": "https://packagist.org/downloads/",
  4203. "license": [
  4204. "MIT"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "Fabien Potencier",
  4209. "email": "fabien@symfony.com"
  4210. },
  4211. {
  4212. "name": "Symfony Community",
  4213. "homepage": "https://symfony.com/contributors"
  4214. }
  4215. ],
  4216. "description": "Allows manipulating MIME messages",
  4217. "homepage": "https://symfony.com",
  4218. "keywords": [
  4219. "mime",
  4220. "mime-type"
  4221. ],
  4222. "support": {
  4223. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  4224. },
  4225. "funding": [
  4226. {
  4227. "url": "https://symfony.com/sponsor",
  4228. "type": "custom"
  4229. },
  4230. {
  4231. "url": "https://github.com/fabpot",
  4232. "type": "github"
  4233. },
  4234. {
  4235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4236. "type": "tidelift"
  4237. }
  4238. ],
  4239. "time": "2023-07-27T06:29:31+00:00"
  4240. },
  4241. {
  4242. "name": "symfony/polyfill-ctype",
  4243. "version": "v1.28.0",
  4244. "source": {
  4245. "type": "git",
  4246. "url": "https://github.com/symfony/polyfill-ctype.git",
  4247. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  4248. },
  4249. "dist": {
  4250. "type": "zip",
  4251. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  4252. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  4253. "shasum": "",
  4254. "mirrors": [
  4255. {
  4256. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4257. "preferred": true
  4258. }
  4259. ]
  4260. },
  4261. "require": {
  4262. "php": ">=7.1"
  4263. },
  4264. "provide": {
  4265. "ext-ctype": "*"
  4266. },
  4267. "suggest": {
  4268. "ext-ctype": "For best performance"
  4269. },
  4270. "type": "library",
  4271. "extra": {
  4272. "branch-alias": {
  4273. "dev-main": "1.28-dev"
  4274. },
  4275. "thanks": {
  4276. "name": "symfony/polyfill",
  4277. "url": "https://github.com/symfony/polyfill"
  4278. }
  4279. },
  4280. "autoload": {
  4281. "files": [
  4282. "bootstrap.php"
  4283. ],
  4284. "psr-4": {
  4285. "Symfony\\Polyfill\\Ctype\\": ""
  4286. }
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Gert de Pagter",
  4295. "email": "BackEndTea@gmail.com"
  4296. },
  4297. {
  4298. "name": "Symfony Community",
  4299. "homepage": "https://symfony.com/contributors"
  4300. }
  4301. ],
  4302. "description": "Symfony polyfill for ctype functions",
  4303. "homepage": "https://symfony.com",
  4304. "keywords": [
  4305. "compatibility",
  4306. "ctype",
  4307. "polyfill",
  4308. "portable"
  4309. ],
  4310. "support": {
  4311. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  4312. },
  4313. "funding": [
  4314. {
  4315. "url": "https://symfony.com/sponsor",
  4316. "type": "custom"
  4317. },
  4318. {
  4319. "url": "https://github.com/fabpot",
  4320. "type": "github"
  4321. },
  4322. {
  4323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4324. "type": "tidelift"
  4325. }
  4326. ],
  4327. "time": "2023-01-26T09:26:14+00:00"
  4328. },
  4329. {
  4330. "name": "symfony/polyfill-iconv",
  4331. "version": "v1.28.0",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/symfony/polyfill-iconv.git",
  4335. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  4340. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  4341. "shasum": "",
  4342. "mirrors": [
  4343. {
  4344. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4345. "preferred": true
  4346. }
  4347. ]
  4348. },
  4349. "require": {
  4350. "php": ">=7.1"
  4351. },
  4352. "provide": {
  4353. "ext-iconv": "*"
  4354. },
  4355. "suggest": {
  4356. "ext-iconv": "For best performance"
  4357. },
  4358. "type": "library",
  4359. "extra": {
  4360. "branch-alias": {
  4361. "dev-main": "1.28-dev"
  4362. },
  4363. "thanks": {
  4364. "name": "symfony/polyfill",
  4365. "url": "https://github.com/symfony/polyfill"
  4366. }
  4367. },
  4368. "autoload": {
  4369. "files": [
  4370. "bootstrap.php"
  4371. ],
  4372. "psr-4": {
  4373. "Symfony\\Polyfill\\Iconv\\": ""
  4374. }
  4375. },
  4376. "notification-url": "https://packagist.org/downloads/",
  4377. "license": [
  4378. "MIT"
  4379. ],
  4380. "authors": [
  4381. {
  4382. "name": "Nicolas Grekas",
  4383. "email": "p@tchwork.com"
  4384. },
  4385. {
  4386. "name": "Symfony Community",
  4387. "homepage": "https://symfony.com/contributors"
  4388. }
  4389. ],
  4390. "description": "Symfony polyfill for the Iconv extension",
  4391. "homepage": "https://symfony.com",
  4392. "keywords": [
  4393. "compatibility",
  4394. "iconv",
  4395. "polyfill",
  4396. "portable",
  4397. "shim"
  4398. ],
  4399. "support": {
  4400. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  4401. },
  4402. "funding": [
  4403. {
  4404. "url": "https://symfony.com/sponsor",
  4405. "type": "custom"
  4406. },
  4407. {
  4408. "url": "https://github.com/fabpot",
  4409. "type": "github"
  4410. },
  4411. {
  4412. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4413. "type": "tidelift"
  4414. }
  4415. ],
  4416. "time": "2023-01-26T09:26:14+00:00"
  4417. },
  4418. {
  4419. "name": "symfony/polyfill-intl-grapheme",
  4420. "version": "v1.28.0",
  4421. "source": {
  4422. "type": "git",
  4423. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4424. "reference": "875e90aeea2777b6f135677f618529449334a612"
  4425. },
  4426. "dist": {
  4427. "type": "zip",
  4428. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  4429. "reference": "875e90aeea2777b6f135677f618529449334a612",
  4430. "shasum": "",
  4431. "mirrors": [
  4432. {
  4433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4434. "preferred": true
  4435. }
  4436. ]
  4437. },
  4438. "require": {
  4439. "php": ">=7.1"
  4440. },
  4441. "suggest": {
  4442. "ext-intl": "For best performance"
  4443. },
  4444. "type": "library",
  4445. "extra": {
  4446. "branch-alias": {
  4447. "dev-main": "1.28-dev"
  4448. },
  4449. "thanks": {
  4450. "name": "symfony/polyfill",
  4451. "url": "https://github.com/symfony/polyfill"
  4452. }
  4453. },
  4454. "autoload": {
  4455. "files": [
  4456. "bootstrap.php"
  4457. ],
  4458. "psr-4": {
  4459. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4460. }
  4461. },
  4462. "notification-url": "https://packagist.org/downloads/",
  4463. "license": [
  4464. "MIT"
  4465. ],
  4466. "authors": [
  4467. {
  4468. "name": "Nicolas Grekas",
  4469. "email": "p@tchwork.com"
  4470. },
  4471. {
  4472. "name": "Symfony Community",
  4473. "homepage": "https://symfony.com/contributors"
  4474. }
  4475. ],
  4476. "description": "Symfony polyfill for intl's grapheme_* functions",
  4477. "homepage": "https://symfony.com",
  4478. "keywords": [
  4479. "compatibility",
  4480. "grapheme",
  4481. "intl",
  4482. "polyfill",
  4483. "portable",
  4484. "shim"
  4485. ],
  4486. "support": {
  4487. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  4488. },
  4489. "funding": [
  4490. {
  4491. "url": "https://symfony.com/sponsor",
  4492. "type": "custom"
  4493. },
  4494. {
  4495. "url": "https://github.com/fabpot",
  4496. "type": "github"
  4497. },
  4498. {
  4499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4500. "type": "tidelift"
  4501. }
  4502. ],
  4503. "time": "2023-01-26T09:26:14+00:00"
  4504. },
  4505. {
  4506. "name": "symfony/polyfill-intl-idn",
  4507. "version": "v1.28.0",
  4508. "source": {
  4509. "type": "git",
  4510. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4511. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  4512. },
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  4516. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  4517. "shasum": "",
  4518. "mirrors": [
  4519. {
  4520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4521. "preferred": true
  4522. }
  4523. ]
  4524. },
  4525. "require": {
  4526. "php": ">=7.1",
  4527. "symfony/polyfill-intl-normalizer": "^1.10",
  4528. "symfony/polyfill-php72": "^1.10"
  4529. },
  4530. "suggest": {
  4531. "ext-intl": "For best performance"
  4532. },
  4533. "type": "library",
  4534. "extra": {
  4535. "branch-alias": {
  4536. "dev-main": "1.28-dev"
  4537. },
  4538. "thanks": {
  4539. "name": "symfony/polyfill",
  4540. "url": "https://github.com/symfony/polyfill"
  4541. }
  4542. },
  4543. "autoload": {
  4544. "files": [
  4545. "bootstrap.php"
  4546. ],
  4547. "psr-4": {
  4548. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4549. }
  4550. },
  4551. "notification-url": "https://packagist.org/downloads/",
  4552. "license": [
  4553. "MIT"
  4554. ],
  4555. "authors": [
  4556. {
  4557. "name": "Laurent Bassin",
  4558. "email": "laurent@bassin.info"
  4559. },
  4560. {
  4561. "name": "Trevor Rowbotham",
  4562. "email": "trevor.rowbotham@pm.me"
  4563. },
  4564. {
  4565. "name": "Symfony Community",
  4566. "homepage": "https://symfony.com/contributors"
  4567. }
  4568. ],
  4569. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4570. "homepage": "https://symfony.com",
  4571. "keywords": [
  4572. "compatibility",
  4573. "idn",
  4574. "intl",
  4575. "polyfill",
  4576. "portable",
  4577. "shim"
  4578. ],
  4579. "support": {
  4580. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  4581. },
  4582. "funding": [
  4583. {
  4584. "url": "https://symfony.com/sponsor",
  4585. "type": "custom"
  4586. },
  4587. {
  4588. "url": "https://github.com/fabpot",
  4589. "type": "github"
  4590. },
  4591. {
  4592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4593. "type": "tidelift"
  4594. }
  4595. ],
  4596. "time": "2023-01-26T09:30:37+00:00"
  4597. },
  4598. {
  4599. "name": "symfony/polyfill-intl-normalizer",
  4600. "version": "v1.28.0",
  4601. "source": {
  4602. "type": "git",
  4603. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4604. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  4605. },
  4606. "dist": {
  4607. "type": "zip",
  4608. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  4609. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  4610. "shasum": "",
  4611. "mirrors": [
  4612. {
  4613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4614. "preferred": true
  4615. }
  4616. ]
  4617. },
  4618. "require": {
  4619. "php": ">=7.1"
  4620. },
  4621. "suggest": {
  4622. "ext-intl": "For best performance"
  4623. },
  4624. "type": "library",
  4625. "extra": {
  4626. "branch-alias": {
  4627. "dev-main": "1.28-dev"
  4628. },
  4629. "thanks": {
  4630. "name": "symfony/polyfill",
  4631. "url": "https://github.com/symfony/polyfill"
  4632. }
  4633. },
  4634. "autoload": {
  4635. "files": [
  4636. "bootstrap.php"
  4637. ],
  4638. "psr-4": {
  4639. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4640. },
  4641. "classmap": [
  4642. "Resources/stubs"
  4643. ]
  4644. },
  4645. "notification-url": "https://packagist.org/downloads/",
  4646. "license": [
  4647. "MIT"
  4648. ],
  4649. "authors": [
  4650. {
  4651. "name": "Nicolas Grekas",
  4652. "email": "p@tchwork.com"
  4653. },
  4654. {
  4655. "name": "Symfony Community",
  4656. "homepage": "https://symfony.com/contributors"
  4657. }
  4658. ],
  4659. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4660. "homepage": "https://symfony.com",
  4661. "keywords": [
  4662. "compatibility",
  4663. "intl",
  4664. "normalizer",
  4665. "polyfill",
  4666. "portable",
  4667. "shim"
  4668. ],
  4669. "support": {
  4670. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  4671. },
  4672. "funding": [
  4673. {
  4674. "url": "https://symfony.com/sponsor",
  4675. "type": "custom"
  4676. },
  4677. {
  4678. "url": "https://github.com/fabpot",
  4679. "type": "github"
  4680. },
  4681. {
  4682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4683. "type": "tidelift"
  4684. }
  4685. ],
  4686. "time": "2023-01-26T09:26:14+00:00"
  4687. },
  4688. {
  4689. "name": "symfony/polyfill-mbstring",
  4690. "version": "v1.28.0",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4694. "reference": "42292d99c55abe617799667f454222c54c60e229"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  4699. "reference": "42292d99c55abe617799667f454222c54c60e229",
  4700. "shasum": "",
  4701. "mirrors": [
  4702. {
  4703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4704. "preferred": true
  4705. }
  4706. ]
  4707. },
  4708. "require": {
  4709. "php": ">=7.1"
  4710. },
  4711. "provide": {
  4712. "ext-mbstring": "*"
  4713. },
  4714. "suggest": {
  4715. "ext-mbstring": "For best performance"
  4716. },
  4717. "type": "library",
  4718. "extra": {
  4719. "branch-alias": {
  4720. "dev-main": "1.28-dev"
  4721. },
  4722. "thanks": {
  4723. "name": "symfony/polyfill",
  4724. "url": "https://github.com/symfony/polyfill"
  4725. }
  4726. },
  4727. "autoload": {
  4728. "files": [
  4729. "bootstrap.php"
  4730. ],
  4731. "psr-4": {
  4732. "Symfony\\Polyfill\\Mbstring\\": ""
  4733. }
  4734. },
  4735. "notification-url": "https://packagist.org/downloads/",
  4736. "license": [
  4737. "MIT"
  4738. ],
  4739. "authors": [
  4740. {
  4741. "name": "Nicolas Grekas",
  4742. "email": "p@tchwork.com"
  4743. },
  4744. {
  4745. "name": "Symfony Community",
  4746. "homepage": "https://symfony.com/contributors"
  4747. }
  4748. ],
  4749. "description": "Symfony polyfill for the Mbstring extension",
  4750. "homepage": "https://symfony.com",
  4751. "keywords": [
  4752. "compatibility",
  4753. "mbstring",
  4754. "polyfill",
  4755. "portable",
  4756. "shim"
  4757. ],
  4758. "support": {
  4759. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  4760. },
  4761. "funding": [
  4762. {
  4763. "url": "https://symfony.com/sponsor",
  4764. "type": "custom"
  4765. },
  4766. {
  4767. "url": "https://github.com/fabpot",
  4768. "type": "github"
  4769. },
  4770. {
  4771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4772. "type": "tidelift"
  4773. }
  4774. ],
  4775. "time": "2023-07-28T09:04:16+00:00"
  4776. },
  4777. {
  4778. "name": "symfony/polyfill-php72",
  4779. "version": "v1.28.0",
  4780. "source": {
  4781. "type": "git",
  4782. "url": "https://github.com/symfony/polyfill-php72.git",
  4783. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  4784. },
  4785. "dist": {
  4786. "type": "zip",
  4787. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  4788. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  4789. "shasum": "",
  4790. "mirrors": [
  4791. {
  4792. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4793. "preferred": true
  4794. }
  4795. ]
  4796. },
  4797. "require": {
  4798. "php": ">=7.1"
  4799. },
  4800. "type": "library",
  4801. "extra": {
  4802. "branch-alias": {
  4803. "dev-main": "1.28-dev"
  4804. },
  4805. "thanks": {
  4806. "name": "symfony/polyfill",
  4807. "url": "https://github.com/symfony/polyfill"
  4808. }
  4809. },
  4810. "autoload": {
  4811. "files": [
  4812. "bootstrap.php"
  4813. ],
  4814. "psr-4": {
  4815. "Symfony\\Polyfill\\Php72\\": ""
  4816. }
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Nicolas Grekas",
  4825. "email": "p@tchwork.com"
  4826. },
  4827. {
  4828. "name": "Symfony Community",
  4829. "homepage": "https://symfony.com/contributors"
  4830. }
  4831. ],
  4832. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4833. "homepage": "https://symfony.com",
  4834. "keywords": [
  4835. "compatibility",
  4836. "polyfill",
  4837. "portable",
  4838. "shim"
  4839. ],
  4840. "support": {
  4841. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  4842. },
  4843. "funding": [
  4844. {
  4845. "url": "https://symfony.com/sponsor",
  4846. "type": "custom"
  4847. },
  4848. {
  4849. "url": "https://github.com/fabpot",
  4850. "type": "github"
  4851. },
  4852. {
  4853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4854. "type": "tidelift"
  4855. }
  4856. ],
  4857. "time": "2023-01-26T09:26:14+00:00"
  4858. },
  4859. {
  4860. "name": "symfony/polyfill-php73",
  4861. "version": "v1.28.0",
  4862. "source": {
  4863. "type": "git",
  4864. "url": "https://github.com/symfony/polyfill-php73.git",
  4865. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  4866. },
  4867. "dist": {
  4868. "type": "zip",
  4869. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  4870. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  4871. "shasum": "",
  4872. "mirrors": [
  4873. {
  4874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4875. "preferred": true
  4876. }
  4877. ]
  4878. },
  4879. "require": {
  4880. "php": ">=7.1"
  4881. },
  4882. "type": "library",
  4883. "extra": {
  4884. "branch-alias": {
  4885. "dev-main": "1.28-dev"
  4886. },
  4887. "thanks": {
  4888. "name": "symfony/polyfill",
  4889. "url": "https://github.com/symfony/polyfill"
  4890. }
  4891. },
  4892. "autoload": {
  4893. "files": [
  4894. "bootstrap.php"
  4895. ],
  4896. "psr-4": {
  4897. "Symfony\\Polyfill\\Php73\\": ""
  4898. },
  4899. "classmap": [
  4900. "Resources/stubs"
  4901. ]
  4902. },
  4903. "notification-url": "https://packagist.org/downloads/",
  4904. "license": [
  4905. "MIT"
  4906. ],
  4907. "authors": [
  4908. {
  4909. "name": "Nicolas Grekas",
  4910. "email": "p@tchwork.com"
  4911. },
  4912. {
  4913. "name": "Symfony Community",
  4914. "homepage": "https://symfony.com/contributors"
  4915. }
  4916. ],
  4917. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4918. "homepage": "https://symfony.com",
  4919. "keywords": [
  4920. "compatibility",
  4921. "polyfill",
  4922. "portable",
  4923. "shim"
  4924. ],
  4925. "support": {
  4926. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  4927. },
  4928. "funding": [
  4929. {
  4930. "url": "https://symfony.com/sponsor",
  4931. "type": "custom"
  4932. },
  4933. {
  4934. "url": "https://github.com/fabpot",
  4935. "type": "github"
  4936. },
  4937. {
  4938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4939. "type": "tidelift"
  4940. }
  4941. ],
  4942. "time": "2023-01-26T09:26:14+00:00"
  4943. },
  4944. {
  4945. "name": "symfony/polyfill-php80",
  4946. "version": "v1.28.0",
  4947. "source": {
  4948. "type": "git",
  4949. "url": "https://github.com/symfony/polyfill-php80.git",
  4950. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  4951. },
  4952. "dist": {
  4953. "type": "zip",
  4954. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  4955. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  4956. "shasum": "",
  4957. "mirrors": [
  4958. {
  4959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4960. "preferred": true
  4961. }
  4962. ]
  4963. },
  4964. "require": {
  4965. "php": ">=7.1"
  4966. },
  4967. "type": "library",
  4968. "extra": {
  4969. "branch-alias": {
  4970. "dev-main": "1.28-dev"
  4971. },
  4972. "thanks": {
  4973. "name": "symfony/polyfill",
  4974. "url": "https://github.com/symfony/polyfill"
  4975. }
  4976. },
  4977. "autoload": {
  4978. "files": [
  4979. "bootstrap.php"
  4980. ],
  4981. "psr-4": {
  4982. "Symfony\\Polyfill\\Php80\\": ""
  4983. },
  4984. "classmap": [
  4985. "Resources/stubs"
  4986. ]
  4987. },
  4988. "notification-url": "https://packagist.org/downloads/",
  4989. "license": [
  4990. "MIT"
  4991. ],
  4992. "authors": [
  4993. {
  4994. "name": "Ion Bazan",
  4995. "email": "ion.bazan@gmail.com"
  4996. },
  4997. {
  4998. "name": "Nicolas Grekas",
  4999. "email": "p@tchwork.com"
  5000. },
  5001. {
  5002. "name": "Symfony Community",
  5003. "homepage": "https://symfony.com/contributors"
  5004. }
  5005. ],
  5006. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5007. "homepage": "https://symfony.com",
  5008. "keywords": [
  5009. "compatibility",
  5010. "polyfill",
  5011. "portable",
  5012. "shim"
  5013. ],
  5014. "support": {
  5015. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  5016. },
  5017. "funding": [
  5018. {
  5019. "url": "https://symfony.com/sponsor",
  5020. "type": "custom"
  5021. },
  5022. {
  5023. "url": "https://github.com/fabpot",
  5024. "type": "github"
  5025. },
  5026. {
  5027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5028. "type": "tidelift"
  5029. }
  5030. ],
  5031. "time": "2023-01-26T09:26:14+00:00"
  5032. },
  5033. {
  5034. "name": "symfony/polyfill-php81",
  5035. "version": "v1.28.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://github.com/symfony/polyfill-php81.git",
  5039. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  5044. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  5045. "shasum": "",
  5046. "mirrors": [
  5047. {
  5048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5049. "preferred": true
  5050. }
  5051. ]
  5052. },
  5053. "require": {
  5054. "php": ">=7.1"
  5055. },
  5056. "type": "library",
  5057. "extra": {
  5058. "branch-alias": {
  5059. "dev-main": "1.28-dev"
  5060. },
  5061. "thanks": {
  5062. "name": "symfony/polyfill",
  5063. "url": "https://github.com/symfony/polyfill"
  5064. }
  5065. },
  5066. "autoload": {
  5067. "files": [
  5068. "bootstrap.php"
  5069. ],
  5070. "psr-4": {
  5071. "Symfony\\Polyfill\\Php81\\": ""
  5072. },
  5073. "classmap": [
  5074. "Resources/stubs"
  5075. ]
  5076. },
  5077. "notification-url": "https://packagist.org/downloads/",
  5078. "license": [
  5079. "MIT"
  5080. ],
  5081. "authors": [
  5082. {
  5083. "name": "Nicolas Grekas",
  5084. "email": "p@tchwork.com"
  5085. },
  5086. {
  5087. "name": "Symfony Community",
  5088. "homepage": "https://symfony.com/contributors"
  5089. }
  5090. ],
  5091. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5092. "homepage": "https://symfony.com",
  5093. "keywords": [
  5094. "compatibility",
  5095. "polyfill",
  5096. "portable",
  5097. "shim"
  5098. ],
  5099. "support": {
  5100. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  5101. },
  5102. "funding": [
  5103. {
  5104. "url": "https://symfony.com/sponsor",
  5105. "type": "custom"
  5106. },
  5107. {
  5108. "url": "https://github.com/fabpot",
  5109. "type": "github"
  5110. },
  5111. {
  5112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5113. "type": "tidelift"
  5114. }
  5115. ],
  5116. "time": "2023-01-26T09:26:14+00:00"
  5117. },
  5118. {
  5119. "name": "symfony/process",
  5120. "version": "v5.4.34",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/symfony/process.git",
  5124. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/symfony/process/zipball/8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  5129. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  5130. "shasum": "",
  5131. "mirrors": [
  5132. {
  5133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5134. "preferred": true
  5135. }
  5136. ]
  5137. },
  5138. "require": {
  5139. "php": ">=7.2.5",
  5140. "symfony/polyfill-php80": "^1.16"
  5141. },
  5142. "type": "library",
  5143. "autoload": {
  5144. "psr-4": {
  5145. "Symfony\\Component\\Process\\": ""
  5146. },
  5147. "exclude-from-classmap": [
  5148. "/Tests/"
  5149. ]
  5150. },
  5151. "notification-url": "https://packagist.org/downloads/",
  5152. "license": [
  5153. "MIT"
  5154. ],
  5155. "authors": [
  5156. {
  5157. "name": "Fabien Potencier",
  5158. "email": "fabien@symfony.com"
  5159. },
  5160. {
  5161. "name": "Symfony Community",
  5162. "homepage": "https://symfony.com/contributors"
  5163. }
  5164. ],
  5165. "description": "Executes commands in sub-processes",
  5166. "homepage": "https://symfony.com",
  5167. "support": {
  5168. "source": "https://github.com/symfony/process/tree/v5.4.34"
  5169. },
  5170. "funding": [
  5171. {
  5172. "url": "https://symfony.com/sponsor",
  5173. "type": "custom"
  5174. },
  5175. {
  5176. "url": "https://github.com/fabpot",
  5177. "type": "github"
  5178. },
  5179. {
  5180. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5181. "type": "tidelift"
  5182. }
  5183. ],
  5184. "time": "2023-12-02T08:41:43+00:00"
  5185. },
  5186. {
  5187. "name": "symfony/routing",
  5188. "version": "v5.4.34",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/symfony/routing.git",
  5192. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/symfony/routing/zipball/f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  5197. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  5198. "shasum": "",
  5199. "mirrors": [
  5200. {
  5201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5202. "preferred": true
  5203. }
  5204. ]
  5205. },
  5206. "require": {
  5207. "php": ">=7.2.5",
  5208. "symfony/deprecation-contracts": "^2.1|^3",
  5209. "symfony/polyfill-php80": "^1.16"
  5210. },
  5211. "conflict": {
  5212. "doctrine/annotations": "<1.12",
  5213. "symfony/config": "<5.3",
  5214. "symfony/dependency-injection": "<4.4",
  5215. "symfony/yaml": "<4.4"
  5216. },
  5217. "require-dev": {
  5218. "doctrine/annotations": "^1.12|^2",
  5219. "psr/log": "^1|^2|^3",
  5220. "symfony/config": "^5.3|^6.0",
  5221. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5222. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5223. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5224. "symfony/yaml": "^4.4|^5.0|^6.0"
  5225. },
  5226. "suggest": {
  5227. "symfony/config": "For using the all-in-one router or any loader",
  5228. "symfony/expression-language": "For using expression matching",
  5229. "symfony/http-foundation": "For using a Symfony Request object",
  5230. "symfony/yaml": "For using the YAML loader"
  5231. },
  5232. "type": "library",
  5233. "autoload": {
  5234. "psr-4": {
  5235. "Symfony\\Component\\Routing\\": ""
  5236. },
  5237. "exclude-from-classmap": [
  5238. "/Tests/"
  5239. ]
  5240. },
  5241. "notification-url": "https://packagist.org/downloads/",
  5242. "license": [
  5243. "MIT"
  5244. ],
  5245. "authors": [
  5246. {
  5247. "name": "Fabien Potencier",
  5248. "email": "fabien@symfony.com"
  5249. },
  5250. {
  5251. "name": "Symfony Community",
  5252. "homepage": "https://symfony.com/contributors"
  5253. }
  5254. ],
  5255. "description": "Maps an HTTP request to a set of configuration variables",
  5256. "homepage": "https://symfony.com",
  5257. "keywords": [
  5258. "router",
  5259. "routing",
  5260. "uri",
  5261. "url"
  5262. ],
  5263. "support": {
  5264. "source": "https://github.com/symfony/routing/tree/v5.4.34"
  5265. },
  5266. "funding": [
  5267. {
  5268. "url": "https://symfony.com/sponsor",
  5269. "type": "custom"
  5270. },
  5271. {
  5272. "url": "https://github.com/fabpot",
  5273. "type": "github"
  5274. },
  5275. {
  5276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5277. "type": "tidelift"
  5278. }
  5279. ],
  5280. "time": "2023-12-27T12:51:02+00:00"
  5281. },
  5282. {
  5283. "name": "symfony/service-contracts",
  5284. "version": "v2.5.2",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/symfony/service-contracts.git",
  5288. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  5293. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  5294. "shasum": "",
  5295. "mirrors": [
  5296. {
  5297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5298. "preferred": true
  5299. }
  5300. ]
  5301. },
  5302. "require": {
  5303. "php": ">=7.2.5",
  5304. "psr/container": "^1.1",
  5305. "symfony/deprecation-contracts": "^2.1|^3"
  5306. },
  5307. "conflict": {
  5308. "ext-psr": "<1.1|>=2"
  5309. },
  5310. "suggest": {
  5311. "symfony/service-implementation": ""
  5312. },
  5313. "type": "library",
  5314. "extra": {
  5315. "branch-alias": {
  5316. "dev-main": "2.5-dev"
  5317. },
  5318. "thanks": {
  5319. "name": "symfony/contracts",
  5320. "url": "https://github.com/symfony/contracts"
  5321. }
  5322. },
  5323. "autoload": {
  5324. "psr-4": {
  5325. "Symfony\\Contracts\\Service\\": ""
  5326. }
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Nicolas Grekas",
  5335. "email": "p@tchwork.com"
  5336. },
  5337. {
  5338. "name": "Symfony Community",
  5339. "homepage": "https://symfony.com/contributors"
  5340. }
  5341. ],
  5342. "description": "Generic abstractions related to writing services",
  5343. "homepage": "https://symfony.com",
  5344. "keywords": [
  5345. "abstractions",
  5346. "contracts",
  5347. "decoupling",
  5348. "interfaces",
  5349. "interoperability",
  5350. "standards"
  5351. ],
  5352. "support": {
  5353. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  5354. },
  5355. "funding": [
  5356. {
  5357. "url": "https://symfony.com/sponsor",
  5358. "type": "custom"
  5359. },
  5360. {
  5361. "url": "https://github.com/fabpot",
  5362. "type": "github"
  5363. },
  5364. {
  5365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5366. "type": "tidelift"
  5367. }
  5368. ],
  5369. "time": "2022-05-30T19:17:29+00:00"
  5370. },
  5371. {
  5372. "name": "symfony/string",
  5373. "version": "v5.4.34",
  5374. "source": {
  5375. "type": "git",
  5376. "url": "https://github.com/symfony/string.git",
  5377. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061"
  5378. },
  5379. "dist": {
  5380. "type": "zip",
  5381. "url": "https://api.github.com/repos/symfony/string/zipball/e3f98bfc7885c957488f443df82d97814a3ce061",
  5382. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061",
  5383. "shasum": "",
  5384. "mirrors": [
  5385. {
  5386. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5387. "preferred": true
  5388. }
  5389. ]
  5390. },
  5391. "require": {
  5392. "php": ">=7.2.5",
  5393. "symfony/polyfill-ctype": "~1.8",
  5394. "symfony/polyfill-intl-grapheme": "~1.0",
  5395. "symfony/polyfill-intl-normalizer": "~1.0",
  5396. "symfony/polyfill-mbstring": "~1.0",
  5397. "symfony/polyfill-php80": "~1.15"
  5398. },
  5399. "conflict": {
  5400. "symfony/translation-contracts": ">=3.0"
  5401. },
  5402. "require-dev": {
  5403. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5404. "symfony/http-client": "^4.4|^5.0|^6.0",
  5405. "symfony/translation-contracts": "^1.1|^2",
  5406. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5407. },
  5408. "type": "library",
  5409. "autoload": {
  5410. "files": [
  5411. "Resources/functions.php"
  5412. ],
  5413. "psr-4": {
  5414. "Symfony\\Component\\String\\": ""
  5415. },
  5416. "exclude-from-classmap": [
  5417. "/Tests/"
  5418. ]
  5419. },
  5420. "notification-url": "https://packagist.org/downloads/",
  5421. "license": [
  5422. "MIT"
  5423. ],
  5424. "authors": [
  5425. {
  5426. "name": "Nicolas Grekas",
  5427. "email": "p@tchwork.com"
  5428. },
  5429. {
  5430. "name": "Symfony Community",
  5431. "homepage": "https://symfony.com/contributors"
  5432. }
  5433. ],
  5434. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5435. "homepage": "https://symfony.com",
  5436. "keywords": [
  5437. "grapheme",
  5438. "i18n",
  5439. "string",
  5440. "unicode",
  5441. "utf-8",
  5442. "utf8"
  5443. ],
  5444. "support": {
  5445. "source": "https://github.com/symfony/string/tree/v5.4.34"
  5446. },
  5447. "funding": [
  5448. {
  5449. "url": "https://symfony.com/sponsor",
  5450. "type": "custom"
  5451. },
  5452. {
  5453. "url": "https://github.com/fabpot",
  5454. "type": "github"
  5455. },
  5456. {
  5457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5458. "type": "tidelift"
  5459. }
  5460. ],
  5461. "time": "2023-12-09T13:20:28+00:00"
  5462. },
  5463. {
  5464. "name": "symfony/translation",
  5465. "version": "v5.4.31",
  5466. "source": {
  5467. "type": "git",
  5468. "url": "https://github.com/symfony/translation.git",
  5469. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f"
  5470. },
  5471. "dist": {
  5472. "type": "zip",
  5473. "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  5474. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  5475. "shasum": "",
  5476. "mirrors": [
  5477. {
  5478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5479. "preferred": true
  5480. }
  5481. ]
  5482. },
  5483. "require": {
  5484. "php": ">=7.2.5",
  5485. "symfony/deprecation-contracts": "^2.1|^3",
  5486. "symfony/polyfill-mbstring": "~1.0",
  5487. "symfony/polyfill-php80": "^1.16",
  5488. "symfony/translation-contracts": "^2.3"
  5489. },
  5490. "conflict": {
  5491. "symfony/config": "<4.4",
  5492. "symfony/console": "<5.3",
  5493. "symfony/dependency-injection": "<5.0",
  5494. "symfony/http-kernel": "<5.0",
  5495. "symfony/twig-bundle": "<5.0",
  5496. "symfony/yaml": "<4.4"
  5497. },
  5498. "provide": {
  5499. "symfony/translation-implementation": "2.3"
  5500. },
  5501. "require-dev": {
  5502. "psr/log": "^1|^2|^3",
  5503. "symfony/config": "^4.4|^5.0|^6.0",
  5504. "symfony/console": "^5.4|^6.0",
  5505. "symfony/dependency-injection": "^5.0|^6.0",
  5506. "symfony/finder": "^4.4|^5.0|^6.0",
  5507. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  5508. "symfony/http-kernel": "^5.0|^6.0",
  5509. "symfony/intl": "^4.4|^5.0|^6.0",
  5510. "symfony/polyfill-intl-icu": "^1.21",
  5511. "symfony/service-contracts": "^1.1.2|^2|^3",
  5512. "symfony/yaml": "^4.4|^5.0|^6.0"
  5513. },
  5514. "suggest": {
  5515. "psr/log-implementation": "To use logging capability in translator",
  5516. "symfony/config": "",
  5517. "symfony/yaml": ""
  5518. },
  5519. "type": "library",
  5520. "autoload": {
  5521. "files": [
  5522. "Resources/functions.php"
  5523. ],
  5524. "psr-4": {
  5525. "Symfony\\Component\\Translation\\": ""
  5526. },
  5527. "exclude-from-classmap": [
  5528. "/Tests/"
  5529. ]
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "MIT"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "Fabien Potencier",
  5538. "email": "fabien@symfony.com"
  5539. },
  5540. {
  5541. "name": "Symfony Community",
  5542. "homepage": "https://symfony.com/contributors"
  5543. }
  5544. ],
  5545. "description": "Provides tools to internationalize your application",
  5546. "homepage": "https://symfony.com",
  5547. "support": {
  5548. "source": "https://github.com/symfony/translation/tree/v5.4.31"
  5549. },
  5550. "funding": [
  5551. {
  5552. "url": "https://symfony.com/sponsor",
  5553. "type": "custom"
  5554. },
  5555. {
  5556. "url": "https://github.com/fabpot",
  5557. "type": "github"
  5558. },
  5559. {
  5560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5561. "type": "tidelift"
  5562. }
  5563. ],
  5564. "time": "2023-11-03T16:16:43+00:00"
  5565. },
  5566. {
  5567. "name": "symfony/translation-contracts",
  5568. "version": "v2.5.2",
  5569. "source": {
  5570. "type": "git",
  5571. "url": "https://github.com/symfony/translation-contracts.git",
  5572. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  5573. },
  5574. "dist": {
  5575. "type": "zip",
  5576. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  5577. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  5578. "shasum": "",
  5579. "mirrors": [
  5580. {
  5581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5582. "preferred": true
  5583. }
  5584. ]
  5585. },
  5586. "require": {
  5587. "php": ">=7.2.5"
  5588. },
  5589. "suggest": {
  5590. "symfony/translation-implementation": ""
  5591. },
  5592. "type": "library",
  5593. "extra": {
  5594. "branch-alias": {
  5595. "dev-main": "2.5-dev"
  5596. },
  5597. "thanks": {
  5598. "name": "symfony/contracts",
  5599. "url": "https://github.com/symfony/contracts"
  5600. }
  5601. },
  5602. "autoload": {
  5603. "psr-4": {
  5604. "Symfony\\Contracts\\Translation\\": ""
  5605. }
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "MIT"
  5610. ],
  5611. "authors": [
  5612. {
  5613. "name": "Nicolas Grekas",
  5614. "email": "p@tchwork.com"
  5615. },
  5616. {
  5617. "name": "Symfony Community",
  5618. "homepage": "https://symfony.com/contributors"
  5619. }
  5620. ],
  5621. "description": "Generic abstractions related to translation",
  5622. "homepage": "https://symfony.com",
  5623. "keywords": [
  5624. "abstractions",
  5625. "contracts",
  5626. "decoupling",
  5627. "interfaces",
  5628. "interoperability",
  5629. "standards"
  5630. ],
  5631. "support": {
  5632. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  5633. },
  5634. "funding": [
  5635. {
  5636. "url": "https://symfony.com/sponsor",
  5637. "type": "custom"
  5638. },
  5639. {
  5640. "url": "https://github.com/fabpot",
  5641. "type": "github"
  5642. },
  5643. {
  5644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5645. "type": "tidelift"
  5646. }
  5647. ],
  5648. "time": "2022-06-27T16:58:25+00:00"
  5649. },
  5650. {
  5651. "name": "symfony/var-dumper",
  5652. "version": "v5.4.29",
  5653. "source": {
  5654. "type": "git",
  5655. "url": "https://github.com/symfony/var-dumper.git",
  5656. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  5657. },
  5658. "dist": {
  5659. "type": "zip",
  5660. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  5661. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  5662. "shasum": "",
  5663. "mirrors": [
  5664. {
  5665. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5666. "preferred": true
  5667. }
  5668. ]
  5669. },
  5670. "require": {
  5671. "php": ">=7.2.5",
  5672. "symfony/polyfill-mbstring": "~1.0",
  5673. "symfony/polyfill-php80": "^1.16"
  5674. },
  5675. "conflict": {
  5676. "symfony/console": "<4.4"
  5677. },
  5678. "require-dev": {
  5679. "ext-iconv": "*",
  5680. "symfony/console": "^4.4|^5.0|^6.0",
  5681. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5682. "symfony/process": "^4.4|^5.0|^6.0",
  5683. "symfony/uid": "^5.1|^6.0",
  5684. "twig/twig": "^2.13|^3.0.4"
  5685. },
  5686. "suggest": {
  5687. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  5688. "ext-intl": "To show region name in time zone dump",
  5689. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  5690. },
  5691. "bin": [
  5692. "Resources/bin/var-dump-server"
  5693. ],
  5694. "type": "library",
  5695. "autoload": {
  5696. "files": [
  5697. "Resources/functions/dump.php"
  5698. ],
  5699. "psr-4": {
  5700. "Symfony\\Component\\VarDumper\\": ""
  5701. },
  5702. "exclude-from-classmap": [
  5703. "/Tests/"
  5704. ]
  5705. },
  5706. "notification-url": "https://packagist.org/downloads/",
  5707. "license": [
  5708. "MIT"
  5709. ],
  5710. "authors": [
  5711. {
  5712. "name": "Nicolas Grekas",
  5713. "email": "p@tchwork.com"
  5714. },
  5715. {
  5716. "name": "Symfony Community",
  5717. "homepage": "https://symfony.com/contributors"
  5718. }
  5719. ],
  5720. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5721. "homepage": "https://symfony.com",
  5722. "keywords": [
  5723. "debug",
  5724. "dump"
  5725. ],
  5726. "support": {
  5727. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  5728. },
  5729. "funding": [
  5730. {
  5731. "url": "https://symfony.com/sponsor",
  5732. "type": "custom"
  5733. },
  5734. {
  5735. "url": "https://github.com/fabpot",
  5736. "type": "github"
  5737. },
  5738. {
  5739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5740. "type": "tidelift"
  5741. }
  5742. ],
  5743. "time": "2023-09-12T10:09:58+00:00"
  5744. },
  5745. {
  5746. "name": "tijsverkoyen/css-to-inline-styles",
  5747. "version": "v2.2.7",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  5751. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5756. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5757. "shasum": "",
  5758. "mirrors": [
  5759. {
  5760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5761. "preferred": true
  5762. }
  5763. ]
  5764. },
  5765. "require": {
  5766. "ext-dom": "*",
  5767. "ext-libxml": "*",
  5768. "php": "^5.5 || ^7.0 || ^8.0",
  5769. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  5770. },
  5771. "require-dev": {
  5772. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5773. },
  5774. "type": "library",
  5775. "extra": {
  5776. "branch-alias": {
  5777. "dev-master": "2.2.x-dev"
  5778. }
  5779. },
  5780. "autoload": {
  5781. "psr-4": {
  5782. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5783. }
  5784. },
  5785. "notification-url": "https://packagist.org/downloads/",
  5786. "license": [
  5787. "BSD-3-Clause"
  5788. ],
  5789. "authors": [
  5790. {
  5791. "name": "Tijs Verkoyen",
  5792. "email": "css_to_inline_styles@verkoyen.eu",
  5793. "role": "Developer"
  5794. }
  5795. ],
  5796. "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.",
  5797. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5798. "support": {
  5799. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  5800. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  5801. },
  5802. "time": "2023-12-08T13:03:43+00:00"
  5803. },
  5804. {
  5805. "name": "vlucas/phpdotenv",
  5806. "version": "v5.5.0",
  5807. "source": {
  5808. "type": "git",
  5809. "url": "https://github.com/vlucas/phpdotenv.git",
  5810. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  5811. },
  5812. "dist": {
  5813. "type": "zip",
  5814. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5815. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5816. "shasum": "",
  5817. "mirrors": [
  5818. {
  5819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5820. "preferred": true
  5821. }
  5822. ]
  5823. },
  5824. "require": {
  5825. "ext-pcre": "*",
  5826. "graham-campbell/result-type": "^1.0.2",
  5827. "php": "^7.1.3 || ^8.0",
  5828. "phpoption/phpoption": "^1.8",
  5829. "symfony/polyfill-ctype": "^1.23",
  5830. "symfony/polyfill-mbstring": "^1.23.1",
  5831. "symfony/polyfill-php80": "^1.23.1"
  5832. },
  5833. "require-dev": {
  5834. "bamarni/composer-bin-plugin": "^1.4.1",
  5835. "ext-filter": "*",
  5836. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  5837. },
  5838. "suggest": {
  5839. "ext-filter": "Required to use the boolean validator."
  5840. },
  5841. "type": "library",
  5842. "extra": {
  5843. "bamarni-bin": {
  5844. "bin-links": true,
  5845. "forward-command": true
  5846. },
  5847. "branch-alias": {
  5848. "dev-master": "5.5-dev"
  5849. }
  5850. },
  5851. "autoload": {
  5852. "psr-4": {
  5853. "Dotenv\\": "src/"
  5854. }
  5855. },
  5856. "notification-url": "https://packagist.org/downloads/",
  5857. "license": [
  5858. "BSD-3-Clause"
  5859. ],
  5860. "authors": [
  5861. {
  5862. "name": "Graham Campbell",
  5863. "email": "hello@gjcampbell.co.uk",
  5864. "homepage": "https://github.com/GrahamCampbell"
  5865. },
  5866. {
  5867. "name": "Vance Lucas",
  5868. "email": "vance@vancelucas.com",
  5869. "homepage": "https://github.com/vlucas"
  5870. }
  5871. ],
  5872. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5873. "keywords": [
  5874. "dotenv",
  5875. "env",
  5876. "environment"
  5877. ],
  5878. "support": {
  5879. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5880. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  5881. },
  5882. "funding": [
  5883. {
  5884. "url": "https://github.com/GrahamCampbell",
  5885. "type": "github"
  5886. },
  5887. {
  5888. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5889. "type": "tidelift"
  5890. }
  5891. ],
  5892. "time": "2022-10-16T01:01:54+00:00"
  5893. },
  5894. {
  5895. "name": "voku/portable-ascii",
  5896. "version": "1.6.1",
  5897. "source": {
  5898. "type": "git",
  5899. "url": "https://github.com/voku/portable-ascii.git",
  5900. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  5901. },
  5902. "dist": {
  5903. "type": "zip",
  5904. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  5905. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  5906. "shasum": "",
  5907. "mirrors": [
  5908. {
  5909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5910. "preferred": true
  5911. }
  5912. ]
  5913. },
  5914. "require": {
  5915. "php": ">=7.0.0"
  5916. },
  5917. "require-dev": {
  5918. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5919. },
  5920. "suggest": {
  5921. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5922. },
  5923. "type": "library",
  5924. "autoload": {
  5925. "psr-4": {
  5926. "voku\\": "src/voku/"
  5927. }
  5928. },
  5929. "notification-url": "https://packagist.org/downloads/",
  5930. "license": [
  5931. "MIT"
  5932. ],
  5933. "authors": [
  5934. {
  5935. "name": "Lars Moelleken",
  5936. "homepage": "http://www.moelleken.org/"
  5937. }
  5938. ],
  5939. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5940. "homepage": "https://github.com/voku/portable-ascii",
  5941. "keywords": [
  5942. "ascii",
  5943. "clean",
  5944. "php"
  5945. ],
  5946. "support": {
  5947. "issues": "https://github.com/voku/portable-ascii/issues",
  5948. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  5949. },
  5950. "funding": [
  5951. {
  5952. "url": "https://www.paypal.me/moelleken",
  5953. "type": "custom"
  5954. },
  5955. {
  5956. "url": "https://github.com/voku",
  5957. "type": "github"
  5958. },
  5959. {
  5960. "url": "https://opencollective.com/portable-ascii",
  5961. "type": "open_collective"
  5962. },
  5963. {
  5964. "url": "https://www.patreon.com/voku",
  5965. "type": "patreon"
  5966. },
  5967. {
  5968. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  5969. "type": "tidelift"
  5970. }
  5971. ],
  5972. "time": "2022-01-24T18:55:24+00:00"
  5973. },
  5974. {
  5975. "name": "webmozart/assert",
  5976. "version": "1.11.0",
  5977. "source": {
  5978. "type": "git",
  5979. "url": "https://github.com/webmozarts/assert.git",
  5980. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  5981. },
  5982. "dist": {
  5983. "type": "zip",
  5984. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5985. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5986. "shasum": "",
  5987. "mirrors": [
  5988. {
  5989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5990. "preferred": true
  5991. }
  5992. ]
  5993. },
  5994. "require": {
  5995. "ext-ctype": "*",
  5996. "php": "^7.2 || ^8.0"
  5997. },
  5998. "conflict": {
  5999. "phpstan/phpstan": "<0.12.20",
  6000. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6001. },
  6002. "require-dev": {
  6003. "phpunit/phpunit": "^8.5.13"
  6004. },
  6005. "type": "library",
  6006. "extra": {
  6007. "branch-alias": {
  6008. "dev-master": "1.10-dev"
  6009. }
  6010. },
  6011. "autoload": {
  6012. "psr-4": {
  6013. "Webmozart\\Assert\\": "src/"
  6014. }
  6015. },
  6016. "notification-url": "https://packagist.org/downloads/",
  6017. "license": [
  6018. "MIT"
  6019. ],
  6020. "authors": [
  6021. {
  6022. "name": "Bernhard Schussek",
  6023. "email": "bschussek@gmail.com"
  6024. }
  6025. ],
  6026. "description": "Assertions to validate method input/output with nice error messages.",
  6027. "keywords": [
  6028. "assert",
  6029. "check",
  6030. "validate"
  6031. ],
  6032. "support": {
  6033. "issues": "https://github.com/webmozarts/assert/issues",
  6034. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6035. },
  6036. "time": "2022-06-03T18:03:27+00:00"
  6037. }
  6038. ],
  6039. "packages-dev": [
  6040. {
  6041. "name": "doctrine/instantiator",
  6042. "version": "1.5.0",
  6043. "source": {
  6044. "type": "git",
  6045. "url": "https://github.com/doctrine/instantiator.git",
  6046. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  6047. },
  6048. "dist": {
  6049. "type": "zip",
  6050. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  6051. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  6052. "shasum": "",
  6053. "mirrors": [
  6054. {
  6055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6056. "preferred": true
  6057. }
  6058. ]
  6059. },
  6060. "require": {
  6061. "php": "^7.1 || ^8.0"
  6062. },
  6063. "require-dev": {
  6064. "doctrine/coding-standard": "^9 || ^11",
  6065. "ext-pdo": "*",
  6066. "ext-phar": "*",
  6067. "phpbench/phpbench": "^0.16 || ^1",
  6068. "phpstan/phpstan": "^1.4",
  6069. "phpstan/phpstan-phpunit": "^1",
  6070. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  6071. "vimeo/psalm": "^4.30 || ^5.4"
  6072. },
  6073. "type": "library",
  6074. "autoload": {
  6075. "psr-4": {
  6076. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  6077. }
  6078. },
  6079. "notification-url": "https://packagist.org/downloads/",
  6080. "license": [
  6081. "MIT"
  6082. ],
  6083. "authors": [
  6084. {
  6085. "name": "Marco Pivetta",
  6086. "email": "ocramius@gmail.com",
  6087. "homepage": "https://ocramius.github.io/"
  6088. }
  6089. ],
  6090. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  6091. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  6092. "keywords": [
  6093. "constructor",
  6094. "instantiate"
  6095. ],
  6096. "support": {
  6097. "issues": "https://github.com/doctrine/instantiator/issues",
  6098. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  6099. },
  6100. "funding": [
  6101. {
  6102. "url": "https://www.doctrine-project.org/sponsorship.html",
  6103. "type": "custom"
  6104. },
  6105. {
  6106. "url": "https://www.patreon.com/phpdoctrine",
  6107. "type": "patreon"
  6108. },
  6109. {
  6110. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  6111. "type": "tidelift"
  6112. }
  6113. ],
  6114. "time": "2022-12-30T00:15:36+00:00"
  6115. },
  6116. {
  6117. "name": "facade/flare-client-php",
  6118. "version": "1.10.0",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/facade/flare-client-php.git",
  6122. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  6127. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  6128. "shasum": "",
  6129. "mirrors": [
  6130. {
  6131. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6132. "preferred": true
  6133. }
  6134. ]
  6135. },
  6136. "require": {
  6137. "facade/ignition-contracts": "~1.0",
  6138. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  6139. "php": "^7.1|^8.0",
  6140. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  6141. "symfony/mime": "^3.4|^4.0|^5.1",
  6142. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  6143. },
  6144. "require-dev": {
  6145. "friendsofphp/php-cs-fixer": "^2.14",
  6146. "phpunit/phpunit": "^7.5",
  6147. "spatie/phpunit-snapshot-assertions": "^2.0"
  6148. },
  6149. "type": "library",
  6150. "extra": {
  6151. "branch-alias": {
  6152. "dev-master": "1.0-dev"
  6153. }
  6154. },
  6155. "autoload": {
  6156. "files": [
  6157. "src/helpers.php"
  6158. ],
  6159. "psr-4": {
  6160. "Facade\\FlareClient\\": "src"
  6161. }
  6162. },
  6163. "notification-url": "https://packagist.org/downloads/",
  6164. "license": [
  6165. "MIT"
  6166. ],
  6167. "description": "Send PHP errors to Flare",
  6168. "homepage": "https://github.com/facade/flare-client-php",
  6169. "keywords": [
  6170. "exception",
  6171. "facade",
  6172. "flare",
  6173. "reporting"
  6174. ],
  6175. "support": {
  6176. "issues": "https://github.com/facade/flare-client-php/issues",
  6177. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  6178. },
  6179. "funding": [
  6180. {
  6181. "url": "https://github.com/spatie",
  6182. "type": "github"
  6183. }
  6184. ],
  6185. "time": "2022-08-09T11:23:57+00:00"
  6186. },
  6187. {
  6188. "name": "facade/ignition",
  6189. "version": "2.17.7",
  6190. "source": {
  6191. "type": "git",
  6192. "url": "https://github.com/facade/ignition.git",
  6193. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  6194. },
  6195. "dist": {
  6196. "type": "zip",
  6197. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  6198. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  6199. "shasum": "",
  6200. "mirrors": [
  6201. {
  6202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6203. "preferred": true
  6204. }
  6205. ]
  6206. },
  6207. "require": {
  6208. "ext-curl": "*",
  6209. "ext-json": "*",
  6210. "ext-mbstring": "*",
  6211. "facade/flare-client-php": "^1.9.1",
  6212. "facade/ignition-contracts": "^1.0.2",
  6213. "illuminate/support": "^7.0|^8.0",
  6214. "monolog/monolog": "^2.0",
  6215. "php": "^7.2.5|^8.0",
  6216. "symfony/console": "^5.0",
  6217. "symfony/var-dumper": "^5.0"
  6218. },
  6219. "require-dev": {
  6220. "friendsofphp/php-cs-fixer": "^2.14",
  6221. "livewire/livewire": "^2.4",
  6222. "mockery/mockery": "^1.3",
  6223. "orchestra/testbench": "^5.0|^6.0",
  6224. "psalm/plugin-laravel": "^1.2"
  6225. },
  6226. "suggest": {
  6227. "laravel/telescope": "^3.1"
  6228. },
  6229. "type": "library",
  6230. "extra": {
  6231. "branch-alias": {
  6232. "dev-master": "2.x-dev"
  6233. },
  6234. "laravel": {
  6235. "providers": [
  6236. "Facade\\Ignition\\IgnitionServiceProvider"
  6237. ],
  6238. "aliases": {
  6239. "Flare": "Facade\\Ignition\\Facades\\Flare"
  6240. }
  6241. }
  6242. },
  6243. "autoload": {
  6244. "files": [
  6245. "src/helpers.php"
  6246. ],
  6247. "psr-4": {
  6248. "Facade\\Ignition\\": "src"
  6249. }
  6250. },
  6251. "notification-url": "https://packagist.org/downloads/",
  6252. "license": [
  6253. "MIT"
  6254. ],
  6255. "description": "A beautiful error page for Laravel applications.",
  6256. "homepage": "https://github.com/facade/ignition",
  6257. "keywords": [
  6258. "error",
  6259. "flare",
  6260. "laravel",
  6261. "page"
  6262. ],
  6263. "support": {
  6264. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  6265. "forum": "https://twitter.com/flareappio",
  6266. "issues": "https://github.com/facade/ignition/issues",
  6267. "source": "https://github.com/facade/ignition"
  6268. },
  6269. "time": "2023-01-26T12:34:59+00:00"
  6270. },
  6271. {
  6272. "name": "facade/ignition-contracts",
  6273. "version": "1.0.2",
  6274. "source": {
  6275. "type": "git",
  6276. "url": "https://github.com/facade/ignition-contracts.git",
  6277. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  6278. },
  6279. "dist": {
  6280. "type": "zip",
  6281. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  6282. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  6283. "shasum": "",
  6284. "mirrors": [
  6285. {
  6286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6287. "preferred": true
  6288. }
  6289. ]
  6290. },
  6291. "require": {
  6292. "php": "^7.3|^8.0"
  6293. },
  6294. "require-dev": {
  6295. "friendsofphp/php-cs-fixer": "^v2.15.8",
  6296. "phpunit/phpunit": "^9.3.11",
  6297. "vimeo/psalm": "^3.17.1"
  6298. },
  6299. "type": "library",
  6300. "autoload": {
  6301. "psr-4": {
  6302. "Facade\\IgnitionContracts\\": "src"
  6303. }
  6304. },
  6305. "notification-url": "https://packagist.org/downloads/",
  6306. "license": [
  6307. "MIT"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "Freek Van der Herten",
  6312. "email": "freek@spatie.be",
  6313. "homepage": "https://flareapp.io",
  6314. "role": "Developer"
  6315. }
  6316. ],
  6317. "description": "Solution contracts for Ignition",
  6318. "homepage": "https://github.com/facade/ignition-contracts",
  6319. "keywords": [
  6320. "contracts",
  6321. "flare",
  6322. "ignition"
  6323. ],
  6324. "support": {
  6325. "issues": "https://github.com/facade/ignition-contracts/issues",
  6326. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  6327. },
  6328. "time": "2020-10-16T08:27:54+00:00"
  6329. },
  6330. {
  6331. "name": "fakerphp/faker",
  6332. "version": "v1.23.0",
  6333. "source": {
  6334. "type": "git",
  6335. "url": "https://github.com/FakerPHP/Faker.git",
  6336. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  6337. },
  6338. "dist": {
  6339. "type": "zip",
  6340. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  6341. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  6342. "shasum": "",
  6343. "mirrors": [
  6344. {
  6345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6346. "preferred": true
  6347. }
  6348. ]
  6349. },
  6350. "require": {
  6351. "php": "^7.4 || ^8.0",
  6352. "psr/container": "^1.0 || ^2.0",
  6353. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  6354. },
  6355. "conflict": {
  6356. "fzaninotto/faker": "*"
  6357. },
  6358. "require-dev": {
  6359. "bamarni/composer-bin-plugin": "^1.4.1",
  6360. "doctrine/persistence": "^1.3 || ^2.0",
  6361. "ext-intl": "*",
  6362. "phpunit/phpunit": "^9.5.26",
  6363. "symfony/phpunit-bridge": "^5.4.16"
  6364. },
  6365. "suggest": {
  6366. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  6367. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  6368. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  6369. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  6370. "ext-mbstring": "Required for multibyte Unicode string functionality."
  6371. },
  6372. "type": "library",
  6373. "extra": {
  6374. "branch-alias": {
  6375. "dev-main": "v1.21-dev"
  6376. }
  6377. },
  6378. "autoload": {
  6379. "psr-4": {
  6380. "Faker\\": "src/Faker/"
  6381. }
  6382. },
  6383. "notification-url": "https://packagist.org/downloads/",
  6384. "license": [
  6385. "MIT"
  6386. ],
  6387. "authors": [
  6388. {
  6389. "name": "François Zaninotto"
  6390. }
  6391. ],
  6392. "description": "Faker is a PHP library that generates fake data for you.",
  6393. "keywords": [
  6394. "data",
  6395. "faker",
  6396. "fixtures"
  6397. ],
  6398. "support": {
  6399. "issues": "https://github.com/FakerPHP/Faker/issues",
  6400. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  6401. },
  6402. "time": "2023-06-12T08:44:38+00:00"
  6403. },
  6404. {
  6405. "name": "filp/whoops",
  6406. "version": "2.15.4",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/filp/whoops.git",
  6410. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  6415. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  6416. "shasum": "",
  6417. "mirrors": [
  6418. {
  6419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6420. "preferred": true
  6421. }
  6422. ]
  6423. },
  6424. "require": {
  6425. "php": "^5.5.9 || ^7.0 || ^8.0",
  6426. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  6427. },
  6428. "require-dev": {
  6429. "mockery/mockery": "^0.9 || ^1.0",
  6430. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  6431. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  6432. },
  6433. "suggest": {
  6434. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6435. "whoops/soap": "Formats errors as SOAP responses"
  6436. },
  6437. "type": "library",
  6438. "extra": {
  6439. "branch-alias": {
  6440. "dev-master": "2.7-dev"
  6441. }
  6442. },
  6443. "autoload": {
  6444. "psr-4": {
  6445. "Whoops\\": "src/Whoops/"
  6446. }
  6447. },
  6448. "notification-url": "https://packagist.org/downloads/",
  6449. "license": [
  6450. "MIT"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "Filipe Dobreira",
  6455. "homepage": "https://github.com/filp",
  6456. "role": "Developer"
  6457. }
  6458. ],
  6459. "description": "php error handling for cool kids",
  6460. "homepage": "https://filp.github.io/whoops/",
  6461. "keywords": [
  6462. "error",
  6463. "exception",
  6464. "handling",
  6465. "library",
  6466. "throwable",
  6467. "whoops"
  6468. ],
  6469. "support": {
  6470. "issues": "https://github.com/filp/whoops/issues",
  6471. "source": "https://github.com/filp/whoops/tree/2.15.4"
  6472. },
  6473. "funding": [
  6474. {
  6475. "url": "https://github.com/denis-sokolov",
  6476. "type": "github"
  6477. }
  6478. ],
  6479. "time": "2023-11-03T12:00:00+00:00"
  6480. },
  6481. {
  6482. "name": "hamcrest/hamcrest-php",
  6483. "version": "v2.0.1",
  6484. "source": {
  6485. "type": "git",
  6486. "url": "https://github.com/hamcrest/hamcrest-php.git",
  6487. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  6488. },
  6489. "dist": {
  6490. "type": "zip",
  6491. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6492. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6493. "shasum": "",
  6494. "mirrors": [
  6495. {
  6496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6497. "preferred": true
  6498. }
  6499. ]
  6500. },
  6501. "require": {
  6502. "php": "^5.3|^7.0|^8.0"
  6503. },
  6504. "replace": {
  6505. "cordoval/hamcrest-php": "*",
  6506. "davedevelopment/hamcrest-php": "*",
  6507. "kodova/hamcrest-php": "*"
  6508. },
  6509. "require-dev": {
  6510. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6511. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6512. },
  6513. "type": "library",
  6514. "extra": {
  6515. "branch-alias": {
  6516. "dev-master": "2.1-dev"
  6517. }
  6518. },
  6519. "autoload": {
  6520. "classmap": [
  6521. "hamcrest"
  6522. ]
  6523. },
  6524. "notification-url": "https://packagist.org/downloads/",
  6525. "license": [
  6526. "BSD-3-Clause"
  6527. ],
  6528. "description": "This is the PHP port of Hamcrest Matchers",
  6529. "keywords": [
  6530. "test"
  6531. ],
  6532. "support": {
  6533. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  6534. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  6535. },
  6536. "time": "2020-07-09T08:09:16+00:00"
  6537. },
  6538. {
  6539. "name": "laravel/sail",
  6540. "version": "v1.19.0",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://github.com/laravel/sail.git",
  6544. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  6549. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  6550. "shasum": "",
  6551. "mirrors": [
  6552. {
  6553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6554. "preferred": true
  6555. }
  6556. ]
  6557. },
  6558. "require": {
  6559. "illuminate/console": "^8.0|^9.0|^10.0",
  6560. "illuminate/contracts": "^8.0|^9.0|^10.0",
  6561. "illuminate/support": "^8.0|^9.0|^10.0",
  6562. "php": "^7.3|^8.0"
  6563. },
  6564. "bin": [
  6565. "bin/sail"
  6566. ],
  6567. "type": "library",
  6568. "extra": {
  6569. "branch-alias": {
  6570. "dev-master": "1.x-dev"
  6571. },
  6572. "laravel": {
  6573. "providers": [
  6574. "Laravel\\Sail\\SailServiceProvider"
  6575. ]
  6576. }
  6577. },
  6578. "autoload": {
  6579. "psr-4": {
  6580. "Laravel\\Sail\\": "src/"
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Taylor Otwell",
  6590. "email": "taylor@laravel.com"
  6591. }
  6592. ],
  6593. "description": "Docker files for running a basic Laravel application.",
  6594. "keywords": [
  6595. "docker",
  6596. "laravel"
  6597. ],
  6598. "support": {
  6599. "issues": "https://github.com/laravel/sail/issues",
  6600. "source": "https://github.com/laravel/sail"
  6601. },
  6602. "time": "2023-01-31T13:37:57+00:00"
  6603. },
  6604. {
  6605. "name": "mockery/mockery",
  6606. "version": "1.6.6",
  6607. "source": {
  6608. "type": "git",
  6609. "url": "https://github.com/mockery/mockery.git",
  6610. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  6611. },
  6612. "dist": {
  6613. "type": "zip",
  6614. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  6615. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  6616. "shasum": "",
  6617. "mirrors": [
  6618. {
  6619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6620. "preferred": true
  6621. }
  6622. ]
  6623. },
  6624. "require": {
  6625. "hamcrest/hamcrest-php": "^2.0.1",
  6626. "lib-pcre": ">=7.0",
  6627. "php": ">=7.3"
  6628. },
  6629. "conflict": {
  6630. "phpunit/phpunit": "<8.0"
  6631. },
  6632. "require-dev": {
  6633. "phpunit/phpunit": "^8.5 || ^9.6.10",
  6634. "psalm/plugin-phpunit": "^0.18.4",
  6635. "symplify/easy-coding-standard": "^11.5.0",
  6636. "vimeo/psalm": "^4.30"
  6637. },
  6638. "type": "library",
  6639. "autoload": {
  6640. "files": [
  6641. "library/helpers.php",
  6642. "library/Mockery.php"
  6643. ],
  6644. "psr-4": {
  6645. "Mockery\\": "library/Mockery"
  6646. }
  6647. },
  6648. "notification-url": "https://packagist.org/downloads/",
  6649. "license": [
  6650. "BSD-3-Clause"
  6651. ],
  6652. "authors": [
  6653. {
  6654. "name": "Pádraic Brady",
  6655. "email": "padraic.brady@gmail.com",
  6656. "homepage": "https://github.com/padraic",
  6657. "role": "Author"
  6658. },
  6659. {
  6660. "name": "Dave Marshall",
  6661. "email": "dave.marshall@atstsolutions.co.uk",
  6662. "homepage": "https://davedevelopment.co.uk",
  6663. "role": "Developer"
  6664. },
  6665. {
  6666. "name": "Nathanael Esayeas",
  6667. "email": "nathanael.esayeas@protonmail.com",
  6668. "homepage": "https://github.com/ghostwriter",
  6669. "role": "Lead Developer"
  6670. }
  6671. ],
  6672. "description": "Mockery is a simple yet flexible PHP mock object framework",
  6673. "homepage": "https://github.com/mockery/mockery",
  6674. "keywords": [
  6675. "BDD",
  6676. "TDD",
  6677. "library",
  6678. "mock",
  6679. "mock objects",
  6680. "mockery",
  6681. "stub",
  6682. "test",
  6683. "test double",
  6684. "testing"
  6685. ],
  6686. "support": {
  6687. "docs": "https://docs.mockery.io/",
  6688. "issues": "https://github.com/mockery/mockery/issues",
  6689. "rss": "https://github.com/mockery/mockery/releases.atom",
  6690. "security": "https://github.com/mockery/mockery/security/advisories",
  6691. "source": "https://github.com/mockery/mockery"
  6692. },
  6693. "time": "2023-08-09T00:03:52+00:00"
  6694. },
  6695. {
  6696. "name": "myclabs/deep-copy",
  6697. "version": "1.11.1",
  6698. "source": {
  6699. "type": "git",
  6700. "url": "https://github.com/myclabs/DeepCopy.git",
  6701. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  6702. },
  6703. "dist": {
  6704. "type": "zip",
  6705. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  6706. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  6707. "shasum": "",
  6708. "mirrors": [
  6709. {
  6710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6711. "preferred": true
  6712. }
  6713. ]
  6714. },
  6715. "require": {
  6716. "php": "^7.1 || ^8.0"
  6717. },
  6718. "conflict": {
  6719. "doctrine/collections": "<1.6.8",
  6720. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  6721. },
  6722. "require-dev": {
  6723. "doctrine/collections": "^1.6.8",
  6724. "doctrine/common": "^2.13.3 || ^3.2.2",
  6725. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  6726. },
  6727. "type": "library",
  6728. "autoload": {
  6729. "files": [
  6730. "src/DeepCopy/deep_copy.php"
  6731. ],
  6732. "psr-4": {
  6733. "DeepCopy\\": "src/DeepCopy/"
  6734. }
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "MIT"
  6739. ],
  6740. "description": "Create deep copies (clones) of your objects",
  6741. "keywords": [
  6742. "clone",
  6743. "copy",
  6744. "duplicate",
  6745. "object",
  6746. "object graph"
  6747. ],
  6748. "support": {
  6749. "issues": "https://github.com/myclabs/DeepCopy/issues",
  6750. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  6751. },
  6752. "funding": [
  6753. {
  6754. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  6755. "type": "tidelift"
  6756. }
  6757. ],
  6758. "time": "2023-03-08T13:26:56+00:00"
  6759. },
  6760. {
  6761. "name": "nunomaduro/collision",
  6762. "version": "v5.11.0",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/nunomaduro/collision.git",
  6766. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  6771. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  6772. "shasum": "",
  6773. "mirrors": [
  6774. {
  6775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6776. "preferred": true
  6777. }
  6778. ]
  6779. },
  6780. "require": {
  6781. "facade/ignition-contracts": "^1.0",
  6782. "filp/whoops": "^2.14.3",
  6783. "php": "^7.3 || ^8.0",
  6784. "symfony/console": "^5.0"
  6785. },
  6786. "require-dev": {
  6787. "brianium/paratest": "^6.1",
  6788. "fideloper/proxy": "^4.4.1",
  6789. "fruitcake/laravel-cors": "^2.0.3",
  6790. "laravel/framework": "8.x-dev",
  6791. "nunomaduro/larastan": "^0.6.2",
  6792. "nunomaduro/mock-final-classes": "^1.0",
  6793. "orchestra/testbench": "^6.0",
  6794. "phpstan/phpstan": "^0.12.64",
  6795. "phpunit/phpunit": "^9.5.0"
  6796. },
  6797. "type": "library",
  6798. "extra": {
  6799. "laravel": {
  6800. "providers": [
  6801. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  6802. ]
  6803. }
  6804. },
  6805. "autoload": {
  6806. "psr-4": {
  6807. "NunoMaduro\\Collision\\": "src/"
  6808. }
  6809. },
  6810. "notification-url": "https://packagist.org/downloads/",
  6811. "license": [
  6812. "MIT"
  6813. ],
  6814. "authors": [
  6815. {
  6816. "name": "Nuno Maduro",
  6817. "email": "enunomaduro@gmail.com"
  6818. }
  6819. ],
  6820. "description": "Cli error handling for console/command-line PHP applications.",
  6821. "keywords": [
  6822. "artisan",
  6823. "cli",
  6824. "command-line",
  6825. "console",
  6826. "error",
  6827. "handling",
  6828. "laravel",
  6829. "laravel-zero",
  6830. "php",
  6831. "symfony"
  6832. ],
  6833. "support": {
  6834. "issues": "https://github.com/nunomaduro/collision/issues",
  6835. "source": "https://github.com/nunomaduro/collision"
  6836. },
  6837. "funding": [
  6838. {
  6839. "url": "https://www.paypal.com/paypalme/enunomaduro",
  6840. "type": "custom"
  6841. },
  6842. {
  6843. "url": "https://github.com/nunomaduro",
  6844. "type": "github"
  6845. },
  6846. {
  6847. "url": "https://www.patreon.com/nunomaduro",
  6848. "type": "patreon"
  6849. }
  6850. ],
  6851. "time": "2022-01-10T16:22:52+00:00"
  6852. },
  6853. {
  6854. "name": "phar-io/manifest",
  6855. "version": "2.0.3",
  6856. "source": {
  6857. "type": "git",
  6858. "url": "https://github.com/phar-io/manifest.git",
  6859. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  6860. },
  6861. "dist": {
  6862. "type": "zip",
  6863. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  6864. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  6865. "shasum": "",
  6866. "mirrors": [
  6867. {
  6868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6869. "preferred": true
  6870. }
  6871. ]
  6872. },
  6873. "require": {
  6874. "ext-dom": "*",
  6875. "ext-phar": "*",
  6876. "ext-xmlwriter": "*",
  6877. "phar-io/version": "^3.0.1",
  6878. "php": "^7.2 || ^8.0"
  6879. },
  6880. "type": "library",
  6881. "extra": {
  6882. "branch-alias": {
  6883. "dev-master": "2.0.x-dev"
  6884. }
  6885. },
  6886. "autoload": {
  6887. "classmap": [
  6888. "src/"
  6889. ]
  6890. },
  6891. "notification-url": "https://packagist.org/downloads/",
  6892. "license": [
  6893. "BSD-3-Clause"
  6894. ],
  6895. "authors": [
  6896. {
  6897. "name": "Arne Blankerts",
  6898. "email": "arne@blankerts.de",
  6899. "role": "Developer"
  6900. },
  6901. {
  6902. "name": "Sebastian Heuer",
  6903. "email": "sebastian@phpeople.de",
  6904. "role": "Developer"
  6905. },
  6906. {
  6907. "name": "Sebastian Bergmann",
  6908. "email": "sebastian@phpunit.de",
  6909. "role": "Developer"
  6910. }
  6911. ],
  6912. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  6913. "support": {
  6914. "issues": "https://github.com/phar-io/manifest/issues",
  6915. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  6916. },
  6917. "time": "2021-07-20T11:28:43+00:00"
  6918. },
  6919. {
  6920. "name": "phar-io/version",
  6921. "version": "3.2.1",
  6922. "source": {
  6923. "type": "git",
  6924. "url": "https://github.com/phar-io/version.git",
  6925. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  6926. },
  6927. "dist": {
  6928. "type": "zip",
  6929. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6930. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  6931. "shasum": "",
  6932. "mirrors": [
  6933. {
  6934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6935. "preferred": true
  6936. }
  6937. ]
  6938. },
  6939. "require": {
  6940. "php": "^7.2 || ^8.0"
  6941. },
  6942. "type": "library",
  6943. "autoload": {
  6944. "classmap": [
  6945. "src/"
  6946. ]
  6947. },
  6948. "notification-url": "https://packagist.org/downloads/",
  6949. "license": [
  6950. "BSD-3-Clause"
  6951. ],
  6952. "authors": [
  6953. {
  6954. "name": "Arne Blankerts",
  6955. "email": "arne@blankerts.de",
  6956. "role": "Developer"
  6957. },
  6958. {
  6959. "name": "Sebastian Heuer",
  6960. "email": "sebastian@phpeople.de",
  6961. "role": "Developer"
  6962. },
  6963. {
  6964. "name": "Sebastian Bergmann",
  6965. "email": "sebastian@phpunit.de",
  6966. "role": "Developer"
  6967. }
  6968. ],
  6969. "description": "Library for handling version information and constraints",
  6970. "support": {
  6971. "issues": "https://github.com/phar-io/version/issues",
  6972. "source": "https://github.com/phar-io/version/tree/3.2.1"
  6973. },
  6974. "time": "2022-02-21T01:04:05+00:00"
  6975. },
  6976. {
  6977. "name": "phpunit/php-code-coverage",
  6978. "version": "9.2.30",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6982. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  6987. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  6988. "shasum": "",
  6989. "mirrors": [
  6990. {
  6991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6992. "preferred": true
  6993. }
  6994. ]
  6995. },
  6996. "require": {
  6997. "ext-dom": "*",
  6998. "ext-libxml": "*",
  6999. "ext-xmlwriter": "*",
  7000. "nikic/php-parser": "^4.18 || ^5.0",
  7001. "php": ">=7.3",
  7002. "phpunit/php-file-iterator": "^3.0.3",
  7003. "phpunit/php-text-template": "^2.0.2",
  7004. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  7005. "sebastian/complexity": "^2.0",
  7006. "sebastian/environment": "^5.1.2",
  7007. "sebastian/lines-of-code": "^1.0.3",
  7008. "sebastian/version": "^3.0.1",
  7009. "theseer/tokenizer": "^1.2.0"
  7010. },
  7011. "require-dev": {
  7012. "phpunit/phpunit": "^9.3"
  7013. },
  7014. "suggest": {
  7015. "ext-pcov": "PHP extension that provides line coverage",
  7016. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7017. },
  7018. "type": "library",
  7019. "extra": {
  7020. "branch-alias": {
  7021. "dev-master": "9.2-dev"
  7022. }
  7023. },
  7024. "autoload": {
  7025. "classmap": [
  7026. "src/"
  7027. ]
  7028. },
  7029. "notification-url": "https://packagist.org/downloads/",
  7030. "license": [
  7031. "BSD-3-Clause"
  7032. ],
  7033. "authors": [
  7034. {
  7035. "name": "Sebastian Bergmann",
  7036. "email": "sebastian@phpunit.de",
  7037. "role": "lead"
  7038. }
  7039. ],
  7040. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7041. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7042. "keywords": [
  7043. "coverage",
  7044. "testing",
  7045. "xunit"
  7046. ],
  7047. "support": {
  7048. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7049. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7050. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  7051. },
  7052. "funding": [
  7053. {
  7054. "url": "https://github.com/sebastianbergmann",
  7055. "type": "github"
  7056. }
  7057. ],
  7058. "time": "2023-12-22T06:47:57+00:00"
  7059. },
  7060. {
  7061. "name": "phpunit/php-file-iterator",
  7062. "version": "3.0.6",
  7063. "source": {
  7064. "type": "git",
  7065. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7066. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7067. },
  7068. "dist": {
  7069. "type": "zip",
  7070. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7071. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7072. "shasum": "",
  7073. "mirrors": [
  7074. {
  7075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7076. "preferred": true
  7077. }
  7078. ]
  7079. },
  7080. "require": {
  7081. "php": ">=7.3"
  7082. },
  7083. "require-dev": {
  7084. "phpunit/phpunit": "^9.3"
  7085. },
  7086. "type": "library",
  7087. "extra": {
  7088. "branch-alias": {
  7089. "dev-master": "3.0-dev"
  7090. }
  7091. },
  7092. "autoload": {
  7093. "classmap": [
  7094. "src/"
  7095. ]
  7096. },
  7097. "notification-url": "https://packagist.org/downloads/",
  7098. "license": [
  7099. "BSD-3-Clause"
  7100. ],
  7101. "authors": [
  7102. {
  7103. "name": "Sebastian Bergmann",
  7104. "email": "sebastian@phpunit.de",
  7105. "role": "lead"
  7106. }
  7107. ],
  7108. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7109. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7110. "keywords": [
  7111. "filesystem",
  7112. "iterator"
  7113. ],
  7114. "support": {
  7115. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7116. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  7117. },
  7118. "funding": [
  7119. {
  7120. "url": "https://github.com/sebastianbergmann",
  7121. "type": "github"
  7122. }
  7123. ],
  7124. "time": "2021-12-02T12:48:52+00:00"
  7125. },
  7126. {
  7127. "name": "phpunit/php-invoker",
  7128. "version": "3.1.1",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7132. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7137. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7138. "shasum": "",
  7139. "mirrors": [
  7140. {
  7141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7142. "preferred": true
  7143. }
  7144. ]
  7145. },
  7146. "require": {
  7147. "php": ">=7.3"
  7148. },
  7149. "require-dev": {
  7150. "ext-pcntl": "*",
  7151. "phpunit/phpunit": "^9.3"
  7152. },
  7153. "suggest": {
  7154. "ext-pcntl": "*"
  7155. },
  7156. "type": "library",
  7157. "extra": {
  7158. "branch-alias": {
  7159. "dev-master": "3.1-dev"
  7160. }
  7161. },
  7162. "autoload": {
  7163. "classmap": [
  7164. "src/"
  7165. ]
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "BSD-3-Clause"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Sebastian Bergmann",
  7174. "email": "sebastian@phpunit.de",
  7175. "role": "lead"
  7176. }
  7177. ],
  7178. "description": "Invoke callables with a timeout",
  7179. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7180. "keywords": [
  7181. "process"
  7182. ],
  7183. "support": {
  7184. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7185. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  7186. },
  7187. "funding": [
  7188. {
  7189. "url": "https://github.com/sebastianbergmann",
  7190. "type": "github"
  7191. }
  7192. ],
  7193. "time": "2020-09-28T05:58:55+00:00"
  7194. },
  7195. {
  7196. "name": "phpunit/php-text-template",
  7197. "version": "2.0.4",
  7198. "source": {
  7199. "type": "git",
  7200. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7201. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  7202. },
  7203. "dist": {
  7204. "type": "zip",
  7205. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7206. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7207. "shasum": "",
  7208. "mirrors": [
  7209. {
  7210. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7211. "preferred": true
  7212. }
  7213. ]
  7214. },
  7215. "require": {
  7216. "php": ">=7.3"
  7217. },
  7218. "require-dev": {
  7219. "phpunit/phpunit": "^9.3"
  7220. },
  7221. "type": "library",
  7222. "extra": {
  7223. "branch-alias": {
  7224. "dev-master": "2.0-dev"
  7225. }
  7226. },
  7227. "autoload": {
  7228. "classmap": [
  7229. "src/"
  7230. ]
  7231. },
  7232. "notification-url": "https://packagist.org/downloads/",
  7233. "license": [
  7234. "BSD-3-Clause"
  7235. ],
  7236. "authors": [
  7237. {
  7238. "name": "Sebastian Bergmann",
  7239. "email": "sebastian@phpunit.de",
  7240. "role": "lead"
  7241. }
  7242. ],
  7243. "description": "Simple template engine.",
  7244. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7245. "keywords": [
  7246. "template"
  7247. ],
  7248. "support": {
  7249. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7250. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  7251. },
  7252. "funding": [
  7253. {
  7254. "url": "https://github.com/sebastianbergmann",
  7255. "type": "github"
  7256. }
  7257. ],
  7258. "time": "2020-10-26T05:33:50+00:00"
  7259. },
  7260. {
  7261. "name": "phpunit/php-timer",
  7262. "version": "5.0.3",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7266. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  7271. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  7272. "shasum": "",
  7273. "mirrors": [
  7274. {
  7275. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7276. "preferred": true
  7277. }
  7278. ]
  7279. },
  7280. "require": {
  7281. "php": ">=7.3"
  7282. },
  7283. "require-dev": {
  7284. "phpunit/phpunit": "^9.3"
  7285. },
  7286. "type": "library",
  7287. "extra": {
  7288. "branch-alias": {
  7289. "dev-master": "5.0-dev"
  7290. }
  7291. },
  7292. "autoload": {
  7293. "classmap": [
  7294. "src/"
  7295. ]
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "BSD-3-Clause"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Sebastian Bergmann",
  7304. "email": "sebastian@phpunit.de",
  7305. "role": "lead"
  7306. }
  7307. ],
  7308. "description": "Utility class for timing",
  7309. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7310. "keywords": [
  7311. "timer"
  7312. ],
  7313. "support": {
  7314. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7315. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  7316. },
  7317. "funding": [
  7318. {
  7319. "url": "https://github.com/sebastianbergmann",
  7320. "type": "github"
  7321. }
  7322. ],
  7323. "time": "2020-10-26T13:16:10+00:00"
  7324. },
  7325. {
  7326. "name": "phpunit/phpunit",
  7327. "version": "9.6.15",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://github.com/sebastianbergmann/phpunit.git",
  7331. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  7336. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  7337. "shasum": "",
  7338. "mirrors": [
  7339. {
  7340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7341. "preferred": true
  7342. }
  7343. ]
  7344. },
  7345. "require": {
  7346. "doctrine/instantiator": "^1.3.1 || ^2",
  7347. "ext-dom": "*",
  7348. "ext-json": "*",
  7349. "ext-libxml": "*",
  7350. "ext-mbstring": "*",
  7351. "ext-xml": "*",
  7352. "ext-xmlwriter": "*",
  7353. "myclabs/deep-copy": "^1.10.1",
  7354. "phar-io/manifest": "^2.0.3",
  7355. "phar-io/version": "^3.0.2",
  7356. "php": ">=7.3",
  7357. "phpunit/php-code-coverage": "^9.2.28",
  7358. "phpunit/php-file-iterator": "^3.0.5",
  7359. "phpunit/php-invoker": "^3.1.1",
  7360. "phpunit/php-text-template": "^2.0.3",
  7361. "phpunit/php-timer": "^5.0.2",
  7362. "sebastian/cli-parser": "^1.0.1",
  7363. "sebastian/code-unit": "^1.0.6",
  7364. "sebastian/comparator": "^4.0.8",
  7365. "sebastian/diff": "^4.0.3",
  7366. "sebastian/environment": "^5.1.3",
  7367. "sebastian/exporter": "^4.0.5",
  7368. "sebastian/global-state": "^5.0.1",
  7369. "sebastian/object-enumerator": "^4.0.3",
  7370. "sebastian/resource-operations": "^3.0.3",
  7371. "sebastian/type": "^3.2",
  7372. "sebastian/version": "^3.0.2"
  7373. },
  7374. "suggest": {
  7375. "ext-soap": "To be able to generate mocks based on WSDL files",
  7376. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7377. },
  7378. "bin": [
  7379. "phpunit"
  7380. ],
  7381. "type": "library",
  7382. "extra": {
  7383. "branch-alias": {
  7384. "dev-master": "9.6-dev"
  7385. }
  7386. },
  7387. "autoload": {
  7388. "files": [
  7389. "src/Framework/Assert/Functions.php"
  7390. ],
  7391. "classmap": [
  7392. "src/"
  7393. ]
  7394. },
  7395. "notification-url": "https://packagist.org/downloads/",
  7396. "license": [
  7397. "BSD-3-Clause"
  7398. ],
  7399. "authors": [
  7400. {
  7401. "name": "Sebastian Bergmann",
  7402. "email": "sebastian@phpunit.de",
  7403. "role": "lead"
  7404. }
  7405. ],
  7406. "description": "The PHP Unit Testing framework.",
  7407. "homepage": "https://phpunit.de/",
  7408. "keywords": [
  7409. "phpunit",
  7410. "testing",
  7411. "xunit"
  7412. ],
  7413. "support": {
  7414. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  7415. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  7416. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  7417. },
  7418. "funding": [
  7419. {
  7420. "url": "https://phpunit.de/sponsors.html",
  7421. "type": "custom"
  7422. },
  7423. {
  7424. "url": "https://github.com/sebastianbergmann",
  7425. "type": "github"
  7426. },
  7427. {
  7428. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  7429. "type": "tidelift"
  7430. }
  7431. ],
  7432. "time": "2023-12-01T16:55:19+00:00"
  7433. },
  7434. {
  7435. "name": "sebastian/cli-parser",
  7436. "version": "1.0.1",
  7437. "source": {
  7438. "type": "git",
  7439. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  7440. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  7441. },
  7442. "dist": {
  7443. "type": "zip",
  7444. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  7445. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  7446. "shasum": "",
  7447. "mirrors": [
  7448. {
  7449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7450. "preferred": true
  7451. }
  7452. ]
  7453. },
  7454. "require": {
  7455. "php": ">=7.3"
  7456. },
  7457. "require-dev": {
  7458. "phpunit/phpunit": "^9.3"
  7459. },
  7460. "type": "library",
  7461. "extra": {
  7462. "branch-alias": {
  7463. "dev-master": "1.0-dev"
  7464. }
  7465. },
  7466. "autoload": {
  7467. "classmap": [
  7468. "src/"
  7469. ]
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "BSD-3-Clause"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Sebastian Bergmann",
  7478. "email": "sebastian@phpunit.de",
  7479. "role": "lead"
  7480. }
  7481. ],
  7482. "description": "Library for parsing CLI options",
  7483. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  7484. "support": {
  7485. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  7486. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  7487. },
  7488. "funding": [
  7489. {
  7490. "url": "https://github.com/sebastianbergmann",
  7491. "type": "github"
  7492. }
  7493. ],
  7494. "time": "2020-09-28T06:08:49+00:00"
  7495. },
  7496. {
  7497. "name": "sebastian/code-unit",
  7498. "version": "1.0.8",
  7499. "source": {
  7500. "type": "git",
  7501. "url": "https://github.com/sebastianbergmann/code-unit.git",
  7502. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  7503. },
  7504. "dist": {
  7505. "type": "zip",
  7506. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7507. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  7508. "shasum": "",
  7509. "mirrors": [
  7510. {
  7511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7512. "preferred": true
  7513. }
  7514. ]
  7515. },
  7516. "require": {
  7517. "php": ">=7.3"
  7518. },
  7519. "require-dev": {
  7520. "phpunit/phpunit": "^9.3"
  7521. },
  7522. "type": "library",
  7523. "extra": {
  7524. "branch-alias": {
  7525. "dev-master": "1.0-dev"
  7526. }
  7527. },
  7528. "autoload": {
  7529. "classmap": [
  7530. "src/"
  7531. ]
  7532. },
  7533. "notification-url": "https://packagist.org/downloads/",
  7534. "license": [
  7535. "BSD-3-Clause"
  7536. ],
  7537. "authors": [
  7538. {
  7539. "name": "Sebastian Bergmann",
  7540. "email": "sebastian@phpunit.de",
  7541. "role": "lead"
  7542. }
  7543. ],
  7544. "description": "Collection of value objects that represent the PHP code units",
  7545. "homepage": "https://github.com/sebastianbergmann/code-unit",
  7546. "support": {
  7547. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  7548. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  7549. },
  7550. "funding": [
  7551. {
  7552. "url": "https://github.com/sebastianbergmann",
  7553. "type": "github"
  7554. }
  7555. ],
  7556. "time": "2020-10-26T13:08:54+00:00"
  7557. },
  7558. {
  7559. "name": "sebastian/code-unit-reverse-lookup",
  7560. "version": "2.0.3",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  7564. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7569. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  7570. "shasum": "",
  7571. "mirrors": [
  7572. {
  7573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7574. "preferred": true
  7575. }
  7576. ]
  7577. },
  7578. "require": {
  7579. "php": ">=7.3"
  7580. },
  7581. "require-dev": {
  7582. "phpunit/phpunit": "^9.3"
  7583. },
  7584. "type": "library",
  7585. "extra": {
  7586. "branch-alias": {
  7587. "dev-master": "2.0-dev"
  7588. }
  7589. },
  7590. "autoload": {
  7591. "classmap": [
  7592. "src/"
  7593. ]
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "BSD-3-Clause"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Sebastian Bergmann",
  7602. "email": "sebastian@phpunit.de"
  7603. }
  7604. ],
  7605. "description": "Looks up which function or method a line of code belongs to",
  7606. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  7607. "support": {
  7608. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  7609. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  7610. },
  7611. "funding": [
  7612. {
  7613. "url": "https://github.com/sebastianbergmann",
  7614. "type": "github"
  7615. }
  7616. ],
  7617. "time": "2020-09-28T05:30:19+00:00"
  7618. },
  7619. {
  7620. "name": "sebastian/comparator",
  7621. "version": "4.0.8",
  7622. "source": {
  7623. "type": "git",
  7624. "url": "https://github.com/sebastianbergmann/comparator.git",
  7625. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  7626. },
  7627. "dist": {
  7628. "type": "zip",
  7629. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  7630. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  7631. "shasum": "",
  7632. "mirrors": [
  7633. {
  7634. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7635. "preferred": true
  7636. }
  7637. ]
  7638. },
  7639. "require": {
  7640. "php": ">=7.3",
  7641. "sebastian/diff": "^4.0",
  7642. "sebastian/exporter": "^4.0"
  7643. },
  7644. "require-dev": {
  7645. "phpunit/phpunit": "^9.3"
  7646. },
  7647. "type": "library",
  7648. "extra": {
  7649. "branch-alias": {
  7650. "dev-master": "4.0-dev"
  7651. }
  7652. },
  7653. "autoload": {
  7654. "classmap": [
  7655. "src/"
  7656. ]
  7657. },
  7658. "notification-url": "https://packagist.org/downloads/",
  7659. "license": [
  7660. "BSD-3-Clause"
  7661. ],
  7662. "authors": [
  7663. {
  7664. "name": "Sebastian Bergmann",
  7665. "email": "sebastian@phpunit.de"
  7666. },
  7667. {
  7668. "name": "Jeff Welch",
  7669. "email": "whatthejeff@gmail.com"
  7670. },
  7671. {
  7672. "name": "Volker Dusch",
  7673. "email": "github@wallbash.com"
  7674. },
  7675. {
  7676. "name": "Bernhard Schussek",
  7677. "email": "bschussek@2bepublished.at"
  7678. }
  7679. ],
  7680. "description": "Provides the functionality to compare PHP values for equality",
  7681. "homepage": "https://github.com/sebastianbergmann/comparator",
  7682. "keywords": [
  7683. "comparator",
  7684. "compare",
  7685. "equality"
  7686. ],
  7687. "support": {
  7688. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  7689. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  7690. },
  7691. "funding": [
  7692. {
  7693. "url": "https://github.com/sebastianbergmann",
  7694. "type": "github"
  7695. }
  7696. ],
  7697. "time": "2022-09-14T12:41:17+00:00"
  7698. },
  7699. {
  7700. "name": "sebastian/complexity",
  7701. "version": "2.0.3",
  7702. "source": {
  7703. "type": "git",
  7704. "url": "https://github.com/sebastianbergmann/complexity.git",
  7705. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  7706. },
  7707. "dist": {
  7708. "type": "zip",
  7709. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  7710. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  7711. "shasum": "",
  7712. "mirrors": [
  7713. {
  7714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7715. "preferred": true
  7716. }
  7717. ]
  7718. },
  7719. "require": {
  7720. "nikic/php-parser": "^4.18 || ^5.0",
  7721. "php": ">=7.3"
  7722. },
  7723. "require-dev": {
  7724. "phpunit/phpunit": "^9.3"
  7725. },
  7726. "type": "library",
  7727. "extra": {
  7728. "branch-alias": {
  7729. "dev-master": "2.0-dev"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "classmap": [
  7734. "src/"
  7735. ]
  7736. },
  7737. "notification-url": "https://packagist.org/downloads/",
  7738. "license": [
  7739. "BSD-3-Clause"
  7740. ],
  7741. "authors": [
  7742. {
  7743. "name": "Sebastian Bergmann",
  7744. "email": "sebastian@phpunit.de",
  7745. "role": "lead"
  7746. }
  7747. ],
  7748. "description": "Library for calculating the complexity of PHP code units",
  7749. "homepage": "https://github.com/sebastianbergmann/complexity",
  7750. "support": {
  7751. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  7752. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  7753. },
  7754. "funding": [
  7755. {
  7756. "url": "https://github.com/sebastianbergmann",
  7757. "type": "github"
  7758. }
  7759. ],
  7760. "time": "2023-12-22T06:19:30+00:00"
  7761. },
  7762. {
  7763. "name": "sebastian/diff",
  7764. "version": "4.0.5",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/sebastianbergmann/diff.git",
  7768. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  7773. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  7774. "shasum": "",
  7775. "mirrors": [
  7776. {
  7777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7778. "preferred": true
  7779. }
  7780. ]
  7781. },
  7782. "require": {
  7783. "php": ">=7.3"
  7784. },
  7785. "require-dev": {
  7786. "phpunit/phpunit": "^9.3",
  7787. "symfony/process": "^4.2 || ^5"
  7788. },
  7789. "type": "library",
  7790. "extra": {
  7791. "branch-alias": {
  7792. "dev-master": "4.0-dev"
  7793. }
  7794. },
  7795. "autoload": {
  7796. "classmap": [
  7797. "src/"
  7798. ]
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "BSD-3-Clause"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "Sebastian Bergmann",
  7807. "email": "sebastian@phpunit.de"
  7808. },
  7809. {
  7810. "name": "Kore Nordmann",
  7811. "email": "mail@kore-nordmann.de"
  7812. }
  7813. ],
  7814. "description": "Diff implementation",
  7815. "homepage": "https://github.com/sebastianbergmann/diff",
  7816. "keywords": [
  7817. "diff",
  7818. "udiff",
  7819. "unidiff",
  7820. "unified diff"
  7821. ],
  7822. "support": {
  7823. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7824. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  7825. },
  7826. "funding": [
  7827. {
  7828. "url": "https://github.com/sebastianbergmann",
  7829. "type": "github"
  7830. }
  7831. ],
  7832. "time": "2023-05-07T05:35:17+00:00"
  7833. },
  7834. {
  7835. "name": "sebastian/environment",
  7836. "version": "5.1.5",
  7837. "source": {
  7838. "type": "git",
  7839. "url": "https://github.com/sebastianbergmann/environment.git",
  7840. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  7841. },
  7842. "dist": {
  7843. "type": "zip",
  7844. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  7845. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  7846. "shasum": "",
  7847. "mirrors": [
  7848. {
  7849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7850. "preferred": true
  7851. }
  7852. ]
  7853. },
  7854. "require": {
  7855. "php": ">=7.3"
  7856. },
  7857. "require-dev": {
  7858. "phpunit/phpunit": "^9.3"
  7859. },
  7860. "suggest": {
  7861. "ext-posix": "*"
  7862. },
  7863. "type": "library",
  7864. "extra": {
  7865. "branch-alias": {
  7866. "dev-master": "5.1-dev"
  7867. }
  7868. },
  7869. "autoload": {
  7870. "classmap": [
  7871. "src/"
  7872. ]
  7873. },
  7874. "notification-url": "https://packagist.org/downloads/",
  7875. "license": [
  7876. "BSD-3-Clause"
  7877. ],
  7878. "authors": [
  7879. {
  7880. "name": "Sebastian Bergmann",
  7881. "email": "sebastian@phpunit.de"
  7882. }
  7883. ],
  7884. "description": "Provides functionality to handle HHVM/PHP environments",
  7885. "homepage": "http://www.github.com/sebastianbergmann/environment",
  7886. "keywords": [
  7887. "Xdebug",
  7888. "environment",
  7889. "hhvm"
  7890. ],
  7891. "support": {
  7892. "issues": "https://github.com/sebastianbergmann/environment/issues",
  7893. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  7894. },
  7895. "funding": [
  7896. {
  7897. "url": "https://github.com/sebastianbergmann",
  7898. "type": "github"
  7899. }
  7900. ],
  7901. "time": "2023-02-03T06:03:51+00:00"
  7902. },
  7903. {
  7904. "name": "sebastian/exporter",
  7905. "version": "4.0.5",
  7906. "source": {
  7907. "type": "git",
  7908. "url": "https://github.com/sebastianbergmann/exporter.git",
  7909. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  7910. },
  7911. "dist": {
  7912. "type": "zip",
  7913. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  7914. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  7915. "shasum": "",
  7916. "mirrors": [
  7917. {
  7918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7919. "preferred": true
  7920. }
  7921. ]
  7922. },
  7923. "require": {
  7924. "php": ">=7.3",
  7925. "sebastian/recursion-context": "^4.0"
  7926. },
  7927. "require-dev": {
  7928. "ext-mbstring": "*",
  7929. "phpunit/phpunit": "^9.3"
  7930. },
  7931. "type": "library",
  7932. "extra": {
  7933. "branch-alias": {
  7934. "dev-master": "4.0-dev"
  7935. }
  7936. },
  7937. "autoload": {
  7938. "classmap": [
  7939. "src/"
  7940. ]
  7941. },
  7942. "notification-url": "https://packagist.org/downloads/",
  7943. "license": [
  7944. "BSD-3-Clause"
  7945. ],
  7946. "authors": [
  7947. {
  7948. "name": "Sebastian Bergmann",
  7949. "email": "sebastian@phpunit.de"
  7950. },
  7951. {
  7952. "name": "Jeff Welch",
  7953. "email": "whatthejeff@gmail.com"
  7954. },
  7955. {
  7956. "name": "Volker Dusch",
  7957. "email": "github@wallbash.com"
  7958. },
  7959. {
  7960. "name": "Adam Harvey",
  7961. "email": "aharvey@php.net"
  7962. },
  7963. {
  7964. "name": "Bernhard Schussek",
  7965. "email": "bschussek@gmail.com"
  7966. }
  7967. ],
  7968. "description": "Provides the functionality to export PHP variables for visualization",
  7969. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  7970. "keywords": [
  7971. "export",
  7972. "exporter"
  7973. ],
  7974. "support": {
  7975. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  7976. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  7977. },
  7978. "funding": [
  7979. {
  7980. "url": "https://github.com/sebastianbergmann",
  7981. "type": "github"
  7982. }
  7983. ],
  7984. "time": "2022-09-14T06:03:37+00:00"
  7985. },
  7986. {
  7987. "name": "sebastian/global-state",
  7988. "version": "5.0.6",
  7989. "source": {
  7990. "type": "git",
  7991. "url": "https://github.com/sebastianbergmann/global-state.git",
  7992. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  7993. },
  7994. "dist": {
  7995. "type": "zip",
  7996. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  7997. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  7998. "shasum": "",
  7999. "mirrors": [
  8000. {
  8001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8002. "preferred": true
  8003. }
  8004. ]
  8005. },
  8006. "require": {
  8007. "php": ">=7.3",
  8008. "sebastian/object-reflector": "^2.0",
  8009. "sebastian/recursion-context": "^4.0"
  8010. },
  8011. "require-dev": {
  8012. "ext-dom": "*",
  8013. "phpunit/phpunit": "^9.3"
  8014. },
  8015. "suggest": {
  8016. "ext-uopz": "*"
  8017. },
  8018. "type": "library",
  8019. "extra": {
  8020. "branch-alias": {
  8021. "dev-master": "5.0-dev"
  8022. }
  8023. },
  8024. "autoload": {
  8025. "classmap": [
  8026. "src/"
  8027. ]
  8028. },
  8029. "notification-url": "https://packagist.org/downloads/",
  8030. "license": [
  8031. "BSD-3-Clause"
  8032. ],
  8033. "authors": [
  8034. {
  8035. "name": "Sebastian Bergmann",
  8036. "email": "sebastian@phpunit.de"
  8037. }
  8038. ],
  8039. "description": "Snapshotting of global state",
  8040. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8041. "keywords": [
  8042. "global state"
  8043. ],
  8044. "support": {
  8045. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8046. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  8047. },
  8048. "funding": [
  8049. {
  8050. "url": "https://github.com/sebastianbergmann",
  8051. "type": "github"
  8052. }
  8053. ],
  8054. "time": "2023-08-02T09:26:13+00:00"
  8055. },
  8056. {
  8057. "name": "sebastian/lines-of-code",
  8058. "version": "1.0.x-dev",
  8059. "source": {
  8060. "type": "git",
  8061. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8062. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  8063. },
  8064. "dist": {
  8065. "type": "zip",
  8066. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8067. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8068. "shasum": "",
  8069. "mirrors": [
  8070. {
  8071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8072. "preferred": true
  8073. }
  8074. ]
  8075. },
  8076. "require": {
  8077. "nikic/php-parser": "^4.18 || ^5.0",
  8078. "php": ">=7.3"
  8079. },
  8080. "require-dev": {
  8081. "phpunit/phpunit": "^9.3"
  8082. },
  8083. "type": "library",
  8084. "extra": {
  8085. "branch-alias": {
  8086. "dev-master": "1.0-dev"
  8087. }
  8088. },
  8089. "autoload": {
  8090. "classmap": [
  8091. "src/"
  8092. ]
  8093. },
  8094. "notification-url": "https://packagist.org/downloads/",
  8095. "license": [
  8096. "BSD-3-Clause"
  8097. ],
  8098. "authors": [
  8099. {
  8100. "name": "Sebastian Bergmann",
  8101. "email": "sebastian@phpunit.de",
  8102. "role": "lead"
  8103. }
  8104. ],
  8105. "description": "Library for counting the lines of code in PHP source code",
  8106. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8107. "support": {
  8108. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8109. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  8110. },
  8111. "funding": [
  8112. {
  8113. "url": "https://github.com/sebastianbergmann",
  8114. "type": "github"
  8115. }
  8116. ],
  8117. "time": "2023-12-22T06:20:34+00:00"
  8118. },
  8119. {
  8120. "name": "sebastian/object-enumerator",
  8121. "version": "4.0.4",
  8122. "source": {
  8123. "type": "git",
  8124. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8125. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8126. },
  8127. "dist": {
  8128. "type": "zip",
  8129. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8130. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8131. "shasum": "",
  8132. "mirrors": [
  8133. {
  8134. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8135. "preferred": true
  8136. }
  8137. ]
  8138. },
  8139. "require": {
  8140. "php": ">=7.3",
  8141. "sebastian/object-reflector": "^2.0",
  8142. "sebastian/recursion-context": "^4.0"
  8143. },
  8144. "require-dev": {
  8145. "phpunit/phpunit": "^9.3"
  8146. },
  8147. "type": "library",
  8148. "extra": {
  8149. "branch-alias": {
  8150. "dev-master": "4.0-dev"
  8151. }
  8152. },
  8153. "autoload": {
  8154. "classmap": [
  8155. "src/"
  8156. ]
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "BSD-3-Clause"
  8161. ],
  8162. "authors": [
  8163. {
  8164. "name": "Sebastian Bergmann",
  8165. "email": "sebastian@phpunit.de"
  8166. }
  8167. ],
  8168. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8169. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8170. "support": {
  8171. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8172. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  8173. },
  8174. "funding": [
  8175. {
  8176. "url": "https://github.com/sebastianbergmann",
  8177. "type": "github"
  8178. }
  8179. ],
  8180. "time": "2020-10-26T13:12:34+00:00"
  8181. },
  8182. {
  8183. "name": "sebastian/object-reflector",
  8184. "version": "2.0.4",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8188. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8193. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8194. "shasum": "",
  8195. "mirrors": [
  8196. {
  8197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8198. "preferred": true
  8199. }
  8200. ]
  8201. },
  8202. "require": {
  8203. "php": ">=7.3"
  8204. },
  8205. "require-dev": {
  8206. "phpunit/phpunit": "^9.3"
  8207. },
  8208. "type": "library",
  8209. "extra": {
  8210. "branch-alias": {
  8211. "dev-master": "2.0-dev"
  8212. }
  8213. },
  8214. "autoload": {
  8215. "classmap": [
  8216. "src/"
  8217. ]
  8218. },
  8219. "notification-url": "https://packagist.org/downloads/",
  8220. "license": [
  8221. "BSD-3-Clause"
  8222. ],
  8223. "authors": [
  8224. {
  8225. "name": "Sebastian Bergmann",
  8226. "email": "sebastian@phpunit.de"
  8227. }
  8228. ],
  8229. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8230. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8231. "support": {
  8232. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8233. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  8234. },
  8235. "funding": [
  8236. {
  8237. "url": "https://github.com/sebastianbergmann",
  8238. "type": "github"
  8239. }
  8240. ],
  8241. "time": "2020-10-26T13:14:26+00:00"
  8242. },
  8243. {
  8244. "name": "sebastian/recursion-context",
  8245. "version": "4.0.5",
  8246. "source": {
  8247. "type": "git",
  8248. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8249. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  8250. },
  8251. "dist": {
  8252. "type": "zip",
  8253. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  8254. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  8255. "shasum": "",
  8256. "mirrors": [
  8257. {
  8258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8259. "preferred": true
  8260. }
  8261. ]
  8262. },
  8263. "require": {
  8264. "php": ">=7.3"
  8265. },
  8266. "require-dev": {
  8267. "phpunit/phpunit": "^9.3"
  8268. },
  8269. "type": "library",
  8270. "extra": {
  8271. "branch-alias": {
  8272. "dev-master": "4.0-dev"
  8273. }
  8274. },
  8275. "autoload": {
  8276. "classmap": [
  8277. "src/"
  8278. ]
  8279. },
  8280. "notification-url": "https://packagist.org/downloads/",
  8281. "license": [
  8282. "BSD-3-Clause"
  8283. ],
  8284. "authors": [
  8285. {
  8286. "name": "Sebastian Bergmann",
  8287. "email": "sebastian@phpunit.de"
  8288. },
  8289. {
  8290. "name": "Jeff Welch",
  8291. "email": "whatthejeff@gmail.com"
  8292. },
  8293. {
  8294. "name": "Adam Harvey",
  8295. "email": "aharvey@php.net"
  8296. }
  8297. ],
  8298. "description": "Provides functionality to recursively process PHP variables",
  8299. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8300. "support": {
  8301. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8302. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  8303. },
  8304. "funding": [
  8305. {
  8306. "url": "https://github.com/sebastianbergmann",
  8307. "type": "github"
  8308. }
  8309. ],
  8310. "time": "2023-02-03T06:07:39+00:00"
  8311. },
  8312. {
  8313. "name": "sebastian/resource-operations",
  8314. "version": "3.0.3",
  8315. "source": {
  8316. "type": "git",
  8317. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8318. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  8319. },
  8320. "dist": {
  8321. "type": "zip",
  8322. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  8323. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  8324. "shasum": "",
  8325. "mirrors": [
  8326. {
  8327. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8328. "preferred": true
  8329. }
  8330. ]
  8331. },
  8332. "require": {
  8333. "php": ">=7.3"
  8334. },
  8335. "require-dev": {
  8336. "phpunit/phpunit": "^9.0"
  8337. },
  8338. "type": "library",
  8339. "extra": {
  8340. "branch-alias": {
  8341. "dev-master": "3.0-dev"
  8342. }
  8343. },
  8344. "autoload": {
  8345. "classmap": [
  8346. "src/"
  8347. ]
  8348. },
  8349. "notification-url": "https://packagist.org/downloads/",
  8350. "license": [
  8351. "BSD-3-Clause"
  8352. ],
  8353. "authors": [
  8354. {
  8355. "name": "Sebastian Bergmann",
  8356. "email": "sebastian@phpunit.de"
  8357. }
  8358. ],
  8359. "description": "Provides a list of PHP built-in functions that operate on resources",
  8360. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  8361. "support": {
  8362. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  8363. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  8364. },
  8365. "funding": [
  8366. {
  8367. "url": "https://github.com/sebastianbergmann",
  8368. "type": "github"
  8369. }
  8370. ],
  8371. "time": "2020-09-28T06:45:17+00:00"
  8372. },
  8373. {
  8374. "name": "sebastian/type",
  8375. "version": "3.2.1",
  8376. "source": {
  8377. "type": "git",
  8378. "url": "https://github.com/sebastianbergmann/type.git",
  8379. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  8380. },
  8381. "dist": {
  8382. "type": "zip",
  8383. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  8384. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  8385. "shasum": "",
  8386. "mirrors": [
  8387. {
  8388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8389. "preferred": true
  8390. }
  8391. ]
  8392. },
  8393. "require": {
  8394. "php": ">=7.3"
  8395. },
  8396. "require-dev": {
  8397. "phpunit/phpunit": "^9.5"
  8398. },
  8399. "type": "library",
  8400. "extra": {
  8401. "branch-alias": {
  8402. "dev-master": "3.2-dev"
  8403. }
  8404. },
  8405. "autoload": {
  8406. "classmap": [
  8407. "src/"
  8408. ]
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "BSD-3-Clause"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Sebastian Bergmann",
  8417. "email": "sebastian@phpunit.de",
  8418. "role": "lead"
  8419. }
  8420. ],
  8421. "description": "Collection of value objects that represent the types of the PHP type system",
  8422. "homepage": "https://github.com/sebastianbergmann/type",
  8423. "support": {
  8424. "issues": "https://github.com/sebastianbergmann/type/issues",
  8425. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  8426. },
  8427. "funding": [
  8428. {
  8429. "url": "https://github.com/sebastianbergmann",
  8430. "type": "github"
  8431. }
  8432. ],
  8433. "time": "2023-02-03T06:13:03+00:00"
  8434. },
  8435. {
  8436. "name": "sebastian/version",
  8437. "version": "3.0.2",
  8438. "source": {
  8439. "type": "git",
  8440. "url": "https://github.com/sebastianbergmann/version.git",
  8441. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  8442. },
  8443. "dist": {
  8444. "type": "zip",
  8445. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  8446. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  8447. "shasum": "",
  8448. "mirrors": [
  8449. {
  8450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8451. "preferred": true
  8452. }
  8453. ]
  8454. },
  8455. "require": {
  8456. "php": ">=7.3"
  8457. },
  8458. "type": "library",
  8459. "extra": {
  8460. "branch-alias": {
  8461. "dev-master": "3.0-dev"
  8462. }
  8463. },
  8464. "autoload": {
  8465. "classmap": [
  8466. "src/"
  8467. ]
  8468. },
  8469. "notification-url": "https://packagist.org/downloads/",
  8470. "license": [
  8471. "BSD-3-Clause"
  8472. ],
  8473. "authors": [
  8474. {
  8475. "name": "Sebastian Bergmann",
  8476. "email": "sebastian@phpunit.de",
  8477. "role": "lead"
  8478. }
  8479. ],
  8480. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8481. "homepage": "https://github.com/sebastianbergmann/version",
  8482. "support": {
  8483. "issues": "https://github.com/sebastianbergmann/version/issues",
  8484. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  8485. },
  8486. "funding": [
  8487. {
  8488. "url": "https://github.com/sebastianbergmann",
  8489. "type": "github"
  8490. }
  8491. ],
  8492. "time": "2020-09-28T06:39:44+00:00"
  8493. },
  8494. {
  8495. "name": "theseer/tokenizer",
  8496. "version": "1.2.1",
  8497. "source": {
  8498. "type": "git",
  8499. "url": "https://github.com/theseer/tokenizer.git",
  8500. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  8501. },
  8502. "dist": {
  8503. "type": "zip",
  8504. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  8505. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  8506. "shasum": "",
  8507. "mirrors": [
  8508. {
  8509. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8510. "preferred": true
  8511. }
  8512. ]
  8513. },
  8514. "require": {
  8515. "ext-dom": "*",
  8516. "ext-tokenizer": "*",
  8517. "ext-xmlwriter": "*",
  8518. "php": "^7.2 || ^8.0"
  8519. },
  8520. "type": "library",
  8521. "autoload": {
  8522. "classmap": [
  8523. "src/"
  8524. ]
  8525. },
  8526. "notification-url": "https://packagist.org/downloads/",
  8527. "license": [
  8528. "BSD-3-Clause"
  8529. ],
  8530. "authors": [
  8531. {
  8532. "name": "Arne Blankerts",
  8533. "email": "arne@blankerts.de",
  8534. "role": "Developer"
  8535. }
  8536. ],
  8537. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8538. "support": {
  8539. "issues": "https://github.com/theseer/tokenizer/issues",
  8540. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  8541. },
  8542. "funding": [
  8543. {
  8544. "url": "https://github.com/theseer",
  8545. "type": "github"
  8546. }
  8547. ],
  8548. "time": "2021-07-28T10:34:58+00:00"
  8549. }
  8550. ],
  8551. "aliases": [],
  8552. "minimum-stability": "dev",
  8553. "stability-flags": [],
  8554. "prefer-stable": true,
  8555. "prefer-lowest": false,
  8556. "platform": {
  8557. "php": "^7.3|^8.0"
  8558. },
  8559. "platform-dev": [],
  8560. "plugin-api-version": "2.6.0"
  8561. }