composer.lock 383 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675
  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": "f9086bbc632676b2404fc74fee36666c",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.1.5",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  73. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "sdk-team@alibabacloud.com",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2023-04-11T02:12:12+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.10",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  153. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.19",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "sdk-team@alibabacloud.com"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  184. },
  185. "time": "2023-11-23T07:01:20+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dysmsapi-20170525",
  189. "version": "2.0.24",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  193. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  198. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.8",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.19",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "sdk-team@alibabacloud.com"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.24"
  227. },
  228. "time": "2023-07-04T11:32:11+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "sdk-team@alibabacloud.com"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "sdk-team@alibabacloud.com"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "sdk-team@alibabacloud.com"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "sdk-team@alibabacloud.com",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.19",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  434. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "sdk-team@alibabacloud.com"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2023-06-26T09:49:19+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "sdk-team@alibabacloud.com"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "asm89/stack-cors",
  509. "version": "v2.2.0",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/asm89/stack-cors.git",
  513. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  518. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "php": "^7.3|^8.0",
  523. "symfony/http-foundation": "^5.3|^6|^7",
  524. "symfony/http-kernel": "^5.3|^6|^7"
  525. },
  526. "require-dev": {
  527. "phpunit/phpunit": "^9",
  528. "squizlabs/php_codesniffer": "^3.5"
  529. },
  530. "type": "library",
  531. "extra": {
  532. "branch-alias": {
  533. "dev-master": "2.2-dev"
  534. }
  535. },
  536. "autoload": {
  537. "psr-4": {
  538. "Asm89\\Stack\\": "src/"
  539. }
  540. },
  541. "notification-url": "https://packagist.org/downloads/",
  542. "license": [
  543. "MIT"
  544. ],
  545. "authors": [
  546. {
  547. "name": "Alexander",
  548. "email": "iam.asm89@gmail.com"
  549. }
  550. ],
  551. "description": "Cross-origin resource sharing library and stack middleware",
  552. "homepage": "https://github.com/asm89/stack-cors",
  553. "keywords": [
  554. "cors",
  555. "stack"
  556. ],
  557. "support": {
  558. "issues": "https://github.com/asm89/stack-cors/issues",
  559. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  560. },
  561. "time": "2023-11-14T13:51:46+00:00"
  562. },
  563. {
  564. "name": "brick/math",
  565. "version": "0.11.0",
  566. "source": {
  567. "type": "git",
  568. "url": "https://github.com/brick/math.git",
  569. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  570. },
  571. "dist": {
  572. "type": "zip",
  573. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  574. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  575. "shasum": ""
  576. },
  577. "require": {
  578. "php": "^8.0"
  579. },
  580. "require-dev": {
  581. "php-coveralls/php-coveralls": "^2.2",
  582. "phpunit/phpunit": "^9.0",
  583. "vimeo/psalm": "5.0.0"
  584. },
  585. "type": "library",
  586. "autoload": {
  587. "psr-4": {
  588. "Brick\\Math\\": "src/"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "description": "Arbitrary-precision arithmetic library",
  596. "keywords": [
  597. "Arbitrary-precision",
  598. "BigInteger",
  599. "BigRational",
  600. "arithmetic",
  601. "bigdecimal",
  602. "bignum",
  603. "brick",
  604. "math"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/brick/math/issues",
  608. "source": "https://github.com/brick/math/tree/0.11.0"
  609. },
  610. "funding": [
  611. {
  612. "url": "https://github.com/BenMorel",
  613. "type": "github"
  614. }
  615. ],
  616. "time": "2023-01-15T23:15:59+00:00"
  617. },
  618. {
  619. "name": "cache/adapter-common",
  620. "version": "1.3.0",
  621. "source": {
  622. "type": "git",
  623. "url": "https://github.com/php-cache/adapter-common.git",
  624. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  625. },
  626. "dist": {
  627. "type": "zip",
  628. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  629. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  630. "shasum": ""
  631. },
  632. "require": {
  633. "cache/tag-interop": "^1.0",
  634. "php": ">=7.4",
  635. "psr/cache": "^1.0 || ^2.0",
  636. "psr/log": "^1.0 || ^2.0 || ^3.0",
  637. "psr/simple-cache": "^1.0"
  638. },
  639. "require-dev": {
  640. "cache/integration-tests": "^0.17",
  641. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  642. },
  643. "type": "library",
  644. "extra": {
  645. "branch-alias": {
  646. "dev-master": "1.1-dev"
  647. }
  648. },
  649. "autoload": {
  650. "psr-4": {
  651. "Cache\\Adapter\\Common\\": ""
  652. }
  653. },
  654. "notification-url": "https://packagist.org/downloads/",
  655. "license": [
  656. "MIT"
  657. ],
  658. "authors": [
  659. {
  660. "name": "Aaron Scherer",
  661. "email": "aequasi@gmail.com",
  662. "homepage": "https://github.com/aequasi"
  663. },
  664. {
  665. "name": "Tobias Nyholm",
  666. "email": "tobias.nyholm@gmail.com",
  667. "homepage": "https://github.com/nyholm"
  668. }
  669. ],
  670. "description": "Common classes for PSR-6 adapters",
  671. "homepage": "http://www.php-cache.com/en/latest/",
  672. "keywords": [
  673. "cache",
  674. "psr-6",
  675. "tag"
  676. ],
  677. "support": {
  678. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  679. },
  680. "time": "2022-01-15T15:47:19+00:00"
  681. },
  682. {
  683. "name": "cache/filesystem-adapter",
  684. "version": "1.2.0",
  685. "source": {
  686. "type": "git",
  687. "url": "https://github.com/php-cache/filesystem-adapter.git",
  688. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b"
  689. },
  690. "dist": {
  691. "type": "zip",
  692. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/f1faaae40aaa696ef899cef6f6888aedb90b419b",
  693. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b",
  694. "shasum": ""
  695. },
  696. "require": {
  697. "cache/adapter-common": "^1.0",
  698. "league/flysystem": "^1.0",
  699. "php": ">=7.4",
  700. "psr/cache": "^1.0 || ^2.0",
  701. "psr/simple-cache": "^1.0"
  702. },
  703. "provide": {
  704. "psr/cache-implementation": "^1.0",
  705. "psr/simple-cache-implementation": "^1.0"
  706. },
  707. "require-dev": {
  708. "cache/integration-tests": "^0.17",
  709. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  710. },
  711. "type": "library",
  712. "extra": {
  713. "branch-alias": {
  714. "dev-master": "1.1-dev"
  715. }
  716. },
  717. "autoload": {
  718. "psr-4": {
  719. "Cache\\Adapter\\Filesystem\\": ""
  720. },
  721. "exclude-from-classmap": [
  722. "/Tests/"
  723. ]
  724. },
  725. "notification-url": "https://packagist.org/downloads/",
  726. "license": [
  727. "MIT"
  728. ],
  729. "authors": [
  730. {
  731. "name": "Aaron Scherer",
  732. "email": "aequasi@gmail.com",
  733. "homepage": "https://github.com/aequasi"
  734. },
  735. {
  736. "name": "Tobias Nyholm",
  737. "email": "tobias.nyholm@gmail.com",
  738. "homepage": "https://github.com/nyholm"
  739. }
  740. ],
  741. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  742. "homepage": "http://www.php-cache.com/en/latest/",
  743. "keywords": [
  744. "cache",
  745. "filesystem",
  746. "psr-6",
  747. "tag"
  748. ],
  749. "support": {
  750. "source": "https://github.com/php-cache/filesystem-adapter/tree/1.2.0"
  751. },
  752. "time": "2022-01-15T15:47:19+00:00"
  753. },
  754. {
  755. "name": "cache/tag-interop",
  756. "version": "1.1.0",
  757. "source": {
  758. "type": "git",
  759. "url": "https://github.com/php-cache/tag-interop.git",
  760. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  761. },
  762. "dist": {
  763. "type": "zip",
  764. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  765. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  766. "shasum": ""
  767. },
  768. "require": {
  769. "php": "^5.5 || ^7.0 || ^8.0",
  770. "psr/cache": "^1.0 || ^2.0"
  771. },
  772. "type": "library",
  773. "extra": {
  774. "branch-alias": {
  775. "dev-master": "1.1-dev"
  776. }
  777. },
  778. "autoload": {
  779. "psr-4": {
  780. "Cache\\TagInterop\\": ""
  781. }
  782. },
  783. "notification-url": "https://packagist.org/downloads/",
  784. "license": [
  785. "MIT"
  786. ],
  787. "authors": [
  788. {
  789. "name": "Tobias Nyholm",
  790. "email": "tobias.nyholm@gmail.com",
  791. "homepage": "https://github.com/nyholm"
  792. },
  793. {
  794. "name": "Nicolas Grekas",
  795. "email": "p@tchwork.com",
  796. "homepage": "https://github.com/nicolas-grekas"
  797. }
  798. ],
  799. "description": "Framework interoperable interfaces for tags",
  800. "homepage": "https://www.php-cache.com/en/latest/",
  801. "keywords": [
  802. "cache",
  803. "psr",
  804. "psr6",
  805. "tag"
  806. ],
  807. "support": {
  808. "issues": "https://github.com/php-cache/tag-interop/issues",
  809. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  810. },
  811. "time": "2021-12-31T10:03:23+00:00"
  812. },
  813. {
  814. "name": "carbonphp/carbon-doctrine-types",
  815. "version": "2.1.0",
  816. "source": {
  817. "type": "git",
  818. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  819. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  820. },
  821. "dist": {
  822. "type": "zip",
  823. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  824. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  825. "shasum": ""
  826. },
  827. "require": {
  828. "php": "^7.4 || ^8.0"
  829. },
  830. "conflict": {
  831. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  832. },
  833. "require-dev": {
  834. "doctrine/dbal": "^3.7.0",
  835. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  836. "phpunit/phpunit": "^10.3"
  837. },
  838. "type": "library",
  839. "autoload": {
  840. "psr-4": {
  841. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  842. }
  843. },
  844. "notification-url": "https://packagist.org/downloads/",
  845. "license": [
  846. "MIT"
  847. ],
  848. "authors": [
  849. {
  850. "name": "KyleKatarn",
  851. "email": "kylekatarnls@gmail.com"
  852. }
  853. ],
  854. "description": "Types to use Carbon in Doctrine",
  855. "keywords": [
  856. "carbon",
  857. "date",
  858. "datetime",
  859. "doctrine",
  860. "time"
  861. ],
  862. "support": {
  863. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  864. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  865. },
  866. "funding": [
  867. {
  868. "url": "https://github.com/kylekatarnls",
  869. "type": "github"
  870. },
  871. {
  872. "url": "https://opencollective.com/Carbon",
  873. "type": "open_collective"
  874. },
  875. {
  876. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  877. "type": "tidelift"
  878. }
  879. ],
  880. "time": "2023-12-11T17:09:12+00:00"
  881. },
  882. {
  883. "name": "cboden/ratchet",
  884. "version": "v0.4.4",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/ratchetphp/Ratchet.git",
  888. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  893. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  894. "shasum": ""
  895. },
  896. "require": {
  897. "guzzlehttp/psr7": "^1.7|^2.0",
  898. "php": ">=5.4.2",
  899. "ratchet/rfc6455": "^0.3.1",
  900. "react/event-loop": ">=0.4",
  901. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  902. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  903. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "~4.8"
  907. },
  908. "type": "library",
  909. "autoload": {
  910. "psr-4": {
  911. "Ratchet\\": "src/Ratchet"
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "MIT"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Chris Boden",
  921. "email": "cboden@gmail.com",
  922. "role": "Developer"
  923. },
  924. {
  925. "name": "Matt Bonneau",
  926. "role": "Developer"
  927. }
  928. ],
  929. "description": "PHP WebSocket library",
  930. "homepage": "http://socketo.me",
  931. "keywords": [
  932. "Ratchet",
  933. "WebSockets",
  934. "server",
  935. "sockets",
  936. "websocket"
  937. ],
  938. "support": {
  939. "chat": "https://gitter.im/reactphp/reactphp",
  940. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  941. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  942. },
  943. "time": "2021-12-14T00:20:41+00:00"
  944. },
  945. {
  946. "name": "composer/semver",
  947. "version": "3.4.0",
  948. "source": {
  949. "type": "git",
  950. "url": "https://github.com/composer/semver.git",
  951. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  952. },
  953. "dist": {
  954. "type": "zip",
  955. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  956. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  957. "shasum": ""
  958. },
  959. "require": {
  960. "php": "^5.3.2 || ^7.0 || ^8.0"
  961. },
  962. "require-dev": {
  963. "phpstan/phpstan": "^1.4",
  964. "symfony/phpunit-bridge": "^4.2 || ^5"
  965. },
  966. "type": "library",
  967. "extra": {
  968. "branch-alias": {
  969. "dev-main": "3.x-dev"
  970. }
  971. },
  972. "autoload": {
  973. "psr-4": {
  974. "Composer\\Semver\\": "src"
  975. }
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "authors": [
  982. {
  983. "name": "Nils Adermann",
  984. "email": "naderman@naderman.de",
  985. "homepage": "http://www.naderman.de"
  986. },
  987. {
  988. "name": "Jordi Boggiano",
  989. "email": "j.boggiano@seld.be",
  990. "homepage": "http://seld.be"
  991. },
  992. {
  993. "name": "Rob Bast",
  994. "email": "rob.bast@gmail.com",
  995. "homepage": "http://robbast.nl"
  996. }
  997. ],
  998. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  999. "keywords": [
  1000. "semantic",
  1001. "semver",
  1002. "validation",
  1003. "versioning"
  1004. ],
  1005. "support": {
  1006. "irc": "ircs://irc.libera.chat:6697/composer",
  1007. "issues": "https://github.com/composer/semver/issues",
  1008. "source": "https://github.com/composer/semver/tree/3.4.0"
  1009. },
  1010. "funding": [
  1011. {
  1012. "url": "https://packagist.com",
  1013. "type": "custom"
  1014. },
  1015. {
  1016. "url": "https://github.com/composer",
  1017. "type": "github"
  1018. },
  1019. {
  1020. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1021. "type": "tidelift"
  1022. }
  1023. ],
  1024. "time": "2023-08-31T09:50:34+00:00"
  1025. },
  1026. {
  1027. "name": "dflydev/dot-access-data",
  1028. "version": "v3.0.2",
  1029. "source": {
  1030. "type": "git",
  1031. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1032. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1033. },
  1034. "dist": {
  1035. "type": "zip",
  1036. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1037. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1038. "shasum": ""
  1039. },
  1040. "require": {
  1041. "php": "^7.1 || ^8.0"
  1042. },
  1043. "require-dev": {
  1044. "phpstan/phpstan": "^0.12.42",
  1045. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1046. "scrutinizer/ocular": "1.6.0",
  1047. "squizlabs/php_codesniffer": "^3.5",
  1048. "vimeo/psalm": "^4.0.0"
  1049. },
  1050. "type": "library",
  1051. "extra": {
  1052. "branch-alias": {
  1053. "dev-main": "3.x-dev"
  1054. }
  1055. },
  1056. "autoload": {
  1057. "psr-4": {
  1058. "Dflydev\\DotAccessData\\": "src/"
  1059. }
  1060. },
  1061. "notification-url": "https://packagist.org/downloads/",
  1062. "license": [
  1063. "MIT"
  1064. ],
  1065. "authors": [
  1066. {
  1067. "name": "Dragonfly Development Inc.",
  1068. "email": "info@dflydev.com",
  1069. "homepage": "http://dflydev.com"
  1070. },
  1071. {
  1072. "name": "Beau Simensen",
  1073. "email": "beau@dflydev.com",
  1074. "homepage": "http://beausimensen.com"
  1075. },
  1076. {
  1077. "name": "Carlos Frutos",
  1078. "email": "carlos@kiwing.it",
  1079. "homepage": "https://github.com/cfrutos"
  1080. },
  1081. {
  1082. "name": "Colin O'Dell",
  1083. "email": "colinodell@gmail.com",
  1084. "homepage": "https://www.colinodell.com"
  1085. }
  1086. ],
  1087. "description": "Given a deep data structure, access data by dot notation.",
  1088. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1089. "keywords": [
  1090. "access",
  1091. "data",
  1092. "dot",
  1093. "notation"
  1094. ],
  1095. "support": {
  1096. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1097. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1098. },
  1099. "time": "2022-10-27T11:44:00+00:00"
  1100. },
  1101. {
  1102. "name": "doctrine/inflector",
  1103. "version": "2.0.8",
  1104. "source": {
  1105. "type": "git",
  1106. "url": "https://github.com/doctrine/inflector.git",
  1107. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  1108. },
  1109. "dist": {
  1110. "type": "zip",
  1111. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1112. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1113. "shasum": ""
  1114. },
  1115. "require": {
  1116. "php": "^7.2 || ^8.0"
  1117. },
  1118. "require-dev": {
  1119. "doctrine/coding-standard": "^11.0",
  1120. "phpstan/phpstan": "^1.8",
  1121. "phpstan/phpstan-phpunit": "^1.1",
  1122. "phpstan/phpstan-strict-rules": "^1.3",
  1123. "phpunit/phpunit": "^8.5 || ^9.5",
  1124. "vimeo/psalm": "^4.25 || ^5.4"
  1125. },
  1126. "type": "library",
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "MIT"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Guilherme Blanco",
  1139. "email": "guilhermeblanco@gmail.com"
  1140. },
  1141. {
  1142. "name": "Roman Borschel",
  1143. "email": "roman@code-factory.org"
  1144. },
  1145. {
  1146. "name": "Benjamin Eberlei",
  1147. "email": "kontakt@beberlei.de"
  1148. },
  1149. {
  1150. "name": "Jonathan Wage",
  1151. "email": "jonwage@gmail.com"
  1152. },
  1153. {
  1154. "name": "Johannes Schmitt",
  1155. "email": "schmittjoh@gmail.com"
  1156. }
  1157. ],
  1158. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1159. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1160. "keywords": [
  1161. "inflection",
  1162. "inflector",
  1163. "lowercase",
  1164. "manipulation",
  1165. "php",
  1166. "plural",
  1167. "singular",
  1168. "strings",
  1169. "uppercase",
  1170. "words"
  1171. ],
  1172. "support": {
  1173. "issues": "https://github.com/doctrine/inflector/issues",
  1174. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1175. },
  1176. "funding": [
  1177. {
  1178. "url": "https://www.doctrine-project.org/sponsorship.html",
  1179. "type": "custom"
  1180. },
  1181. {
  1182. "url": "https://www.patreon.com/phpdoctrine",
  1183. "type": "patreon"
  1184. },
  1185. {
  1186. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1187. "type": "tidelift"
  1188. }
  1189. ],
  1190. "time": "2023-06-16T13:40:37+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/lexer",
  1194. "version": "1.2.3",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/lexer.git",
  1198. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1203. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "php": "^7.1 || ^8.0"
  1208. },
  1209. "require-dev": {
  1210. "doctrine/coding-standard": "^9.0",
  1211. "phpstan/phpstan": "^1.3",
  1212. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1213. "vimeo/psalm": "^4.11"
  1214. },
  1215. "type": "library",
  1216. "autoload": {
  1217. "psr-4": {
  1218. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1219. }
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "authors": [
  1226. {
  1227. "name": "Guilherme Blanco",
  1228. "email": "guilhermeblanco@gmail.com"
  1229. },
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Johannes Schmitt",
  1236. "email": "schmittjoh@gmail.com"
  1237. }
  1238. ],
  1239. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1240. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1241. "keywords": [
  1242. "annotations",
  1243. "docblock",
  1244. "lexer",
  1245. "parser",
  1246. "php"
  1247. ],
  1248. "support": {
  1249. "issues": "https://github.com/doctrine/lexer/issues",
  1250. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1251. },
  1252. "funding": [
  1253. {
  1254. "url": "https://www.doctrine-project.org/sponsorship.html",
  1255. "type": "custom"
  1256. },
  1257. {
  1258. "url": "https://www.patreon.com/phpdoctrine",
  1259. "type": "patreon"
  1260. },
  1261. {
  1262. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1263. "type": "tidelift"
  1264. }
  1265. ],
  1266. "time": "2022-02-28T11:07:21+00:00"
  1267. },
  1268. {
  1269. "name": "dragonmantank/cron-expression",
  1270. "version": "v3.3.3",
  1271. "source": {
  1272. "type": "git",
  1273. "url": "https://github.com/dragonmantank/cron-expression.git",
  1274. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1275. },
  1276. "dist": {
  1277. "type": "zip",
  1278. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1279. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1280. "shasum": ""
  1281. },
  1282. "require": {
  1283. "php": "^7.2|^8.0",
  1284. "webmozart/assert": "^1.0"
  1285. },
  1286. "replace": {
  1287. "mtdowling/cron-expression": "^1.0"
  1288. },
  1289. "require-dev": {
  1290. "phpstan/extension-installer": "^1.0",
  1291. "phpstan/phpstan": "^1.0",
  1292. "phpstan/phpstan-webmozart-assert": "^1.0",
  1293. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1294. },
  1295. "type": "library",
  1296. "autoload": {
  1297. "psr-4": {
  1298. "Cron\\": "src/Cron/"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "authors": [
  1306. {
  1307. "name": "Chris Tankersley",
  1308. "email": "chris@ctankersley.com",
  1309. "homepage": "https://github.com/dragonmantank"
  1310. }
  1311. ],
  1312. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1313. "keywords": [
  1314. "cron",
  1315. "schedule"
  1316. ],
  1317. "support": {
  1318. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1319. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1320. },
  1321. "funding": [
  1322. {
  1323. "url": "https://github.com/dragonmantank",
  1324. "type": "github"
  1325. }
  1326. ],
  1327. "time": "2023-08-10T19:36:49+00:00"
  1328. },
  1329. {
  1330. "name": "egulias/email-validator",
  1331. "version": "2.1.25",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/egulias/EmailValidator.git",
  1335. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1340. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "doctrine/lexer": "^1.0.1",
  1345. "php": ">=5.5",
  1346. "symfony/polyfill-intl-idn": "^1.10"
  1347. },
  1348. "require-dev": {
  1349. "dominicsayers/isemail": "^3.0.7",
  1350. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1351. "satooshi/php-coveralls": "^1.0.1"
  1352. },
  1353. "suggest": {
  1354. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1355. },
  1356. "type": "library",
  1357. "extra": {
  1358. "branch-alias": {
  1359. "dev-master": "2.1.x-dev"
  1360. }
  1361. },
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Egulias\\EmailValidator\\": "src"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Eduardo Gulias Davis"
  1374. }
  1375. ],
  1376. "description": "A library for validating emails against several RFCs",
  1377. "homepage": "https://github.com/egulias/EmailValidator",
  1378. "keywords": [
  1379. "email",
  1380. "emailvalidation",
  1381. "emailvalidator",
  1382. "validation",
  1383. "validator"
  1384. ],
  1385. "support": {
  1386. "issues": "https://github.com/egulias/EmailValidator/issues",
  1387. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1388. },
  1389. "funding": [
  1390. {
  1391. "url": "https://github.com/egulias",
  1392. "type": "github"
  1393. }
  1394. ],
  1395. "time": "2020-12-29T14:50:06+00:00"
  1396. },
  1397. {
  1398. "name": "evenement/evenement",
  1399. "version": "v3.0.2",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/igorw/evenement.git",
  1403. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1408. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1409. "shasum": ""
  1410. },
  1411. "require": {
  1412. "php": ">=7.0"
  1413. },
  1414. "require-dev": {
  1415. "phpunit/phpunit": "^9 || ^6"
  1416. },
  1417. "type": "library",
  1418. "autoload": {
  1419. "psr-4": {
  1420. "Evenement\\": "src/"
  1421. }
  1422. },
  1423. "notification-url": "https://packagist.org/downloads/",
  1424. "license": [
  1425. "MIT"
  1426. ],
  1427. "authors": [
  1428. {
  1429. "name": "Igor Wiedler",
  1430. "email": "igor@wiedler.ch"
  1431. }
  1432. ],
  1433. "description": "Événement is a very simple event dispatching library for PHP",
  1434. "keywords": [
  1435. "event-dispatcher",
  1436. "event-emitter"
  1437. ],
  1438. "support": {
  1439. "issues": "https://github.com/igorw/evenement/issues",
  1440. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1441. },
  1442. "time": "2023-08-08T05:53:35+00:00"
  1443. },
  1444. {
  1445. "name": "ezyang/htmlpurifier",
  1446. "version": "v4.17.0",
  1447. "source": {
  1448. "type": "git",
  1449. "url": "https://github.com/ezyang/htmlpurifier.git",
  1450. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1451. },
  1452. "dist": {
  1453. "type": "zip",
  1454. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1455. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1456. "shasum": ""
  1457. },
  1458. "require": {
  1459. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1460. },
  1461. "require-dev": {
  1462. "cerdic/css-tidy": "^1.7 || ^2.0",
  1463. "simpletest/simpletest": "dev-master"
  1464. },
  1465. "suggest": {
  1466. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1467. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1468. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1469. "ext-tidy": "Used for pretty-printing HTML"
  1470. },
  1471. "type": "library",
  1472. "autoload": {
  1473. "files": [
  1474. "library/HTMLPurifier.composer.php"
  1475. ],
  1476. "psr-0": {
  1477. "HTMLPurifier": "library/"
  1478. },
  1479. "exclude-from-classmap": [
  1480. "/library/HTMLPurifier/Language/"
  1481. ]
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "LGPL-2.1-or-later"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Edward Z. Yang",
  1490. "email": "admin@htmlpurifier.org",
  1491. "homepage": "http://ezyang.com"
  1492. }
  1493. ],
  1494. "description": "Standards compliant HTML filter written in PHP",
  1495. "homepage": "http://htmlpurifier.org/",
  1496. "keywords": [
  1497. "html"
  1498. ],
  1499. "support": {
  1500. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1501. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1502. },
  1503. "time": "2023-11-17T15:01:25+00:00"
  1504. },
  1505. {
  1506. "name": "fideloper/proxy",
  1507. "version": "4.4.2",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/fideloper/TrustedProxy.git",
  1511. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1516. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1521. "php": ">=5.4.0"
  1522. },
  1523. "require-dev": {
  1524. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1525. "mockery/mockery": "^1.0",
  1526. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1527. },
  1528. "type": "library",
  1529. "extra": {
  1530. "laravel": {
  1531. "providers": [
  1532. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1533. ]
  1534. }
  1535. },
  1536. "autoload": {
  1537. "psr-4": {
  1538. "Fideloper\\Proxy\\": "src/"
  1539. }
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "authors": [
  1546. {
  1547. "name": "Chris Fidao",
  1548. "email": "fideloper@gmail.com"
  1549. }
  1550. ],
  1551. "description": "Set trusted proxies for Laravel",
  1552. "keywords": [
  1553. "load balancing",
  1554. "proxy",
  1555. "trusted proxy"
  1556. ],
  1557. "support": {
  1558. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1559. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1560. },
  1561. "time": "2022-02-09T13:33:34+00:00"
  1562. },
  1563. {
  1564. "name": "fruitcake/laravel-cors",
  1565. "version": "v2.2.0",
  1566. "source": {
  1567. "type": "git",
  1568. "url": "https://github.com/fruitcake/laravel-cors.git",
  1569. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1570. },
  1571. "dist": {
  1572. "type": "zip",
  1573. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1574. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1575. "shasum": ""
  1576. },
  1577. "require": {
  1578. "asm89/stack-cors": "^2.0.1",
  1579. "illuminate/contracts": "^6|^7|^8|^9",
  1580. "illuminate/support": "^6|^7|^8|^9",
  1581. "php": ">=7.2"
  1582. },
  1583. "require-dev": {
  1584. "laravel/framework": "^6|^7.24|^8",
  1585. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1586. "phpunit/phpunit": "^6|^7|^8|^9",
  1587. "squizlabs/php_codesniffer": "^3.5"
  1588. },
  1589. "type": "library",
  1590. "extra": {
  1591. "branch-alias": {
  1592. "dev-master": "2.1-dev"
  1593. },
  1594. "laravel": {
  1595. "providers": [
  1596. "Fruitcake\\Cors\\CorsServiceProvider"
  1597. ]
  1598. }
  1599. },
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Fruitcake\\Cors\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Fruitcake",
  1612. "homepage": "https://fruitcake.nl"
  1613. },
  1614. {
  1615. "name": "Barry vd. Heuvel",
  1616. "email": "barryvdh@gmail.com"
  1617. }
  1618. ],
  1619. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1620. "keywords": [
  1621. "api",
  1622. "cors",
  1623. "crossdomain",
  1624. "laravel"
  1625. ],
  1626. "support": {
  1627. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1628. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1629. },
  1630. "funding": [
  1631. {
  1632. "url": "https://fruitcake.nl",
  1633. "type": "custom"
  1634. },
  1635. {
  1636. "url": "https://github.com/barryvdh",
  1637. "type": "github"
  1638. }
  1639. ],
  1640. "abandoned": true,
  1641. "time": "2022-02-23T14:25:13+00:00"
  1642. },
  1643. {
  1644. "name": "fukuball/jieba-php",
  1645. "version": "dev-master",
  1646. "source": {
  1647. "type": "git",
  1648. "url": "https://github.com/fukuball/jieba-php.git",
  1649. "reference": "a485a16e5424b69526f18d4a7d90009692f2284c"
  1650. },
  1651. "dist": {
  1652. "type": "zip",
  1653. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/a485a16e5424b69526f18d4a7d90009692f2284c",
  1654. "reference": "a485a16e5424b69526f18d4a7d90009692f2284c",
  1655. "shasum": "",
  1656. "mirrors": [
  1657. {
  1658. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1659. "preferred": true
  1660. }
  1661. ]
  1662. },
  1663. "require": {
  1664. "php": ">= 5.3"
  1665. },
  1666. "require-dev": {
  1667. "php-coveralls/php-coveralls": "dev-master",
  1668. "phpunit/phpunit": "~9.0",
  1669. "squizlabs/php_codesniffer": "4.0.x-dev"
  1670. },
  1671. "default-branch": true,
  1672. "type": "library",
  1673. "autoload": {
  1674. "files": [
  1675. "src/vendor/multi-array/MultiArray.php",
  1676. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  1677. ],
  1678. "psr-4": {
  1679. "Fukuball\\Jieba\\": "src/class/"
  1680. }
  1681. },
  1682. "notification-url": "https://packagist.org/downloads/",
  1683. "license": [
  1684. "MIT"
  1685. ],
  1686. "authors": [
  1687. {
  1688. "name": "fukuball",
  1689. "email": "fukuball@gmail.com"
  1690. }
  1691. ],
  1692. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  1693. "keywords": [
  1694. "Jieba",
  1695. "php"
  1696. ],
  1697. "support": {
  1698. "issues": "https://github.com/fukuball/jieba-php/issues",
  1699. "source": "https://github.com/fukuball/jieba-php/tree/master"
  1700. },
  1701. "time": "2022-08-15T06:50:32+00:00"
  1702. },
  1703. {
  1704. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  1705. "version": "dev-master",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  1709. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  1714. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  1715. "shasum": ""
  1716. },
  1717. "default-branch": true,
  1718. "type": "library",
  1719. "autoload": {
  1720. "classmap": [
  1721. ""
  1722. ]
  1723. },
  1724. "notification-url": "https://packagist.org/downloads/",
  1725. "license": [
  1726. "MIT"
  1727. ],
  1728. "authors": [
  1729. {
  1730. "name": "getui",
  1731. "homepage": "https://www.getui.com/cn"
  1732. }
  1733. ],
  1734. "description": "getui php client V2",
  1735. "homepage": "https://www.getui.com/cn/",
  1736. "keywords": [
  1737. "GeTui",
  1738. "GetuiLaboratory",
  1739. "getui-pushapi-php-client",
  1740. "getui-pushapi-php-client-v2",
  1741. "pushapi"
  1742. ],
  1743. "support": {
  1744. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  1745. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  1746. },
  1747. "time": "2021-06-21T03:22:42+00:00"
  1748. },
  1749. {
  1750. "name": "graham-campbell/result-type",
  1751. "version": "v1.1.2",
  1752. "source": {
  1753. "type": "git",
  1754. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1755. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1756. },
  1757. "dist": {
  1758. "type": "zip",
  1759. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1760. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1761. "shasum": ""
  1762. },
  1763. "require": {
  1764. "php": "^7.2.5 || ^8.0",
  1765. "phpoption/phpoption": "^1.9.2"
  1766. },
  1767. "require-dev": {
  1768. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1769. },
  1770. "type": "library",
  1771. "autoload": {
  1772. "psr-4": {
  1773. "GrahamCampbell\\ResultType\\": "src/"
  1774. }
  1775. },
  1776. "notification-url": "https://packagist.org/downloads/",
  1777. "license": [
  1778. "MIT"
  1779. ],
  1780. "authors": [
  1781. {
  1782. "name": "Graham Campbell",
  1783. "email": "hello@gjcampbell.co.uk",
  1784. "homepage": "https://github.com/GrahamCampbell"
  1785. }
  1786. ],
  1787. "description": "An Implementation Of The Result Type",
  1788. "keywords": [
  1789. "Graham Campbell",
  1790. "GrahamCampbell",
  1791. "Result Type",
  1792. "Result-Type",
  1793. "result"
  1794. ],
  1795. "support": {
  1796. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1797. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1798. },
  1799. "funding": [
  1800. {
  1801. "url": "https://github.com/GrahamCampbell",
  1802. "type": "github"
  1803. },
  1804. {
  1805. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1806. "type": "tidelift"
  1807. }
  1808. ],
  1809. "time": "2023-11-12T22:16:48+00:00"
  1810. },
  1811. {
  1812. "name": "gregwar/captcha",
  1813. "version": "v1.2.1",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://github.com/Gregwar/Captcha.git",
  1817. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1822. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1823. "shasum": ""
  1824. },
  1825. "require": {
  1826. "ext-gd": "*",
  1827. "ext-mbstring": "*",
  1828. "php": ">=5.3.0",
  1829. "symfony/finder": "*"
  1830. },
  1831. "require-dev": {
  1832. "phpunit/phpunit": "^6.4"
  1833. },
  1834. "type": "library",
  1835. "autoload": {
  1836. "psr-4": {
  1837. "Gregwar\\": "src/Gregwar"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Grégoire Passault",
  1847. "email": "g.passault@gmail.com",
  1848. "homepage": "http://www.gregwar.com/"
  1849. },
  1850. {
  1851. "name": "Jeremy Livingston",
  1852. "email": "jeremy.j.livingston@gmail.com"
  1853. }
  1854. ],
  1855. "description": "Captcha generator",
  1856. "homepage": "https://github.com/Gregwar/Captcha",
  1857. "keywords": [
  1858. "bot",
  1859. "captcha",
  1860. "spam"
  1861. ],
  1862. "support": {
  1863. "issues": "https://github.com/Gregwar/Captcha/issues",
  1864. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1865. },
  1866. "time": "2023-09-26T13:45:37+00:00"
  1867. },
  1868. {
  1869. "name": "guzzlehttp/guzzle",
  1870. "version": "7.8.1",
  1871. "source": {
  1872. "type": "git",
  1873. "url": "https://github.com/guzzle/guzzle.git",
  1874. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1875. },
  1876. "dist": {
  1877. "type": "zip",
  1878. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1879. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1880. "shasum": ""
  1881. },
  1882. "require": {
  1883. "ext-json": "*",
  1884. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1885. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1886. "php": "^7.2.5 || ^8.0",
  1887. "psr/http-client": "^1.0",
  1888. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1889. },
  1890. "provide": {
  1891. "psr/http-client-implementation": "1.0"
  1892. },
  1893. "require-dev": {
  1894. "bamarni/composer-bin-plugin": "^1.8.2",
  1895. "ext-curl": "*",
  1896. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1897. "php-http/message-factory": "^1.1",
  1898. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1899. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1900. },
  1901. "suggest": {
  1902. "ext-curl": "Required for CURL handler support",
  1903. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1904. "psr/log": "Required for using the Log middleware"
  1905. },
  1906. "type": "library",
  1907. "extra": {
  1908. "bamarni-bin": {
  1909. "bin-links": true,
  1910. "forward-command": false
  1911. }
  1912. },
  1913. "autoload": {
  1914. "files": [
  1915. "src/functions_include.php"
  1916. ],
  1917. "psr-4": {
  1918. "GuzzleHttp\\": "src/"
  1919. }
  1920. },
  1921. "notification-url": "https://packagist.org/downloads/",
  1922. "license": [
  1923. "MIT"
  1924. ],
  1925. "authors": [
  1926. {
  1927. "name": "Graham Campbell",
  1928. "email": "hello@gjcampbell.co.uk",
  1929. "homepage": "https://github.com/GrahamCampbell"
  1930. },
  1931. {
  1932. "name": "Michael Dowling",
  1933. "email": "mtdowling@gmail.com",
  1934. "homepage": "https://github.com/mtdowling"
  1935. },
  1936. {
  1937. "name": "Jeremy Lindblom",
  1938. "email": "jeremeamia@gmail.com",
  1939. "homepage": "https://github.com/jeremeamia"
  1940. },
  1941. {
  1942. "name": "George Mponos",
  1943. "email": "gmponos@gmail.com",
  1944. "homepage": "https://github.com/gmponos"
  1945. },
  1946. {
  1947. "name": "Tobias Nyholm",
  1948. "email": "tobias.nyholm@gmail.com",
  1949. "homepage": "https://github.com/Nyholm"
  1950. },
  1951. {
  1952. "name": "Márk Sági-Kazár",
  1953. "email": "mark.sagikazar@gmail.com",
  1954. "homepage": "https://github.com/sagikazarmark"
  1955. },
  1956. {
  1957. "name": "Tobias Schultze",
  1958. "email": "webmaster@tubo-world.de",
  1959. "homepage": "https://github.com/Tobion"
  1960. }
  1961. ],
  1962. "description": "Guzzle is a PHP HTTP client library",
  1963. "keywords": [
  1964. "client",
  1965. "curl",
  1966. "framework",
  1967. "http",
  1968. "http client",
  1969. "psr-18",
  1970. "psr-7",
  1971. "rest",
  1972. "web service"
  1973. ],
  1974. "support": {
  1975. "issues": "https://github.com/guzzle/guzzle/issues",
  1976. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1977. },
  1978. "funding": [
  1979. {
  1980. "url": "https://github.com/GrahamCampbell",
  1981. "type": "github"
  1982. },
  1983. {
  1984. "url": "https://github.com/Nyholm",
  1985. "type": "github"
  1986. },
  1987. {
  1988. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1989. "type": "tidelift"
  1990. }
  1991. ],
  1992. "time": "2023-12-03T20:35:24+00:00"
  1993. },
  1994. {
  1995. "name": "guzzlehttp/promises",
  1996. "version": "2.0.2",
  1997. "source": {
  1998. "type": "git",
  1999. "url": "https://github.com/guzzle/promises.git",
  2000. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2001. },
  2002. "dist": {
  2003. "type": "zip",
  2004. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2005. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2006. "shasum": ""
  2007. },
  2008. "require": {
  2009. "php": "^7.2.5 || ^8.0"
  2010. },
  2011. "require-dev": {
  2012. "bamarni/composer-bin-plugin": "^1.8.2",
  2013. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2014. },
  2015. "type": "library",
  2016. "extra": {
  2017. "bamarni-bin": {
  2018. "bin-links": true,
  2019. "forward-command": false
  2020. }
  2021. },
  2022. "autoload": {
  2023. "psr-4": {
  2024. "GuzzleHttp\\Promise\\": "src/"
  2025. }
  2026. },
  2027. "notification-url": "https://packagist.org/downloads/",
  2028. "license": [
  2029. "MIT"
  2030. ],
  2031. "authors": [
  2032. {
  2033. "name": "Graham Campbell",
  2034. "email": "hello@gjcampbell.co.uk",
  2035. "homepage": "https://github.com/GrahamCampbell"
  2036. },
  2037. {
  2038. "name": "Michael Dowling",
  2039. "email": "mtdowling@gmail.com",
  2040. "homepage": "https://github.com/mtdowling"
  2041. },
  2042. {
  2043. "name": "Tobias Nyholm",
  2044. "email": "tobias.nyholm@gmail.com",
  2045. "homepage": "https://github.com/Nyholm"
  2046. },
  2047. {
  2048. "name": "Tobias Schultze",
  2049. "email": "webmaster@tubo-world.de",
  2050. "homepage": "https://github.com/Tobion"
  2051. }
  2052. ],
  2053. "description": "Guzzle promises library",
  2054. "keywords": [
  2055. "promise"
  2056. ],
  2057. "support": {
  2058. "issues": "https://github.com/guzzle/promises/issues",
  2059. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2060. },
  2061. "funding": [
  2062. {
  2063. "url": "https://github.com/GrahamCampbell",
  2064. "type": "github"
  2065. },
  2066. {
  2067. "url": "https://github.com/Nyholm",
  2068. "type": "github"
  2069. },
  2070. {
  2071. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2072. "type": "tidelift"
  2073. }
  2074. ],
  2075. "time": "2023-12-03T20:19:20+00:00"
  2076. },
  2077. {
  2078. "name": "guzzlehttp/psr7",
  2079. "version": "2.6.2",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/guzzle/psr7.git",
  2083. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2088. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "php": "^7.2.5 || ^8.0",
  2093. "psr/http-factory": "^1.0",
  2094. "psr/http-message": "^1.1 || ^2.0",
  2095. "ralouphie/getallheaders": "^3.0"
  2096. },
  2097. "provide": {
  2098. "psr/http-factory-implementation": "1.0",
  2099. "psr/http-message-implementation": "1.0"
  2100. },
  2101. "require-dev": {
  2102. "bamarni/composer-bin-plugin": "^1.8.2",
  2103. "http-interop/http-factory-tests": "^0.9",
  2104. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2105. },
  2106. "suggest": {
  2107. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2108. },
  2109. "type": "library",
  2110. "extra": {
  2111. "bamarni-bin": {
  2112. "bin-links": true,
  2113. "forward-command": false
  2114. }
  2115. },
  2116. "autoload": {
  2117. "psr-4": {
  2118. "GuzzleHttp\\Psr7\\": "src/"
  2119. }
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "MIT"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Graham Campbell",
  2128. "email": "hello@gjcampbell.co.uk",
  2129. "homepage": "https://github.com/GrahamCampbell"
  2130. },
  2131. {
  2132. "name": "Michael Dowling",
  2133. "email": "mtdowling@gmail.com",
  2134. "homepage": "https://github.com/mtdowling"
  2135. },
  2136. {
  2137. "name": "George Mponos",
  2138. "email": "gmponos@gmail.com",
  2139. "homepage": "https://github.com/gmponos"
  2140. },
  2141. {
  2142. "name": "Tobias Nyholm",
  2143. "email": "tobias.nyholm@gmail.com",
  2144. "homepage": "https://github.com/Nyholm"
  2145. },
  2146. {
  2147. "name": "Márk Sági-Kazár",
  2148. "email": "mark.sagikazar@gmail.com",
  2149. "homepage": "https://github.com/sagikazarmark"
  2150. },
  2151. {
  2152. "name": "Tobias Schultze",
  2153. "email": "webmaster@tubo-world.de",
  2154. "homepage": "https://github.com/Tobion"
  2155. },
  2156. {
  2157. "name": "Márk Sági-Kazár",
  2158. "email": "mark.sagikazar@gmail.com",
  2159. "homepage": "https://sagikazarmark.hu"
  2160. }
  2161. ],
  2162. "description": "PSR-7 message implementation that also provides common utility methods",
  2163. "keywords": [
  2164. "http",
  2165. "message",
  2166. "psr-7",
  2167. "request",
  2168. "response",
  2169. "stream",
  2170. "uri",
  2171. "url"
  2172. ],
  2173. "support": {
  2174. "issues": "https://github.com/guzzle/psr7/issues",
  2175. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2176. },
  2177. "funding": [
  2178. {
  2179. "url": "https://github.com/GrahamCampbell",
  2180. "type": "github"
  2181. },
  2182. {
  2183. "url": "https://github.com/Nyholm",
  2184. "type": "github"
  2185. },
  2186. {
  2187. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2188. "type": "tidelift"
  2189. }
  2190. ],
  2191. "time": "2023-12-03T20:05:35+00:00"
  2192. },
  2193. {
  2194. "name": "jaeger/g-http",
  2195. "version": "V1.7.2",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/jae-jae/GHttp.git",
  2199. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2204. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "cache/filesystem-adapter": "^1",
  2209. "guzzlehttp/guzzle": "^6.0 | ^7.0"
  2210. },
  2211. "type": "library",
  2212. "autoload": {
  2213. "psr-4": {
  2214. "Jaeger\\": "src"
  2215. }
  2216. },
  2217. "notification-url": "https://packagist.org/downloads/",
  2218. "license": [
  2219. "MIT"
  2220. ],
  2221. "authors": [
  2222. {
  2223. "name": "Jaeger",
  2224. "email": "JaegerCode@gmail.com"
  2225. }
  2226. ],
  2227. "description": "Simple Http client base on GuzzleHttp",
  2228. "support": {
  2229. "issues": "https://github.com/jae-jae/GHttp/issues",
  2230. "source": "https://github.com/jae-jae/GHttp/tree/V1.7.2"
  2231. },
  2232. "time": "2021-08-08T04:59:44+00:00"
  2233. },
  2234. {
  2235. "name": "jaeger/phpquery-single",
  2236. "version": "1.1.1",
  2237. "source": {
  2238. "type": "git",
  2239. "url": "https://github.com/jae-jae/phpQuery-single.git",
  2240. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  2241. },
  2242. "dist": {
  2243. "type": "zip",
  2244. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  2245. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  2246. "shasum": ""
  2247. },
  2248. "require": {
  2249. "php": ">=5.3.0"
  2250. },
  2251. "type": "library",
  2252. "autoload": {
  2253. "classmap": [
  2254. "phpQuery.php"
  2255. ]
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "MIT"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "Tobiasz Cudnik",
  2264. "email": "tobiasz.cudnik@gmail.com",
  2265. "homepage": "https://github.com/TobiaszCudnik",
  2266. "role": "Developer"
  2267. },
  2268. {
  2269. "name": "Jaeger",
  2270. "role": "Packager"
  2271. }
  2272. ],
  2273. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  2274. "homepage": "http://code.google.com/p/phpquery/",
  2275. "support": {
  2276. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  2277. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  2278. },
  2279. "time": "2022-03-26T15:01:16+00:00"
  2280. },
  2281. {
  2282. "name": "jaeger/querylist",
  2283. "version": "V4.2.8",
  2284. "source": {
  2285. "type": "git",
  2286. "url": "https://github.com/jae-jae/QueryList.git",
  2287. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4"
  2288. },
  2289. "dist": {
  2290. "type": "zip",
  2291. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2292. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2293. "shasum": ""
  2294. },
  2295. "require": {
  2296. "ext-dom": "*",
  2297. "jaeger/g-http": "^1.1",
  2298. "jaeger/phpquery-single": "^1",
  2299. "php": ">=7.1",
  2300. "tightenco/collect": ">5.0"
  2301. },
  2302. "require-dev": {
  2303. "phpunit/phpunit": "^8.5",
  2304. "symfony/var-dumper": "^3.3"
  2305. },
  2306. "type": "library",
  2307. "autoload": {
  2308. "psr-4": {
  2309. "QL\\": "src"
  2310. }
  2311. },
  2312. "notification-url": "https://packagist.org/downloads/",
  2313. "license": [
  2314. "MIT"
  2315. ],
  2316. "authors": [
  2317. {
  2318. "name": "Jaeger",
  2319. "email": "JaegerCode@gmail.com"
  2320. }
  2321. ],
  2322. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  2323. "homepage": "http://querylist.cc",
  2324. "keywords": [
  2325. "QueryList",
  2326. "phpQuery",
  2327. "spider"
  2328. ],
  2329. "support": {
  2330. "issues": "https://github.com/jae-jae/QueryList/issues",
  2331. "source": "https://github.com/jae-jae/QueryList/tree/V4.2.8"
  2332. },
  2333. "funding": [
  2334. {
  2335. "url": "https://opencollective.com/querylist",
  2336. "type": "open_collective"
  2337. }
  2338. ],
  2339. "time": "2021-07-05T06:07:58+00:00"
  2340. },
  2341. {
  2342. "name": "laravel/framework",
  2343. "version": "v8.83.27",
  2344. "source": {
  2345. "type": "git",
  2346. "url": "https://github.com/laravel/framework.git",
  2347. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2348. },
  2349. "dist": {
  2350. "type": "zip",
  2351. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2352. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2353. "shasum": ""
  2354. },
  2355. "require": {
  2356. "doctrine/inflector": "^1.4|^2.0",
  2357. "dragonmantank/cron-expression": "^3.0.2",
  2358. "egulias/email-validator": "^2.1.10",
  2359. "ext-json": "*",
  2360. "ext-mbstring": "*",
  2361. "ext-openssl": "*",
  2362. "laravel/serializable-closure": "^1.0",
  2363. "league/commonmark": "^1.3|^2.0.2",
  2364. "league/flysystem": "^1.1",
  2365. "monolog/monolog": "^2.0",
  2366. "nesbot/carbon": "^2.53.1",
  2367. "opis/closure": "^3.6",
  2368. "php": "^7.3|^8.0",
  2369. "psr/container": "^1.0",
  2370. "psr/log": "^1.0|^2.0",
  2371. "psr/simple-cache": "^1.0",
  2372. "ramsey/uuid": "^4.2.2",
  2373. "swiftmailer/swiftmailer": "^6.3",
  2374. "symfony/console": "^5.4",
  2375. "symfony/error-handler": "^5.4",
  2376. "symfony/finder": "^5.4",
  2377. "symfony/http-foundation": "^5.4",
  2378. "symfony/http-kernel": "^5.4",
  2379. "symfony/mime": "^5.4",
  2380. "symfony/process": "^5.4",
  2381. "symfony/routing": "^5.4",
  2382. "symfony/var-dumper": "^5.4",
  2383. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2384. "vlucas/phpdotenv": "^5.4.1",
  2385. "voku/portable-ascii": "^1.6.1"
  2386. },
  2387. "conflict": {
  2388. "tightenco/collect": "<5.5.33"
  2389. },
  2390. "provide": {
  2391. "psr/container-implementation": "1.0",
  2392. "psr/simple-cache-implementation": "1.0"
  2393. },
  2394. "replace": {
  2395. "illuminate/auth": "self.version",
  2396. "illuminate/broadcasting": "self.version",
  2397. "illuminate/bus": "self.version",
  2398. "illuminate/cache": "self.version",
  2399. "illuminate/collections": "self.version",
  2400. "illuminate/config": "self.version",
  2401. "illuminate/console": "self.version",
  2402. "illuminate/container": "self.version",
  2403. "illuminate/contracts": "self.version",
  2404. "illuminate/cookie": "self.version",
  2405. "illuminate/database": "self.version",
  2406. "illuminate/encryption": "self.version",
  2407. "illuminate/events": "self.version",
  2408. "illuminate/filesystem": "self.version",
  2409. "illuminate/hashing": "self.version",
  2410. "illuminate/http": "self.version",
  2411. "illuminate/log": "self.version",
  2412. "illuminate/macroable": "self.version",
  2413. "illuminate/mail": "self.version",
  2414. "illuminate/notifications": "self.version",
  2415. "illuminate/pagination": "self.version",
  2416. "illuminate/pipeline": "self.version",
  2417. "illuminate/queue": "self.version",
  2418. "illuminate/redis": "self.version",
  2419. "illuminate/routing": "self.version",
  2420. "illuminate/session": "self.version",
  2421. "illuminate/support": "self.version",
  2422. "illuminate/testing": "self.version",
  2423. "illuminate/translation": "self.version",
  2424. "illuminate/validation": "self.version",
  2425. "illuminate/view": "self.version"
  2426. },
  2427. "require-dev": {
  2428. "aws/aws-sdk-php": "^3.198.1",
  2429. "doctrine/dbal": "^2.13.3|^3.1.4",
  2430. "filp/whoops": "^2.14.3",
  2431. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2432. "league/flysystem-cached-adapter": "^1.0",
  2433. "mockery/mockery": "^1.4.4",
  2434. "orchestra/testbench-core": "^6.27",
  2435. "pda/pheanstalk": "^4.0",
  2436. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2437. "predis/predis": "^1.1.9",
  2438. "symfony/cache": "^5.4"
  2439. },
  2440. "suggest": {
  2441. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2442. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2443. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2444. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2445. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2446. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2447. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2448. "ext-memcached": "Required to use the memcache cache driver.",
  2449. "ext-pcntl": "Required to use all features of the queue worker.",
  2450. "ext-posix": "Required to use all features of the queue worker.",
  2451. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2452. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2453. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2454. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2455. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2456. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2457. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2458. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2459. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2460. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2461. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2462. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2463. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2464. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2465. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2466. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2467. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2468. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2469. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2470. },
  2471. "type": "library",
  2472. "extra": {
  2473. "branch-alias": {
  2474. "dev-master": "8.x-dev"
  2475. }
  2476. },
  2477. "autoload": {
  2478. "files": [
  2479. "src/Illuminate/Collections/helpers.php",
  2480. "src/Illuminate/Events/functions.php",
  2481. "src/Illuminate/Foundation/helpers.php",
  2482. "src/Illuminate/Support/helpers.php"
  2483. ],
  2484. "psr-4": {
  2485. "Illuminate\\": "src/Illuminate/",
  2486. "Illuminate\\Support\\": [
  2487. "src/Illuminate/Macroable/",
  2488. "src/Illuminate/Collections/"
  2489. ]
  2490. }
  2491. },
  2492. "notification-url": "https://packagist.org/downloads/",
  2493. "license": [
  2494. "MIT"
  2495. ],
  2496. "authors": [
  2497. {
  2498. "name": "Taylor Otwell",
  2499. "email": "taylor@laravel.com"
  2500. }
  2501. ],
  2502. "description": "The Laravel Framework.",
  2503. "homepage": "https://laravel.com",
  2504. "keywords": [
  2505. "framework",
  2506. "laravel"
  2507. ],
  2508. "support": {
  2509. "issues": "https://github.com/laravel/framework/issues",
  2510. "source": "https://github.com/laravel/framework"
  2511. },
  2512. "time": "2022-12-08T15:28:55+00:00"
  2513. },
  2514. {
  2515. "name": "laravel/serializable-closure",
  2516. "version": "v1.3.3",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/laravel/serializable-closure.git",
  2520. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2525. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2526. "shasum": ""
  2527. },
  2528. "require": {
  2529. "php": "^7.3|^8.0"
  2530. },
  2531. "require-dev": {
  2532. "nesbot/carbon": "^2.61",
  2533. "pestphp/pest": "^1.21.3",
  2534. "phpstan/phpstan": "^1.8.2",
  2535. "symfony/var-dumper": "^5.4.11"
  2536. },
  2537. "type": "library",
  2538. "extra": {
  2539. "branch-alias": {
  2540. "dev-master": "1.x-dev"
  2541. }
  2542. },
  2543. "autoload": {
  2544. "psr-4": {
  2545. "Laravel\\SerializableClosure\\": "src/"
  2546. }
  2547. },
  2548. "notification-url": "https://packagist.org/downloads/",
  2549. "license": [
  2550. "MIT"
  2551. ],
  2552. "authors": [
  2553. {
  2554. "name": "Taylor Otwell",
  2555. "email": "taylor@laravel.com"
  2556. },
  2557. {
  2558. "name": "Nuno Maduro",
  2559. "email": "nuno@laravel.com"
  2560. }
  2561. ],
  2562. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2563. "keywords": [
  2564. "closure",
  2565. "laravel",
  2566. "serializable"
  2567. ],
  2568. "support": {
  2569. "issues": "https://github.com/laravel/serializable-closure/issues",
  2570. "source": "https://github.com/laravel/serializable-closure"
  2571. },
  2572. "time": "2023-11-08T14:08:06+00:00"
  2573. },
  2574. {
  2575. "name": "laravel/socialite",
  2576. "version": "v5.11.0",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/laravel/socialite.git",
  2580. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/laravel/socialite/zipball/4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2585. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2586. "shasum": ""
  2587. },
  2588. "require": {
  2589. "ext-json": "*",
  2590. "guzzlehttp/guzzle": "^6.0|^7.0",
  2591. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2592. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2593. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2594. "league/oauth1-client": "^1.10.1",
  2595. "php": "^7.2|^8.0"
  2596. },
  2597. "require-dev": {
  2598. "mockery/mockery": "^1.0",
  2599. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2600. "phpstan/phpstan": "^1.10",
  2601. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2602. },
  2603. "type": "library",
  2604. "extra": {
  2605. "branch-alias": {
  2606. "dev-master": "5.x-dev"
  2607. },
  2608. "laravel": {
  2609. "providers": [
  2610. "Laravel\\Socialite\\SocialiteServiceProvider"
  2611. ],
  2612. "aliases": {
  2613. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2614. }
  2615. }
  2616. },
  2617. "autoload": {
  2618. "psr-4": {
  2619. "Laravel\\Socialite\\": "src/"
  2620. }
  2621. },
  2622. "notification-url": "https://packagist.org/downloads/",
  2623. "license": [
  2624. "MIT"
  2625. ],
  2626. "authors": [
  2627. {
  2628. "name": "Taylor Otwell",
  2629. "email": "taylor@laravel.com"
  2630. }
  2631. ],
  2632. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2633. "homepage": "https://laravel.com",
  2634. "keywords": [
  2635. "laravel",
  2636. "oauth"
  2637. ],
  2638. "support": {
  2639. "issues": "https://github.com/laravel/socialite/issues",
  2640. "source": "https://github.com/laravel/socialite"
  2641. },
  2642. "time": "2023-12-02T18:22:36+00:00"
  2643. },
  2644. {
  2645. "name": "laravel/tinker",
  2646. "version": "v2.8.2",
  2647. "source": {
  2648. "type": "git",
  2649. "url": "https://github.com/laravel/tinker.git",
  2650. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  2651. },
  2652. "dist": {
  2653. "type": "zip",
  2654. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2655. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  2656. "shasum": ""
  2657. },
  2658. "require": {
  2659. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2660. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2661. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  2662. "php": "^7.2.5|^8.0",
  2663. "psy/psysh": "^0.10.4|^0.11.1",
  2664. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  2665. },
  2666. "require-dev": {
  2667. "mockery/mockery": "~1.3.3|^1.4.2",
  2668. "phpstan/phpstan": "^1.10",
  2669. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2670. },
  2671. "suggest": {
  2672. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  2673. },
  2674. "type": "library",
  2675. "extra": {
  2676. "branch-alias": {
  2677. "dev-master": "2.x-dev"
  2678. },
  2679. "laravel": {
  2680. "providers": [
  2681. "Laravel\\Tinker\\TinkerServiceProvider"
  2682. ]
  2683. }
  2684. },
  2685. "autoload": {
  2686. "psr-4": {
  2687. "Laravel\\Tinker\\": "src/"
  2688. }
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "Taylor Otwell",
  2697. "email": "taylor@laravel.com"
  2698. }
  2699. ],
  2700. "description": "Powerful REPL for the Laravel framework.",
  2701. "keywords": [
  2702. "REPL",
  2703. "Tinker",
  2704. "laravel",
  2705. "psysh"
  2706. ],
  2707. "support": {
  2708. "issues": "https://github.com/laravel/tinker/issues",
  2709. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  2710. },
  2711. "time": "2023-08-15T14:27:00+00:00"
  2712. },
  2713. {
  2714. "name": "league/commonmark",
  2715. "version": "2.4.1",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/thephpleague/commonmark.git",
  2719. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2724. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2725. "shasum": ""
  2726. },
  2727. "require": {
  2728. "ext-mbstring": "*",
  2729. "league/config": "^1.1.1",
  2730. "php": "^7.4 || ^8.0",
  2731. "psr/event-dispatcher": "^1.0",
  2732. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2733. "symfony/polyfill-php80": "^1.16"
  2734. },
  2735. "require-dev": {
  2736. "cebe/markdown": "^1.0",
  2737. "commonmark/cmark": "0.30.0",
  2738. "commonmark/commonmark.js": "0.30.0",
  2739. "composer/package-versions-deprecated": "^1.8",
  2740. "embed/embed": "^4.4",
  2741. "erusev/parsedown": "^1.0",
  2742. "ext-json": "*",
  2743. "github/gfm": "0.29.0",
  2744. "michelf/php-markdown": "^1.4 || ^2.0",
  2745. "nyholm/psr7": "^1.5",
  2746. "phpstan/phpstan": "^1.8.2",
  2747. "phpunit/phpunit": "^9.5.21",
  2748. "scrutinizer/ocular": "^1.8.1",
  2749. "symfony/finder": "^5.3 | ^6.0",
  2750. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2751. "unleashedtech/php-coding-standard": "^3.1.1",
  2752. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2753. },
  2754. "suggest": {
  2755. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2756. },
  2757. "type": "library",
  2758. "extra": {
  2759. "branch-alias": {
  2760. "dev-main": "2.5-dev"
  2761. }
  2762. },
  2763. "autoload": {
  2764. "psr-4": {
  2765. "League\\CommonMark\\": "src"
  2766. }
  2767. },
  2768. "notification-url": "https://packagist.org/downloads/",
  2769. "license": [
  2770. "BSD-3-Clause"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "Colin O'Dell",
  2775. "email": "colinodell@gmail.com",
  2776. "homepage": "https://www.colinodell.com",
  2777. "role": "Lead Developer"
  2778. }
  2779. ],
  2780. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2781. "homepage": "https://commonmark.thephpleague.com",
  2782. "keywords": [
  2783. "commonmark",
  2784. "flavored",
  2785. "gfm",
  2786. "github",
  2787. "github-flavored",
  2788. "markdown",
  2789. "md",
  2790. "parser"
  2791. ],
  2792. "support": {
  2793. "docs": "https://commonmark.thephpleague.com/",
  2794. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2795. "issues": "https://github.com/thephpleague/commonmark/issues",
  2796. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2797. "source": "https://github.com/thephpleague/commonmark"
  2798. },
  2799. "funding": [
  2800. {
  2801. "url": "https://www.colinodell.com/sponsor",
  2802. "type": "custom"
  2803. },
  2804. {
  2805. "url": "https://www.paypal.me/colinpodell/10.00",
  2806. "type": "custom"
  2807. },
  2808. {
  2809. "url": "https://github.com/colinodell",
  2810. "type": "github"
  2811. },
  2812. {
  2813. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2814. "type": "tidelift"
  2815. }
  2816. ],
  2817. "time": "2023-08-30T16:55:00+00:00"
  2818. },
  2819. {
  2820. "name": "league/config",
  2821. "version": "v1.2.0",
  2822. "source": {
  2823. "type": "git",
  2824. "url": "https://github.com/thephpleague/config.git",
  2825. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2826. },
  2827. "dist": {
  2828. "type": "zip",
  2829. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2830. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2831. "shasum": ""
  2832. },
  2833. "require": {
  2834. "dflydev/dot-access-data": "^3.0.1",
  2835. "nette/schema": "^1.2",
  2836. "php": "^7.4 || ^8.0"
  2837. },
  2838. "require-dev": {
  2839. "phpstan/phpstan": "^1.8.2",
  2840. "phpunit/phpunit": "^9.5.5",
  2841. "scrutinizer/ocular": "^1.8.1",
  2842. "unleashedtech/php-coding-standard": "^3.1",
  2843. "vimeo/psalm": "^4.7.3"
  2844. },
  2845. "type": "library",
  2846. "extra": {
  2847. "branch-alias": {
  2848. "dev-main": "1.2-dev"
  2849. }
  2850. },
  2851. "autoload": {
  2852. "psr-4": {
  2853. "League\\Config\\": "src"
  2854. }
  2855. },
  2856. "notification-url": "https://packagist.org/downloads/",
  2857. "license": [
  2858. "BSD-3-Clause"
  2859. ],
  2860. "authors": [
  2861. {
  2862. "name": "Colin O'Dell",
  2863. "email": "colinodell@gmail.com",
  2864. "homepage": "https://www.colinodell.com",
  2865. "role": "Lead Developer"
  2866. }
  2867. ],
  2868. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2869. "homepage": "https://config.thephpleague.com",
  2870. "keywords": [
  2871. "array",
  2872. "config",
  2873. "configuration",
  2874. "dot",
  2875. "dot-access",
  2876. "nested",
  2877. "schema"
  2878. ],
  2879. "support": {
  2880. "docs": "https://config.thephpleague.com/",
  2881. "issues": "https://github.com/thephpleague/config/issues",
  2882. "rss": "https://github.com/thephpleague/config/releases.atom",
  2883. "source": "https://github.com/thephpleague/config"
  2884. },
  2885. "funding": [
  2886. {
  2887. "url": "https://www.colinodell.com/sponsor",
  2888. "type": "custom"
  2889. },
  2890. {
  2891. "url": "https://www.paypal.me/colinpodell/10.00",
  2892. "type": "custom"
  2893. },
  2894. {
  2895. "url": "https://github.com/colinodell",
  2896. "type": "github"
  2897. }
  2898. ],
  2899. "time": "2022-12-11T20:36:23+00:00"
  2900. },
  2901. {
  2902. "name": "league/flysystem",
  2903. "version": "1.1.10",
  2904. "source": {
  2905. "type": "git",
  2906. "url": "https://github.com/thephpleague/flysystem.git",
  2907. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2908. },
  2909. "dist": {
  2910. "type": "zip",
  2911. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2912. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2913. "shasum": ""
  2914. },
  2915. "require": {
  2916. "ext-fileinfo": "*",
  2917. "league/mime-type-detection": "^1.3",
  2918. "php": "^7.2.5 || ^8.0"
  2919. },
  2920. "conflict": {
  2921. "league/flysystem-sftp": "<1.0.6"
  2922. },
  2923. "require-dev": {
  2924. "phpspec/prophecy": "^1.11.1",
  2925. "phpunit/phpunit": "^8.5.8"
  2926. },
  2927. "suggest": {
  2928. "ext-ftp": "Allows you to use FTP server storage",
  2929. "ext-openssl": "Allows you to use FTPS server storage",
  2930. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2931. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2932. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2933. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2934. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2935. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2936. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2937. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2938. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2939. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2940. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2941. },
  2942. "type": "library",
  2943. "extra": {
  2944. "branch-alias": {
  2945. "dev-master": "1.1-dev"
  2946. }
  2947. },
  2948. "autoload": {
  2949. "psr-4": {
  2950. "League\\Flysystem\\": "src/"
  2951. }
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "Frank de Jonge",
  2960. "email": "info@frenky.net"
  2961. }
  2962. ],
  2963. "description": "Filesystem abstraction: Many filesystems, one API.",
  2964. "keywords": [
  2965. "Cloud Files",
  2966. "WebDAV",
  2967. "abstraction",
  2968. "aws",
  2969. "cloud",
  2970. "copy.com",
  2971. "dropbox",
  2972. "file systems",
  2973. "files",
  2974. "filesystem",
  2975. "filesystems",
  2976. "ftp",
  2977. "rackspace",
  2978. "remote",
  2979. "s3",
  2980. "sftp",
  2981. "storage"
  2982. ],
  2983. "support": {
  2984. "issues": "https://github.com/thephpleague/flysystem/issues",
  2985. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2986. },
  2987. "funding": [
  2988. {
  2989. "url": "https://offset.earth/frankdejonge",
  2990. "type": "other"
  2991. }
  2992. ],
  2993. "time": "2022-10-04T09:16:37+00:00"
  2994. },
  2995. {
  2996. "name": "league/mime-type-detection",
  2997. "version": "1.14.0",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3001. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
  3006. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "ext-fileinfo": "*",
  3011. "php": "^7.4 || ^8.0"
  3012. },
  3013. "require-dev": {
  3014. "friendsofphp/php-cs-fixer": "^3.2",
  3015. "phpstan/phpstan": "^0.12.68",
  3016. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3017. },
  3018. "type": "library",
  3019. "autoload": {
  3020. "psr-4": {
  3021. "League\\MimeTypeDetection\\": "src"
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Frank de Jonge",
  3031. "email": "info@frankdejonge.nl"
  3032. }
  3033. ],
  3034. "description": "Mime-type detection for Flysystem",
  3035. "support": {
  3036. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3037. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
  3038. },
  3039. "funding": [
  3040. {
  3041. "url": "https://github.com/frankdejonge",
  3042. "type": "github"
  3043. },
  3044. {
  3045. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3046. "type": "tidelift"
  3047. }
  3048. ],
  3049. "time": "2023-10-17T14:13:20+00:00"
  3050. },
  3051. {
  3052. "name": "league/oauth1-client",
  3053. "version": "v1.10.1",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/thephpleague/oauth1-client.git",
  3057. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3062. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3063. "shasum": ""
  3064. },
  3065. "require": {
  3066. "ext-json": "*",
  3067. "ext-openssl": "*",
  3068. "guzzlehttp/guzzle": "^6.0|^7.0",
  3069. "guzzlehttp/psr7": "^1.7|^2.0",
  3070. "php": ">=7.1||>=8.0"
  3071. },
  3072. "require-dev": {
  3073. "ext-simplexml": "*",
  3074. "friendsofphp/php-cs-fixer": "^2.17",
  3075. "mockery/mockery": "^1.3.3",
  3076. "phpstan/phpstan": "^0.12.42",
  3077. "phpunit/phpunit": "^7.5||9.5"
  3078. },
  3079. "suggest": {
  3080. "ext-simplexml": "For decoding XML-based responses."
  3081. },
  3082. "type": "library",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-master": "1.0-dev",
  3086. "dev-develop": "2.0-dev"
  3087. }
  3088. },
  3089. "autoload": {
  3090. "psr-4": {
  3091. "League\\OAuth1\\Client\\": "src/"
  3092. }
  3093. },
  3094. "notification-url": "https://packagist.org/downloads/",
  3095. "license": [
  3096. "MIT"
  3097. ],
  3098. "authors": [
  3099. {
  3100. "name": "Ben Corlett",
  3101. "email": "bencorlett@me.com",
  3102. "homepage": "http://www.webcomm.com.au",
  3103. "role": "Developer"
  3104. }
  3105. ],
  3106. "description": "OAuth 1.0 Client Library",
  3107. "keywords": [
  3108. "Authentication",
  3109. "SSO",
  3110. "authorization",
  3111. "bitbucket",
  3112. "identity",
  3113. "idp",
  3114. "oauth",
  3115. "oauth1",
  3116. "single sign on",
  3117. "trello",
  3118. "tumblr",
  3119. "twitter"
  3120. ],
  3121. "support": {
  3122. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3123. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3124. },
  3125. "time": "2022-04-15T14:02:14+00:00"
  3126. },
  3127. {
  3128. "name": "lizhichao/one-sm",
  3129. "version": "1.10",
  3130. "source": {
  3131. "type": "git",
  3132. "url": "https://github.com/lizhichao/sm.git",
  3133. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  3134. },
  3135. "dist": {
  3136. "type": "zip",
  3137. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  3138. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  3139. "shasum": ""
  3140. },
  3141. "require": {
  3142. "php": ">=5.6"
  3143. },
  3144. "type": "library",
  3145. "autoload": {
  3146. "psr-4": {
  3147. "OneSm\\": "src/"
  3148. }
  3149. },
  3150. "notification-url": "https://packagist.org/downloads/",
  3151. "license": [
  3152. "Apache-2.0"
  3153. ],
  3154. "authors": [
  3155. {
  3156. "name": "tanszhe",
  3157. "email": "1018595261@qq.com"
  3158. }
  3159. ],
  3160. "description": "国密sm3",
  3161. "keywords": [
  3162. "php",
  3163. "sm3"
  3164. ],
  3165. "support": {
  3166. "issues": "https://github.com/lizhichao/sm/issues",
  3167. "source": "https://github.com/lizhichao/sm/tree/1.10"
  3168. },
  3169. "funding": [
  3170. {
  3171. "url": "https://www.vicsdf.com/img/w.jpg",
  3172. "type": "custom"
  3173. },
  3174. {
  3175. "url": "https://www.vicsdf.com/img/z.jpg",
  3176. "type": "custom"
  3177. }
  3178. ],
  3179. "time": "2021-05-26T06:19:22+00:00"
  3180. },
  3181. {
  3182. "name": "maatwebsite/excel",
  3183. "version": "3.1.50",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3187. "reference": "d79e66391aa306983bb7e234503f5605c3e33348"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/d79e66391aa306983bb7e234503f5605c3e33348",
  3192. "reference": "d79e66391aa306983bb7e234503f5605c3e33348",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "composer/semver": "^3.3",
  3197. "ext-json": "*",
  3198. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0",
  3199. "php": "^7.0||^8.0",
  3200. "phpoffice/phpspreadsheet": "^1.18",
  3201. "psr/simple-cache": "^1.0||^2.0||^3.0"
  3202. },
  3203. "require-dev": {
  3204. "orchestra/testbench": "^6.0||^7.0||^8.0",
  3205. "predis/predis": "^1.1"
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "laravel": {
  3210. "providers": [
  3211. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3212. ],
  3213. "aliases": {
  3214. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3215. }
  3216. }
  3217. },
  3218. "autoload": {
  3219. "psr-4": {
  3220. "Maatwebsite\\Excel\\": "src/"
  3221. }
  3222. },
  3223. "notification-url": "https://packagist.org/downloads/",
  3224. "license": [
  3225. "MIT"
  3226. ],
  3227. "authors": [
  3228. {
  3229. "name": "Patrick Brouwers",
  3230. "email": "patrick@spartner.nl"
  3231. }
  3232. ],
  3233. "description": "Supercharged Excel exports and imports in Laravel",
  3234. "keywords": [
  3235. "PHPExcel",
  3236. "batch",
  3237. "csv",
  3238. "excel",
  3239. "export",
  3240. "import",
  3241. "laravel",
  3242. "php",
  3243. "phpspreadsheet"
  3244. ],
  3245. "support": {
  3246. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3247. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.50"
  3248. },
  3249. "funding": [
  3250. {
  3251. "url": "https://laravel-excel.com/commercial-support",
  3252. "type": "custom"
  3253. },
  3254. {
  3255. "url": "https://github.com/patrickbrouwers",
  3256. "type": "github"
  3257. }
  3258. ],
  3259. "time": "2023-11-06T11:29:48+00:00"
  3260. },
  3261. {
  3262. "name": "maennchen/zipstream-php",
  3263. "version": "2.4.0",
  3264. "source": {
  3265. "type": "git",
  3266. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3267. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  3268. },
  3269. "dist": {
  3270. "type": "zip",
  3271. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3272. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3273. "shasum": ""
  3274. },
  3275. "require": {
  3276. "ext-mbstring": "*",
  3277. "myclabs/php-enum": "^1.5",
  3278. "php": "^8.0",
  3279. "psr/http-message": "^1.0"
  3280. },
  3281. "require-dev": {
  3282. "ext-zip": "*",
  3283. "friendsofphp/php-cs-fixer": "^3.9",
  3284. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3285. "mikey179/vfsstream": "^1.6",
  3286. "php-coveralls/php-coveralls": "^2.4",
  3287. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3288. "vimeo/psalm": "^5.0"
  3289. },
  3290. "type": "library",
  3291. "autoload": {
  3292. "psr-4": {
  3293. "ZipStream\\": "src/"
  3294. }
  3295. },
  3296. "notification-url": "https://packagist.org/downloads/",
  3297. "license": [
  3298. "MIT"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Paul Duncan",
  3303. "email": "pabs@pablotron.org"
  3304. },
  3305. {
  3306. "name": "Jonatan Männchen",
  3307. "email": "jonatan@maennchen.ch"
  3308. },
  3309. {
  3310. "name": "Jesse Donat",
  3311. "email": "donatj@gmail.com"
  3312. },
  3313. {
  3314. "name": "András Kolesár",
  3315. "email": "kolesar@kolesar.hu"
  3316. }
  3317. ],
  3318. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3319. "keywords": [
  3320. "stream",
  3321. "zip"
  3322. ],
  3323. "support": {
  3324. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3325. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  3326. },
  3327. "funding": [
  3328. {
  3329. "url": "https://github.com/maennchen",
  3330. "type": "github"
  3331. },
  3332. {
  3333. "url": "https://opencollective.com/zipstream",
  3334. "type": "open_collective"
  3335. }
  3336. ],
  3337. "time": "2022-12-08T12:29:14+00:00"
  3338. },
  3339. {
  3340. "name": "markbaker/complex",
  3341. "version": "3.0.2",
  3342. "source": {
  3343. "type": "git",
  3344. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3345. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3346. },
  3347. "dist": {
  3348. "type": "zip",
  3349. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3350. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3351. "shasum": ""
  3352. },
  3353. "require": {
  3354. "php": "^7.2 || ^8.0"
  3355. },
  3356. "require-dev": {
  3357. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3358. "phpcompatibility/php-compatibility": "^9.3",
  3359. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3360. "squizlabs/php_codesniffer": "^3.7"
  3361. },
  3362. "type": "library",
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Complex\\": "classes/src/"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Mark Baker",
  3375. "email": "mark@lange.demon.co.uk"
  3376. }
  3377. ],
  3378. "description": "PHP Class for working with complex numbers",
  3379. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3380. "keywords": [
  3381. "complex",
  3382. "mathematics"
  3383. ],
  3384. "support": {
  3385. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3386. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3387. },
  3388. "time": "2022-12-06T16:21:08+00:00"
  3389. },
  3390. {
  3391. "name": "markbaker/matrix",
  3392. "version": "3.0.1",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3396. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3401. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3402. "shasum": ""
  3403. },
  3404. "require": {
  3405. "php": "^7.1 || ^8.0"
  3406. },
  3407. "require-dev": {
  3408. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3409. "phpcompatibility/php-compatibility": "^9.3",
  3410. "phpdocumentor/phpdocumentor": "2.*",
  3411. "phploc/phploc": "^4.0",
  3412. "phpmd/phpmd": "2.*",
  3413. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3414. "sebastian/phpcpd": "^4.0",
  3415. "squizlabs/php_codesniffer": "^3.7"
  3416. },
  3417. "type": "library",
  3418. "autoload": {
  3419. "psr-4": {
  3420. "Matrix\\": "classes/src/"
  3421. }
  3422. },
  3423. "notification-url": "https://packagist.org/downloads/",
  3424. "license": [
  3425. "MIT"
  3426. ],
  3427. "authors": [
  3428. {
  3429. "name": "Mark Baker",
  3430. "email": "mark@demon-angel.eu"
  3431. }
  3432. ],
  3433. "description": "PHP Class for working with matrices",
  3434. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3435. "keywords": [
  3436. "mathematics",
  3437. "matrix",
  3438. "vector"
  3439. ],
  3440. "support": {
  3441. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3442. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3443. },
  3444. "time": "2022-12-02T22:17:43+00:00"
  3445. },
  3446. {
  3447. "name": "monolog/monolog",
  3448. "version": "2.9.2",
  3449. "source": {
  3450. "type": "git",
  3451. "url": "https://github.com/Seldaek/monolog.git",
  3452. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3453. },
  3454. "dist": {
  3455. "type": "zip",
  3456. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3457. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3458. "shasum": ""
  3459. },
  3460. "require": {
  3461. "php": ">=7.2",
  3462. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3463. },
  3464. "provide": {
  3465. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3466. },
  3467. "require-dev": {
  3468. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3469. "doctrine/couchdb": "~1.0@dev",
  3470. "elasticsearch/elasticsearch": "^7 || ^8",
  3471. "ext-json": "*",
  3472. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3473. "guzzlehttp/guzzle": "^7.4",
  3474. "guzzlehttp/psr7": "^2.2",
  3475. "mongodb/mongodb": "^1.8",
  3476. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3477. "phpspec/prophecy": "^1.15",
  3478. "phpstan/phpstan": "^0.12.91",
  3479. "phpunit/phpunit": "^8.5.14",
  3480. "predis/predis": "^1.1 || ^2.0",
  3481. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3482. "ruflin/elastica": "^7",
  3483. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3484. "symfony/mailer": "^5.4 || ^6",
  3485. "symfony/mime": "^5.4 || ^6"
  3486. },
  3487. "suggest": {
  3488. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3489. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3490. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3491. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3492. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3493. "ext-mbstring": "Allow to work properly with unicode symbols",
  3494. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3495. "ext-openssl": "Required to send log messages using SSL",
  3496. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3497. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3498. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3499. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3500. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3501. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3502. },
  3503. "type": "library",
  3504. "extra": {
  3505. "branch-alias": {
  3506. "dev-main": "2.x-dev"
  3507. }
  3508. },
  3509. "autoload": {
  3510. "psr-4": {
  3511. "Monolog\\": "src/Monolog"
  3512. }
  3513. },
  3514. "notification-url": "https://packagist.org/downloads/",
  3515. "license": [
  3516. "MIT"
  3517. ],
  3518. "authors": [
  3519. {
  3520. "name": "Jordi Boggiano",
  3521. "email": "j.boggiano@seld.be",
  3522. "homepage": "https://seld.be"
  3523. }
  3524. ],
  3525. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3526. "homepage": "https://github.com/Seldaek/monolog",
  3527. "keywords": [
  3528. "log",
  3529. "logging",
  3530. "psr-3"
  3531. ],
  3532. "support": {
  3533. "issues": "https://github.com/Seldaek/monolog/issues",
  3534. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3535. },
  3536. "funding": [
  3537. {
  3538. "url": "https://github.com/Seldaek",
  3539. "type": "github"
  3540. },
  3541. {
  3542. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3543. "type": "tidelift"
  3544. }
  3545. ],
  3546. "time": "2023-10-27T15:25:26+00:00"
  3547. },
  3548. {
  3549. "name": "myclabs/php-enum",
  3550. "version": "1.8.4",
  3551. "source": {
  3552. "type": "git",
  3553. "url": "https://github.com/myclabs/php-enum.git",
  3554. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3555. },
  3556. "dist": {
  3557. "type": "zip",
  3558. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3559. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3560. "shasum": ""
  3561. },
  3562. "require": {
  3563. "ext-json": "*",
  3564. "php": "^7.3 || ^8.0"
  3565. },
  3566. "require-dev": {
  3567. "phpunit/phpunit": "^9.5",
  3568. "squizlabs/php_codesniffer": "1.*",
  3569. "vimeo/psalm": "^4.6.2"
  3570. },
  3571. "type": "library",
  3572. "autoload": {
  3573. "psr-4": {
  3574. "MyCLabs\\Enum\\": "src/"
  3575. },
  3576. "classmap": [
  3577. "stubs/Stringable.php"
  3578. ]
  3579. },
  3580. "notification-url": "https://packagist.org/downloads/",
  3581. "license": [
  3582. "MIT"
  3583. ],
  3584. "authors": [
  3585. {
  3586. "name": "PHP Enum contributors",
  3587. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3588. }
  3589. ],
  3590. "description": "PHP Enum implementation",
  3591. "homepage": "http://github.com/myclabs/php-enum",
  3592. "keywords": [
  3593. "enum"
  3594. ],
  3595. "support": {
  3596. "issues": "https://github.com/myclabs/php-enum/issues",
  3597. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3598. },
  3599. "funding": [
  3600. {
  3601. "url": "https://github.com/mnapoli",
  3602. "type": "github"
  3603. },
  3604. {
  3605. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3606. "type": "tidelift"
  3607. }
  3608. ],
  3609. "time": "2022-08-04T09:53:51+00:00"
  3610. },
  3611. {
  3612. "name": "nesbot/carbon",
  3613. "version": "2.72.1",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/briannesbitt/Carbon.git",
  3617. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3622. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3623. "shasum": ""
  3624. },
  3625. "require": {
  3626. "carbonphp/carbon-doctrine-types": "*",
  3627. "ext-json": "*",
  3628. "php": "^7.1.8 || ^8.0",
  3629. "psr/clock": "^1.0",
  3630. "symfony/polyfill-mbstring": "^1.0",
  3631. "symfony/polyfill-php80": "^1.16",
  3632. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3633. },
  3634. "provide": {
  3635. "psr/clock-implementation": "1.0"
  3636. },
  3637. "require-dev": {
  3638. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3639. "doctrine/orm": "^2.7 || ^3.0",
  3640. "friendsofphp/php-cs-fixer": "^3.0",
  3641. "kylekatarnls/multi-tester": "^2.0",
  3642. "ondrejmirtes/better-reflection": "*",
  3643. "phpmd/phpmd": "^2.9",
  3644. "phpstan/extension-installer": "^1.0",
  3645. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3646. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3647. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3648. "squizlabs/php_codesniffer": "^3.4"
  3649. },
  3650. "bin": [
  3651. "bin/carbon"
  3652. ],
  3653. "type": "library",
  3654. "extra": {
  3655. "branch-alias": {
  3656. "dev-3.x": "3.x-dev",
  3657. "dev-master": "2.x-dev"
  3658. },
  3659. "laravel": {
  3660. "providers": [
  3661. "Carbon\\Laravel\\ServiceProvider"
  3662. ]
  3663. },
  3664. "phpstan": {
  3665. "includes": [
  3666. "extension.neon"
  3667. ]
  3668. }
  3669. },
  3670. "autoload": {
  3671. "psr-4": {
  3672. "Carbon\\": "src/Carbon/"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Brian Nesbitt",
  3682. "email": "brian@nesbot.com",
  3683. "homepage": "https://markido.com"
  3684. },
  3685. {
  3686. "name": "kylekatarnls",
  3687. "homepage": "https://github.com/kylekatarnls"
  3688. }
  3689. ],
  3690. "description": "An API extension for DateTime that supports 281 different languages.",
  3691. "homepage": "https://carbon.nesbot.com",
  3692. "keywords": [
  3693. "date",
  3694. "datetime",
  3695. "time"
  3696. ],
  3697. "support": {
  3698. "docs": "https://carbon.nesbot.com/docs",
  3699. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3700. "source": "https://github.com/briannesbitt/Carbon"
  3701. },
  3702. "funding": [
  3703. {
  3704. "url": "https://github.com/sponsors/kylekatarnls",
  3705. "type": "github"
  3706. },
  3707. {
  3708. "url": "https://opencollective.com/Carbon#sponsor",
  3709. "type": "opencollective"
  3710. },
  3711. {
  3712. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3713. "type": "tidelift"
  3714. }
  3715. ],
  3716. "time": "2023-12-08T23:47:49+00:00"
  3717. },
  3718. {
  3719. "name": "nette/schema",
  3720. "version": "v1.2.5",
  3721. "source": {
  3722. "type": "git",
  3723. "url": "https://github.com/nette/schema.git",
  3724. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3725. },
  3726. "dist": {
  3727. "type": "zip",
  3728. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3729. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3730. "shasum": ""
  3731. },
  3732. "require": {
  3733. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3734. "php": "7.1 - 8.3"
  3735. },
  3736. "require-dev": {
  3737. "nette/tester": "^2.3 || ^2.4",
  3738. "phpstan/phpstan-nette": "^1.0",
  3739. "tracy/tracy": "^2.7"
  3740. },
  3741. "type": "library",
  3742. "extra": {
  3743. "branch-alias": {
  3744. "dev-master": "1.2-dev"
  3745. }
  3746. },
  3747. "autoload": {
  3748. "classmap": [
  3749. "src/"
  3750. ]
  3751. },
  3752. "notification-url": "https://packagist.org/downloads/",
  3753. "license": [
  3754. "BSD-3-Clause",
  3755. "GPL-2.0-only",
  3756. "GPL-3.0-only"
  3757. ],
  3758. "authors": [
  3759. {
  3760. "name": "David Grudl",
  3761. "homepage": "https://davidgrudl.com"
  3762. },
  3763. {
  3764. "name": "Nette Community",
  3765. "homepage": "https://nette.org/contributors"
  3766. }
  3767. ],
  3768. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3769. "homepage": "https://nette.org",
  3770. "keywords": [
  3771. "config",
  3772. "nette"
  3773. ],
  3774. "support": {
  3775. "issues": "https://github.com/nette/schema/issues",
  3776. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3777. },
  3778. "time": "2023-10-05T20:37:59+00:00"
  3779. },
  3780. {
  3781. "name": "nette/utils",
  3782. "version": "v4.0.3",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/nette/utils.git",
  3786. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  3791. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  3792. "shasum": ""
  3793. },
  3794. "require": {
  3795. "php": ">=8.0 <8.4"
  3796. },
  3797. "conflict": {
  3798. "nette/finder": "<3",
  3799. "nette/schema": "<1.2.2"
  3800. },
  3801. "require-dev": {
  3802. "jetbrains/phpstorm-attributes": "dev-master",
  3803. "nette/tester": "^2.5",
  3804. "phpstan/phpstan": "^1.0",
  3805. "tracy/tracy": "^2.9"
  3806. },
  3807. "suggest": {
  3808. "ext-gd": "to use Image",
  3809. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3810. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3811. "ext-json": "to use Nette\\Utils\\Json",
  3812. "ext-mbstring": "to use Strings::lower() etc...",
  3813. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3814. },
  3815. "type": "library",
  3816. "extra": {
  3817. "branch-alias": {
  3818. "dev-master": "4.0-dev"
  3819. }
  3820. },
  3821. "autoload": {
  3822. "classmap": [
  3823. "src/"
  3824. ]
  3825. },
  3826. "notification-url": "https://packagist.org/downloads/",
  3827. "license": [
  3828. "BSD-3-Clause",
  3829. "GPL-2.0-only",
  3830. "GPL-3.0-only"
  3831. ],
  3832. "authors": [
  3833. {
  3834. "name": "David Grudl",
  3835. "homepage": "https://davidgrudl.com"
  3836. },
  3837. {
  3838. "name": "Nette Community",
  3839. "homepage": "https://nette.org/contributors"
  3840. }
  3841. ],
  3842. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3843. "homepage": "https://nette.org",
  3844. "keywords": [
  3845. "array",
  3846. "core",
  3847. "datetime",
  3848. "images",
  3849. "json",
  3850. "nette",
  3851. "paginator",
  3852. "password",
  3853. "slugify",
  3854. "string",
  3855. "unicode",
  3856. "utf-8",
  3857. "utility",
  3858. "validation"
  3859. ],
  3860. "support": {
  3861. "issues": "https://github.com/nette/utils/issues",
  3862. "source": "https://github.com/nette/utils/tree/v4.0.3"
  3863. },
  3864. "time": "2023-10-29T21:02:13+00:00"
  3865. },
  3866. {
  3867. "name": "nikic/php-parser",
  3868. "version": "v4.18.0",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/nikic/PHP-Parser.git",
  3872. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3877. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  3878. "shasum": ""
  3879. },
  3880. "require": {
  3881. "ext-tokenizer": "*",
  3882. "php": ">=7.0"
  3883. },
  3884. "require-dev": {
  3885. "ircmaxell/php-yacc": "^0.0.7",
  3886. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3887. },
  3888. "bin": [
  3889. "bin/php-parse"
  3890. ],
  3891. "type": "library",
  3892. "extra": {
  3893. "branch-alias": {
  3894. "dev-master": "4.9-dev"
  3895. }
  3896. },
  3897. "autoload": {
  3898. "psr-4": {
  3899. "PhpParser\\": "lib/PhpParser"
  3900. }
  3901. },
  3902. "notification-url": "https://packagist.org/downloads/",
  3903. "license": [
  3904. "BSD-3-Clause"
  3905. ],
  3906. "authors": [
  3907. {
  3908. "name": "Nikita Popov"
  3909. }
  3910. ],
  3911. "description": "A PHP parser written in PHP",
  3912. "keywords": [
  3913. "parser",
  3914. "php"
  3915. ],
  3916. "support": {
  3917. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3918. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  3919. },
  3920. "time": "2023-12-10T21:03:43+00:00"
  3921. },
  3922. {
  3923. "name": "opis/closure",
  3924. "version": "3.6.3",
  3925. "source": {
  3926. "type": "git",
  3927. "url": "https://github.com/opis/closure.git",
  3928. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3929. },
  3930. "dist": {
  3931. "type": "zip",
  3932. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3933. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3934. "shasum": ""
  3935. },
  3936. "require": {
  3937. "php": "^5.4 || ^7.0 || ^8.0"
  3938. },
  3939. "require-dev": {
  3940. "jeremeamia/superclosure": "^2.0",
  3941. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3942. },
  3943. "type": "library",
  3944. "extra": {
  3945. "branch-alias": {
  3946. "dev-master": "3.6.x-dev"
  3947. }
  3948. },
  3949. "autoload": {
  3950. "files": [
  3951. "functions.php"
  3952. ],
  3953. "psr-4": {
  3954. "Opis\\Closure\\": "src/"
  3955. }
  3956. },
  3957. "notification-url": "https://packagist.org/downloads/",
  3958. "license": [
  3959. "MIT"
  3960. ],
  3961. "authors": [
  3962. {
  3963. "name": "Marius Sarca",
  3964. "email": "marius.sarca@gmail.com"
  3965. },
  3966. {
  3967. "name": "Sorin Sarca",
  3968. "email": "sarca_sorin@hotmail.com"
  3969. }
  3970. ],
  3971. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3972. "homepage": "https://opis.io/closure",
  3973. "keywords": [
  3974. "anonymous functions",
  3975. "closure",
  3976. "function",
  3977. "serializable",
  3978. "serialization",
  3979. "serialize"
  3980. ],
  3981. "support": {
  3982. "issues": "https://github.com/opis/closure/issues",
  3983. "source": "https://github.com/opis/closure/tree/3.6.3"
  3984. },
  3985. "time": "2022-01-27T09:35:39+00:00"
  3986. },
  3987. {
  3988. "name": "phpoffice/phpspreadsheet",
  3989. "version": "1.29.0",
  3990. "source": {
  3991. "type": "git",
  3992. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3993. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3994. },
  3995. "dist": {
  3996. "type": "zip",
  3997. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3998. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3999. "shasum": ""
  4000. },
  4001. "require": {
  4002. "ext-ctype": "*",
  4003. "ext-dom": "*",
  4004. "ext-fileinfo": "*",
  4005. "ext-gd": "*",
  4006. "ext-iconv": "*",
  4007. "ext-libxml": "*",
  4008. "ext-mbstring": "*",
  4009. "ext-simplexml": "*",
  4010. "ext-xml": "*",
  4011. "ext-xmlreader": "*",
  4012. "ext-xmlwriter": "*",
  4013. "ext-zip": "*",
  4014. "ext-zlib": "*",
  4015. "ezyang/htmlpurifier": "^4.15",
  4016. "maennchen/zipstream-php": "^2.1 || ^3.0",
  4017. "markbaker/complex": "^3.0",
  4018. "markbaker/matrix": "^3.0",
  4019. "php": "^7.4 || ^8.0",
  4020. "psr/http-client": "^1.0",
  4021. "psr/http-factory": "^1.0",
  4022. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4023. },
  4024. "require-dev": {
  4025. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  4026. "dompdf/dompdf": "^1.0 || ^2.0",
  4027. "friendsofphp/php-cs-fixer": "^3.2",
  4028. "mitoteam/jpgraph": "^10.3",
  4029. "mpdf/mpdf": "^8.1.1",
  4030. "phpcompatibility/php-compatibility": "^9.3",
  4031. "phpstan/phpstan": "^1.1",
  4032. "phpstan/phpstan-phpunit": "^1.0",
  4033. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  4034. "squizlabs/php_codesniffer": "^3.7",
  4035. "tecnickcom/tcpdf": "^6.5"
  4036. },
  4037. "suggest": {
  4038. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4039. "ext-intl": "PHP Internationalization Functions",
  4040. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4041. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4042. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4043. },
  4044. "type": "library",
  4045. "autoload": {
  4046. "psr-4": {
  4047. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4048. }
  4049. },
  4050. "notification-url": "https://packagist.org/downloads/",
  4051. "license": [
  4052. "MIT"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "Maarten Balliauw",
  4057. "homepage": "https://blog.maartenballiauw.be"
  4058. },
  4059. {
  4060. "name": "Mark Baker",
  4061. "homepage": "https://markbakeruk.net"
  4062. },
  4063. {
  4064. "name": "Franck Lefevre",
  4065. "homepage": "https://rootslabs.net"
  4066. },
  4067. {
  4068. "name": "Erik Tilt"
  4069. },
  4070. {
  4071. "name": "Adrien Crivelli"
  4072. }
  4073. ],
  4074. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4075. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4076. "keywords": [
  4077. "OpenXML",
  4078. "excel",
  4079. "gnumeric",
  4080. "ods",
  4081. "php",
  4082. "spreadsheet",
  4083. "xls",
  4084. "xlsx"
  4085. ],
  4086. "support": {
  4087. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4088. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  4089. },
  4090. "time": "2023-06-14T22:48:31+00:00"
  4091. },
  4092. {
  4093. "name": "phpoption/phpoption",
  4094. "version": "1.9.2",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/schmittjoh/php-option.git",
  4098. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4103. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4104. "shasum": ""
  4105. },
  4106. "require": {
  4107. "php": "^7.2.5 || ^8.0"
  4108. },
  4109. "require-dev": {
  4110. "bamarni/composer-bin-plugin": "^1.8.2",
  4111. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4112. },
  4113. "type": "library",
  4114. "extra": {
  4115. "bamarni-bin": {
  4116. "bin-links": true,
  4117. "forward-command": true
  4118. },
  4119. "branch-alias": {
  4120. "dev-master": "1.9-dev"
  4121. }
  4122. },
  4123. "autoload": {
  4124. "psr-4": {
  4125. "PhpOption\\": "src/PhpOption/"
  4126. }
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "Apache-2.0"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "Johannes M. Schmitt",
  4135. "email": "schmittjoh@gmail.com",
  4136. "homepage": "https://github.com/schmittjoh"
  4137. },
  4138. {
  4139. "name": "Graham Campbell",
  4140. "email": "hello@gjcampbell.co.uk",
  4141. "homepage": "https://github.com/GrahamCampbell"
  4142. }
  4143. ],
  4144. "description": "Option Type for PHP",
  4145. "keywords": [
  4146. "language",
  4147. "option",
  4148. "php",
  4149. "type"
  4150. ],
  4151. "support": {
  4152. "issues": "https://github.com/schmittjoh/php-option/issues",
  4153. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4154. },
  4155. "funding": [
  4156. {
  4157. "url": "https://github.com/GrahamCampbell",
  4158. "type": "github"
  4159. },
  4160. {
  4161. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4162. "type": "tidelift"
  4163. }
  4164. ],
  4165. "time": "2023-11-12T21:59:55+00:00"
  4166. },
  4167. {
  4168. "name": "psr/cache",
  4169. "version": "2.0.0",
  4170. "source": {
  4171. "type": "git",
  4172. "url": "https://github.com/php-fig/cache.git",
  4173. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  4174. },
  4175. "dist": {
  4176. "type": "zip",
  4177. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4178. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4179. "shasum": ""
  4180. },
  4181. "require": {
  4182. "php": ">=8.0.0"
  4183. },
  4184. "type": "library",
  4185. "extra": {
  4186. "branch-alias": {
  4187. "dev-master": "1.0.x-dev"
  4188. }
  4189. },
  4190. "autoload": {
  4191. "psr-4": {
  4192. "Psr\\Cache\\": "src/"
  4193. }
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "MIT"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "PHP-FIG",
  4202. "homepage": "https://www.php-fig.org/"
  4203. }
  4204. ],
  4205. "description": "Common interface for caching libraries",
  4206. "keywords": [
  4207. "cache",
  4208. "psr",
  4209. "psr-6"
  4210. ],
  4211. "support": {
  4212. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  4213. },
  4214. "time": "2021-02-03T23:23:37+00:00"
  4215. },
  4216. {
  4217. "name": "psr/clock",
  4218. "version": "1.0.0",
  4219. "source": {
  4220. "type": "git",
  4221. "url": "https://github.com/php-fig/clock.git",
  4222. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4223. },
  4224. "dist": {
  4225. "type": "zip",
  4226. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4227. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4228. "shasum": ""
  4229. },
  4230. "require": {
  4231. "php": "^7.0 || ^8.0"
  4232. },
  4233. "type": "library",
  4234. "autoload": {
  4235. "psr-4": {
  4236. "Psr\\Clock\\": "src/"
  4237. }
  4238. },
  4239. "notification-url": "https://packagist.org/downloads/",
  4240. "license": [
  4241. "MIT"
  4242. ],
  4243. "authors": [
  4244. {
  4245. "name": "PHP-FIG",
  4246. "homepage": "https://www.php-fig.org/"
  4247. }
  4248. ],
  4249. "description": "Common interface for reading the clock.",
  4250. "homepage": "https://github.com/php-fig/clock",
  4251. "keywords": [
  4252. "clock",
  4253. "now",
  4254. "psr",
  4255. "psr-20",
  4256. "time"
  4257. ],
  4258. "support": {
  4259. "issues": "https://github.com/php-fig/clock/issues",
  4260. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4261. },
  4262. "time": "2022-11-25T14:36:26+00:00"
  4263. },
  4264. {
  4265. "name": "psr/container",
  4266. "version": "1.1.2",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/php-fig/container.git",
  4270. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4275. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4276. "shasum": ""
  4277. },
  4278. "require": {
  4279. "php": ">=7.4.0"
  4280. },
  4281. "type": "library",
  4282. "autoload": {
  4283. "psr-4": {
  4284. "Psr\\Container\\": "src/"
  4285. }
  4286. },
  4287. "notification-url": "https://packagist.org/downloads/",
  4288. "license": [
  4289. "MIT"
  4290. ],
  4291. "authors": [
  4292. {
  4293. "name": "PHP-FIG",
  4294. "homepage": "https://www.php-fig.org/"
  4295. }
  4296. ],
  4297. "description": "Common Container Interface (PHP FIG PSR-11)",
  4298. "homepage": "https://github.com/php-fig/container",
  4299. "keywords": [
  4300. "PSR-11",
  4301. "container",
  4302. "container-interface",
  4303. "container-interop",
  4304. "psr"
  4305. ],
  4306. "support": {
  4307. "issues": "https://github.com/php-fig/container/issues",
  4308. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4309. },
  4310. "time": "2021-11-05T16:50:12+00:00"
  4311. },
  4312. {
  4313. "name": "psr/event-dispatcher",
  4314. "version": "1.0.0",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://github.com/php-fig/event-dispatcher.git",
  4318. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4323. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4324. "shasum": ""
  4325. },
  4326. "require": {
  4327. "php": ">=7.2.0"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "1.0.x-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Psr\\EventDispatcher\\": "src/"
  4338. }
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "PHP-FIG",
  4347. "homepage": "http://www.php-fig.org/"
  4348. }
  4349. ],
  4350. "description": "Standard interfaces for event handling.",
  4351. "keywords": [
  4352. "events",
  4353. "psr",
  4354. "psr-14"
  4355. ],
  4356. "support": {
  4357. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4358. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4359. },
  4360. "time": "2019-01-08T18:20:26+00:00"
  4361. },
  4362. {
  4363. "name": "psr/http-client",
  4364. "version": "1.0.3",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/php-fig/http-client.git",
  4368. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4373. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4374. "shasum": ""
  4375. },
  4376. "require": {
  4377. "php": "^7.0 || ^8.0",
  4378. "psr/http-message": "^1.0 || ^2.0"
  4379. },
  4380. "type": "library",
  4381. "extra": {
  4382. "branch-alias": {
  4383. "dev-master": "1.0.x-dev"
  4384. }
  4385. },
  4386. "autoload": {
  4387. "psr-4": {
  4388. "Psr\\Http\\Client\\": "src/"
  4389. }
  4390. },
  4391. "notification-url": "https://packagist.org/downloads/",
  4392. "license": [
  4393. "MIT"
  4394. ],
  4395. "authors": [
  4396. {
  4397. "name": "PHP-FIG",
  4398. "homepage": "https://www.php-fig.org/"
  4399. }
  4400. ],
  4401. "description": "Common interface for HTTP clients",
  4402. "homepage": "https://github.com/php-fig/http-client",
  4403. "keywords": [
  4404. "http",
  4405. "http-client",
  4406. "psr",
  4407. "psr-18"
  4408. ],
  4409. "support": {
  4410. "source": "https://github.com/php-fig/http-client"
  4411. },
  4412. "time": "2023-09-23T14:17:50+00:00"
  4413. },
  4414. {
  4415. "name": "psr/http-factory",
  4416. "version": "1.0.2",
  4417. "source": {
  4418. "type": "git",
  4419. "url": "https://github.com/php-fig/http-factory.git",
  4420. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4421. },
  4422. "dist": {
  4423. "type": "zip",
  4424. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4425. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4426. "shasum": ""
  4427. },
  4428. "require": {
  4429. "php": ">=7.0.0",
  4430. "psr/http-message": "^1.0 || ^2.0"
  4431. },
  4432. "type": "library",
  4433. "extra": {
  4434. "branch-alias": {
  4435. "dev-master": "1.0.x-dev"
  4436. }
  4437. },
  4438. "autoload": {
  4439. "psr-4": {
  4440. "Psr\\Http\\Message\\": "src/"
  4441. }
  4442. },
  4443. "notification-url": "https://packagist.org/downloads/",
  4444. "license": [
  4445. "MIT"
  4446. ],
  4447. "authors": [
  4448. {
  4449. "name": "PHP-FIG",
  4450. "homepage": "https://www.php-fig.org/"
  4451. }
  4452. ],
  4453. "description": "Common interfaces for PSR-7 HTTP message factories",
  4454. "keywords": [
  4455. "factory",
  4456. "http",
  4457. "message",
  4458. "psr",
  4459. "psr-17",
  4460. "psr-7",
  4461. "request",
  4462. "response"
  4463. ],
  4464. "support": {
  4465. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4466. },
  4467. "time": "2023-04-10T20:10:41+00:00"
  4468. },
  4469. {
  4470. "name": "psr/http-message",
  4471. "version": "1.1",
  4472. "source": {
  4473. "type": "git",
  4474. "url": "https://github.com/php-fig/http-message.git",
  4475. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4476. },
  4477. "dist": {
  4478. "type": "zip",
  4479. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4480. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4481. "shasum": ""
  4482. },
  4483. "require": {
  4484. "php": "^7.2 || ^8.0"
  4485. },
  4486. "type": "library",
  4487. "extra": {
  4488. "branch-alias": {
  4489. "dev-master": "1.1.x-dev"
  4490. }
  4491. },
  4492. "autoload": {
  4493. "psr-4": {
  4494. "Psr\\Http\\Message\\": "src/"
  4495. }
  4496. },
  4497. "notification-url": "https://packagist.org/downloads/",
  4498. "license": [
  4499. "MIT"
  4500. ],
  4501. "authors": [
  4502. {
  4503. "name": "PHP-FIG",
  4504. "homepage": "http://www.php-fig.org/"
  4505. }
  4506. ],
  4507. "description": "Common interface for HTTP messages",
  4508. "homepage": "https://github.com/php-fig/http-message",
  4509. "keywords": [
  4510. "http",
  4511. "http-message",
  4512. "psr",
  4513. "psr-7",
  4514. "request",
  4515. "response"
  4516. ],
  4517. "support": {
  4518. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4519. },
  4520. "time": "2023-04-04T09:50:52+00:00"
  4521. },
  4522. {
  4523. "name": "psr/log",
  4524. "version": "2.0.0",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://github.com/php-fig/log.git",
  4528. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4533. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4534. "shasum": ""
  4535. },
  4536. "require": {
  4537. "php": ">=8.0.0"
  4538. },
  4539. "type": "library",
  4540. "extra": {
  4541. "branch-alias": {
  4542. "dev-master": "2.0.x-dev"
  4543. }
  4544. },
  4545. "autoload": {
  4546. "psr-4": {
  4547. "Psr\\Log\\": "src"
  4548. }
  4549. },
  4550. "notification-url": "https://packagist.org/downloads/",
  4551. "license": [
  4552. "MIT"
  4553. ],
  4554. "authors": [
  4555. {
  4556. "name": "PHP-FIG",
  4557. "homepage": "https://www.php-fig.org/"
  4558. }
  4559. ],
  4560. "description": "Common interface for logging libraries",
  4561. "homepage": "https://github.com/php-fig/log",
  4562. "keywords": [
  4563. "log",
  4564. "psr",
  4565. "psr-3"
  4566. ],
  4567. "support": {
  4568. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4569. },
  4570. "time": "2021-07-14T16:41:46+00:00"
  4571. },
  4572. {
  4573. "name": "psr/simple-cache",
  4574. "version": "1.0.1",
  4575. "source": {
  4576. "type": "git",
  4577. "url": "https://github.com/php-fig/simple-cache.git",
  4578. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4579. },
  4580. "dist": {
  4581. "type": "zip",
  4582. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4583. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4584. "shasum": ""
  4585. },
  4586. "require": {
  4587. "php": ">=5.3.0"
  4588. },
  4589. "type": "library",
  4590. "extra": {
  4591. "branch-alias": {
  4592. "dev-master": "1.0.x-dev"
  4593. }
  4594. },
  4595. "autoload": {
  4596. "psr-4": {
  4597. "Psr\\SimpleCache\\": "src/"
  4598. }
  4599. },
  4600. "notification-url": "https://packagist.org/downloads/",
  4601. "license": [
  4602. "MIT"
  4603. ],
  4604. "authors": [
  4605. {
  4606. "name": "PHP-FIG",
  4607. "homepage": "http://www.php-fig.org/"
  4608. }
  4609. ],
  4610. "description": "Common interfaces for simple caching",
  4611. "keywords": [
  4612. "cache",
  4613. "caching",
  4614. "psr",
  4615. "psr-16",
  4616. "simple-cache"
  4617. ],
  4618. "support": {
  4619. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4620. },
  4621. "time": "2017-10-23T01:57:42+00:00"
  4622. },
  4623. {
  4624. "name": "psy/psysh",
  4625. "version": "v0.11.22",
  4626. "source": {
  4627. "type": "git",
  4628. "url": "https://github.com/bobthecow/psysh.git",
  4629. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  4630. },
  4631. "dist": {
  4632. "type": "zip",
  4633. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  4634. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  4635. "shasum": ""
  4636. },
  4637. "require": {
  4638. "ext-json": "*",
  4639. "ext-tokenizer": "*",
  4640. "nikic/php-parser": "^4.0 || ^3.1",
  4641. "php": "^8.0 || ^7.0.8",
  4642. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4643. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4644. },
  4645. "conflict": {
  4646. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4647. },
  4648. "require-dev": {
  4649. "bamarni/composer-bin-plugin": "^1.2"
  4650. },
  4651. "suggest": {
  4652. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4653. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4654. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4655. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4656. },
  4657. "bin": [
  4658. "bin/psysh"
  4659. ],
  4660. "type": "library",
  4661. "extra": {
  4662. "branch-alias": {
  4663. "dev-0.11": "0.11.x-dev"
  4664. },
  4665. "bamarni-bin": {
  4666. "bin-links": false,
  4667. "forward-command": false
  4668. }
  4669. },
  4670. "autoload": {
  4671. "files": [
  4672. "src/functions.php"
  4673. ],
  4674. "psr-4": {
  4675. "Psy\\": "src/"
  4676. }
  4677. },
  4678. "notification-url": "https://packagist.org/downloads/",
  4679. "license": [
  4680. "MIT"
  4681. ],
  4682. "authors": [
  4683. {
  4684. "name": "Justin Hileman",
  4685. "email": "justin@justinhileman.info",
  4686. "homepage": "http://justinhileman.com"
  4687. }
  4688. ],
  4689. "description": "An interactive shell for modern PHP.",
  4690. "homepage": "http://psysh.org",
  4691. "keywords": [
  4692. "REPL",
  4693. "console",
  4694. "interactive",
  4695. "shell"
  4696. ],
  4697. "support": {
  4698. "issues": "https://github.com/bobthecow/psysh/issues",
  4699. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  4700. },
  4701. "time": "2023-10-14T21:56:36+00:00"
  4702. },
  4703. {
  4704. "name": "ralouphie/getallheaders",
  4705. "version": "3.0.3",
  4706. "source": {
  4707. "type": "git",
  4708. "url": "https://github.com/ralouphie/getallheaders.git",
  4709. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4710. },
  4711. "dist": {
  4712. "type": "zip",
  4713. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4714. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4715. "shasum": ""
  4716. },
  4717. "require": {
  4718. "php": ">=5.6"
  4719. },
  4720. "require-dev": {
  4721. "php-coveralls/php-coveralls": "^2.1",
  4722. "phpunit/phpunit": "^5 || ^6.5"
  4723. },
  4724. "type": "library",
  4725. "autoload": {
  4726. "files": [
  4727. "src/getallheaders.php"
  4728. ]
  4729. },
  4730. "notification-url": "https://packagist.org/downloads/",
  4731. "license": [
  4732. "MIT"
  4733. ],
  4734. "authors": [
  4735. {
  4736. "name": "Ralph Khattar",
  4737. "email": "ralph.khattar@gmail.com"
  4738. }
  4739. ],
  4740. "description": "A polyfill for getallheaders.",
  4741. "support": {
  4742. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4743. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4744. },
  4745. "time": "2019-03-08T08:55:37+00:00"
  4746. },
  4747. {
  4748. "name": "ramsey/collection",
  4749. "version": "1.3.0",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://github.com/ramsey/collection.git",
  4753. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4758. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4759. "shasum": ""
  4760. },
  4761. "require": {
  4762. "php": "^7.4 || ^8.0",
  4763. "symfony/polyfill-php81": "^1.23"
  4764. },
  4765. "require-dev": {
  4766. "captainhook/plugin-composer": "^5.3",
  4767. "ergebnis/composer-normalize": "^2.28.3",
  4768. "fakerphp/faker": "^1.21",
  4769. "hamcrest/hamcrest-php": "^2.0",
  4770. "jangregor/phpstan-prophecy": "^1.0",
  4771. "mockery/mockery": "^1.5",
  4772. "php-parallel-lint/php-console-highlighter": "^1.0",
  4773. "php-parallel-lint/php-parallel-lint": "^1.3",
  4774. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4775. "phpspec/prophecy-phpunit": "^2.0",
  4776. "phpstan/extension-installer": "^1.2",
  4777. "phpstan/phpstan": "^1.9",
  4778. "phpstan/phpstan-mockery": "^1.1",
  4779. "phpstan/phpstan-phpunit": "^1.3",
  4780. "phpunit/phpunit": "^9.5",
  4781. "psalm/plugin-mockery": "^1.1",
  4782. "psalm/plugin-phpunit": "^0.18.4",
  4783. "ramsey/coding-standard": "^2.0.3",
  4784. "ramsey/conventional-commits": "^1.3",
  4785. "vimeo/psalm": "^5.4"
  4786. },
  4787. "type": "library",
  4788. "extra": {
  4789. "captainhook": {
  4790. "force-install": true
  4791. },
  4792. "ramsey/conventional-commits": {
  4793. "configFile": "conventional-commits.json"
  4794. }
  4795. },
  4796. "autoload": {
  4797. "psr-4": {
  4798. "Ramsey\\Collection\\": "src/"
  4799. }
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Ben Ramsey",
  4808. "email": "ben@benramsey.com",
  4809. "homepage": "https://benramsey.com"
  4810. }
  4811. ],
  4812. "description": "A PHP library for representing and manipulating collections.",
  4813. "keywords": [
  4814. "array",
  4815. "collection",
  4816. "hash",
  4817. "map",
  4818. "queue",
  4819. "set"
  4820. ],
  4821. "support": {
  4822. "issues": "https://github.com/ramsey/collection/issues",
  4823. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4824. },
  4825. "funding": [
  4826. {
  4827. "url": "https://github.com/ramsey",
  4828. "type": "github"
  4829. },
  4830. {
  4831. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4832. "type": "tidelift"
  4833. }
  4834. ],
  4835. "time": "2022-12-27T19:12:24+00:00"
  4836. },
  4837. {
  4838. "name": "ramsey/uuid",
  4839. "version": "4.7.5",
  4840. "source": {
  4841. "type": "git",
  4842. "url": "https://github.com/ramsey/uuid.git",
  4843. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  4844. },
  4845. "dist": {
  4846. "type": "zip",
  4847. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4848. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4849. "shasum": ""
  4850. },
  4851. "require": {
  4852. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4853. "ext-json": "*",
  4854. "php": "^8.0",
  4855. "ramsey/collection": "^1.2 || ^2.0"
  4856. },
  4857. "replace": {
  4858. "rhumsaa/uuid": "self.version"
  4859. },
  4860. "require-dev": {
  4861. "captainhook/captainhook": "^5.10",
  4862. "captainhook/plugin-composer": "^5.3",
  4863. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4864. "doctrine/annotations": "^1.8",
  4865. "ergebnis/composer-normalize": "^2.15",
  4866. "mockery/mockery": "^1.3",
  4867. "paragonie/random-lib": "^2",
  4868. "php-mock/php-mock": "^2.2",
  4869. "php-mock/php-mock-mockery": "^1.3",
  4870. "php-parallel-lint/php-parallel-lint": "^1.1",
  4871. "phpbench/phpbench": "^1.0",
  4872. "phpstan/extension-installer": "^1.1",
  4873. "phpstan/phpstan": "^1.8",
  4874. "phpstan/phpstan-mockery": "^1.1",
  4875. "phpstan/phpstan-phpunit": "^1.1",
  4876. "phpunit/phpunit": "^8.5 || ^9",
  4877. "ramsey/composer-repl": "^1.4",
  4878. "slevomat/coding-standard": "^8.4",
  4879. "squizlabs/php_codesniffer": "^3.5",
  4880. "vimeo/psalm": "^4.9"
  4881. },
  4882. "suggest": {
  4883. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4884. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4885. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4886. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4887. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4888. },
  4889. "type": "library",
  4890. "extra": {
  4891. "captainhook": {
  4892. "force-install": true
  4893. }
  4894. },
  4895. "autoload": {
  4896. "files": [
  4897. "src/functions.php"
  4898. ],
  4899. "psr-4": {
  4900. "Ramsey\\Uuid\\": "src/"
  4901. }
  4902. },
  4903. "notification-url": "https://packagist.org/downloads/",
  4904. "license": [
  4905. "MIT"
  4906. ],
  4907. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4908. "keywords": [
  4909. "guid",
  4910. "identifier",
  4911. "uuid"
  4912. ],
  4913. "support": {
  4914. "issues": "https://github.com/ramsey/uuid/issues",
  4915. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  4916. },
  4917. "funding": [
  4918. {
  4919. "url": "https://github.com/ramsey",
  4920. "type": "github"
  4921. },
  4922. {
  4923. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4924. "type": "tidelift"
  4925. }
  4926. ],
  4927. "time": "2023-11-08T05:53:05+00:00"
  4928. },
  4929. {
  4930. "name": "ratchet/rfc6455",
  4931. "version": "v0.3.1",
  4932. "source": {
  4933. "type": "git",
  4934. "url": "https://github.com/ratchetphp/RFC6455.git",
  4935. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4936. },
  4937. "dist": {
  4938. "type": "zip",
  4939. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4940. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4941. "shasum": ""
  4942. },
  4943. "require": {
  4944. "guzzlehttp/psr7": "^2 || ^1.7",
  4945. "php": ">=5.4.2"
  4946. },
  4947. "require-dev": {
  4948. "phpunit/phpunit": "^5.7",
  4949. "react/socket": "^1.3"
  4950. },
  4951. "type": "library",
  4952. "autoload": {
  4953. "psr-4": {
  4954. "Ratchet\\RFC6455\\": "src"
  4955. }
  4956. },
  4957. "notification-url": "https://packagist.org/downloads/",
  4958. "license": [
  4959. "MIT"
  4960. ],
  4961. "authors": [
  4962. {
  4963. "name": "Chris Boden",
  4964. "email": "cboden@gmail.com",
  4965. "role": "Developer"
  4966. },
  4967. {
  4968. "name": "Matt Bonneau",
  4969. "role": "Developer"
  4970. }
  4971. ],
  4972. "description": "RFC6455 WebSocket protocol handler",
  4973. "homepage": "http://socketo.me",
  4974. "keywords": [
  4975. "WebSockets",
  4976. "rfc6455",
  4977. "websocket"
  4978. ],
  4979. "support": {
  4980. "chat": "https://gitter.im/reactphp/reactphp",
  4981. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4982. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4983. },
  4984. "time": "2021-12-09T23:20:49+00:00"
  4985. },
  4986. {
  4987. "name": "react/cache",
  4988. "version": "v1.2.0",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/reactphp/cache.git",
  4992. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4997. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4998. "shasum": ""
  4999. },
  5000. "require": {
  5001. "php": ">=5.3.0",
  5002. "react/promise": "^3.0 || ^2.0 || ^1.1"
  5003. },
  5004. "require-dev": {
  5005. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  5006. },
  5007. "type": "library",
  5008. "autoload": {
  5009. "psr-4": {
  5010. "React\\Cache\\": "src/"
  5011. }
  5012. },
  5013. "notification-url": "https://packagist.org/downloads/",
  5014. "license": [
  5015. "MIT"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "Christian Lück",
  5020. "email": "christian@clue.engineering",
  5021. "homepage": "https://clue.engineering/"
  5022. },
  5023. {
  5024. "name": "Cees-Jan Kiewiet",
  5025. "email": "reactphp@ceesjankiewiet.nl",
  5026. "homepage": "https://wyrihaximus.net/"
  5027. },
  5028. {
  5029. "name": "Jan Sorgalla",
  5030. "email": "jsorgalla@gmail.com",
  5031. "homepage": "https://sorgalla.com/"
  5032. },
  5033. {
  5034. "name": "Chris Boden",
  5035. "email": "cboden@gmail.com",
  5036. "homepage": "https://cboden.dev/"
  5037. }
  5038. ],
  5039. "description": "Async, Promise-based cache interface for ReactPHP",
  5040. "keywords": [
  5041. "cache",
  5042. "caching",
  5043. "promise",
  5044. "reactphp"
  5045. ],
  5046. "support": {
  5047. "issues": "https://github.com/reactphp/cache/issues",
  5048. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://opencollective.com/reactphp",
  5053. "type": "open_collective"
  5054. }
  5055. ],
  5056. "time": "2022-11-30T15:59:55+00:00"
  5057. },
  5058. {
  5059. "name": "react/dns",
  5060. "version": "v1.12.0",
  5061. "source": {
  5062. "type": "git",
  5063. "url": "https://github.com/reactphp/dns.git",
  5064. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  5065. },
  5066. "dist": {
  5067. "type": "zip",
  5068. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  5069. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  5070. "shasum": ""
  5071. },
  5072. "require": {
  5073. "php": ">=5.3.0",
  5074. "react/cache": "^1.0 || ^0.6 || ^0.5",
  5075. "react/event-loop": "^1.2",
  5076. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  5077. },
  5078. "require-dev": {
  5079. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5080. "react/async": "^4 || ^3 || ^2",
  5081. "react/promise-timer": "^1.9"
  5082. },
  5083. "type": "library",
  5084. "autoload": {
  5085. "psr-4": {
  5086. "React\\Dns\\": "src/"
  5087. }
  5088. },
  5089. "notification-url": "https://packagist.org/downloads/",
  5090. "license": [
  5091. "MIT"
  5092. ],
  5093. "authors": [
  5094. {
  5095. "name": "Christian Lück",
  5096. "email": "christian@clue.engineering",
  5097. "homepage": "https://clue.engineering/"
  5098. },
  5099. {
  5100. "name": "Cees-Jan Kiewiet",
  5101. "email": "reactphp@ceesjankiewiet.nl",
  5102. "homepage": "https://wyrihaximus.net/"
  5103. },
  5104. {
  5105. "name": "Jan Sorgalla",
  5106. "email": "jsorgalla@gmail.com",
  5107. "homepage": "https://sorgalla.com/"
  5108. },
  5109. {
  5110. "name": "Chris Boden",
  5111. "email": "cboden@gmail.com",
  5112. "homepage": "https://cboden.dev/"
  5113. }
  5114. ],
  5115. "description": "Async DNS resolver for ReactPHP",
  5116. "keywords": [
  5117. "async",
  5118. "dns",
  5119. "dns-resolver",
  5120. "reactphp"
  5121. ],
  5122. "support": {
  5123. "issues": "https://github.com/reactphp/dns/issues",
  5124. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  5125. },
  5126. "funding": [
  5127. {
  5128. "url": "https://opencollective.com/reactphp",
  5129. "type": "open_collective"
  5130. }
  5131. ],
  5132. "time": "2023-11-29T12:41:06+00:00"
  5133. },
  5134. {
  5135. "name": "react/event-loop",
  5136. "version": "v1.5.0",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://github.com/reactphp/event-loop.git",
  5140. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5145. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5146. "shasum": ""
  5147. },
  5148. "require": {
  5149. "php": ">=5.3.0"
  5150. },
  5151. "require-dev": {
  5152. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5153. },
  5154. "suggest": {
  5155. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  5156. },
  5157. "type": "library",
  5158. "autoload": {
  5159. "psr-4": {
  5160. "React\\EventLoop\\": "src/"
  5161. }
  5162. },
  5163. "notification-url": "https://packagist.org/downloads/",
  5164. "license": [
  5165. "MIT"
  5166. ],
  5167. "authors": [
  5168. {
  5169. "name": "Christian Lück",
  5170. "email": "christian@clue.engineering",
  5171. "homepage": "https://clue.engineering/"
  5172. },
  5173. {
  5174. "name": "Cees-Jan Kiewiet",
  5175. "email": "reactphp@ceesjankiewiet.nl",
  5176. "homepage": "https://wyrihaximus.net/"
  5177. },
  5178. {
  5179. "name": "Jan Sorgalla",
  5180. "email": "jsorgalla@gmail.com",
  5181. "homepage": "https://sorgalla.com/"
  5182. },
  5183. {
  5184. "name": "Chris Boden",
  5185. "email": "cboden@gmail.com",
  5186. "homepage": "https://cboden.dev/"
  5187. }
  5188. ],
  5189. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5190. "keywords": [
  5191. "asynchronous",
  5192. "event-loop"
  5193. ],
  5194. "support": {
  5195. "issues": "https://github.com/reactphp/event-loop/issues",
  5196. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  5197. },
  5198. "funding": [
  5199. {
  5200. "url": "https://opencollective.com/reactphp",
  5201. "type": "open_collective"
  5202. }
  5203. ],
  5204. "time": "2023-11-13T13:48:05+00:00"
  5205. },
  5206. {
  5207. "name": "react/promise",
  5208. "version": "v3.1.0",
  5209. "source": {
  5210. "type": "git",
  5211. "url": "https://github.com/reactphp/promise.git",
  5212. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  5213. },
  5214. "dist": {
  5215. "type": "zip",
  5216. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5217. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5218. "shasum": ""
  5219. },
  5220. "require": {
  5221. "php": ">=7.1.0"
  5222. },
  5223. "require-dev": {
  5224. "phpstan/phpstan": "1.10.39 || 1.4.10",
  5225. "phpunit/phpunit": "^9.6 || ^7.5"
  5226. },
  5227. "type": "library",
  5228. "autoload": {
  5229. "files": [
  5230. "src/functions_include.php"
  5231. ],
  5232. "psr-4": {
  5233. "React\\Promise\\": "src/"
  5234. }
  5235. },
  5236. "notification-url": "https://packagist.org/downloads/",
  5237. "license": [
  5238. "MIT"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "Jan Sorgalla",
  5243. "email": "jsorgalla@gmail.com",
  5244. "homepage": "https://sorgalla.com/"
  5245. },
  5246. {
  5247. "name": "Christian Lück",
  5248. "email": "christian@clue.engineering",
  5249. "homepage": "https://clue.engineering/"
  5250. },
  5251. {
  5252. "name": "Cees-Jan Kiewiet",
  5253. "email": "reactphp@ceesjankiewiet.nl",
  5254. "homepage": "https://wyrihaximus.net/"
  5255. },
  5256. {
  5257. "name": "Chris Boden",
  5258. "email": "cboden@gmail.com",
  5259. "homepage": "https://cboden.dev/"
  5260. }
  5261. ],
  5262. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5263. "keywords": [
  5264. "promise",
  5265. "promises"
  5266. ],
  5267. "support": {
  5268. "issues": "https://github.com/reactphp/promise/issues",
  5269. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  5270. },
  5271. "funding": [
  5272. {
  5273. "url": "https://opencollective.com/reactphp",
  5274. "type": "open_collective"
  5275. }
  5276. ],
  5277. "time": "2023-11-16T16:21:57+00:00"
  5278. },
  5279. {
  5280. "name": "react/socket",
  5281. "version": "v1.14.0",
  5282. "source": {
  5283. "type": "git",
  5284. "url": "https://github.com/reactphp/socket.git",
  5285. "reference": "21591111d3ea62e31f2254280ca0656bc2b1bda6"
  5286. },
  5287. "dist": {
  5288. "type": "zip",
  5289. "url": "https://api.github.com/repos/reactphp/socket/zipball/21591111d3ea62e31f2254280ca0656bc2b1bda6",
  5290. "reference": "21591111d3ea62e31f2254280ca0656bc2b1bda6",
  5291. "shasum": ""
  5292. },
  5293. "require": {
  5294. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5295. "php": ">=5.3.0",
  5296. "react/dns": "^1.11",
  5297. "react/event-loop": "^1.2",
  5298. "react/promise": "^3 || ^2.6 || ^1.2.1",
  5299. "react/stream": "^1.2"
  5300. },
  5301. "require-dev": {
  5302. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  5303. "react/async": "^4 || ^3 || ^2",
  5304. "react/promise-stream": "^1.4",
  5305. "react/promise-timer": "^1.10"
  5306. },
  5307. "type": "library",
  5308. "autoload": {
  5309. "psr-4": {
  5310. "React\\Socket\\": "src"
  5311. }
  5312. },
  5313. "notification-url": "https://packagist.org/downloads/",
  5314. "license": [
  5315. "MIT"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "Christian Lück",
  5320. "email": "christian@clue.engineering",
  5321. "homepage": "https://clue.engineering/"
  5322. },
  5323. {
  5324. "name": "Cees-Jan Kiewiet",
  5325. "email": "reactphp@ceesjankiewiet.nl",
  5326. "homepage": "https://wyrihaximus.net/"
  5327. },
  5328. {
  5329. "name": "Jan Sorgalla",
  5330. "email": "jsorgalla@gmail.com",
  5331. "homepage": "https://sorgalla.com/"
  5332. },
  5333. {
  5334. "name": "Chris Boden",
  5335. "email": "cboden@gmail.com",
  5336. "homepage": "https://cboden.dev/"
  5337. }
  5338. ],
  5339. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5340. "keywords": [
  5341. "Connection",
  5342. "Socket",
  5343. "async",
  5344. "reactphp",
  5345. "stream"
  5346. ],
  5347. "support": {
  5348. "issues": "https://github.com/reactphp/socket/issues",
  5349. "source": "https://github.com/reactphp/socket/tree/v1.14.0"
  5350. },
  5351. "funding": [
  5352. {
  5353. "url": "https://opencollective.com/reactphp",
  5354. "type": "open_collective"
  5355. }
  5356. ],
  5357. "time": "2023-08-25T13:48:09+00:00"
  5358. },
  5359. {
  5360. "name": "react/stream",
  5361. "version": "v1.3.0",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://github.com/reactphp/stream.git",
  5365. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5370. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5371. "shasum": ""
  5372. },
  5373. "require": {
  5374. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5375. "php": ">=5.3.8",
  5376. "react/event-loop": "^1.2"
  5377. },
  5378. "require-dev": {
  5379. "clue/stream-filter": "~1.2",
  5380. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  5381. },
  5382. "type": "library",
  5383. "autoload": {
  5384. "psr-4": {
  5385. "React\\Stream\\": "src/"
  5386. }
  5387. },
  5388. "notification-url": "https://packagist.org/downloads/",
  5389. "license": [
  5390. "MIT"
  5391. ],
  5392. "authors": [
  5393. {
  5394. "name": "Christian Lück",
  5395. "email": "christian@clue.engineering",
  5396. "homepage": "https://clue.engineering/"
  5397. },
  5398. {
  5399. "name": "Cees-Jan Kiewiet",
  5400. "email": "reactphp@ceesjankiewiet.nl",
  5401. "homepage": "https://wyrihaximus.net/"
  5402. },
  5403. {
  5404. "name": "Jan Sorgalla",
  5405. "email": "jsorgalla@gmail.com",
  5406. "homepage": "https://sorgalla.com/"
  5407. },
  5408. {
  5409. "name": "Chris Boden",
  5410. "email": "cboden@gmail.com",
  5411. "homepage": "https://cboden.dev/"
  5412. }
  5413. ],
  5414. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5415. "keywords": [
  5416. "event-driven",
  5417. "io",
  5418. "non-blocking",
  5419. "pipe",
  5420. "reactphp",
  5421. "readable",
  5422. "stream",
  5423. "writable"
  5424. ],
  5425. "support": {
  5426. "issues": "https://github.com/reactphp/stream/issues",
  5427. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  5428. },
  5429. "funding": [
  5430. {
  5431. "url": "https://opencollective.com/reactphp",
  5432. "type": "open_collective"
  5433. }
  5434. ],
  5435. "time": "2023-06-16T10:52:11+00:00"
  5436. },
  5437. {
  5438. "name": "socialiteproviders/manager",
  5439. "version": "v4.4.0",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://github.com/SocialiteProviders/Manager.git",
  5443. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5448. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5449. "shasum": ""
  5450. },
  5451. "require": {
  5452. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  5453. "laravel/socialite": "~5.0",
  5454. "php": "^8.0"
  5455. },
  5456. "require-dev": {
  5457. "mockery/mockery": "^1.2",
  5458. "phpunit/phpunit": "^6.0 || ^9.0"
  5459. },
  5460. "type": "library",
  5461. "extra": {
  5462. "laravel": {
  5463. "providers": [
  5464. "SocialiteProviders\\Manager\\ServiceProvider"
  5465. ]
  5466. }
  5467. },
  5468. "autoload": {
  5469. "psr-4": {
  5470. "SocialiteProviders\\Manager\\": "src/"
  5471. }
  5472. },
  5473. "notification-url": "https://packagist.org/downloads/",
  5474. "license": [
  5475. "MIT"
  5476. ],
  5477. "authors": [
  5478. {
  5479. "name": "Andy Wendt",
  5480. "email": "andy@awendt.com"
  5481. },
  5482. {
  5483. "name": "Anton Komarev",
  5484. "email": "a.komarev@cybercog.su"
  5485. },
  5486. {
  5487. "name": "Miguel Piedrafita",
  5488. "email": "soy@miguelpiedrafita.com"
  5489. },
  5490. {
  5491. "name": "atymic",
  5492. "email": "atymicq@gmail.com",
  5493. "homepage": "https://atymic.dev"
  5494. }
  5495. ],
  5496. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5497. "homepage": "https://socialiteproviders.com",
  5498. "keywords": [
  5499. "laravel",
  5500. "manager",
  5501. "oauth",
  5502. "providers",
  5503. "socialite"
  5504. ],
  5505. "support": {
  5506. "issues": "https://github.com/socialiteproviders/manager/issues",
  5507. "source": "https://github.com/socialiteproviders/manager"
  5508. },
  5509. "time": "2023-08-27T23:46:34+00:00"
  5510. },
  5511. {
  5512. "name": "socialiteproviders/weixin",
  5513. "version": "4.1.0",
  5514. "source": {
  5515. "type": "git",
  5516. "url": "https://github.com/SocialiteProviders/Weixin.git",
  5517. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  5518. },
  5519. "dist": {
  5520. "type": "zip",
  5521. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5522. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5523. "shasum": ""
  5524. },
  5525. "require": {
  5526. "ext-json": "*",
  5527. "php": "^7.2 || ^8.0",
  5528. "socialiteproviders/manager": "~4.0"
  5529. },
  5530. "type": "library",
  5531. "autoload": {
  5532. "psr-4": {
  5533. "SocialiteProviders\\Weixin\\": ""
  5534. }
  5535. },
  5536. "notification-url": "https://packagist.org/downloads/",
  5537. "license": [
  5538. "MIT"
  5539. ],
  5540. "authors": [
  5541. {
  5542. "name": "xyxu",
  5543. "email": "techxu@gmail.com"
  5544. },
  5545. {
  5546. "name": "xiami",
  5547. "email": "jhdxr@php.net"
  5548. }
  5549. ],
  5550. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  5551. "support": {
  5552. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  5553. },
  5554. "time": "2020-12-01T23:10:59+00:00"
  5555. },
  5556. {
  5557. "name": "socialiteproviders/weixin-web",
  5558. "version": "4.1.0",
  5559. "source": {
  5560. "type": "git",
  5561. "url": "https://github.com/SocialiteProviders/Weixin-Web.git",
  5562. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3"
  5563. },
  5564. "dist": {
  5565. "type": "zip",
  5566. "url": "https://api.github.com/repos/SocialiteProviders/Weixin-Web/zipball/3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  5567. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  5568. "shasum": ""
  5569. },
  5570. "require": {
  5571. "ext-json": "*",
  5572. "php": "^7.2 || ^8.0",
  5573. "socialiteproviders/manager": "~4.0"
  5574. },
  5575. "type": "library",
  5576. "autoload": {
  5577. "psr-4": {
  5578. "SocialiteProviders\\WeixinWeb\\": ""
  5579. }
  5580. },
  5581. "notification-url": "https://packagist.org/downloads/",
  5582. "license": [
  5583. "MIT"
  5584. ],
  5585. "authors": [
  5586. {
  5587. "name": "xyxu",
  5588. "email": "techxu@gmail.com"
  5589. }
  5590. ],
  5591. "description": "Weixin-Web OAuth2 Provider for Laravel Socialite",
  5592. "support": {
  5593. "source": "https://github.com/SocialiteProviders/Weixin-Web/tree/4.1.0"
  5594. },
  5595. "time": "2020-12-01T23:10:59+00:00"
  5596. },
  5597. {
  5598. "name": "swiftmailer/swiftmailer",
  5599. "version": "v6.3.0",
  5600. "source": {
  5601. "type": "git",
  5602. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5603. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5604. },
  5605. "dist": {
  5606. "type": "zip",
  5607. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5608. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5609. "shasum": ""
  5610. },
  5611. "require": {
  5612. "egulias/email-validator": "^2.0|^3.1",
  5613. "php": ">=7.0.0",
  5614. "symfony/polyfill-iconv": "^1.0",
  5615. "symfony/polyfill-intl-idn": "^1.10",
  5616. "symfony/polyfill-mbstring": "^1.0"
  5617. },
  5618. "require-dev": {
  5619. "mockery/mockery": "^1.0",
  5620. "symfony/phpunit-bridge": "^4.4|^5.4"
  5621. },
  5622. "suggest": {
  5623. "ext-intl": "Needed to support internationalized email addresses"
  5624. },
  5625. "type": "library",
  5626. "extra": {
  5627. "branch-alias": {
  5628. "dev-master": "6.2-dev"
  5629. }
  5630. },
  5631. "autoload": {
  5632. "files": [
  5633. "lib/swift_required.php"
  5634. ]
  5635. },
  5636. "notification-url": "https://packagist.org/downloads/",
  5637. "license": [
  5638. "MIT"
  5639. ],
  5640. "authors": [
  5641. {
  5642. "name": "Chris Corbyn"
  5643. },
  5644. {
  5645. "name": "Fabien Potencier",
  5646. "email": "fabien@symfony.com"
  5647. }
  5648. ],
  5649. "description": "Swiftmailer, free feature-rich PHP mailer",
  5650. "homepage": "https://swiftmailer.symfony.com",
  5651. "keywords": [
  5652. "email",
  5653. "mail",
  5654. "mailer"
  5655. ],
  5656. "support": {
  5657. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5658. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5659. },
  5660. "funding": [
  5661. {
  5662. "url": "https://github.com/fabpot",
  5663. "type": "github"
  5664. },
  5665. {
  5666. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5667. "type": "tidelift"
  5668. }
  5669. ],
  5670. "abandoned": "symfony/mailer",
  5671. "time": "2021-10-18T15:26:12+00:00"
  5672. },
  5673. {
  5674. "name": "symfony/console",
  5675. "version": "v5.4.32",
  5676. "source": {
  5677. "type": "git",
  5678. "url": "https://github.com/symfony/console.git",
  5679. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7"
  5680. },
  5681. "dist": {
  5682. "type": "zip",
  5683. "url": "https://api.github.com/repos/symfony/console/zipball/c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  5684. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  5685. "shasum": ""
  5686. },
  5687. "require": {
  5688. "php": ">=7.2.5",
  5689. "symfony/deprecation-contracts": "^2.1|^3",
  5690. "symfony/polyfill-mbstring": "~1.0",
  5691. "symfony/polyfill-php73": "^1.9",
  5692. "symfony/polyfill-php80": "^1.16",
  5693. "symfony/service-contracts": "^1.1|^2|^3",
  5694. "symfony/string": "^5.1|^6.0"
  5695. },
  5696. "conflict": {
  5697. "psr/log": ">=3",
  5698. "symfony/dependency-injection": "<4.4",
  5699. "symfony/dotenv": "<5.1",
  5700. "symfony/event-dispatcher": "<4.4",
  5701. "symfony/lock": "<4.4",
  5702. "symfony/process": "<4.4"
  5703. },
  5704. "provide": {
  5705. "psr/log-implementation": "1.0|2.0"
  5706. },
  5707. "require-dev": {
  5708. "psr/log": "^1|^2",
  5709. "symfony/config": "^4.4|^5.0|^6.0",
  5710. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5711. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5712. "symfony/lock": "^4.4|^5.0|^6.0",
  5713. "symfony/process": "^4.4|^5.0|^6.0",
  5714. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5715. },
  5716. "suggest": {
  5717. "psr/log": "For using the console logger",
  5718. "symfony/event-dispatcher": "",
  5719. "symfony/lock": "",
  5720. "symfony/process": ""
  5721. },
  5722. "type": "library",
  5723. "autoload": {
  5724. "psr-4": {
  5725. "Symfony\\Component\\Console\\": ""
  5726. },
  5727. "exclude-from-classmap": [
  5728. "/Tests/"
  5729. ]
  5730. },
  5731. "notification-url": "https://packagist.org/downloads/",
  5732. "license": [
  5733. "MIT"
  5734. ],
  5735. "authors": [
  5736. {
  5737. "name": "Fabien Potencier",
  5738. "email": "fabien@symfony.com"
  5739. },
  5740. {
  5741. "name": "Symfony Community",
  5742. "homepage": "https://symfony.com/contributors"
  5743. }
  5744. ],
  5745. "description": "Eases the creation of beautiful and testable command line interfaces",
  5746. "homepage": "https://symfony.com",
  5747. "keywords": [
  5748. "cli",
  5749. "command-line",
  5750. "console",
  5751. "terminal"
  5752. ],
  5753. "support": {
  5754. "source": "https://github.com/symfony/console/tree/v5.4.32"
  5755. },
  5756. "funding": [
  5757. {
  5758. "url": "https://symfony.com/sponsor",
  5759. "type": "custom"
  5760. },
  5761. {
  5762. "url": "https://github.com/fabpot",
  5763. "type": "github"
  5764. },
  5765. {
  5766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5767. "type": "tidelift"
  5768. }
  5769. ],
  5770. "time": "2023-11-18T18:23:04+00:00"
  5771. },
  5772. {
  5773. "name": "symfony/css-selector",
  5774. "version": "v6.0.19",
  5775. "source": {
  5776. "type": "git",
  5777. "url": "https://github.com/symfony/css-selector.git",
  5778. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5779. },
  5780. "dist": {
  5781. "type": "zip",
  5782. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5783. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5784. "shasum": ""
  5785. },
  5786. "require": {
  5787. "php": ">=8.0.2"
  5788. },
  5789. "type": "library",
  5790. "autoload": {
  5791. "psr-4": {
  5792. "Symfony\\Component\\CssSelector\\": ""
  5793. },
  5794. "exclude-from-classmap": [
  5795. "/Tests/"
  5796. ]
  5797. },
  5798. "notification-url": "https://packagist.org/downloads/",
  5799. "license": [
  5800. "MIT"
  5801. ],
  5802. "authors": [
  5803. {
  5804. "name": "Fabien Potencier",
  5805. "email": "fabien@symfony.com"
  5806. },
  5807. {
  5808. "name": "Jean-François Simon",
  5809. "email": "jeanfrancois.simon@sensiolabs.com"
  5810. },
  5811. {
  5812. "name": "Symfony Community",
  5813. "homepage": "https://symfony.com/contributors"
  5814. }
  5815. ],
  5816. "description": "Converts CSS selectors to XPath expressions",
  5817. "homepage": "https://symfony.com",
  5818. "support": {
  5819. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5820. },
  5821. "funding": [
  5822. {
  5823. "url": "https://symfony.com/sponsor",
  5824. "type": "custom"
  5825. },
  5826. {
  5827. "url": "https://github.com/fabpot",
  5828. "type": "github"
  5829. },
  5830. {
  5831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5832. "type": "tidelift"
  5833. }
  5834. ],
  5835. "time": "2023-01-01T08:36:10+00:00"
  5836. },
  5837. {
  5838. "name": "symfony/deprecation-contracts",
  5839. "version": "v3.0.2",
  5840. "source": {
  5841. "type": "git",
  5842. "url": "https://github.com/symfony/deprecation-contracts.git",
  5843. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5844. },
  5845. "dist": {
  5846. "type": "zip",
  5847. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5848. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5849. "shasum": ""
  5850. },
  5851. "require": {
  5852. "php": ">=8.0.2"
  5853. },
  5854. "type": "library",
  5855. "extra": {
  5856. "branch-alias": {
  5857. "dev-main": "3.0-dev"
  5858. },
  5859. "thanks": {
  5860. "name": "symfony/contracts",
  5861. "url": "https://github.com/symfony/contracts"
  5862. }
  5863. },
  5864. "autoload": {
  5865. "files": [
  5866. "function.php"
  5867. ]
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "MIT"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "Nicolas Grekas",
  5876. "email": "p@tchwork.com"
  5877. },
  5878. {
  5879. "name": "Symfony Community",
  5880. "homepage": "https://symfony.com/contributors"
  5881. }
  5882. ],
  5883. "description": "A generic function and convention to trigger deprecation notices",
  5884. "homepage": "https://symfony.com",
  5885. "support": {
  5886. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5887. },
  5888. "funding": [
  5889. {
  5890. "url": "https://symfony.com/sponsor",
  5891. "type": "custom"
  5892. },
  5893. {
  5894. "url": "https://github.com/fabpot",
  5895. "type": "github"
  5896. },
  5897. {
  5898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5899. "type": "tidelift"
  5900. }
  5901. ],
  5902. "time": "2022-01-02T09:55:41+00:00"
  5903. },
  5904. {
  5905. "name": "symfony/error-handler",
  5906. "version": "v5.4.29",
  5907. "source": {
  5908. "type": "git",
  5909. "url": "https://github.com/symfony/error-handler.git",
  5910. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  5911. },
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5915. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5916. "shasum": ""
  5917. },
  5918. "require": {
  5919. "php": ">=7.2.5",
  5920. "psr/log": "^1|^2|^3",
  5921. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5922. },
  5923. "require-dev": {
  5924. "symfony/deprecation-contracts": "^2.1|^3",
  5925. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5926. "symfony/serializer": "^4.4|^5.0|^6.0"
  5927. },
  5928. "bin": [
  5929. "Resources/bin/patch-type-declarations"
  5930. ],
  5931. "type": "library",
  5932. "autoload": {
  5933. "psr-4": {
  5934. "Symfony\\Component\\ErrorHandler\\": ""
  5935. },
  5936. "exclude-from-classmap": [
  5937. "/Tests/"
  5938. ]
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Fabien Potencier",
  5947. "email": "fabien@symfony.com"
  5948. },
  5949. {
  5950. "name": "Symfony Community",
  5951. "homepage": "https://symfony.com/contributors"
  5952. }
  5953. ],
  5954. "description": "Provides tools to manage errors and ease debugging PHP code",
  5955. "homepage": "https://symfony.com",
  5956. "support": {
  5957. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  5958. },
  5959. "funding": [
  5960. {
  5961. "url": "https://symfony.com/sponsor",
  5962. "type": "custom"
  5963. },
  5964. {
  5965. "url": "https://github.com/fabpot",
  5966. "type": "github"
  5967. },
  5968. {
  5969. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5970. "type": "tidelift"
  5971. }
  5972. ],
  5973. "time": "2023-09-06T21:54:06+00:00"
  5974. },
  5975. {
  5976. "name": "symfony/event-dispatcher",
  5977. "version": "v6.0.19",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/symfony/event-dispatcher.git",
  5981. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5986. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5987. "shasum": ""
  5988. },
  5989. "require": {
  5990. "php": ">=8.0.2",
  5991. "symfony/event-dispatcher-contracts": "^2|^3"
  5992. },
  5993. "conflict": {
  5994. "symfony/dependency-injection": "<5.4"
  5995. },
  5996. "provide": {
  5997. "psr/event-dispatcher-implementation": "1.0",
  5998. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5999. },
  6000. "require-dev": {
  6001. "psr/log": "^1|^2|^3",
  6002. "symfony/config": "^5.4|^6.0",
  6003. "symfony/dependency-injection": "^5.4|^6.0",
  6004. "symfony/error-handler": "^5.4|^6.0",
  6005. "symfony/expression-language": "^5.4|^6.0",
  6006. "symfony/http-foundation": "^5.4|^6.0",
  6007. "symfony/service-contracts": "^1.1|^2|^3",
  6008. "symfony/stopwatch": "^5.4|^6.0"
  6009. },
  6010. "suggest": {
  6011. "symfony/dependency-injection": "",
  6012. "symfony/http-kernel": ""
  6013. },
  6014. "type": "library",
  6015. "autoload": {
  6016. "psr-4": {
  6017. "Symfony\\Component\\EventDispatcher\\": ""
  6018. },
  6019. "exclude-from-classmap": [
  6020. "/Tests/"
  6021. ]
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "MIT"
  6026. ],
  6027. "authors": [
  6028. {
  6029. "name": "Fabien Potencier",
  6030. "email": "fabien@symfony.com"
  6031. },
  6032. {
  6033. "name": "Symfony Community",
  6034. "homepage": "https://symfony.com/contributors"
  6035. }
  6036. ],
  6037. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6038. "homepage": "https://symfony.com",
  6039. "support": {
  6040. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  6041. },
  6042. "funding": [
  6043. {
  6044. "url": "https://symfony.com/sponsor",
  6045. "type": "custom"
  6046. },
  6047. {
  6048. "url": "https://github.com/fabpot",
  6049. "type": "github"
  6050. },
  6051. {
  6052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6053. "type": "tidelift"
  6054. }
  6055. ],
  6056. "time": "2023-01-01T08:36:10+00:00"
  6057. },
  6058. {
  6059. "name": "symfony/event-dispatcher-contracts",
  6060. "version": "v3.0.2",
  6061. "source": {
  6062. "type": "git",
  6063. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6064. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  6065. },
  6066. "dist": {
  6067. "type": "zip",
  6068. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  6069. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  6070. "shasum": ""
  6071. },
  6072. "require": {
  6073. "php": ">=8.0.2",
  6074. "psr/event-dispatcher": "^1"
  6075. },
  6076. "suggest": {
  6077. "symfony/event-dispatcher-implementation": ""
  6078. },
  6079. "type": "library",
  6080. "extra": {
  6081. "branch-alias": {
  6082. "dev-main": "3.0-dev"
  6083. },
  6084. "thanks": {
  6085. "name": "symfony/contracts",
  6086. "url": "https://github.com/symfony/contracts"
  6087. }
  6088. },
  6089. "autoload": {
  6090. "psr-4": {
  6091. "Symfony\\Contracts\\EventDispatcher\\": ""
  6092. }
  6093. },
  6094. "notification-url": "https://packagist.org/downloads/",
  6095. "license": [
  6096. "MIT"
  6097. ],
  6098. "authors": [
  6099. {
  6100. "name": "Nicolas Grekas",
  6101. "email": "p@tchwork.com"
  6102. },
  6103. {
  6104. "name": "Symfony Community",
  6105. "homepage": "https://symfony.com/contributors"
  6106. }
  6107. ],
  6108. "description": "Generic abstractions related to dispatching event",
  6109. "homepage": "https://symfony.com",
  6110. "keywords": [
  6111. "abstractions",
  6112. "contracts",
  6113. "decoupling",
  6114. "interfaces",
  6115. "interoperability",
  6116. "standards"
  6117. ],
  6118. "support": {
  6119. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  6120. },
  6121. "funding": [
  6122. {
  6123. "url": "https://symfony.com/sponsor",
  6124. "type": "custom"
  6125. },
  6126. {
  6127. "url": "https://github.com/fabpot",
  6128. "type": "github"
  6129. },
  6130. {
  6131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6132. "type": "tidelift"
  6133. }
  6134. ],
  6135. "time": "2022-01-02T09:55:41+00:00"
  6136. },
  6137. {
  6138. "name": "symfony/finder",
  6139. "version": "v5.4.27",
  6140. "source": {
  6141. "type": "git",
  6142. "url": "https://github.com/symfony/finder.git",
  6143. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  6144. },
  6145. "dist": {
  6146. "type": "zip",
  6147. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6148. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6149. "shasum": ""
  6150. },
  6151. "require": {
  6152. "php": ">=7.2.5",
  6153. "symfony/deprecation-contracts": "^2.1|^3",
  6154. "symfony/polyfill-php80": "^1.16"
  6155. },
  6156. "type": "library",
  6157. "autoload": {
  6158. "psr-4": {
  6159. "Symfony\\Component\\Finder\\": ""
  6160. },
  6161. "exclude-from-classmap": [
  6162. "/Tests/"
  6163. ]
  6164. },
  6165. "notification-url": "https://packagist.org/downloads/",
  6166. "license": [
  6167. "MIT"
  6168. ],
  6169. "authors": [
  6170. {
  6171. "name": "Fabien Potencier",
  6172. "email": "fabien@symfony.com"
  6173. },
  6174. {
  6175. "name": "Symfony Community",
  6176. "homepage": "https://symfony.com/contributors"
  6177. }
  6178. ],
  6179. "description": "Finds files and directories via an intuitive fluent interface",
  6180. "homepage": "https://symfony.com",
  6181. "support": {
  6182. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  6183. },
  6184. "funding": [
  6185. {
  6186. "url": "https://symfony.com/sponsor",
  6187. "type": "custom"
  6188. },
  6189. {
  6190. "url": "https://github.com/fabpot",
  6191. "type": "github"
  6192. },
  6193. {
  6194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6195. "type": "tidelift"
  6196. }
  6197. ],
  6198. "time": "2023-07-31T08:02:31+00:00"
  6199. },
  6200. {
  6201. "name": "symfony/http-foundation",
  6202. "version": "v5.4.32",
  6203. "source": {
  6204. "type": "git",
  6205. "url": "https://github.com/symfony/http-foundation.git",
  6206. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2"
  6207. },
  6208. "dist": {
  6209. "type": "zip",
  6210. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6211. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6212. "shasum": ""
  6213. },
  6214. "require": {
  6215. "php": ">=7.2.5",
  6216. "symfony/deprecation-contracts": "^2.1|^3",
  6217. "symfony/polyfill-mbstring": "~1.1",
  6218. "symfony/polyfill-php80": "^1.16"
  6219. },
  6220. "require-dev": {
  6221. "predis/predis": "~1.0",
  6222. "symfony/cache": "^4.4|^5.0|^6.0",
  6223. "symfony/dependency-injection": "^5.4|^6.0",
  6224. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6225. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6226. "symfony/mime": "^4.4|^5.0|^6.0",
  6227. "symfony/rate-limiter": "^5.2|^6.0"
  6228. },
  6229. "suggest": {
  6230. "symfony/mime": "To use the file extension guesser"
  6231. },
  6232. "type": "library",
  6233. "autoload": {
  6234. "psr-4": {
  6235. "Symfony\\Component\\HttpFoundation\\": ""
  6236. },
  6237. "exclude-from-classmap": [
  6238. "/Tests/"
  6239. ]
  6240. },
  6241. "notification-url": "https://packagist.org/downloads/",
  6242. "license": [
  6243. "MIT"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "Fabien Potencier",
  6248. "email": "fabien@symfony.com"
  6249. },
  6250. {
  6251. "name": "Symfony Community",
  6252. "homepage": "https://symfony.com/contributors"
  6253. }
  6254. ],
  6255. "description": "Defines an object-oriented layer for the HTTP specification",
  6256. "homepage": "https://symfony.com",
  6257. "support": {
  6258. "source": "https://github.com/symfony/http-foundation/tree/v5.4.32"
  6259. },
  6260. "funding": [
  6261. {
  6262. "url": "https://symfony.com/sponsor",
  6263. "type": "custom"
  6264. },
  6265. {
  6266. "url": "https://github.com/fabpot",
  6267. "type": "github"
  6268. },
  6269. {
  6270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6271. "type": "tidelift"
  6272. }
  6273. ],
  6274. "time": "2023-11-20T15:40:25+00:00"
  6275. },
  6276. {
  6277. "name": "symfony/http-kernel",
  6278. "version": "v5.4.33",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://github.com/symfony/http-kernel.git",
  6282. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/892636f9279f953dc266dc088f900b03eecb4ffa",
  6287. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa",
  6288. "shasum": ""
  6289. },
  6290. "require": {
  6291. "php": ">=7.2.5",
  6292. "psr/log": "^1|^2",
  6293. "symfony/deprecation-contracts": "^2.1|^3",
  6294. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6295. "symfony/event-dispatcher": "^5.0|^6.0",
  6296. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6297. "symfony/polyfill-ctype": "^1.8",
  6298. "symfony/polyfill-php73": "^1.9",
  6299. "symfony/polyfill-php80": "^1.16"
  6300. },
  6301. "conflict": {
  6302. "symfony/browser-kit": "<5.4",
  6303. "symfony/cache": "<5.0",
  6304. "symfony/config": "<5.0",
  6305. "symfony/console": "<4.4",
  6306. "symfony/dependency-injection": "<5.3",
  6307. "symfony/doctrine-bridge": "<5.0",
  6308. "symfony/form": "<5.0",
  6309. "symfony/http-client": "<5.0",
  6310. "symfony/mailer": "<5.0",
  6311. "symfony/messenger": "<5.0",
  6312. "symfony/translation": "<5.0",
  6313. "symfony/twig-bridge": "<5.0",
  6314. "symfony/validator": "<5.0",
  6315. "twig/twig": "<2.13"
  6316. },
  6317. "provide": {
  6318. "psr/log-implementation": "1.0|2.0"
  6319. },
  6320. "require-dev": {
  6321. "psr/cache": "^1.0|^2.0|^3.0",
  6322. "symfony/browser-kit": "^5.4|^6.0",
  6323. "symfony/config": "^5.0|^6.0",
  6324. "symfony/console": "^4.4|^5.0|^6.0",
  6325. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6326. "symfony/dependency-injection": "^5.3|^6.0",
  6327. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6328. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6329. "symfony/finder": "^4.4|^5.0|^6.0",
  6330. "symfony/http-client-contracts": "^1.1|^2|^3",
  6331. "symfony/process": "^4.4|^5.0|^6.0",
  6332. "symfony/routing": "^4.4|^5.0|^6.0",
  6333. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6334. "symfony/translation": "^4.4|^5.0|^6.0",
  6335. "symfony/translation-contracts": "^1.1|^2|^3",
  6336. "twig/twig": "^2.13|^3.0.4"
  6337. },
  6338. "suggest": {
  6339. "symfony/browser-kit": "",
  6340. "symfony/config": "",
  6341. "symfony/console": "",
  6342. "symfony/dependency-injection": ""
  6343. },
  6344. "type": "library",
  6345. "autoload": {
  6346. "psr-4": {
  6347. "Symfony\\Component\\HttpKernel\\": ""
  6348. },
  6349. "exclude-from-classmap": [
  6350. "/Tests/"
  6351. ]
  6352. },
  6353. "notification-url": "https://packagist.org/downloads/",
  6354. "license": [
  6355. "MIT"
  6356. ],
  6357. "authors": [
  6358. {
  6359. "name": "Fabien Potencier",
  6360. "email": "fabien@symfony.com"
  6361. },
  6362. {
  6363. "name": "Symfony Community",
  6364. "homepage": "https://symfony.com/contributors"
  6365. }
  6366. ],
  6367. "description": "Provides a structured process for converting a Request into a Response",
  6368. "homepage": "https://symfony.com",
  6369. "support": {
  6370. "source": "https://github.com/symfony/http-kernel/tree/v5.4.33"
  6371. },
  6372. "funding": [
  6373. {
  6374. "url": "https://symfony.com/sponsor",
  6375. "type": "custom"
  6376. },
  6377. {
  6378. "url": "https://github.com/fabpot",
  6379. "type": "github"
  6380. },
  6381. {
  6382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6383. "type": "tidelift"
  6384. }
  6385. ],
  6386. "time": "2023-12-01T16:51:11+00:00"
  6387. },
  6388. {
  6389. "name": "symfony/mime",
  6390. "version": "v5.4.26",
  6391. "source": {
  6392. "type": "git",
  6393. "url": "https://github.com/symfony/mime.git",
  6394. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  6395. },
  6396. "dist": {
  6397. "type": "zip",
  6398. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6399. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6400. "shasum": ""
  6401. },
  6402. "require": {
  6403. "php": ">=7.2.5",
  6404. "symfony/deprecation-contracts": "^2.1|^3",
  6405. "symfony/polyfill-intl-idn": "^1.10",
  6406. "symfony/polyfill-mbstring": "^1.0",
  6407. "symfony/polyfill-php80": "^1.16"
  6408. },
  6409. "conflict": {
  6410. "egulias/email-validator": "~3.0.0",
  6411. "phpdocumentor/reflection-docblock": "<3.2.2",
  6412. "phpdocumentor/type-resolver": "<1.4.0",
  6413. "symfony/mailer": "<4.4",
  6414. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  6415. },
  6416. "require-dev": {
  6417. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6418. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6419. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6420. "symfony/property-access": "^4.4|^5.1|^6.0",
  6421. "symfony/property-info": "^4.4|^5.1|^6.0",
  6422. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  6423. },
  6424. "type": "library",
  6425. "autoload": {
  6426. "psr-4": {
  6427. "Symfony\\Component\\Mime\\": ""
  6428. },
  6429. "exclude-from-classmap": [
  6430. "/Tests/"
  6431. ]
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "MIT"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Fabien Potencier",
  6440. "email": "fabien@symfony.com"
  6441. },
  6442. {
  6443. "name": "Symfony Community",
  6444. "homepage": "https://symfony.com/contributors"
  6445. }
  6446. ],
  6447. "description": "Allows manipulating MIME messages",
  6448. "homepage": "https://symfony.com",
  6449. "keywords": [
  6450. "mime",
  6451. "mime-type"
  6452. ],
  6453. "support": {
  6454. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  6455. },
  6456. "funding": [
  6457. {
  6458. "url": "https://symfony.com/sponsor",
  6459. "type": "custom"
  6460. },
  6461. {
  6462. "url": "https://github.com/fabpot",
  6463. "type": "github"
  6464. },
  6465. {
  6466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6467. "type": "tidelift"
  6468. }
  6469. ],
  6470. "time": "2023-07-27T06:29:31+00:00"
  6471. },
  6472. {
  6473. "name": "symfony/polyfill-ctype",
  6474. "version": "v1.28.0",
  6475. "source": {
  6476. "type": "git",
  6477. "url": "https://github.com/symfony/polyfill-ctype.git",
  6478. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6479. },
  6480. "dist": {
  6481. "type": "zip",
  6482. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6483. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6484. "shasum": ""
  6485. },
  6486. "require": {
  6487. "php": ">=7.1"
  6488. },
  6489. "provide": {
  6490. "ext-ctype": "*"
  6491. },
  6492. "suggest": {
  6493. "ext-ctype": "For best performance"
  6494. },
  6495. "type": "library",
  6496. "extra": {
  6497. "branch-alias": {
  6498. "dev-main": "1.28-dev"
  6499. },
  6500. "thanks": {
  6501. "name": "symfony/polyfill",
  6502. "url": "https://github.com/symfony/polyfill"
  6503. }
  6504. },
  6505. "autoload": {
  6506. "files": [
  6507. "bootstrap.php"
  6508. ],
  6509. "psr-4": {
  6510. "Symfony\\Polyfill\\Ctype\\": ""
  6511. }
  6512. },
  6513. "notification-url": "https://packagist.org/downloads/",
  6514. "license": [
  6515. "MIT"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "Gert de Pagter",
  6520. "email": "BackEndTea@gmail.com"
  6521. },
  6522. {
  6523. "name": "Symfony Community",
  6524. "homepage": "https://symfony.com/contributors"
  6525. }
  6526. ],
  6527. "description": "Symfony polyfill for ctype functions",
  6528. "homepage": "https://symfony.com",
  6529. "keywords": [
  6530. "compatibility",
  6531. "ctype",
  6532. "polyfill",
  6533. "portable"
  6534. ],
  6535. "support": {
  6536. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6537. },
  6538. "funding": [
  6539. {
  6540. "url": "https://symfony.com/sponsor",
  6541. "type": "custom"
  6542. },
  6543. {
  6544. "url": "https://github.com/fabpot",
  6545. "type": "github"
  6546. },
  6547. {
  6548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6549. "type": "tidelift"
  6550. }
  6551. ],
  6552. "time": "2023-01-26T09:26:14+00:00"
  6553. },
  6554. {
  6555. "name": "symfony/polyfill-iconv",
  6556. "version": "v1.28.0",
  6557. "source": {
  6558. "type": "git",
  6559. "url": "https://github.com/symfony/polyfill-iconv.git",
  6560. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  6561. },
  6562. "dist": {
  6563. "type": "zip",
  6564. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  6565. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  6566. "shasum": ""
  6567. },
  6568. "require": {
  6569. "php": ">=7.1"
  6570. },
  6571. "provide": {
  6572. "ext-iconv": "*"
  6573. },
  6574. "suggest": {
  6575. "ext-iconv": "For best performance"
  6576. },
  6577. "type": "library",
  6578. "extra": {
  6579. "branch-alias": {
  6580. "dev-main": "1.28-dev"
  6581. },
  6582. "thanks": {
  6583. "name": "symfony/polyfill",
  6584. "url": "https://github.com/symfony/polyfill"
  6585. }
  6586. },
  6587. "autoload": {
  6588. "files": [
  6589. "bootstrap.php"
  6590. ],
  6591. "psr-4": {
  6592. "Symfony\\Polyfill\\Iconv\\": ""
  6593. }
  6594. },
  6595. "notification-url": "https://packagist.org/downloads/",
  6596. "license": [
  6597. "MIT"
  6598. ],
  6599. "authors": [
  6600. {
  6601. "name": "Nicolas Grekas",
  6602. "email": "p@tchwork.com"
  6603. },
  6604. {
  6605. "name": "Symfony Community",
  6606. "homepage": "https://symfony.com/contributors"
  6607. }
  6608. ],
  6609. "description": "Symfony polyfill for the Iconv extension",
  6610. "homepage": "https://symfony.com",
  6611. "keywords": [
  6612. "compatibility",
  6613. "iconv",
  6614. "polyfill",
  6615. "portable",
  6616. "shim"
  6617. ],
  6618. "support": {
  6619. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  6620. },
  6621. "funding": [
  6622. {
  6623. "url": "https://symfony.com/sponsor",
  6624. "type": "custom"
  6625. },
  6626. {
  6627. "url": "https://github.com/fabpot",
  6628. "type": "github"
  6629. },
  6630. {
  6631. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6632. "type": "tidelift"
  6633. }
  6634. ],
  6635. "time": "2023-01-26T09:26:14+00:00"
  6636. },
  6637. {
  6638. "name": "symfony/polyfill-intl-grapheme",
  6639. "version": "v1.28.0",
  6640. "source": {
  6641. "type": "git",
  6642. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6643. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6644. },
  6645. "dist": {
  6646. "type": "zip",
  6647. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6648. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6649. "shasum": ""
  6650. },
  6651. "require": {
  6652. "php": ">=7.1"
  6653. },
  6654. "suggest": {
  6655. "ext-intl": "For best performance"
  6656. },
  6657. "type": "library",
  6658. "extra": {
  6659. "branch-alias": {
  6660. "dev-main": "1.28-dev"
  6661. },
  6662. "thanks": {
  6663. "name": "symfony/polyfill",
  6664. "url": "https://github.com/symfony/polyfill"
  6665. }
  6666. },
  6667. "autoload": {
  6668. "files": [
  6669. "bootstrap.php"
  6670. ],
  6671. "psr-4": {
  6672. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6673. }
  6674. },
  6675. "notification-url": "https://packagist.org/downloads/",
  6676. "license": [
  6677. "MIT"
  6678. ],
  6679. "authors": [
  6680. {
  6681. "name": "Nicolas Grekas",
  6682. "email": "p@tchwork.com"
  6683. },
  6684. {
  6685. "name": "Symfony Community",
  6686. "homepage": "https://symfony.com/contributors"
  6687. }
  6688. ],
  6689. "description": "Symfony polyfill for intl's grapheme_* functions",
  6690. "homepage": "https://symfony.com",
  6691. "keywords": [
  6692. "compatibility",
  6693. "grapheme",
  6694. "intl",
  6695. "polyfill",
  6696. "portable",
  6697. "shim"
  6698. ],
  6699. "support": {
  6700. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6701. },
  6702. "funding": [
  6703. {
  6704. "url": "https://symfony.com/sponsor",
  6705. "type": "custom"
  6706. },
  6707. {
  6708. "url": "https://github.com/fabpot",
  6709. "type": "github"
  6710. },
  6711. {
  6712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6713. "type": "tidelift"
  6714. }
  6715. ],
  6716. "time": "2023-01-26T09:26:14+00:00"
  6717. },
  6718. {
  6719. "name": "symfony/polyfill-intl-idn",
  6720. "version": "v1.28.0",
  6721. "source": {
  6722. "type": "git",
  6723. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6724. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  6725. },
  6726. "dist": {
  6727. "type": "zip",
  6728. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  6729. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  6730. "shasum": ""
  6731. },
  6732. "require": {
  6733. "php": ">=7.1",
  6734. "symfony/polyfill-intl-normalizer": "^1.10",
  6735. "symfony/polyfill-php72": "^1.10"
  6736. },
  6737. "suggest": {
  6738. "ext-intl": "For best performance"
  6739. },
  6740. "type": "library",
  6741. "extra": {
  6742. "branch-alias": {
  6743. "dev-main": "1.28-dev"
  6744. },
  6745. "thanks": {
  6746. "name": "symfony/polyfill",
  6747. "url": "https://github.com/symfony/polyfill"
  6748. }
  6749. },
  6750. "autoload": {
  6751. "files": [
  6752. "bootstrap.php"
  6753. ],
  6754. "psr-4": {
  6755. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6756. }
  6757. },
  6758. "notification-url": "https://packagist.org/downloads/",
  6759. "license": [
  6760. "MIT"
  6761. ],
  6762. "authors": [
  6763. {
  6764. "name": "Laurent Bassin",
  6765. "email": "laurent@bassin.info"
  6766. },
  6767. {
  6768. "name": "Trevor Rowbotham",
  6769. "email": "trevor.rowbotham@pm.me"
  6770. },
  6771. {
  6772. "name": "Symfony Community",
  6773. "homepage": "https://symfony.com/contributors"
  6774. }
  6775. ],
  6776. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6777. "homepage": "https://symfony.com",
  6778. "keywords": [
  6779. "compatibility",
  6780. "idn",
  6781. "intl",
  6782. "polyfill",
  6783. "portable",
  6784. "shim"
  6785. ],
  6786. "support": {
  6787. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  6788. },
  6789. "funding": [
  6790. {
  6791. "url": "https://symfony.com/sponsor",
  6792. "type": "custom"
  6793. },
  6794. {
  6795. "url": "https://github.com/fabpot",
  6796. "type": "github"
  6797. },
  6798. {
  6799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6800. "type": "tidelift"
  6801. }
  6802. ],
  6803. "time": "2023-01-26T09:30:37+00:00"
  6804. },
  6805. {
  6806. "name": "symfony/polyfill-intl-normalizer",
  6807. "version": "v1.28.0",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6811. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6816. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "php": ">=7.1"
  6821. },
  6822. "suggest": {
  6823. "ext-intl": "For best performance"
  6824. },
  6825. "type": "library",
  6826. "extra": {
  6827. "branch-alias": {
  6828. "dev-main": "1.28-dev"
  6829. },
  6830. "thanks": {
  6831. "name": "symfony/polyfill",
  6832. "url": "https://github.com/symfony/polyfill"
  6833. }
  6834. },
  6835. "autoload": {
  6836. "files": [
  6837. "bootstrap.php"
  6838. ],
  6839. "psr-4": {
  6840. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6841. },
  6842. "classmap": [
  6843. "Resources/stubs"
  6844. ]
  6845. },
  6846. "notification-url": "https://packagist.org/downloads/",
  6847. "license": [
  6848. "MIT"
  6849. ],
  6850. "authors": [
  6851. {
  6852. "name": "Nicolas Grekas",
  6853. "email": "p@tchwork.com"
  6854. },
  6855. {
  6856. "name": "Symfony Community",
  6857. "homepage": "https://symfony.com/contributors"
  6858. }
  6859. ],
  6860. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6861. "homepage": "https://symfony.com",
  6862. "keywords": [
  6863. "compatibility",
  6864. "intl",
  6865. "normalizer",
  6866. "polyfill",
  6867. "portable",
  6868. "shim"
  6869. ],
  6870. "support": {
  6871. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  6872. },
  6873. "funding": [
  6874. {
  6875. "url": "https://symfony.com/sponsor",
  6876. "type": "custom"
  6877. },
  6878. {
  6879. "url": "https://github.com/fabpot",
  6880. "type": "github"
  6881. },
  6882. {
  6883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6884. "type": "tidelift"
  6885. }
  6886. ],
  6887. "time": "2023-01-26T09:26:14+00:00"
  6888. },
  6889. {
  6890. "name": "symfony/polyfill-mbstring",
  6891. "version": "v1.28.0",
  6892. "source": {
  6893. "type": "git",
  6894. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6895. "reference": "42292d99c55abe617799667f454222c54c60e229"
  6896. },
  6897. "dist": {
  6898. "type": "zip",
  6899. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  6900. "reference": "42292d99c55abe617799667f454222c54c60e229",
  6901. "shasum": ""
  6902. },
  6903. "require": {
  6904. "php": ">=7.1"
  6905. },
  6906. "provide": {
  6907. "ext-mbstring": "*"
  6908. },
  6909. "suggest": {
  6910. "ext-mbstring": "For best performance"
  6911. },
  6912. "type": "library",
  6913. "extra": {
  6914. "branch-alias": {
  6915. "dev-main": "1.28-dev"
  6916. },
  6917. "thanks": {
  6918. "name": "symfony/polyfill",
  6919. "url": "https://github.com/symfony/polyfill"
  6920. }
  6921. },
  6922. "autoload": {
  6923. "files": [
  6924. "bootstrap.php"
  6925. ],
  6926. "psr-4": {
  6927. "Symfony\\Polyfill\\Mbstring\\": ""
  6928. }
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Nicolas Grekas",
  6937. "email": "p@tchwork.com"
  6938. },
  6939. {
  6940. "name": "Symfony Community",
  6941. "homepage": "https://symfony.com/contributors"
  6942. }
  6943. ],
  6944. "description": "Symfony polyfill for the Mbstring extension",
  6945. "homepage": "https://symfony.com",
  6946. "keywords": [
  6947. "compatibility",
  6948. "mbstring",
  6949. "polyfill",
  6950. "portable",
  6951. "shim"
  6952. ],
  6953. "support": {
  6954. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  6955. },
  6956. "funding": [
  6957. {
  6958. "url": "https://symfony.com/sponsor",
  6959. "type": "custom"
  6960. },
  6961. {
  6962. "url": "https://github.com/fabpot",
  6963. "type": "github"
  6964. },
  6965. {
  6966. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6967. "type": "tidelift"
  6968. }
  6969. ],
  6970. "time": "2023-07-28T09:04:16+00:00"
  6971. },
  6972. {
  6973. "name": "symfony/polyfill-php72",
  6974. "version": "v1.28.0",
  6975. "source": {
  6976. "type": "git",
  6977. "url": "https://github.com/symfony/polyfill-php72.git",
  6978. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  6979. },
  6980. "dist": {
  6981. "type": "zip",
  6982. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  6983. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  6984. "shasum": ""
  6985. },
  6986. "require": {
  6987. "php": ">=7.1"
  6988. },
  6989. "type": "library",
  6990. "extra": {
  6991. "branch-alias": {
  6992. "dev-main": "1.28-dev"
  6993. },
  6994. "thanks": {
  6995. "name": "symfony/polyfill",
  6996. "url": "https://github.com/symfony/polyfill"
  6997. }
  6998. },
  6999. "autoload": {
  7000. "files": [
  7001. "bootstrap.php"
  7002. ],
  7003. "psr-4": {
  7004. "Symfony\\Polyfill\\Php72\\": ""
  7005. }
  7006. },
  7007. "notification-url": "https://packagist.org/downloads/",
  7008. "license": [
  7009. "MIT"
  7010. ],
  7011. "authors": [
  7012. {
  7013. "name": "Nicolas Grekas",
  7014. "email": "p@tchwork.com"
  7015. },
  7016. {
  7017. "name": "Symfony Community",
  7018. "homepage": "https://symfony.com/contributors"
  7019. }
  7020. ],
  7021. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7022. "homepage": "https://symfony.com",
  7023. "keywords": [
  7024. "compatibility",
  7025. "polyfill",
  7026. "portable",
  7027. "shim"
  7028. ],
  7029. "support": {
  7030. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://symfony.com/sponsor",
  7035. "type": "custom"
  7036. },
  7037. {
  7038. "url": "https://github.com/fabpot",
  7039. "type": "github"
  7040. },
  7041. {
  7042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7043. "type": "tidelift"
  7044. }
  7045. ],
  7046. "time": "2023-01-26T09:26:14+00:00"
  7047. },
  7048. {
  7049. "name": "symfony/polyfill-php73",
  7050. "version": "v1.28.0",
  7051. "source": {
  7052. "type": "git",
  7053. "url": "https://github.com/symfony/polyfill-php73.git",
  7054. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  7055. },
  7056. "dist": {
  7057. "type": "zip",
  7058. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7059. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7060. "shasum": ""
  7061. },
  7062. "require": {
  7063. "php": ">=7.1"
  7064. },
  7065. "type": "library",
  7066. "extra": {
  7067. "branch-alias": {
  7068. "dev-main": "1.28-dev"
  7069. },
  7070. "thanks": {
  7071. "name": "symfony/polyfill",
  7072. "url": "https://github.com/symfony/polyfill"
  7073. }
  7074. },
  7075. "autoload": {
  7076. "files": [
  7077. "bootstrap.php"
  7078. ],
  7079. "psr-4": {
  7080. "Symfony\\Polyfill\\Php73\\": ""
  7081. },
  7082. "classmap": [
  7083. "Resources/stubs"
  7084. ]
  7085. },
  7086. "notification-url": "https://packagist.org/downloads/",
  7087. "license": [
  7088. "MIT"
  7089. ],
  7090. "authors": [
  7091. {
  7092. "name": "Nicolas Grekas",
  7093. "email": "p@tchwork.com"
  7094. },
  7095. {
  7096. "name": "Symfony Community",
  7097. "homepage": "https://symfony.com/contributors"
  7098. }
  7099. ],
  7100. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7101. "homepage": "https://symfony.com",
  7102. "keywords": [
  7103. "compatibility",
  7104. "polyfill",
  7105. "portable",
  7106. "shim"
  7107. ],
  7108. "support": {
  7109. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7110. },
  7111. "funding": [
  7112. {
  7113. "url": "https://symfony.com/sponsor",
  7114. "type": "custom"
  7115. },
  7116. {
  7117. "url": "https://github.com/fabpot",
  7118. "type": "github"
  7119. },
  7120. {
  7121. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7122. "type": "tidelift"
  7123. }
  7124. ],
  7125. "time": "2023-01-26T09:26:14+00:00"
  7126. },
  7127. {
  7128. "name": "symfony/polyfill-php80",
  7129. "version": "v1.28.0",
  7130. "source": {
  7131. "type": "git",
  7132. "url": "https://github.com/symfony/polyfill-php80.git",
  7133. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7134. },
  7135. "dist": {
  7136. "type": "zip",
  7137. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7138. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7139. "shasum": ""
  7140. },
  7141. "require": {
  7142. "php": ">=7.1"
  7143. },
  7144. "type": "library",
  7145. "extra": {
  7146. "branch-alias": {
  7147. "dev-main": "1.28-dev"
  7148. },
  7149. "thanks": {
  7150. "name": "symfony/polyfill",
  7151. "url": "https://github.com/symfony/polyfill"
  7152. }
  7153. },
  7154. "autoload": {
  7155. "files": [
  7156. "bootstrap.php"
  7157. ],
  7158. "psr-4": {
  7159. "Symfony\\Polyfill\\Php80\\": ""
  7160. },
  7161. "classmap": [
  7162. "Resources/stubs"
  7163. ]
  7164. },
  7165. "notification-url": "https://packagist.org/downloads/",
  7166. "license": [
  7167. "MIT"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "Ion Bazan",
  7172. "email": "ion.bazan@gmail.com"
  7173. },
  7174. {
  7175. "name": "Nicolas Grekas",
  7176. "email": "p@tchwork.com"
  7177. },
  7178. {
  7179. "name": "Symfony Community",
  7180. "homepage": "https://symfony.com/contributors"
  7181. }
  7182. ],
  7183. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7184. "homepage": "https://symfony.com",
  7185. "keywords": [
  7186. "compatibility",
  7187. "polyfill",
  7188. "portable",
  7189. "shim"
  7190. ],
  7191. "support": {
  7192. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7193. },
  7194. "funding": [
  7195. {
  7196. "url": "https://symfony.com/sponsor",
  7197. "type": "custom"
  7198. },
  7199. {
  7200. "url": "https://github.com/fabpot",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7205. "type": "tidelift"
  7206. }
  7207. ],
  7208. "time": "2023-01-26T09:26:14+00:00"
  7209. },
  7210. {
  7211. "name": "symfony/polyfill-php81",
  7212. "version": "v1.28.0",
  7213. "source": {
  7214. "type": "git",
  7215. "url": "https://github.com/symfony/polyfill-php81.git",
  7216. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  7217. },
  7218. "dist": {
  7219. "type": "zip",
  7220. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  7221. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7222. "shasum": ""
  7223. },
  7224. "require": {
  7225. "php": ">=7.1"
  7226. },
  7227. "type": "library",
  7228. "extra": {
  7229. "branch-alias": {
  7230. "dev-main": "1.28-dev"
  7231. },
  7232. "thanks": {
  7233. "name": "symfony/polyfill",
  7234. "url": "https://github.com/symfony/polyfill"
  7235. }
  7236. },
  7237. "autoload": {
  7238. "files": [
  7239. "bootstrap.php"
  7240. ],
  7241. "psr-4": {
  7242. "Symfony\\Polyfill\\Php81\\": ""
  7243. },
  7244. "classmap": [
  7245. "Resources/stubs"
  7246. ]
  7247. },
  7248. "notification-url": "https://packagist.org/downloads/",
  7249. "license": [
  7250. "MIT"
  7251. ],
  7252. "authors": [
  7253. {
  7254. "name": "Nicolas Grekas",
  7255. "email": "p@tchwork.com"
  7256. },
  7257. {
  7258. "name": "Symfony Community",
  7259. "homepage": "https://symfony.com/contributors"
  7260. }
  7261. ],
  7262. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7263. "homepage": "https://symfony.com",
  7264. "keywords": [
  7265. "compatibility",
  7266. "polyfill",
  7267. "portable",
  7268. "shim"
  7269. ],
  7270. "support": {
  7271. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  7272. },
  7273. "funding": [
  7274. {
  7275. "url": "https://symfony.com/sponsor",
  7276. "type": "custom"
  7277. },
  7278. {
  7279. "url": "https://github.com/fabpot",
  7280. "type": "github"
  7281. },
  7282. {
  7283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7284. "type": "tidelift"
  7285. }
  7286. ],
  7287. "time": "2023-01-26T09:26:14+00:00"
  7288. },
  7289. {
  7290. "name": "symfony/process",
  7291. "version": "v5.4.28",
  7292. "source": {
  7293. "type": "git",
  7294. "url": "https://github.com/symfony/process.git",
  7295. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
  7296. },
  7297. "dist": {
  7298. "type": "zip",
  7299. "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7300. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7301. "shasum": ""
  7302. },
  7303. "require": {
  7304. "php": ">=7.2.5",
  7305. "symfony/polyfill-php80": "^1.16"
  7306. },
  7307. "type": "library",
  7308. "autoload": {
  7309. "psr-4": {
  7310. "Symfony\\Component\\Process\\": ""
  7311. },
  7312. "exclude-from-classmap": [
  7313. "/Tests/"
  7314. ]
  7315. },
  7316. "notification-url": "https://packagist.org/downloads/",
  7317. "license": [
  7318. "MIT"
  7319. ],
  7320. "authors": [
  7321. {
  7322. "name": "Fabien Potencier",
  7323. "email": "fabien@symfony.com"
  7324. },
  7325. {
  7326. "name": "Symfony Community",
  7327. "homepage": "https://symfony.com/contributors"
  7328. }
  7329. ],
  7330. "description": "Executes commands in sub-processes",
  7331. "homepage": "https://symfony.com",
  7332. "support": {
  7333. "source": "https://github.com/symfony/process/tree/v5.4.28"
  7334. },
  7335. "funding": [
  7336. {
  7337. "url": "https://symfony.com/sponsor",
  7338. "type": "custom"
  7339. },
  7340. {
  7341. "url": "https://github.com/fabpot",
  7342. "type": "github"
  7343. },
  7344. {
  7345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7346. "type": "tidelift"
  7347. }
  7348. ],
  7349. "time": "2023-08-07T10:36:04+00:00"
  7350. },
  7351. {
  7352. "name": "symfony/routing",
  7353. "version": "v5.4.33",
  7354. "source": {
  7355. "type": "git",
  7356. "url": "https://github.com/symfony/routing.git",
  7357. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04"
  7358. },
  7359. "dist": {
  7360. "type": "zip",
  7361. "url": "https://api.github.com/repos/symfony/routing/zipball/5b5b86670f947db92ab54cdcff585e76064d0b04",
  7362. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04",
  7363. "shasum": ""
  7364. },
  7365. "require": {
  7366. "php": ">=7.2.5",
  7367. "symfony/deprecation-contracts": "^2.1|^3",
  7368. "symfony/polyfill-php80": "^1.16"
  7369. },
  7370. "conflict": {
  7371. "doctrine/annotations": "<1.12",
  7372. "symfony/config": "<5.3",
  7373. "symfony/dependency-injection": "<4.4",
  7374. "symfony/yaml": "<4.4"
  7375. },
  7376. "require-dev": {
  7377. "doctrine/annotations": "^1.12|^2",
  7378. "psr/log": "^1|^2|^3",
  7379. "symfony/config": "^5.3|^6.0",
  7380. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7381. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7382. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7383. "symfony/yaml": "^4.4|^5.0|^6.0"
  7384. },
  7385. "suggest": {
  7386. "symfony/config": "For using the all-in-one router or any loader",
  7387. "symfony/expression-language": "For using expression matching",
  7388. "symfony/http-foundation": "For using a Symfony Request object",
  7389. "symfony/yaml": "For using the YAML loader"
  7390. },
  7391. "type": "library",
  7392. "autoload": {
  7393. "psr-4": {
  7394. "Symfony\\Component\\Routing\\": ""
  7395. },
  7396. "exclude-from-classmap": [
  7397. "/Tests/"
  7398. ]
  7399. },
  7400. "notification-url": "https://packagist.org/downloads/",
  7401. "license": [
  7402. "MIT"
  7403. ],
  7404. "authors": [
  7405. {
  7406. "name": "Fabien Potencier",
  7407. "email": "fabien@symfony.com"
  7408. },
  7409. {
  7410. "name": "Symfony Community",
  7411. "homepage": "https://symfony.com/contributors"
  7412. }
  7413. ],
  7414. "description": "Maps an HTTP request to a set of configuration variables",
  7415. "homepage": "https://symfony.com",
  7416. "keywords": [
  7417. "router",
  7418. "routing",
  7419. "uri",
  7420. "url"
  7421. ],
  7422. "support": {
  7423. "source": "https://github.com/symfony/routing/tree/v5.4.33"
  7424. },
  7425. "funding": [
  7426. {
  7427. "url": "https://symfony.com/sponsor",
  7428. "type": "custom"
  7429. },
  7430. {
  7431. "url": "https://github.com/fabpot",
  7432. "type": "github"
  7433. },
  7434. {
  7435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7436. "type": "tidelift"
  7437. }
  7438. ],
  7439. "time": "2023-12-01T09:28:00+00:00"
  7440. },
  7441. {
  7442. "name": "symfony/service-contracts",
  7443. "version": "v2.5.2",
  7444. "source": {
  7445. "type": "git",
  7446. "url": "https://github.com/symfony/service-contracts.git",
  7447. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7448. },
  7449. "dist": {
  7450. "type": "zip",
  7451. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7452. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7453. "shasum": ""
  7454. },
  7455. "require": {
  7456. "php": ">=7.2.5",
  7457. "psr/container": "^1.1",
  7458. "symfony/deprecation-contracts": "^2.1|^3"
  7459. },
  7460. "conflict": {
  7461. "ext-psr": "<1.1|>=2"
  7462. },
  7463. "suggest": {
  7464. "symfony/service-implementation": ""
  7465. },
  7466. "type": "library",
  7467. "extra": {
  7468. "branch-alias": {
  7469. "dev-main": "2.5-dev"
  7470. },
  7471. "thanks": {
  7472. "name": "symfony/contracts",
  7473. "url": "https://github.com/symfony/contracts"
  7474. }
  7475. },
  7476. "autoload": {
  7477. "psr-4": {
  7478. "Symfony\\Contracts\\Service\\": ""
  7479. }
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "authors": [
  7486. {
  7487. "name": "Nicolas Grekas",
  7488. "email": "p@tchwork.com"
  7489. },
  7490. {
  7491. "name": "Symfony Community",
  7492. "homepage": "https://symfony.com/contributors"
  7493. }
  7494. ],
  7495. "description": "Generic abstractions related to writing services",
  7496. "homepage": "https://symfony.com",
  7497. "keywords": [
  7498. "abstractions",
  7499. "contracts",
  7500. "decoupling",
  7501. "interfaces",
  7502. "interoperability",
  7503. "standards"
  7504. ],
  7505. "support": {
  7506. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7507. },
  7508. "funding": [
  7509. {
  7510. "url": "https://symfony.com/sponsor",
  7511. "type": "custom"
  7512. },
  7513. {
  7514. "url": "https://github.com/fabpot",
  7515. "type": "github"
  7516. },
  7517. {
  7518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7519. "type": "tidelift"
  7520. }
  7521. ],
  7522. "time": "2022-05-30T19:17:29+00:00"
  7523. },
  7524. {
  7525. "name": "symfony/string",
  7526. "version": "v6.0.19",
  7527. "source": {
  7528. "type": "git",
  7529. "url": "https://github.com/symfony/string.git",
  7530. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7531. },
  7532. "dist": {
  7533. "type": "zip",
  7534. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7535. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7536. "shasum": ""
  7537. },
  7538. "require": {
  7539. "php": ">=8.0.2",
  7540. "symfony/polyfill-ctype": "~1.8",
  7541. "symfony/polyfill-intl-grapheme": "~1.0",
  7542. "symfony/polyfill-intl-normalizer": "~1.0",
  7543. "symfony/polyfill-mbstring": "~1.0"
  7544. },
  7545. "conflict": {
  7546. "symfony/translation-contracts": "<2.0"
  7547. },
  7548. "require-dev": {
  7549. "symfony/error-handler": "^5.4|^6.0",
  7550. "symfony/http-client": "^5.4|^6.0",
  7551. "symfony/translation-contracts": "^2.0|^3.0",
  7552. "symfony/var-exporter": "^5.4|^6.0"
  7553. },
  7554. "type": "library",
  7555. "autoload": {
  7556. "files": [
  7557. "Resources/functions.php"
  7558. ],
  7559. "psr-4": {
  7560. "Symfony\\Component\\String\\": ""
  7561. },
  7562. "exclude-from-classmap": [
  7563. "/Tests/"
  7564. ]
  7565. },
  7566. "notification-url": "https://packagist.org/downloads/",
  7567. "license": [
  7568. "MIT"
  7569. ],
  7570. "authors": [
  7571. {
  7572. "name": "Nicolas Grekas",
  7573. "email": "p@tchwork.com"
  7574. },
  7575. {
  7576. "name": "Symfony Community",
  7577. "homepage": "https://symfony.com/contributors"
  7578. }
  7579. ],
  7580. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7581. "homepage": "https://symfony.com",
  7582. "keywords": [
  7583. "grapheme",
  7584. "i18n",
  7585. "string",
  7586. "unicode",
  7587. "utf-8",
  7588. "utf8"
  7589. ],
  7590. "support": {
  7591. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7592. },
  7593. "funding": [
  7594. {
  7595. "url": "https://symfony.com/sponsor",
  7596. "type": "custom"
  7597. },
  7598. {
  7599. "url": "https://github.com/fabpot",
  7600. "type": "github"
  7601. },
  7602. {
  7603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7604. "type": "tidelift"
  7605. }
  7606. ],
  7607. "time": "2023-01-01T08:36:10+00:00"
  7608. },
  7609. {
  7610. "name": "symfony/translation",
  7611. "version": "v6.0.19",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/symfony/translation.git",
  7615. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7620. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7621. "shasum": ""
  7622. },
  7623. "require": {
  7624. "php": ">=8.0.2",
  7625. "symfony/polyfill-mbstring": "~1.0",
  7626. "symfony/translation-contracts": "^2.3|^3.0"
  7627. },
  7628. "conflict": {
  7629. "symfony/config": "<5.4",
  7630. "symfony/console": "<5.4",
  7631. "symfony/dependency-injection": "<5.4",
  7632. "symfony/http-kernel": "<5.4",
  7633. "symfony/twig-bundle": "<5.4",
  7634. "symfony/yaml": "<5.4"
  7635. },
  7636. "provide": {
  7637. "symfony/translation-implementation": "2.3|3.0"
  7638. },
  7639. "require-dev": {
  7640. "psr/log": "^1|^2|^3",
  7641. "symfony/config": "^5.4|^6.0",
  7642. "symfony/console": "^5.4|^6.0",
  7643. "symfony/dependency-injection": "^5.4|^6.0",
  7644. "symfony/finder": "^5.4|^6.0",
  7645. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7646. "symfony/http-kernel": "^5.4|^6.0",
  7647. "symfony/intl": "^5.4|^6.0",
  7648. "symfony/polyfill-intl-icu": "^1.21",
  7649. "symfony/service-contracts": "^1.1.2|^2|^3",
  7650. "symfony/yaml": "^5.4|^6.0"
  7651. },
  7652. "suggest": {
  7653. "psr/log-implementation": "To use logging capability in translator",
  7654. "symfony/config": "",
  7655. "symfony/yaml": ""
  7656. },
  7657. "type": "library",
  7658. "autoload": {
  7659. "files": [
  7660. "Resources/functions.php"
  7661. ],
  7662. "psr-4": {
  7663. "Symfony\\Component\\Translation\\": ""
  7664. },
  7665. "exclude-from-classmap": [
  7666. "/Tests/"
  7667. ]
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Fabien Potencier",
  7676. "email": "fabien@symfony.com"
  7677. },
  7678. {
  7679. "name": "Symfony Community",
  7680. "homepage": "https://symfony.com/contributors"
  7681. }
  7682. ],
  7683. "description": "Provides tools to internationalize your application",
  7684. "homepage": "https://symfony.com",
  7685. "support": {
  7686. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7687. },
  7688. "funding": [
  7689. {
  7690. "url": "https://symfony.com/sponsor",
  7691. "type": "custom"
  7692. },
  7693. {
  7694. "url": "https://github.com/fabpot",
  7695. "type": "github"
  7696. },
  7697. {
  7698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7699. "type": "tidelift"
  7700. }
  7701. ],
  7702. "time": "2023-01-01T08:36:10+00:00"
  7703. },
  7704. {
  7705. "name": "symfony/translation-contracts",
  7706. "version": "v3.0.2",
  7707. "source": {
  7708. "type": "git",
  7709. "url": "https://github.com/symfony/translation-contracts.git",
  7710. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7711. },
  7712. "dist": {
  7713. "type": "zip",
  7714. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7715. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7716. "shasum": ""
  7717. },
  7718. "require": {
  7719. "php": ">=8.0.2"
  7720. },
  7721. "suggest": {
  7722. "symfony/translation-implementation": ""
  7723. },
  7724. "type": "library",
  7725. "extra": {
  7726. "branch-alias": {
  7727. "dev-main": "3.0-dev"
  7728. },
  7729. "thanks": {
  7730. "name": "symfony/contracts",
  7731. "url": "https://github.com/symfony/contracts"
  7732. }
  7733. },
  7734. "autoload": {
  7735. "psr-4": {
  7736. "Symfony\\Contracts\\Translation\\": ""
  7737. }
  7738. },
  7739. "notification-url": "https://packagist.org/downloads/",
  7740. "license": [
  7741. "MIT"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "Nicolas Grekas",
  7746. "email": "p@tchwork.com"
  7747. },
  7748. {
  7749. "name": "Symfony Community",
  7750. "homepage": "https://symfony.com/contributors"
  7751. }
  7752. ],
  7753. "description": "Generic abstractions related to translation",
  7754. "homepage": "https://symfony.com",
  7755. "keywords": [
  7756. "abstractions",
  7757. "contracts",
  7758. "decoupling",
  7759. "interfaces",
  7760. "interoperability",
  7761. "standards"
  7762. ],
  7763. "support": {
  7764. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7765. },
  7766. "funding": [
  7767. {
  7768. "url": "https://symfony.com/sponsor",
  7769. "type": "custom"
  7770. },
  7771. {
  7772. "url": "https://github.com/fabpot",
  7773. "type": "github"
  7774. },
  7775. {
  7776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7777. "type": "tidelift"
  7778. }
  7779. ],
  7780. "time": "2022-06-27T17:10:44+00:00"
  7781. },
  7782. {
  7783. "name": "symfony/var-dumper",
  7784. "version": "v5.4.29",
  7785. "source": {
  7786. "type": "git",
  7787. "url": "https://github.com/symfony/var-dumper.git",
  7788. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  7789. },
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7793. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7794. "shasum": ""
  7795. },
  7796. "require": {
  7797. "php": ">=7.2.5",
  7798. "symfony/polyfill-mbstring": "~1.0",
  7799. "symfony/polyfill-php80": "^1.16"
  7800. },
  7801. "conflict": {
  7802. "symfony/console": "<4.4"
  7803. },
  7804. "require-dev": {
  7805. "ext-iconv": "*",
  7806. "symfony/console": "^4.4|^5.0|^6.0",
  7807. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7808. "symfony/process": "^4.4|^5.0|^6.0",
  7809. "symfony/uid": "^5.1|^6.0",
  7810. "twig/twig": "^2.13|^3.0.4"
  7811. },
  7812. "suggest": {
  7813. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7814. "ext-intl": "To show region name in time zone dump",
  7815. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7816. },
  7817. "bin": [
  7818. "Resources/bin/var-dump-server"
  7819. ],
  7820. "type": "library",
  7821. "autoload": {
  7822. "files": [
  7823. "Resources/functions/dump.php"
  7824. ],
  7825. "psr-4": {
  7826. "Symfony\\Component\\VarDumper\\": ""
  7827. },
  7828. "exclude-from-classmap": [
  7829. "/Tests/"
  7830. ]
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "MIT"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Nicolas Grekas",
  7839. "email": "p@tchwork.com"
  7840. },
  7841. {
  7842. "name": "Symfony Community",
  7843. "homepage": "https://symfony.com/contributors"
  7844. }
  7845. ],
  7846. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7847. "homepage": "https://symfony.com",
  7848. "keywords": [
  7849. "debug",
  7850. "dump"
  7851. ],
  7852. "support": {
  7853. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7854. },
  7855. "funding": [
  7856. {
  7857. "url": "https://symfony.com/sponsor",
  7858. "type": "custom"
  7859. },
  7860. {
  7861. "url": "https://github.com/fabpot",
  7862. "type": "github"
  7863. },
  7864. {
  7865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7866. "type": "tidelift"
  7867. }
  7868. ],
  7869. "time": "2023-09-12T10:09:58+00:00"
  7870. },
  7871. {
  7872. "name": "tightenco/collect",
  7873. "version": "v9.52.7",
  7874. "source": {
  7875. "type": "git",
  7876. "url": "https://github.com/tighten/collect.git",
  7877. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d"
  7878. },
  7879. "dist": {
  7880. "type": "zip",
  7881. "url": "https://api.github.com/repos/tighten/collect/zipball/b15143cd11fe01a700fcc449df61adc64452fa6d",
  7882. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d",
  7883. "shasum": ""
  7884. },
  7885. "require": {
  7886. "php": "^8.0",
  7887. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  7888. },
  7889. "require-dev": {
  7890. "mockery/mockery": "^1.0",
  7891. "nesbot/carbon": "^2.23.0",
  7892. "phpunit/phpunit": "^8.3"
  7893. },
  7894. "type": "library",
  7895. "autoload": {
  7896. "files": [
  7897. "src/Collect/Support/helpers.php",
  7898. "src/Collect/Support/alias.php"
  7899. ],
  7900. "psr-4": {
  7901. "Tightenco\\Collect\\": "src/Collect"
  7902. }
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Taylor Otwell",
  7911. "email": "taylorotwell@gmail.com"
  7912. }
  7913. ],
  7914. "description": "Collect - Illuminate Collections as a separate package.",
  7915. "keywords": [
  7916. "collection",
  7917. "laravel"
  7918. ],
  7919. "support": {
  7920. "issues": "https://github.com/tighten/collect/issues",
  7921. "source": "https://github.com/tighten/collect/tree/v9.52.7"
  7922. },
  7923. "time": "2023-04-14T21:51:36+00:00"
  7924. },
  7925. {
  7926. "name": "tijsverkoyen/css-to-inline-styles",
  7927. "version": "v2.2.7",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7931. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7936. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "ext-dom": "*",
  7941. "ext-libxml": "*",
  7942. "php": "^5.5 || ^7.0 || ^8.0",
  7943. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7944. },
  7945. "require-dev": {
  7946. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7947. },
  7948. "type": "library",
  7949. "extra": {
  7950. "branch-alias": {
  7951. "dev-master": "2.2.x-dev"
  7952. }
  7953. },
  7954. "autoload": {
  7955. "psr-4": {
  7956. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7957. }
  7958. },
  7959. "notification-url": "https://packagist.org/downloads/",
  7960. "license": [
  7961. "BSD-3-Clause"
  7962. ],
  7963. "authors": [
  7964. {
  7965. "name": "Tijs Verkoyen",
  7966. "email": "css_to_inline_styles@verkoyen.eu",
  7967. "role": "Developer"
  7968. }
  7969. ],
  7970. "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.",
  7971. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7972. "support": {
  7973. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7974. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7975. },
  7976. "time": "2023-12-08T13:03:43+00:00"
  7977. },
  7978. {
  7979. "name": "vlucas/phpdotenv",
  7980. "version": "v5.6.0",
  7981. "source": {
  7982. "type": "git",
  7983. "url": "https://github.com/vlucas/phpdotenv.git",
  7984. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7985. },
  7986. "dist": {
  7987. "type": "zip",
  7988. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7989. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7990. "shasum": ""
  7991. },
  7992. "require": {
  7993. "ext-pcre": "*",
  7994. "graham-campbell/result-type": "^1.1.2",
  7995. "php": "^7.2.5 || ^8.0",
  7996. "phpoption/phpoption": "^1.9.2",
  7997. "symfony/polyfill-ctype": "^1.24",
  7998. "symfony/polyfill-mbstring": "^1.24",
  7999. "symfony/polyfill-php80": "^1.24"
  8000. },
  8001. "require-dev": {
  8002. "bamarni/composer-bin-plugin": "^1.8.2",
  8003. "ext-filter": "*",
  8004. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8005. },
  8006. "suggest": {
  8007. "ext-filter": "Required to use the boolean validator."
  8008. },
  8009. "type": "library",
  8010. "extra": {
  8011. "bamarni-bin": {
  8012. "bin-links": true,
  8013. "forward-command": true
  8014. },
  8015. "branch-alias": {
  8016. "dev-master": "5.6-dev"
  8017. }
  8018. },
  8019. "autoload": {
  8020. "psr-4": {
  8021. "Dotenv\\": "src/"
  8022. }
  8023. },
  8024. "notification-url": "https://packagist.org/downloads/",
  8025. "license": [
  8026. "BSD-3-Clause"
  8027. ],
  8028. "authors": [
  8029. {
  8030. "name": "Graham Campbell",
  8031. "email": "hello@gjcampbell.co.uk",
  8032. "homepage": "https://github.com/GrahamCampbell"
  8033. },
  8034. {
  8035. "name": "Vance Lucas",
  8036. "email": "vance@vancelucas.com",
  8037. "homepage": "https://github.com/vlucas"
  8038. }
  8039. ],
  8040. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8041. "keywords": [
  8042. "dotenv",
  8043. "env",
  8044. "environment"
  8045. ],
  8046. "support": {
  8047. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8048. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  8049. },
  8050. "funding": [
  8051. {
  8052. "url": "https://github.com/GrahamCampbell",
  8053. "type": "github"
  8054. },
  8055. {
  8056. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8057. "type": "tidelift"
  8058. }
  8059. ],
  8060. "time": "2023-11-12T22:43:29+00:00"
  8061. },
  8062. {
  8063. "name": "voku/portable-ascii",
  8064. "version": "1.6.1",
  8065. "source": {
  8066. "type": "git",
  8067. "url": "https://github.com/voku/portable-ascii.git",
  8068. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8069. },
  8070. "dist": {
  8071. "type": "zip",
  8072. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8073. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8074. "shasum": ""
  8075. },
  8076. "require": {
  8077. "php": ">=7.0.0"
  8078. },
  8079. "require-dev": {
  8080. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8081. },
  8082. "suggest": {
  8083. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8084. },
  8085. "type": "library",
  8086. "autoload": {
  8087. "psr-4": {
  8088. "voku\\": "src/voku/"
  8089. }
  8090. },
  8091. "notification-url": "https://packagist.org/downloads/",
  8092. "license": [
  8093. "MIT"
  8094. ],
  8095. "authors": [
  8096. {
  8097. "name": "Lars Moelleken",
  8098. "homepage": "http://www.moelleken.org/"
  8099. }
  8100. ],
  8101. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8102. "homepage": "https://github.com/voku/portable-ascii",
  8103. "keywords": [
  8104. "ascii",
  8105. "clean",
  8106. "php"
  8107. ],
  8108. "support": {
  8109. "issues": "https://github.com/voku/portable-ascii/issues",
  8110. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8111. },
  8112. "funding": [
  8113. {
  8114. "url": "https://www.paypal.me/moelleken",
  8115. "type": "custom"
  8116. },
  8117. {
  8118. "url": "https://github.com/voku",
  8119. "type": "github"
  8120. },
  8121. {
  8122. "url": "https://opencollective.com/portable-ascii",
  8123. "type": "open_collective"
  8124. },
  8125. {
  8126. "url": "https://www.patreon.com/voku",
  8127. "type": "patreon"
  8128. },
  8129. {
  8130. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8131. "type": "tidelift"
  8132. }
  8133. ],
  8134. "time": "2022-01-24T18:55:24+00:00"
  8135. },
  8136. {
  8137. "name": "webmozart/assert",
  8138. "version": "1.11.0",
  8139. "source": {
  8140. "type": "git",
  8141. "url": "https://github.com/webmozarts/assert.git",
  8142. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8143. },
  8144. "dist": {
  8145. "type": "zip",
  8146. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8147. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8148. "shasum": ""
  8149. },
  8150. "require": {
  8151. "ext-ctype": "*",
  8152. "php": "^7.2 || ^8.0"
  8153. },
  8154. "conflict": {
  8155. "phpstan/phpstan": "<0.12.20",
  8156. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8157. },
  8158. "require-dev": {
  8159. "phpunit/phpunit": "^8.5.13"
  8160. },
  8161. "type": "library",
  8162. "extra": {
  8163. "branch-alias": {
  8164. "dev-master": "1.10-dev"
  8165. }
  8166. },
  8167. "autoload": {
  8168. "psr-4": {
  8169. "Webmozart\\Assert\\": "src/"
  8170. }
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "MIT"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Bernhard Schussek",
  8179. "email": "bschussek@gmail.com"
  8180. }
  8181. ],
  8182. "description": "Assertions to validate method input/output with nice error messages.",
  8183. "keywords": [
  8184. "assert",
  8185. "check",
  8186. "validate"
  8187. ],
  8188. "support": {
  8189. "issues": "https://github.com/webmozarts/assert/issues",
  8190. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8191. },
  8192. "time": "2022-06-03T18:03:27+00:00"
  8193. },
  8194. {
  8195. "name": "wechatpay/wechatpay-guzzle-middleware",
  8196. "version": "0.2.2",
  8197. "source": {
  8198. "type": "git",
  8199. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  8200. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  8201. },
  8202. "dist": {
  8203. "type": "zip",
  8204. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8205. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8206. "shasum": ""
  8207. },
  8208. "require": {
  8209. "ext-openssl": "*",
  8210. "php": ">=5.5"
  8211. },
  8212. "require-dev": {
  8213. "guzzlehttp/guzzle": "^6.3"
  8214. },
  8215. "suggest": {
  8216. "ext-bcmath": "Require bcmath in php 5.* version.",
  8217. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  8218. },
  8219. "bin": [
  8220. "tool/CertificateDownloader.php"
  8221. ],
  8222. "type": "library",
  8223. "autoload": {
  8224. "psr-4": {
  8225. "WechatPay\\GuzzleMiddleware\\": "src/"
  8226. }
  8227. },
  8228. "notification-url": "https://packagist.org/downloads/",
  8229. "license": [
  8230. "Apache-2.0"
  8231. ],
  8232. "description": "WechatPay API V3 Guzzle Middleware",
  8233. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  8234. "keywords": [
  8235. "wechatpay"
  8236. ],
  8237. "support": {
  8238. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  8239. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  8240. },
  8241. "time": "2021-03-05T03:09:29+00:00"
  8242. },
  8243. {
  8244. "name": "wxkxklmyt/pscws4",
  8245. "version": "0.0.2",
  8246. "source": {
  8247. "type": "git",
  8248. "url": "https://github.com/wxkxklmyt/pscws4.git",
  8249. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f"
  8250. },
  8251. "dist": {
  8252. "type": "zip",
  8253. "url": "https://api.github.com/repos/wxkxklmyt/pscws4/zipball/b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  8254. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  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": ">=5.4.0"
  8265. },
  8266. "type": "library",
  8267. "autoload": {
  8268. "psr-4": {
  8269. "wxkxklmyt\\": "src/"
  8270. }
  8271. },
  8272. "notification-url": "https://packagist.org/downloads/",
  8273. "authors": [
  8274. {
  8275. "name": "我的梦",
  8276. "email": "519468341@qq.com"
  8277. }
  8278. ],
  8279. "description": "基于PSCWS4的中文分词工具",
  8280. "support": {
  8281. "issues": "https://github.com/wxkxklmyt/pscws4/issues",
  8282. "source": "https://github.com/wxkxklmyt/pscws4/tree/0.0.2"
  8283. },
  8284. "time": "2017-12-22T08:56:36+00:00"
  8285. },
  8286. {
  8287. "name": "yansongda/pay",
  8288. "version": "v3.4.2",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/yansongda/pay.git",
  8292. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  8297. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "ext-bcmath": "*",
  8302. "ext-json": "*",
  8303. "ext-libxml": "*",
  8304. "ext-openssl": "*",
  8305. "ext-simplexml": "*",
  8306. "php": ">=8.0",
  8307. "psr/container": "^1.1 || ^2.0",
  8308. "psr/event-dispatcher": "^1.0",
  8309. "psr/http-client": "^1.0",
  8310. "psr/http-message": "^1.1 || ^2.0",
  8311. "psr/log": "^1.1 || ^2.0 || ^3.0",
  8312. "yansongda/supports": "~4.0.0"
  8313. },
  8314. "conflict": {
  8315. "hyperf/framework": "<3.0"
  8316. },
  8317. "require-dev": {
  8318. "friendsofphp/php-cs-fixer": "^3.0",
  8319. "guzzlehttp/guzzle": "^7.0",
  8320. "hyperf/pimple": "^2.2",
  8321. "mockery/mockery": "^1.4",
  8322. "monolog/monolog": "^2.2",
  8323. "phpstan/phpstan": "^1.0.0",
  8324. "phpunit/phpunit": "^9.0",
  8325. "symfony/event-dispatcher": "^5.2.0",
  8326. "symfony/http-foundation": "^5.2.0",
  8327. "symfony/psr-http-message-bridge": "^2.1",
  8328. "symfony/var-dumper": "^5.1"
  8329. },
  8330. "suggest": {
  8331. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  8332. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  8333. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  8334. },
  8335. "type": "library",
  8336. "autoload": {
  8337. "files": [
  8338. "src/Functions.php"
  8339. ],
  8340. "psr-4": {
  8341. "Yansongda\\Pay\\": "src"
  8342. }
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "authors": [
  8349. {
  8350. "name": "yansongda",
  8351. "email": "me@yansongda.cn"
  8352. }
  8353. ],
  8354. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8355. "keywords": [
  8356. "alipay",
  8357. "pay",
  8358. "wechat"
  8359. ],
  8360. "support": {
  8361. "homepage": "https://pay.yansongda.cn",
  8362. "issues": "https://github.com/yansongda/pay/issues",
  8363. "source": "https://github.com/yansongda/pay"
  8364. },
  8365. "time": "2023-06-27T09:54:37+00:00"
  8366. },
  8367. {
  8368. "name": "yansongda/supports",
  8369. "version": "v4.0.2",
  8370. "source": {
  8371. "type": "git",
  8372. "url": "https://github.com/yansongda/supports.git",
  8373. "reference": "4a9cefecfcbe3f6826b6ae2d803f5094bd923498"
  8374. },
  8375. "dist": {
  8376. "type": "zip",
  8377. "url": "https://api.github.com/repos/yansongda/supports/zipball/4a9cefecfcbe3f6826b6ae2d803f5094bd923498",
  8378. "reference": "4a9cefecfcbe3f6826b6ae2d803f5094bd923498",
  8379. "shasum": ""
  8380. },
  8381. "require": {
  8382. "php": ">=8.0"
  8383. },
  8384. "require-dev": {
  8385. "friendsofphp/php-cs-fixer": "^3.0",
  8386. "mockery/mockery": "^1.4",
  8387. "phpstan/phpstan": "^1.1.0",
  8388. "phpunit/phpunit": "^9.0"
  8389. },
  8390. "suggest": {
  8391. "monolog/monolog": "Use logger",
  8392. "symfony/console": "Use stdout logger"
  8393. },
  8394. "type": "library",
  8395. "autoload": {
  8396. "files": [
  8397. "src/Functions.php"
  8398. ],
  8399. "psr-4": {
  8400. "Yansongda\\Supports\\": "src/"
  8401. }
  8402. },
  8403. "notification-url": "https://packagist.org/downloads/",
  8404. "license": [
  8405. "MIT"
  8406. ],
  8407. "authors": [
  8408. {
  8409. "name": "yansongda",
  8410. "email": "me@yansongda.cn"
  8411. }
  8412. ],
  8413. "description": "common components",
  8414. "keywords": [
  8415. "array",
  8416. "collection",
  8417. "config",
  8418. "support"
  8419. ],
  8420. "support": {
  8421. "issues": "https://github.com/yansongda/supports/issues",
  8422. "source": "https://github.com/yansongda/supports"
  8423. },
  8424. "time": "2023-06-19T13:04:31+00:00"
  8425. }
  8426. ],
  8427. "packages-dev": [
  8428. {
  8429. "name": "doctrine/instantiator",
  8430. "version": "1.5.0",
  8431. "source": {
  8432. "type": "git",
  8433. "url": "https://github.com/doctrine/instantiator.git",
  8434. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8435. },
  8436. "dist": {
  8437. "type": "zip",
  8438. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8439. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8440. "shasum": ""
  8441. },
  8442. "require": {
  8443. "php": "^7.1 || ^8.0"
  8444. },
  8445. "require-dev": {
  8446. "doctrine/coding-standard": "^9 || ^11",
  8447. "ext-pdo": "*",
  8448. "ext-phar": "*",
  8449. "phpbench/phpbench": "^0.16 || ^1",
  8450. "phpstan/phpstan": "^1.4",
  8451. "phpstan/phpstan-phpunit": "^1",
  8452. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8453. "vimeo/psalm": "^4.30 || ^5.4"
  8454. },
  8455. "type": "library",
  8456. "autoload": {
  8457. "psr-4": {
  8458. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8459. }
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "Marco Pivetta",
  8468. "email": "ocramius@gmail.com",
  8469. "homepage": "https://ocramius.github.io/"
  8470. }
  8471. ],
  8472. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8473. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8474. "keywords": [
  8475. "constructor",
  8476. "instantiate"
  8477. ],
  8478. "support": {
  8479. "issues": "https://github.com/doctrine/instantiator/issues",
  8480. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://www.doctrine-project.org/sponsorship.html",
  8485. "type": "custom"
  8486. },
  8487. {
  8488. "url": "https://www.patreon.com/phpdoctrine",
  8489. "type": "patreon"
  8490. },
  8491. {
  8492. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8493. "type": "tidelift"
  8494. }
  8495. ],
  8496. "time": "2022-12-30T00:15:36+00:00"
  8497. },
  8498. {
  8499. "name": "facade/flare-client-php",
  8500. "version": "1.10.0",
  8501. "source": {
  8502. "type": "git",
  8503. "url": "https://github.com/facade/flare-client-php.git",
  8504. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8505. },
  8506. "dist": {
  8507. "type": "zip",
  8508. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8509. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8510. "shasum": ""
  8511. },
  8512. "require": {
  8513. "facade/ignition-contracts": "~1.0",
  8514. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8515. "php": "^7.1|^8.0",
  8516. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8517. "symfony/mime": "^3.4|^4.0|^5.1",
  8518. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8519. },
  8520. "require-dev": {
  8521. "friendsofphp/php-cs-fixer": "^2.14",
  8522. "phpunit/phpunit": "^7.5",
  8523. "spatie/phpunit-snapshot-assertions": "^2.0"
  8524. },
  8525. "type": "library",
  8526. "extra": {
  8527. "branch-alias": {
  8528. "dev-master": "1.0-dev"
  8529. }
  8530. },
  8531. "autoload": {
  8532. "files": [
  8533. "src/helpers.php"
  8534. ],
  8535. "psr-4": {
  8536. "Facade\\FlareClient\\": "src"
  8537. }
  8538. },
  8539. "notification-url": "https://packagist.org/downloads/",
  8540. "license": [
  8541. "MIT"
  8542. ],
  8543. "description": "Send PHP errors to Flare",
  8544. "homepage": "https://github.com/facade/flare-client-php",
  8545. "keywords": [
  8546. "exception",
  8547. "facade",
  8548. "flare",
  8549. "reporting"
  8550. ],
  8551. "support": {
  8552. "issues": "https://github.com/facade/flare-client-php/issues",
  8553. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8554. },
  8555. "funding": [
  8556. {
  8557. "url": "https://github.com/spatie",
  8558. "type": "github"
  8559. }
  8560. ],
  8561. "time": "2022-08-09T11:23:57+00:00"
  8562. },
  8563. {
  8564. "name": "facade/ignition",
  8565. "version": "2.17.7",
  8566. "source": {
  8567. "type": "git",
  8568. "url": "https://github.com/facade/ignition.git",
  8569. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8570. },
  8571. "dist": {
  8572. "type": "zip",
  8573. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8574. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8575. "shasum": ""
  8576. },
  8577. "require": {
  8578. "ext-curl": "*",
  8579. "ext-json": "*",
  8580. "ext-mbstring": "*",
  8581. "facade/flare-client-php": "^1.9.1",
  8582. "facade/ignition-contracts": "^1.0.2",
  8583. "illuminate/support": "^7.0|^8.0",
  8584. "monolog/monolog": "^2.0",
  8585. "php": "^7.2.5|^8.0",
  8586. "symfony/console": "^5.0",
  8587. "symfony/var-dumper": "^5.0"
  8588. },
  8589. "require-dev": {
  8590. "friendsofphp/php-cs-fixer": "^2.14",
  8591. "livewire/livewire": "^2.4",
  8592. "mockery/mockery": "^1.3",
  8593. "orchestra/testbench": "^5.0|^6.0",
  8594. "psalm/plugin-laravel": "^1.2"
  8595. },
  8596. "suggest": {
  8597. "laravel/telescope": "^3.1"
  8598. },
  8599. "type": "library",
  8600. "extra": {
  8601. "branch-alias": {
  8602. "dev-master": "2.x-dev"
  8603. },
  8604. "laravel": {
  8605. "providers": [
  8606. "Facade\\Ignition\\IgnitionServiceProvider"
  8607. ],
  8608. "aliases": {
  8609. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8610. }
  8611. }
  8612. },
  8613. "autoload": {
  8614. "files": [
  8615. "src/helpers.php"
  8616. ],
  8617. "psr-4": {
  8618. "Facade\\Ignition\\": "src"
  8619. }
  8620. },
  8621. "notification-url": "https://packagist.org/downloads/",
  8622. "license": [
  8623. "MIT"
  8624. ],
  8625. "description": "A beautiful error page for Laravel applications.",
  8626. "homepage": "https://github.com/facade/ignition",
  8627. "keywords": [
  8628. "error",
  8629. "flare",
  8630. "laravel",
  8631. "page"
  8632. ],
  8633. "support": {
  8634. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8635. "forum": "https://twitter.com/flareappio",
  8636. "issues": "https://github.com/facade/ignition/issues",
  8637. "source": "https://github.com/facade/ignition"
  8638. },
  8639. "time": "2023-01-26T12:34:59+00:00"
  8640. },
  8641. {
  8642. "name": "facade/ignition-contracts",
  8643. "version": "1.0.2",
  8644. "source": {
  8645. "type": "git",
  8646. "url": "https://github.com/facade/ignition-contracts.git",
  8647. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8648. },
  8649. "dist": {
  8650. "type": "zip",
  8651. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8652. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8653. "shasum": ""
  8654. },
  8655. "require": {
  8656. "php": "^7.3|^8.0"
  8657. },
  8658. "require-dev": {
  8659. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8660. "phpunit/phpunit": "^9.3.11",
  8661. "vimeo/psalm": "^3.17.1"
  8662. },
  8663. "type": "library",
  8664. "autoload": {
  8665. "psr-4": {
  8666. "Facade\\IgnitionContracts\\": "src"
  8667. }
  8668. },
  8669. "notification-url": "https://packagist.org/downloads/",
  8670. "license": [
  8671. "MIT"
  8672. ],
  8673. "authors": [
  8674. {
  8675. "name": "Freek Van der Herten",
  8676. "email": "freek@spatie.be",
  8677. "homepage": "https://flareapp.io",
  8678. "role": "Developer"
  8679. }
  8680. ],
  8681. "description": "Solution contracts for Ignition",
  8682. "homepage": "https://github.com/facade/ignition-contracts",
  8683. "keywords": [
  8684. "contracts",
  8685. "flare",
  8686. "ignition"
  8687. ],
  8688. "support": {
  8689. "issues": "https://github.com/facade/ignition-contracts/issues",
  8690. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8691. },
  8692. "time": "2020-10-16T08:27:54+00:00"
  8693. },
  8694. {
  8695. "name": "fakerphp/faker",
  8696. "version": "v1.23.0",
  8697. "source": {
  8698. "type": "git",
  8699. "url": "https://github.com/FakerPHP/Faker.git",
  8700. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8701. },
  8702. "dist": {
  8703. "type": "zip",
  8704. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8705. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8706. "shasum": ""
  8707. },
  8708. "require": {
  8709. "php": "^7.4 || ^8.0",
  8710. "psr/container": "^1.0 || ^2.0",
  8711. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8712. },
  8713. "conflict": {
  8714. "fzaninotto/faker": "*"
  8715. },
  8716. "require-dev": {
  8717. "bamarni/composer-bin-plugin": "^1.4.1",
  8718. "doctrine/persistence": "^1.3 || ^2.0",
  8719. "ext-intl": "*",
  8720. "phpunit/phpunit": "^9.5.26",
  8721. "symfony/phpunit-bridge": "^5.4.16"
  8722. },
  8723. "suggest": {
  8724. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8725. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8726. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8727. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8728. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8729. },
  8730. "type": "library",
  8731. "extra": {
  8732. "branch-alias": {
  8733. "dev-main": "v1.21-dev"
  8734. }
  8735. },
  8736. "autoload": {
  8737. "psr-4": {
  8738. "Faker\\": "src/Faker/"
  8739. }
  8740. },
  8741. "notification-url": "https://packagist.org/downloads/",
  8742. "license": [
  8743. "MIT"
  8744. ],
  8745. "authors": [
  8746. {
  8747. "name": "François Zaninotto"
  8748. }
  8749. ],
  8750. "description": "Faker is a PHP library that generates fake data for you.",
  8751. "keywords": [
  8752. "data",
  8753. "faker",
  8754. "fixtures"
  8755. ],
  8756. "support": {
  8757. "issues": "https://github.com/FakerPHP/Faker/issues",
  8758. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8759. },
  8760. "time": "2023-06-12T08:44:38+00:00"
  8761. },
  8762. {
  8763. "name": "filp/whoops",
  8764. "version": "2.15.4",
  8765. "source": {
  8766. "type": "git",
  8767. "url": "https://github.com/filp/whoops.git",
  8768. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8769. },
  8770. "dist": {
  8771. "type": "zip",
  8772. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8773. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8774. "shasum": ""
  8775. },
  8776. "require": {
  8777. "php": "^5.5.9 || ^7.0 || ^8.0",
  8778. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8779. },
  8780. "require-dev": {
  8781. "mockery/mockery": "^0.9 || ^1.0",
  8782. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8783. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8784. },
  8785. "suggest": {
  8786. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8787. "whoops/soap": "Formats errors as SOAP responses"
  8788. },
  8789. "type": "library",
  8790. "extra": {
  8791. "branch-alias": {
  8792. "dev-master": "2.7-dev"
  8793. }
  8794. },
  8795. "autoload": {
  8796. "psr-4": {
  8797. "Whoops\\": "src/Whoops/"
  8798. }
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "MIT"
  8803. ],
  8804. "authors": [
  8805. {
  8806. "name": "Filipe Dobreira",
  8807. "homepage": "https://github.com/filp",
  8808. "role": "Developer"
  8809. }
  8810. ],
  8811. "description": "php error handling for cool kids",
  8812. "homepage": "https://filp.github.io/whoops/",
  8813. "keywords": [
  8814. "error",
  8815. "exception",
  8816. "handling",
  8817. "library",
  8818. "throwable",
  8819. "whoops"
  8820. ],
  8821. "support": {
  8822. "issues": "https://github.com/filp/whoops/issues",
  8823. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8824. },
  8825. "funding": [
  8826. {
  8827. "url": "https://github.com/denis-sokolov",
  8828. "type": "github"
  8829. }
  8830. ],
  8831. "time": "2023-11-03T12:00:00+00:00"
  8832. },
  8833. {
  8834. "name": "hamcrest/hamcrest-php",
  8835. "version": "v2.0.1",
  8836. "source": {
  8837. "type": "git",
  8838. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8839. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8840. },
  8841. "dist": {
  8842. "type": "zip",
  8843. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8844. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8845. "shasum": ""
  8846. },
  8847. "require": {
  8848. "php": "^5.3|^7.0|^8.0"
  8849. },
  8850. "replace": {
  8851. "cordoval/hamcrest-php": "*",
  8852. "davedevelopment/hamcrest-php": "*",
  8853. "kodova/hamcrest-php": "*"
  8854. },
  8855. "require-dev": {
  8856. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8857. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8858. },
  8859. "type": "library",
  8860. "extra": {
  8861. "branch-alias": {
  8862. "dev-master": "2.1-dev"
  8863. }
  8864. },
  8865. "autoload": {
  8866. "classmap": [
  8867. "hamcrest"
  8868. ]
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "BSD-3-Clause"
  8873. ],
  8874. "description": "This is the PHP port of Hamcrest Matchers",
  8875. "keywords": [
  8876. "test"
  8877. ],
  8878. "support": {
  8879. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8880. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8881. },
  8882. "time": "2020-07-09T08:09:16+00:00"
  8883. },
  8884. {
  8885. "name": "mockery/mockery",
  8886. "version": "1.6.7",
  8887. "source": {
  8888. "type": "git",
  8889. "url": "https://github.com/mockery/mockery.git",
  8890. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06"
  8891. },
  8892. "dist": {
  8893. "type": "zip",
  8894. "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  8895. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  8896. "shasum": ""
  8897. },
  8898. "require": {
  8899. "hamcrest/hamcrest-php": "^2.0.1",
  8900. "lib-pcre": ">=7.0",
  8901. "php": ">=7.3"
  8902. },
  8903. "conflict": {
  8904. "phpunit/phpunit": "<8.0"
  8905. },
  8906. "require-dev": {
  8907. "phpunit/phpunit": "^8.5 || ^9.6.10",
  8908. "symplify/easy-coding-standard": "^12.0.8"
  8909. },
  8910. "type": "library",
  8911. "autoload": {
  8912. "files": [
  8913. "library/helpers.php",
  8914. "library/Mockery.php"
  8915. ],
  8916. "psr-4": {
  8917. "Mockery\\": "library/Mockery"
  8918. }
  8919. },
  8920. "notification-url": "https://packagist.org/downloads/",
  8921. "license": [
  8922. "BSD-3-Clause"
  8923. ],
  8924. "authors": [
  8925. {
  8926. "name": "Pádraic Brady",
  8927. "email": "padraic.brady@gmail.com",
  8928. "homepage": "https://github.com/padraic",
  8929. "role": "Author"
  8930. },
  8931. {
  8932. "name": "Dave Marshall",
  8933. "email": "dave.marshall@atstsolutions.co.uk",
  8934. "homepage": "https://davedevelopment.co.uk",
  8935. "role": "Developer"
  8936. },
  8937. {
  8938. "name": "Nathanael Esayeas",
  8939. "email": "nathanael.esayeas@protonmail.com",
  8940. "homepage": "https://github.com/ghostwriter",
  8941. "role": "Lead Developer"
  8942. }
  8943. ],
  8944. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8945. "homepage": "https://github.com/mockery/mockery",
  8946. "keywords": [
  8947. "BDD",
  8948. "TDD",
  8949. "library",
  8950. "mock",
  8951. "mock objects",
  8952. "mockery",
  8953. "stub",
  8954. "test",
  8955. "test double",
  8956. "testing"
  8957. ],
  8958. "support": {
  8959. "docs": "https://docs.mockery.io/",
  8960. "issues": "https://github.com/mockery/mockery/issues",
  8961. "rss": "https://github.com/mockery/mockery/releases.atom",
  8962. "security": "https://github.com/mockery/mockery/security/advisories",
  8963. "source": "https://github.com/mockery/mockery"
  8964. },
  8965. "time": "2023-12-10T02:24:34+00:00"
  8966. },
  8967. {
  8968. "name": "myclabs/deep-copy",
  8969. "version": "1.11.1",
  8970. "source": {
  8971. "type": "git",
  8972. "url": "https://github.com/myclabs/DeepCopy.git",
  8973. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8974. },
  8975. "dist": {
  8976. "type": "zip",
  8977. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8978. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8979. "shasum": ""
  8980. },
  8981. "require": {
  8982. "php": "^7.1 || ^8.0"
  8983. },
  8984. "conflict": {
  8985. "doctrine/collections": "<1.6.8",
  8986. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8987. },
  8988. "require-dev": {
  8989. "doctrine/collections": "^1.6.8",
  8990. "doctrine/common": "^2.13.3 || ^3.2.2",
  8991. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8992. },
  8993. "type": "library",
  8994. "autoload": {
  8995. "files": [
  8996. "src/DeepCopy/deep_copy.php"
  8997. ],
  8998. "psr-4": {
  8999. "DeepCopy\\": "src/DeepCopy/"
  9000. }
  9001. },
  9002. "notification-url": "https://packagist.org/downloads/",
  9003. "license": [
  9004. "MIT"
  9005. ],
  9006. "description": "Create deep copies (clones) of your objects",
  9007. "keywords": [
  9008. "clone",
  9009. "copy",
  9010. "duplicate",
  9011. "object",
  9012. "object graph"
  9013. ],
  9014. "support": {
  9015. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9016. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9017. },
  9018. "funding": [
  9019. {
  9020. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9021. "type": "tidelift"
  9022. }
  9023. ],
  9024. "time": "2023-03-08T13:26:56+00:00"
  9025. },
  9026. {
  9027. "name": "nunomaduro/collision",
  9028. "version": "v5.11.0",
  9029. "source": {
  9030. "type": "git",
  9031. "url": "https://github.com/nunomaduro/collision.git",
  9032. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9033. },
  9034. "dist": {
  9035. "type": "zip",
  9036. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9037. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9038. "shasum": ""
  9039. },
  9040. "require": {
  9041. "facade/ignition-contracts": "^1.0",
  9042. "filp/whoops": "^2.14.3",
  9043. "php": "^7.3 || ^8.0",
  9044. "symfony/console": "^5.0"
  9045. },
  9046. "require-dev": {
  9047. "brianium/paratest": "^6.1",
  9048. "fideloper/proxy": "^4.4.1",
  9049. "fruitcake/laravel-cors": "^2.0.3",
  9050. "laravel/framework": "8.x-dev",
  9051. "nunomaduro/larastan": "^0.6.2",
  9052. "nunomaduro/mock-final-classes": "^1.0",
  9053. "orchestra/testbench": "^6.0",
  9054. "phpstan/phpstan": "^0.12.64",
  9055. "phpunit/phpunit": "^9.5.0"
  9056. },
  9057. "type": "library",
  9058. "extra": {
  9059. "laravel": {
  9060. "providers": [
  9061. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9062. ]
  9063. }
  9064. },
  9065. "autoload": {
  9066. "psr-4": {
  9067. "NunoMaduro\\Collision\\": "src/"
  9068. }
  9069. },
  9070. "notification-url": "https://packagist.org/downloads/",
  9071. "license": [
  9072. "MIT"
  9073. ],
  9074. "authors": [
  9075. {
  9076. "name": "Nuno Maduro",
  9077. "email": "enunomaduro@gmail.com"
  9078. }
  9079. ],
  9080. "description": "Cli error handling for console/command-line PHP applications.",
  9081. "keywords": [
  9082. "artisan",
  9083. "cli",
  9084. "command-line",
  9085. "console",
  9086. "error",
  9087. "handling",
  9088. "laravel",
  9089. "laravel-zero",
  9090. "php",
  9091. "symfony"
  9092. ],
  9093. "support": {
  9094. "issues": "https://github.com/nunomaduro/collision/issues",
  9095. "source": "https://github.com/nunomaduro/collision"
  9096. },
  9097. "funding": [
  9098. {
  9099. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9100. "type": "custom"
  9101. },
  9102. {
  9103. "url": "https://github.com/nunomaduro",
  9104. "type": "github"
  9105. },
  9106. {
  9107. "url": "https://www.patreon.com/nunomaduro",
  9108. "type": "patreon"
  9109. }
  9110. ],
  9111. "time": "2022-01-10T16:22:52+00:00"
  9112. },
  9113. {
  9114. "name": "phar-io/manifest",
  9115. "version": "2.0.3",
  9116. "source": {
  9117. "type": "git",
  9118. "url": "https://github.com/phar-io/manifest.git",
  9119. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9120. },
  9121. "dist": {
  9122. "type": "zip",
  9123. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9124. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9125. "shasum": ""
  9126. },
  9127. "require": {
  9128. "ext-dom": "*",
  9129. "ext-phar": "*",
  9130. "ext-xmlwriter": "*",
  9131. "phar-io/version": "^3.0.1",
  9132. "php": "^7.2 || ^8.0"
  9133. },
  9134. "type": "library",
  9135. "extra": {
  9136. "branch-alias": {
  9137. "dev-master": "2.0.x-dev"
  9138. }
  9139. },
  9140. "autoload": {
  9141. "classmap": [
  9142. "src/"
  9143. ]
  9144. },
  9145. "notification-url": "https://packagist.org/downloads/",
  9146. "license": [
  9147. "BSD-3-Clause"
  9148. ],
  9149. "authors": [
  9150. {
  9151. "name": "Arne Blankerts",
  9152. "email": "arne@blankerts.de",
  9153. "role": "Developer"
  9154. },
  9155. {
  9156. "name": "Sebastian Heuer",
  9157. "email": "sebastian@phpeople.de",
  9158. "role": "Developer"
  9159. },
  9160. {
  9161. "name": "Sebastian Bergmann",
  9162. "email": "sebastian@phpunit.de",
  9163. "role": "Developer"
  9164. }
  9165. ],
  9166. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9167. "support": {
  9168. "issues": "https://github.com/phar-io/manifest/issues",
  9169. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9170. },
  9171. "time": "2021-07-20T11:28:43+00:00"
  9172. },
  9173. {
  9174. "name": "phar-io/version",
  9175. "version": "3.2.1",
  9176. "source": {
  9177. "type": "git",
  9178. "url": "https://github.com/phar-io/version.git",
  9179. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9180. },
  9181. "dist": {
  9182. "type": "zip",
  9183. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9184. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9185. "shasum": ""
  9186. },
  9187. "require": {
  9188. "php": "^7.2 || ^8.0"
  9189. },
  9190. "type": "library",
  9191. "autoload": {
  9192. "classmap": [
  9193. "src/"
  9194. ]
  9195. },
  9196. "notification-url": "https://packagist.org/downloads/",
  9197. "license": [
  9198. "BSD-3-Clause"
  9199. ],
  9200. "authors": [
  9201. {
  9202. "name": "Arne Blankerts",
  9203. "email": "arne@blankerts.de",
  9204. "role": "Developer"
  9205. },
  9206. {
  9207. "name": "Sebastian Heuer",
  9208. "email": "sebastian@phpeople.de",
  9209. "role": "Developer"
  9210. },
  9211. {
  9212. "name": "Sebastian Bergmann",
  9213. "email": "sebastian@phpunit.de",
  9214. "role": "Developer"
  9215. }
  9216. ],
  9217. "description": "Library for handling version information and constraints",
  9218. "support": {
  9219. "issues": "https://github.com/phar-io/version/issues",
  9220. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9221. },
  9222. "time": "2022-02-21T01:04:05+00:00"
  9223. },
  9224. {
  9225. "name": "phpunit/php-code-coverage",
  9226. "version": "9.2.29",
  9227. "source": {
  9228. "type": "git",
  9229. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9230. "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76"
  9231. },
  9232. "dist": {
  9233. "type": "zip",
  9234. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/6a3a87ac2bbe33b25042753df8195ba4aa534c76",
  9235. "reference": "6a3a87ac2bbe33b25042753df8195ba4aa534c76",
  9236. "shasum": ""
  9237. },
  9238. "require": {
  9239. "ext-dom": "*",
  9240. "ext-libxml": "*",
  9241. "ext-xmlwriter": "*",
  9242. "nikic/php-parser": "^4.15",
  9243. "php": ">=7.3",
  9244. "phpunit/php-file-iterator": "^3.0.3",
  9245. "phpunit/php-text-template": "^2.0.2",
  9246. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9247. "sebastian/complexity": "^2.0",
  9248. "sebastian/environment": "^5.1.2",
  9249. "sebastian/lines-of-code": "^1.0.3",
  9250. "sebastian/version": "^3.0.1",
  9251. "theseer/tokenizer": "^1.2.0"
  9252. },
  9253. "require-dev": {
  9254. "phpunit/phpunit": "^9.3"
  9255. },
  9256. "suggest": {
  9257. "ext-pcov": "PHP extension that provides line coverage",
  9258. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9259. },
  9260. "type": "library",
  9261. "extra": {
  9262. "branch-alias": {
  9263. "dev-master": "9.2-dev"
  9264. }
  9265. },
  9266. "autoload": {
  9267. "classmap": [
  9268. "src/"
  9269. ]
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "BSD-3-Clause"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "Sebastian Bergmann",
  9278. "email": "sebastian@phpunit.de",
  9279. "role": "lead"
  9280. }
  9281. ],
  9282. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9283. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9284. "keywords": [
  9285. "coverage",
  9286. "testing",
  9287. "xunit"
  9288. ],
  9289. "support": {
  9290. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9291. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9292. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.29"
  9293. },
  9294. "funding": [
  9295. {
  9296. "url": "https://github.com/sebastianbergmann",
  9297. "type": "github"
  9298. }
  9299. ],
  9300. "time": "2023-09-19T04:57:46+00:00"
  9301. },
  9302. {
  9303. "name": "phpunit/php-file-iterator",
  9304. "version": "3.0.6",
  9305. "source": {
  9306. "type": "git",
  9307. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9308. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9309. },
  9310. "dist": {
  9311. "type": "zip",
  9312. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9313. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9314. "shasum": ""
  9315. },
  9316. "require": {
  9317. "php": ">=7.3"
  9318. },
  9319. "require-dev": {
  9320. "phpunit/phpunit": "^9.3"
  9321. },
  9322. "type": "library",
  9323. "extra": {
  9324. "branch-alias": {
  9325. "dev-master": "3.0-dev"
  9326. }
  9327. },
  9328. "autoload": {
  9329. "classmap": [
  9330. "src/"
  9331. ]
  9332. },
  9333. "notification-url": "https://packagist.org/downloads/",
  9334. "license": [
  9335. "BSD-3-Clause"
  9336. ],
  9337. "authors": [
  9338. {
  9339. "name": "Sebastian Bergmann",
  9340. "email": "sebastian@phpunit.de",
  9341. "role": "lead"
  9342. }
  9343. ],
  9344. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9345. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9346. "keywords": [
  9347. "filesystem",
  9348. "iterator"
  9349. ],
  9350. "support": {
  9351. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9352. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9353. },
  9354. "funding": [
  9355. {
  9356. "url": "https://github.com/sebastianbergmann",
  9357. "type": "github"
  9358. }
  9359. ],
  9360. "time": "2021-12-02T12:48:52+00:00"
  9361. },
  9362. {
  9363. "name": "phpunit/php-invoker",
  9364. "version": "3.1.1",
  9365. "source": {
  9366. "type": "git",
  9367. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9368. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9369. },
  9370. "dist": {
  9371. "type": "zip",
  9372. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9373. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9374. "shasum": ""
  9375. },
  9376. "require": {
  9377. "php": ">=7.3"
  9378. },
  9379. "require-dev": {
  9380. "ext-pcntl": "*",
  9381. "phpunit/phpunit": "^9.3"
  9382. },
  9383. "suggest": {
  9384. "ext-pcntl": "*"
  9385. },
  9386. "type": "library",
  9387. "extra": {
  9388. "branch-alias": {
  9389. "dev-master": "3.1-dev"
  9390. }
  9391. },
  9392. "autoload": {
  9393. "classmap": [
  9394. "src/"
  9395. ]
  9396. },
  9397. "notification-url": "https://packagist.org/downloads/",
  9398. "license": [
  9399. "BSD-3-Clause"
  9400. ],
  9401. "authors": [
  9402. {
  9403. "name": "Sebastian Bergmann",
  9404. "email": "sebastian@phpunit.de",
  9405. "role": "lead"
  9406. }
  9407. ],
  9408. "description": "Invoke callables with a timeout",
  9409. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9410. "keywords": [
  9411. "process"
  9412. ],
  9413. "support": {
  9414. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9415. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9416. },
  9417. "funding": [
  9418. {
  9419. "url": "https://github.com/sebastianbergmann",
  9420. "type": "github"
  9421. }
  9422. ],
  9423. "time": "2020-09-28T05:58:55+00:00"
  9424. },
  9425. {
  9426. "name": "phpunit/php-text-template",
  9427. "version": "2.0.4",
  9428. "source": {
  9429. "type": "git",
  9430. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9431. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9432. },
  9433. "dist": {
  9434. "type": "zip",
  9435. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9436. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9437. "shasum": ""
  9438. },
  9439. "require": {
  9440. "php": ">=7.3"
  9441. },
  9442. "require-dev": {
  9443. "phpunit/phpunit": "^9.3"
  9444. },
  9445. "type": "library",
  9446. "extra": {
  9447. "branch-alias": {
  9448. "dev-master": "2.0-dev"
  9449. }
  9450. },
  9451. "autoload": {
  9452. "classmap": [
  9453. "src/"
  9454. ]
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "license": [
  9458. "BSD-3-Clause"
  9459. ],
  9460. "authors": [
  9461. {
  9462. "name": "Sebastian Bergmann",
  9463. "email": "sebastian@phpunit.de",
  9464. "role": "lead"
  9465. }
  9466. ],
  9467. "description": "Simple template engine.",
  9468. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9469. "keywords": [
  9470. "template"
  9471. ],
  9472. "support": {
  9473. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9474. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9475. },
  9476. "funding": [
  9477. {
  9478. "url": "https://github.com/sebastianbergmann",
  9479. "type": "github"
  9480. }
  9481. ],
  9482. "time": "2020-10-26T05:33:50+00:00"
  9483. },
  9484. {
  9485. "name": "phpunit/php-timer",
  9486. "version": "5.0.3",
  9487. "source": {
  9488. "type": "git",
  9489. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9490. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9491. },
  9492. "dist": {
  9493. "type": "zip",
  9494. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9495. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9496. "shasum": ""
  9497. },
  9498. "require": {
  9499. "php": ">=7.3"
  9500. },
  9501. "require-dev": {
  9502. "phpunit/phpunit": "^9.3"
  9503. },
  9504. "type": "library",
  9505. "extra": {
  9506. "branch-alias": {
  9507. "dev-master": "5.0-dev"
  9508. }
  9509. },
  9510. "autoload": {
  9511. "classmap": [
  9512. "src/"
  9513. ]
  9514. },
  9515. "notification-url": "https://packagist.org/downloads/",
  9516. "license": [
  9517. "BSD-3-Clause"
  9518. ],
  9519. "authors": [
  9520. {
  9521. "name": "Sebastian Bergmann",
  9522. "email": "sebastian@phpunit.de",
  9523. "role": "lead"
  9524. }
  9525. ],
  9526. "description": "Utility class for timing",
  9527. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9528. "keywords": [
  9529. "timer"
  9530. ],
  9531. "support": {
  9532. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9533. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9534. },
  9535. "funding": [
  9536. {
  9537. "url": "https://github.com/sebastianbergmann",
  9538. "type": "github"
  9539. }
  9540. ],
  9541. "time": "2020-10-26T13:16:10+00:00"
  9542. },
  9543. {
  9544. "name": "phpunit/phpunit",
  9545. "version": "9.6.15",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9549. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9554. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "doctrine/instantiator": "^1.3.1 || ^2",
  9559. "ext-dom": "*",
  9560. "ext-json": "*",
  9561. "ext-libxml": "*",
  9562. "ext-mbstring": "*",
  9563. "ext-xml": "*",
  9564. "ext-xmlwriter": "*",
  9565. "myclabs/deep-copy": "^1.10.1",
  9566. "phar-io/manifest": "^2.0.3",
  9567. "phar-io/version": "^3.0.2",
  9568. "php": ">=7.3",
  9569. "phpunit/php-code-coverage": "^9.2.28",
  9570. "phpunit/php-file-iterator": "^3.0.5",
  9571. "phpunit/php-invoker": "^3.1.1",
  9572. "phpunit/php-text-template": "^2.0.3",
  9573. "phpunit/php-timer": "^5.0.2",
  9574. "sebastian/cli-parser": "^1.0.1",
  9575. "sebastian/code-unit": "^1.0.6",
  9576. "sebastian/comparator": "^4.0.8",
  9577. "sebastian/diff": "^4.0.3",
  9578. "sebastian/environment": "^5.1.3",
  9579. "sebastian/exporter": "^4.0.5",
  9580. "sebastian/global-state": "^5.0.1",
  9581. "sebastian/object-enumerator": "^4.0.3",
  9582. "sebastian/resource-operations": "^3.0.3",
  9583. "sebastian/type": "^3.2",
  9584. "sebastian/version": "^3.0.2"
  9585. },
  9586. "suggest": {
  9587. "ext-soap": "To be able to generate mocks based on WSDL files",
  9588. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9589. },
  9590. "bin": [
  9591. "phpunit"
  9592. ],
  9593. "type": "library",
  9594. "extra": {
  9595. "branch-alias": {
  9596. "dev-master": "9.6-dev"
  9597. }
  9598. },
  9599. "autoload": {
  9600. "files": [
  9601. "src/Framework/Assert/Functions.php"
  9602. ],
  9603. "classmap": [
  9604. "src/"
  9605. ]
  9606. },
  9607. "notification-url": "https://packagist.org/downloads/",
  9608. "license": [
  9609. "BSD-3-Clause"
  9610. ],
  9611. "authors": [
  9612. {
  9613. "name": "Sebastian Bergmann",
  9614. "email": "sebastian@phpunit.de",
  9615. "role": "lead"
  9616. }
  9617. ],
  9618. "description": "The PHP Unit Testing framework.",
  9619. "homepage": "https://phpunit.de/",
  9620. "keywords": [
  9621. "phpunit",
  9622. "testing",
  9623. "xunit"
  9624. ],
  9625. "support": {
  9626. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9627. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9628. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9629. },
  9630. "funding": [
  9631. {
  9632. "url": "https://phpunit.de/sponsors.html",
  9633. "type": "custom"
  9634. },
  9635. {
  9636. "url": "https://github.com/sebastianbergmann",
  9637. "type": "github"
  9638. },
  9639. {
  9640. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9641. "type": "tidelift"
  9642. }
  9643. ],
  9644. "time": "2023-12-01T16:55:19+00:00"
  9645. },
  9646. {
  9647. "name": "sebastian/cli-parser",
  9648. "version": "1.0.1",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9652. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9657. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9658. "shasum": ""
  9659. },
  9660. "require": {
  9661. "php": ">=7.3"
  9662. },
  9663. "require-dev": {
  9664. "phpunit/phpunit": "^9.3"
  9665. },
  9666. "type": "library",
  9667. "extra": {
  9668. "branch-alias": {
  9669. "dev-master": "1.0-dev"
  9670. }
  9671. },
  9672. "autoload": {
  9673. "classmap": [
  9674. "src/"
  9675. ]
  9676. },
  9677. "notification-url": "https://packagist.org/downloads/",
  9678. "license": [
  9679. "BSD-3-Clause"
  9680. ],
  9681. "authors": [
  9682. {
  9683. "name": "Sebastian Bergmann",
  9684. "email": "sebastian@phpunit.de",
  9685. "role": "lead"
  9686. }
  9687. ],
  9688. "description": "Library for parsing CLI options",
  9689. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9690. "support": {
  9691. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9692. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9693. },
  9694. "funding": [
  9695. {
  9696. "url": "https://github.com/sebastianbergmann",
  9697. "type": "github"
  9698. }
  9699. ],
  9700. "time": "2020-09-28T06:08:49+00:00"
  9701. },
  9702. {
  9703. "name": "sebastian/code-unit",
  9704. "version": "1.0.8",
  9705. "source": {
  9706. "type": "git",
  9707. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9708. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9709. },
  9710. "dist": {
  9711. "type": "zip",
  9712. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9713. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9714. "shasum": ""
  9715. },
  9716. "require": {
  9717. "php": ">=7.3"
  9718. },
  9719. "require-dev": {
  9720. "phpunit/phpunit": "^9.3"
  9721. },
  9722. "type": "library",
  9723. "extra": {
  9724. "branch-alias": {
  9725. "dev-master": "1.0-dev"
  9726. }
  9727. },
  9728. "autoload": {
  9729. "classmap": [
  9730. "src/"
  9731. ]
  9732. },
  9733. "notification-url": "https://packagist.org/downloads/",
  9734. "license": [
  9735. "BSD-3-Clause"
  9736. ],
  9737. "authors": [
  9738. {
  9739. "name": "Sebastian Bergmann",
  9740. "email": "sebastian@phpunit.de",
  9741. "role": "lead"
  9742. }
  9743. ],
  9744. "description": "Collection of value objects that represent the PHP code units",
  9745. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9746. "support": {
  9747. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9748. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9749. },
  9750. "funding": [
  9751. {
  9752. "url": "https://github.com/sebastianbergmann",
  9753. "type": "github"
  9754. }
  9755. ],
  9756. "time": "2020-10-26T13:08:54+00:00"
  9757. },
  9758. {
  9759. "name": "sebastian/code-unit-reverse-lookup",
  9760. "version": "2.0.3",
  9761. "source": {
  9762. "type": "git",
  9763. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9764. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9765. },
  9766. "dist": {
  9767. "type": "zip",
  9768. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9769. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9770. "shasum": ""
  9771. },
  9772. "require": {
  9773. "php": ">=7.3"
  9774. },
  9775. "require-dev": {
  9776. "phpunit/phpunit": "^9.3"
  9777. },
  9778. "type": "library",
  9779. "extra": {
  9780. "branch-alias": {
  9781. "dev-master": "2.0-dev"
  9782. }
  9783. },
  9784. "autoload": {
  9785. "classmap": [
  9786. "src/"
  9787. ]
  9788. },
  9789. "notification-url": "https://packagist.org/downloads/",
  9790. "license": [
  9791. "BSD-3-Clause"
  9792. ],
  9793. "authors": [
  9794. {
  9795. "name": "Sebastian Bergmann",
  9796. "email": "sebastian@phpunit.de"
  9797. }
  9798. ],
  9799. "description": "Looks up which function or method a line of code belongs to",
  9800. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9801. "support": {
  9802. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9803. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://github.com/sebastianbergmann",
  9808. "type": "github"
  9809. }
  9810. ],
  9811. "time": "2020-09-28T05:30:19+00:00"
  9812. },
  9813. {
  9814. "name": "sebastian/comparator",
  9815. "version": "4.0.8",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/sebastianbergmann/comparator.git",
  9819. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9824. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "php": ">=7.3",
  9829. "sebastian/diff": "^4.0",
  9830. "sebastian/exporter": "^4.0"
  9831. },
  9832. "require-dev": {
  9833. "phpunit/phpunit": "^9.3"
  9834. },
  9835. "type": "library",
  9836. "extra": {
  9837. "branch-alias": {
  9838. "dev-master": "4.0-dev"
  9839. }
  9840. },
  9841. "autoload": {
  9842. "classmap": [
  9843. "src/"
  9844. ]
  9845. },
  9846. "notification-url": "https://packagist.org/downloads/",
  9847. "license": [
  9848. "BSD-3-Clause"
  9849. ],
  9850. "authors": [
  9851. {
  9852. "name": "Sebastian Bergmann",
  9853. "email": "sebastian@phpunit.de"
  9854. },
  9855. {
  9856. "name": "Jeff Welch",
  9857. "email": "whatthejeff@gmail.com"
  9858. },
  9859. {
  9860. "name": "Volker Dusch",
  9861. "email": "github@wallbash.com"
  9862. },
  9863. {
  9864. "name": "Bernhard Schussek",
  9865. "email": "bschussek@2bepublished.at"
  9866. }
  9867. ],
  9868. "description": "Provides the functionality to compare PHP values for equality",
  9869. "homepage": "https://github.com/sebastianbergmann/comparator",
  9870. "keywords": [
  9871. "comparator",
  9872. "compare",
  9873. "equality"
  9874. ],
  9875. "support": {
  9876. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9877. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://github.com/sebastianbergmann",
  9882. "type": "github"
  9883. }
  9884. ],
  9885. "time": "2022-09-14T12:41:17+00:00"
  9886. },
  9887. {
  9888. "name": "sebastian/complexity",
  9889. "version": "2.0.2",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/sebastianbergmann/complexity.git",
  9893. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9898. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "nikic/php-parser": "^4.7",
  9903. "php": ">=7.3"
  9904. },
  9905. "require-dev": {
  9906. "phpunit/phpunit": "^9.3"
  9907. },
  9908. "type": "library",
  9909. "extra": {
  9910. "branch-alias": {
  9911. "dev-master": "2.0-dev"
  9912. }
  9913. },
  9914. "autoload": {
  9915. "classmap": [
  9916. "src/"
  9917. ]
  9918. },
  9919. "notification-url": "https://packagist.org/downloads/",
  9920. "license": [
  9921. "BSD-3-Clause"
  9922. ],
  9923. "authors": [
  9924. {
  9925. "name": "Sebastian Bergmann",
  9926. "email": "sebastian@phpunit.de",
  9927. "role": "lead"
  9928. }
  9929. ],
  9930. "description": "Library for calculating the complexity of PHP code units",
  9931. "homepage": "https://github.com/sebastianbergmann/complexity",
  9932. "support": {
  9933. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9934. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9935. },
  9936. "funding": [
  9937. {
  9938. "url": "https://github.com/sebastianbergmann",
  9939. "type": "github"
  9940. }
  9941. ],
  9942. "time": "2020-10-26T15:52:27+00:00"
  9943. },
  9944. {
  9945. "name": "sebastian/diff",
  9946. "version": "4.0.5",
  9947. "source": {
  9948. "type": "git",
  9949. "url": "https://github.com/sebastianbergmann/diff.git",
  9950. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9951. },
  9952. "dist": {
  9953. "type": "zip",
  9954. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9955. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9956. "shasum": ""
  9957. },
  9958. "require": {
  9959. "php": ">=7.3"
  9960. },
  9961. "require-dev": {
  9962. "phpunit/phpunit": "^9.3",
  9963. "symfony/process": "^4.2 || ^5"
  9964. },
  9965. "type": "library",
  9966. "extra": {
  9967. "branch-alias": {
  9968. "dev-master": "4.0-dev"
  9969. }
  9970. },
  9971. "autoload": {
  9972. "classmap": [
  9973. "src/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "BSD-3-Clause"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Sebastian Bergmann",
  9983. "email": "sebastian@phpunit.de"
  9984. },
  9985. {
  9986. "name": "Kore Nordmann",
  9987. "email": "mail@kore-nordmann.de"
  9988. }
  9989. ],
  9990. "description": "Diff implementation",
  9991. "homepage": "https://github.com/sebastianbergmann/diff",
  9992. "keywords": [
  9993. "diff",
  9994. "udiff",
  9995. "unidiff",
  9996. "unified diff"
  9997. ],
  9998. "support": {
  9999. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10000. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10001. },
  10002. "funding": [
  10003. {
  10004. "url": "https://github.com/sebastianbergmann",
  10005. "type": "github"
  10006. }
  10007. ],
  10008. "time": "2023-05-07T05:35:17+00:00"
  10009. },
  10010. {
  10011. "name": "sebastian/environment",
  10012. "version": "5.1.5",
  10013. "source": {
  10014. "type": "git",
  10015. "url": "https://github.com/sebastianbergmann/environment.git",
  10016. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10017. },
  10018. "dist": {
  10019. "type": "zip",
  10020. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10021. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10022. "shasum": ""
  10023. },
  10024. "require": {
  10025. "php": ">=7.3"
  10026. },
  10027. "require-dev": {
  10028. "phpunit/phpunit": "^9.3"
  10029. },
  10030. "suggest": {
  10031. "ext-posix": "*"
  10032. },
  10033. "type": "library",
  10034. "extra": {
  10035. "branch-alias": {
  10036. "dev-master": "5.1-dev"
  10037. }
  10038. },
  10039. "autoload": {
  10040. "classmap": [
  10041. "src/"
  10042. ]
  10043. },
  10044. "notification-url": "https://packagist.org/downloads/",
  10045. "license": [
  10046. "BSD-3-Clause"
  10047. ],
  10048. "authors": [
  10049. {
  10050. "name": "Sebastian Bergmann",
  10051. "email": "sebastian@phpunit.de"
  10052. }
  10053. ],
  10054. "description": "Provides functionality to handle HHVM/PHP environments",
  10055. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10056. "keywords": [
  10057. "Xdebug",
  10058. "environment",
  10059. "hhvm"
  10060. ],
  10061. "support": {
  10062. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10063. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10064. },
  10065. "funding": [
  10066. {
  10067. "url": "https://github.com/sebastianbergmann",
  10068. "type": "github"
  10069. }
  10070. ],
  10071. "time": "2023-02-03T06:03:51+00:00"
  10072. },
  10073. {
  10074. "name": "sebastian/exporter",
  10075. "version": "4.0.5",
  10076. "source": {
  10077. "type": "git",
  10078. "url": "https://github.com/sebastianbergmann/exporter.git",
  10079. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10080. },
  10081. "dist": {
  10082. "type": "zip",
  10083. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10084. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10085. "shasum": ""
  10086. },
  10087. "require": {
  10088. "php": ">=7.3",
  10089. "sebastian/recursion-context": "^4.0"
  10090. },
  10091. "require-dev": {
  10092. "ext-mbstring": "*",
  10093. "phpunit/phpunit": "^9.3"
  10094. },
  10095. "type": "library",
  10096. "extra": {
  10097. "branch-alias": {
  10098. "dev-master": "4.0-dev"
  10099. }
  10100. },
  10101. "autoload": {
  10102. "classmap": [
  10103. "src/"
  10104. ]
  10105. },
  10106. "notification-url": "https://packagist.org/downloads/",
  10107. "license": [
  10108. "BSD-3-Clause"
  10109. ],
  10110. "authors": [
  10111. {
  10112. "name": "Sebastian Bergmann",
  10113. "email": "sebastian@phpunit.de"
  10114. },
  10115. {
  10116. "name": "Jeff Welch",
  10117. "email": "whatthejeff@gmail.com"
  10118. },
  10119. {
  10120. "name": "Volker Dusch",
  10121. "email": "github@wallbash.com"
  10122. },
  10123. {
  10124. "name": "Adam Harvey",
  10125. "email": "aharvey@php.net"
  10126. },
  10127. {
  10128. "name": "Bernhard Schussek",
  10129. "email": "bschussek@gmail.com"
  10130. }
  10131. ],
  10132. "description": "Provides the functionality to export PHP variables for visualization",
  10133. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10134. "keywords": [
  10135. "export",
  10136. "exporter"
  10137. ],
  10138. "support": {
  10139. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10140. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10141. },
  10142. "funding": [
  10143. {
  10144. "url": "https://github.com/sebastianbergmann",
  10145. "type": "github"
  10146. }
  10147. ],
  10148. "time": "2022-09-14T06:03:37+00:00"
  10149. },
  10150. {
  10151. "name": "sebastian/global-state",
  10152. "version": "5.0.6",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/sebastianbergmann/global-state.git",
  10156. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10161. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "php": ">=7.3",
  10166. "sebastian/object-reflector": "^2.0",
  10167. "sebastian/recursion-context": "^4.0"
  10168. },
  10169. "require-dev": {
  10170. "ext-dom": "*",
  10171. "phpunit/phpunit": "^9.3"
  10172. },
  10173. "suggest": {
  10174. "ext-uopz": "*"
  10175. },
  10176. "type": "library",
  10177. "extra": {
  10178. "branch-alias": {
  10179. "dev-master": "5.0-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "classmap": [
  10184. "src/"
  10185. ]
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Sebastian Bergmann",
  10194. "email": "sebastian@phpunit.de"
  10195. }
  10196. ],
  10197. "description": "Snapshotting of global state",
  10198. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10199. "keywords": [
  10200. "global state"
  10201. ],
  10202. "support": {
  10203. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10204. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10205. },
  10206. "funding": [
  10207. {
  10208. "url": "https://github.com/sebastianbergmann",
  10209. "type": "github"
  10210. }
  10211. ],
  10212. "time": "2023-08-02T09:26:13+00:00"
  10213. },
  10214. {
  10215. "name": "sebastian/lines-of-code",
  10216. "version": "1.0.3",
  10217. "source": {
  10218. "type": "git",
  10219. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10220. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10221. },
  10222. "dist": {
  10223. "type": "zip",
  10224. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10225. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10226. "shasum": ""
  10227. },
  10228. "require": {
  10229. "nikic/php-parser": "^4.6",
  10230. "php": ">=7.3"
  10231. },
  10232. "require-dev": {
  10233. "phpunit/phpunit": "^9.3"
  10234. },
  10235. "type": "library",
  10236. "extra": {
  10237. "branch-alias": {
  10238. "dev-master": "1.0-dev"
  10239. }
  10240. },
  10241. "autoload": {
  10242. "classmap": [
  10243. "src/"
  10244. ]
  10245. },
  10246. "notification-url": "https://packagist.org/downloads/",
  10247. "license": [
  10248. "BSD-3-Clause"
  10249. ],
  10250. "authors": [
  10251. {
  10252. "name": "Sebastian Bergmann",
  10253. "email": "sebastian@phpunit.de",
  10254. "role": "lead"
  10255. }
  10256. ],
  10257. "description": "Library for counting the lines of code in PHP source code",
  10258. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10259. "support": {
  10260. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10261. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10262. },
  10263. "funding": [
  10264. {
  10265. "url": "https://github.com/sebastianbergmann",
  10266. "type": "github"
  10267. }
  10268. ],
  10269. "time": "2020-11-28T06:42:11+00:00"
  10270. },
  10271. {
  10272. "name": "sebastian/object-enumerator",
  10273. "version": "4.0.4",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10277. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10282. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=7.3",
  10287. "sebastian/object-reflector": "^2.0",
  10288. "sebastian/recursion-context": "^4.0"
  10289. },
  10290. "require-dev": {
  10291. "phpunit/phpunit": "^9.3"
  10292. },
  10293. "type": "library",
  10294. "extra": {
  10295. "branch-alias": {
  10296. "dev-master": "4.0-dev"
  10297. }
  10298. },
  10299. "autoload": {
  10300. "classmap": [
  10301. "src/"
  10302. ]
  10303. },
  10304. "notification-url": "https://packagist.org/downloads/",
  10305. "license": [
  10306. "BSD-3-Clause"
  10307. ],
  10308. "authors": [
  10309. {
  10310. "name": "Sebastian Bergmann",
  10311. "email": "sebastian@phpunit.de"
  10312. }
  10313. ],
  10314. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10315. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10316. "support": {
  10317. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10318. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10319. },
  10320. "funding": [
  10321. {
  10322. "url": "https://github.com/sebastianbergmann",
  10323. "type": "github"
  10324. }
  10325. ],
  10326. "time": "2020-10-26T13:12:34+00:00"
  10327. },
  10328. {
  10329. "name": "sebastian/object-reflector",
  10330. "version": "2.0.4",
  10331. "source": {
  10332. "type": "git",
  10333. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10334. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10335. },
  10336. "dist": {
  10337. "type": "zip",
  10338. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10339. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10340. "shasum": ""
  10341. },
  10342. "require": {
  10343. "php": ">=7.3"
  10344. },
  10345. "require-dev": {
  10346. "phpunit/phpunit": "^9.3"
  10347. },
  10348. "type": "library",
  10349. "extra": {
  10350. "branch-alias": {
  10351. "dev-master": "2.0-dev"
  10352. }
  10353. },
  10354. "autoload": {
  10355. "classmap": [
  10356. "src/"
  10357. ]
  10358. },
  10359. "notification-url": "https://packagist.org/downloads/",
  10360. "license": [
  10361. "BSD-3-Clause"
  10362. ],
  10363. "authors": [
  10364. {
  10365. "name": "Sebastian Bergmann",
  10366. "email": "sebastian@phpunit.de"
  10367. }
  10368. ],
  10369. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10370. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10371. "support": {
  10372. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10373. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10374. },
  10375. "funding": [
  10376. {
  10377. "url": "https://github.com/sebastianbergmann",
  10378. "type": "github"
  10379. }
  10380. ],
  10381. "time": "2020-10-26T13:14:26+00:00"
  10382. },
  10383. {
  10384. "name": "sebastian/recursion-context",
  10385. "version": "4.0.5",
  10386. "source": {
  10387. "type": "git",
  10388. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10389. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10390. },
  10391. "dist": {
  10392. "type": "zip",
  10393. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10394. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10395. "shasum": ""
  10396. },
  10397. "require": {
  10398. "php": ">=7.3"
  10399. },
  10400. "require-dev": {
  10401. "phpunit/phpunit": "^9.3"
  10402. },
  10403. "type": "library",
  10404. "extra": {
  10405. "branch-alias": {
  10406. "dev-master": "4.0-dev"
  10407. }
  10408. },
  10409. "autoload": {
  10410. "classmap": [
  10411. "src/"
  10412. ]
  10413. },
  10414. "notification-url": "https://packagist.org/downloads/",
  10415. "license": [
  10416. "BSD-3-Clause"
  10417. ],
  10418. "authors": [
  10419. {
  10420. "name": "Sebastian Bergmann",
  10421. "email": "sebastian@phpunit.de"
  10422. },
  10423. {
  10424. "name": "Jeff Welch",
  10425. "email": "whatthejeff@gmail.com"
  10426. },
  10427. {
  10428. "name": "Adam Harvey",
  10429. "email": "aharvey@php.net"
  10430. }
  10431. ],
  10432. "description": "Provides functionality to recursively process PHP variables",
  10433. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10434. "support": {
  10435. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10436. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10437. },
  10438. "funding": [
  10439. {
  10440. "url": "https://github.com/sebastianbergmann",
  10441. "type": "github"
  10442. }
  10443. ],
  10444. "time": "2023-02-03T06:07:39+00:00"
  10445. },
  10446. {
  10447. "name": "sebastian/resource-operations",
  10448. "version": "3.0.3",
  10449. "source": {
  10450. "type": "git",
  10451. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10452. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10453. },
  10454. "dist": {
  10455. "type": "zip",
  10456. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10457. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10458. "shasum": ""
  10459. },
  10460. "require": {
  10461. "php": ">=7.3"
  10462. },
  10463. "require-dev": {
  10464. "phpunit/phpunit": "^9.0"
  10465. },
  10466. "type": "library",
  10467. "extra": {
  10468. "branch-alias": {
  10469. "dev-master": "3.0-dev"
  10470. }
  10471. },
  10472. "autoload": {
  10473. "classmap": [
  10474. "src/"
  10475. ]
  10476. },
  10477. "notification-url": "https://packagist.org/downloads/",
  10478. "license": [
  10479. "BSD-3-Clause"
  10480. ],
  10481. "authors": [
  10482. {
  10483. "name": "Sebastian Bergmann",
  10484. "email": "sebastian@phpunit.de"
  10485. }
  10486. ],
  10487. "description": "Provides a list of PHP built-in functions that operate on resources",
  10488. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10489. "support": {
  10490. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10491. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10492. },
  10493. "funding": [
  10494. {
  10495. "url": "https://github.com/sebastianbergmann",
  10496. "type": "github"
  10497. }
  10498. ],
  10499. "time": "2020-09-28T06:45:17+00:00"
  10500. },
  10501. {
  10502. "name": "sebastian/type",
  10503. "version": "3.2.1",
  10504. "source": {
  10505. "type": "git",
  10506. "url": "https://github.com/sebastianbergmann/type.git",
  10507. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10508. },
  10509. "dist": {
  10510. "type": "zip",
  10511. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10512. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10513. "shasum": ""
  10514. },
  10515. "require": {
  10516. "php": ">=7.3"
  10517. },
  10518. "require-dev": {
  10519. "phpunit/phpunit": "^9.5"
  10520. },
  10521. "type": "library",
  10522. "extra": {
  10523. "branch-alias": {
  10524. "dev-master": "3.2-dev"
  10525. }
  10526. },
  10527. "autoload": {
  10528. "classmap": [
  10529. "src/"
  10530. ]
  10531. },
  10532. "notification-url": "https://packagist.org/downloads/",
  10533. "license": [
  10534. "BSD-3-Clause"
  10535. ],
  10536. "authors": [
  10537. {
  10538. "name": "Sebastian Bergmann",
  10539. "email": "sebastian@phpunit.de",
  10540. "role": "lead"
  10541. }
  10542. ],
  10543. "description": "Collection of value objects that represent the types of the PHP type system",
  10544. "homepage": "https://github.com/sebastianbergmann/type",
  10545. "support": {
  10546. "issues": "https://github.com/sebastianbergmann/type/issues",
  10547. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10548. },
  10549. "funding": [
  10550. {
  10551. "url": "https://github.com/sebastianbergmann",
  10552. "type": "github"
  10553. }
  10554. ],
  10555. "time": "2023-02-03T06:13:03+00:00"
  10556. },
  10557. {
  10558. "name": "sebastian/version",
  10559. "version": "3.0.2",
  10560. "source": {
  10561. "type": "git",
  10562. "url": "https://github.com/sebastianbergmann/version.git",
  10563. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10564. },
  10565. "dist": {
  10566. "type": "zip",
  10567. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10568. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10569. "shasum": ""
  10570. },
  10571. "require": {
  10572. "php": ">=7.3"
  10573. },
  10574. "type": "library",
  10575. "extra": {
  10576. "branch-alias": {
  10577. "dev-master": "3.0-dev"
  10578. }
  10579. },
  10580. "autoload": {
  10581. "classmap": [
  10582. "src/"
  10583. ]
  10584. },
  10585. "notification-url": "https://packagist.org/downloads/",
  10586. "license": [
  10587. "BSD-3-Clause"
  10588. ],
  10589. "authors": [
  10590. {
  10591. "name": "Sebastian Bergmann",
  10592. "email": "sebastian@phpunit.de",
  10593. "role": "lead"
  10594. }
  10595. ],
  10596. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10597. "homepage": "https://github.com/sebastianbergmann/version",
  10598. "support": {
  10599. "issues": "https://github.com/sebastianbergmann/version/issues",
  10600. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10601. },
  10602. "funding": [
  10603. {
  10604. "url": "https://github.com/sebastianbergmann",
  10605. "type": "github"
  10606. }
  10607. ],
  10608. "time": "2020-09-28T06:39:44+00:00"
  10609. },
  10610. {
  10611. "name": "theseer/tokenizer",
  10612. "version": "1.2.2",
  10613. "source": {
  10614. "type": "git",
  10615. "url": "https://github.com/theseer/tokenizer.git",
  10616. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  10617. },
  10618. "dist": {
  10619. "type": "zip",
  10620. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10621. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  10622. "shasum": ""
  10623. },
  10624. "require": {
  10625. "ext-dom": "*",
  10626. "ext-tokenizer": "*",
  10627. "ext-xmlwriter": "*",
  10628. "php": "^7.2 || ^8.0"
  10629. },
  10630. "type": "library",
  10631. "autoload": {
  10632. "classmap": [
  10633. "src/"
  10634. ]
  10635. },
  10636. "notification-url": "https://packagist.org/downloads/",
  10637. "license": [
  10638. "BSD-3-Clause"
  10639. ],
  10640. "authors": [
  10641. {
  10642. "name": "Arne Blankerts",
  10643. "email": "arne@blankerts.de",
  10644. "role": "Developer"
  10645. }
  10646. ],
  10647. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10648. "support": {
  10649. "issues": "https://github.com/theseer/tokenizer/issues",
  10650. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  10651. },
  10652. "funding": [
  10653. {
  10654. "url": "https://github.com/theseer",
  10655. "type": "github"
  10656. }
  10657. ],
  10658. "time": "2023-11-20T00:12:19+00:00"
  10659. }
  10660. ],
  10661. "aliases": [],
  10662. "minimum-stability": "dev",
  10663. "stability-flags": {
  10664. "fukuball/jieba-php": 20,
  10665. "getuilaboratory/getui-pushapi-php-client-v2": 20
  10666. },
  10667. "prefer-stable": true,
  10668. "prefer-lowest": false,
  10669. "platform": {
  10670. "php": "^8.0",
  10671. "ext-json": "*"
  10672. },
  10673. "platform-dev": {},
  10674. "plugin-api-version": "2.6.0"
  10675. }