composer.lock 401 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116
  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": "55939d8e71a2a917a9badd9615a1ea9a",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.2|^8.0",
  31. "symfony/http-foundation": "^4|^5|^6",
  32. "symfony/http-kernel": "^4|^5|^6"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^7|^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.1-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  68. },
  69. "time": "2022-01-18T09:12:03+00:00"
  70. },
  71. {
  72. "name": "barryvdh/laravel-ide-helper",
  73. "version": "v2.8.2",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  77. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  82. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "barryvdh/reflection-docblock": "^2.0.6",
  93. "composer/composer": "^1.6 || ^2",
  94. "doctrine/dbal": "~2.3",
  95. "ext-json": "*",
  96. "illuminate/console": "^6 || ^7 || ^8",
  97. "illuminate/filesystem": "^6 || ^7 || ^8",
  98. "illuminate/support": "^6 || ^7 || ^8",
  99. "php": ">=7.2",
  100. "phpdocumentor/type-resolver": "^1.1.0"
  101. },
  102. "require-dev": {
  103. "ext-pdo_sqlite": "*",
  104. "friendsofphp/php-cs-fixer": "^2",
  105. "illuminate/config": "^6 || ^7 || ^8",
  106. "illuminate/view": "^6 || ^7 || ^8",
  107. "mockery/mockery": "^1.3.3",
  108. "orchestra/testbench": "^4 || ^5 || ^6",
  109. "phpunit/phpunit": "^8.5 || ^9",
  110. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  111. "vimeo/psalm": "^3.12"
  112. },
  113. "type": "library",
  114. "extra": {
  115. "branch-alias": {
  116. "dev-master": "2.8-dev"
  117. },
  118. "laravel": {
  119. "providers": [
  120. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  121. ]
  122. }
  123. },
  124. "autoload": {
  125. "psr-4": {
  126. "Barryvdh\\LaravelIdeHelper\\": "src"
  127. }
  128. },
  129. "notification-url": "https://packagist.org/downloads/",
  130. "license": [
  131. "MIT"
  132. ],
  133. "authors": [
  134. {
  135. "name": "Barry vd. Heuvel",
  136. "email": "barryvdh@gmail.com"
  137. }
  138. ],
  139. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  140. "keywords": [
  141. "autocomplete",
  142. "codeintel",
  143. "helper",
  144. "ide",
  145. "laravel",
  146. "netbeans",
  147. "phpdoc",
  148. "phpstorm",
  149. "sublime"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/barryvdh/laravel-ide-helper/issues",
  153. "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.2"
  154. },
  155. "funding": [
  156. {
  157. "url": "https://github.com/barryvdh",
  158. "type": "github"
  159. }
  160. ],
  161. "time": "2020-12-06T08:55:05+00:00"
  162. },
  163. {
  164. "name": "barryvdh/reflection-docblock",
  165. "version": "v2.1.1",
  166. "source": {
  167. "type": "git",
  168. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  169. "reference": "e6811e927f0ecc37cc4deaa6627033150343e597"
  170. },
  171. "dist": {
  172. "type": "zip",
  173. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/e6811e927f0ecc37cc4deaa6627033150343e597",
  174. "reference": "e6811e927f0ecc37cc4deaa6627033150343e597",
  175. "shasum": "",
  176. "mirrors": [
  177. {
  178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  179. "preferred": true
  180. }
  181. ]
  182. },
  183. "require": {
  184. "php": ">=5.3.3"
  185. },
  186. "require-dev": {
  187. "phpunit/phpunit": "^8.5.14|^9"
  188. },
  189. "suggest": {
  190. "dflydev/markdown": "~1.0",
  191. "erusev/parsedown": "~1.0"
  192. },
  193. "type": "library",
  194. "extra": {
  195. "branch-alias": {
  196. "dev-master": "2.0.x-dev"
  197. }
  198. },
  199. "autoload": {
  200. "psr-0": {
  201. "Barryvdh": [
  202. "src/"
  203. ]
  204. }
  205. },
  206. "notification-url": "https://packagist.org/downloads/",
  207. "license": [
  208. "MIT"
  209. ],
  210. "authors": [
  211. {
  212. "name": "Mike van Riel",
  213. "email": "mike.vanriel@naenius.com"
  214. }
  215. ],
  216. "support": {
  217. "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.1.1"
  218. },
  219. "time": "2023-06-14T05:06:27+00:00"
  220. },
  221. {
  222. "name": "composer/ca-bundle",
  223. "version": "1.3.7",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/composer/ca-bundle.git",
  227. "reference": "76e46335014860eec1aa5a724799a00a2e47cc85"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85",
  232. "reference": "76e46335014860eec1aa5a724799a00a2e47cc85",
  233. "shasum": "",
  234. "mirrors": [
  235. {
  236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  237. "preferred": true
  238. }
  239. ]
  240. },
  241. "require": {
  242. "ext-openssl": "*",
  243. "ext-pcre": "*",
  244. "php": "^5.3.2 || ^7.0 || ^8.0"
  245. },
  246. "require-dev": {
  247. "phpstan/phpstan": "^0.12.55",
  248. "psr/log": "^1.0",
  249. "symfony/phpunit-bridge": "^4.2 || ^5",
  250. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  251. },
  252. "type": "library",
  253. "extra": {
  254. "branch-alias": {
  255. "dev-main": "1.x-dev"
  256. }
  257. },
  258. "autoload": {
  259. "psr-4": {
  260. "Composer\\CaBundle\\": "src"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "MIT"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Jordi Boggiano",
  270. "email": "j.boggiano@seld.be",
  271. "homepage": "http://seld.be"
  272. }
  273. ],
  274. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  275. "keywords": [
  276. "cabundle",
  277. "cacert",
  278. "certificate",
  279. "ssl",
  280. "tls"
  281. ],
  282. "support": {
  283. "irc": "irc://irc.freenode.org/composer",
  284. "issues": "https://github.com/composer/ca-bundle/issues",
  285. "source": "https://github.com/composer/ca-bundle/tree/1.3.7"
  286. },
  287. "funding": [
  288. {
  289. "url": "https://packagist.com",
  290. "type": "custom"
  291. },
  292. {
  293. "url": "https://github.com/composer",
  294. "type": "github"
  295. },
  296. {
  297. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  298. "type": "tidelift"
  299. }
  300. ],
  301. "time": "2023-08-30T09:31:38+00:00"
  302. },
  303. {
  304. "name": "composer/composer",
  305. "version": "2.2.22",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/composer/composer.git",
  309. "reference": "fedc76ee3f3e3d57d20993b9f4c5fcfb2f8596aa"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/composer/composer/zipball/fedc76ee3f3e3d57d20993b9f4c5fcfb2f8596aa",
  314. "reference": "fedc76ee3f3e3d57d20993b9f4c5fcfb2f8596aa",
  315. "shasum": "",
  316. "mirrors": [
  317. {
  318. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  319. "preferred": true
  320. }
  321. ]
  322. },
  323. "require": {
  324. "composer/ca-bundle": "^1.0",
  325. "composer/metadata-minifier": "^1.0",
  326. "composer/pcre": "^1.0",
  327. "composer/semver": "^3.0",
  328. "composer/spdx-licenses": "^1.2",
  329. "composer/xdebug-handler": "^2.0 || ^3.0",
  330. "justinrainbow/json-schema": "^5.2.11",
  331. "php": "^5.3.2 || ^7.0 || ^8.0",
  332. "psr/log": "^1.0 || ^2.0",
  333. "react/promise": "^1.2 || ^2.7",
  334. "seld/jsonlint": "^1.4",
  335. "seld/phar-utils": "^1.0",
  336. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  337. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  338. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
  339. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0"
  340. },
  341. "require-dev": {
  342. "phpspec/prophecy": "^1.10",
  343. "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
  344. },
  345. "suggest": {
  346. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  347. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  348. "ext-zlib": "Allow gzip compression of HTTP requests"
  349. },
  350. "bin": [
  351. "bin/composer"
  352. ],
  353. "type": "library",
  354. "extra": {
  355. "branch-alias": {
  356. "dev-main": "2.2-dev"
  357. }
  358. },
  359. "autoload": {
  360. "psr-4": {
  361. "Composer\\": "src/Composer"
  362. }
  363. },
  364. "notification-url": "https://packagist.org/downloads/",
  365. "license": [
  366. "MIT"
  367. ],
  368. "authors": [
  369. {
  370. "name": "Nils Adermann",
  371. "email": "naderman@naderman.de",
  372. "homepage": "https://www.naderman.de"
  373. },
  374. {
  375. "name": "Jordi Boggiano",
  376. "email": "j.boggiano@seld.be",
  377. "homepage": "https://seld.be"
  378. }
  379. ],
  380. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  381. "homepage": "https://getcomposer.org/",
  382. "keywords": [
  383. "autoload",
  384. "dependency",
  385. "package"
  386. ],
  387. "support": {
  388. "irc": "ircs://irc.libera.chat:6697/composer",
  389. "issues": "https://github.com/composer/composer/issues",
  390. "source": "https://github.com/composer/composer/tree/2.2.22"
  391. },
  392. "funding": [
  393. {
  394. "url": "https://packagist.com",
  395. "type": "custom"
  396. },
  397. {
  398. "url": "https://github.com/composer",
  399. "type": "github"
  400. },
  401. {
  402. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  403. "type": "tidelift"
  404. }
  405. ],
  406. "time": "2023-09-29T08:53:46+00:00"
  407. },
  408. {
  409. "name": "composer/metadata-minifier",
  410. "version": "1.0.0",
  411. "source": {
  412. "type": "git",
  413. "url": "https://github.com/composer/metadata-minifier.git",
  414. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  415. },
  416. "dist": {
  417. "type": "zip",
  418. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  419. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  420. "shasum": "",
  421. "mirrors": [
  422. {
  423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  424. "preferred": true
  425. }
  426. ]
  427. },
  428. "require": {
  429. "php": "^5.3.2 || ^7.0 || ^8.0"
  430. },
  431. "require-dev": {
  432. "composer/composer": "^2",
  433. "phpstan/phpstan": "^0.12.55",
  434. "symfony/phpunit-bridge": "^4.2 || ^5"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-main": "1.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Composer\\MetadataMinifier\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Jordi Boggiano",
  454. "email": "j.boggiano@seld.be",
  455. "homepage": "http://seld.be"
  456. }
  457. ],
  458. "description": "Small utility library that handles metadata minification and expansion.",
  459. "keywords": [
  460. "composer",
  461. "compression"
  462. ],
  463. "support": {
  464. "issues": "https://github.com/composer/metadata-minifier/issues",
  465. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  466. },
  467. "funding": [
  468. {
  469. "url": "https://packagist.com",
  470. "type": "custom"
  471. },
  472. {
  473. "url": "https://github.com/composer",
  474. "type": "github"
  475. },
  476. {
  477. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  478. "type": "tidelift"
  479. }
  480. ],
  481. "time": "2021-04-07T13:37:33+00:00"
  482. },
  483. {
  484. "name": "composer/pcre",
  485. "version": "1.0.1",
  486. "source": {
  487. "type": "git",
  488. "url": "https://github.com/composer/pcre.git",
  489. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560"
  490. },
  491. "dist": {
  492. "type": "zip",
  493. "url": "https://api.github.com/repos/composer/pcre/zipball/67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  494. "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560",
  495. "shasum": "",
  496. "mirrors": [
  497. {
  498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  499. "preferred": true
  500. }
  501. ]
  502. },
  503. "require": {
  504. "php": "^5.3.2 || ^7.0 || ^8.0"
  505. },
  506. "require-dev": {
  507. "phpstan/phpstan": "^1.3",
  508. "phpstan/phpstan-strict-rules": "^1.1",
  509. "symfony/phpunit-bridge": "^4.2 || ^5"
  510. },
  511. "type": "library",
  512. "extra": {
  513. "branch-alias": {
  514. "dev-main": "1.x-dev"
  515. }
  516. },
  517. "autoload": {
  518. "psr-4": {
  519. "Composer\\Pcre\\": "src"
  520. }
  521. },
  522. "notification-url": "https://packagist.org/downloads/",
  523. "license": [
  524. "MIT"
  525. ],
  526. "authors": [
  527. {
  528. "name": "Jordi Boggiano",
  529. "email": "j.boggiano@seld.be",
  530. "homepage": "http://seld.be"
  531. }
  532. ],
  533. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  534. "keywords": [
  535. "PCRE",
  536. "preg",
  537. "regex",
  538. "regular expression"
  539. ],
  540. "support": {
  541. "issues": "https://github.com/composer/pcre/issues",
  542. "source": "https://github.com/composer/pcre/tree/1.0.1"
  543. },
  544. "funding": [
  545. {
  546. "url": "https://packagist.com",
  547. "type": "custom"
  548. },
  549. {
  550. "url": "https://github.com/composer",
  551. "type": "github"
  552. },
  553. {
  554. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  555. "type": "tidelift"
  556. }
  557. ],
  558. "time": "2022-01-21T20:24:37+00:00"
  559. },
  560. {
  561. "name": "composer/semver",
  562. "version": "3.4.0",
  563. "source": {
  564. "type": "git",
  565. "url": "https://github.com/composer/semver.git",
  566. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  567. },
  568. "dist": {
  569. "type": "zip",
  570. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  571. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  572. "shasum": "",
  573. "mirrors": [
  574. {
  575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  576. "preferred": true
  577. }
  578. ]
  579. },
  580. "require": {
  581. "php": "^5.3.2 || ^7.0 || ^8.0"
  582. },
  583. "require-dev": {
  584. "phpstan/phpstan": "^1.4",
  585. "symfony/phpunit-bridge": "^4.2 || ^5"
  586. },
  587. "type": "library",
  588. "extra": {
  589. "branch-alias": {
  590. "dev-main": "3.x-dev"
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Composer\\Semver\\": "src"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Nils Adermann",
  605. "email": "naderman@naderman.de",
  606. "homepage": "http://www.naderman.de"
  607. },
  608. {
  609. "name": "Jordi Boggiano",
  610. "email": "j.boggiano@seld.be",
  611. "homepage": "http://seld.be"
  612. },
  613. {
  614. "name": "Rob Bast",
  615. "email": "rob.bast@gmail.com",
  616. "homepage": "http://robbast.nl"
  617. }
  618. ],
  619. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  620. "keywords": [
  621. "semantic",
  622. "semver",
  623. "validation",
  624. "versioning"
  625. ],
  626. "support": {
  627. "irc": "ircs://irc.libera.chat:6697/composer",
  628. "issues": "https://github.com/composer/semver/issues",
  629. "source": "https://github.com/composer/semver/tree/3.4.0"
  630. },
  631. "funding": [
  632. {
  633. "url": "https://packagist.com",
  634. "type": "custom"
  635. },
  636. {
  637. "url": "https://github.com/composer",
  638. "type": "github"
  639. },
  640. {
  641. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  642. "type": "tidelift"
  643. }
  644. ],
  645. "time": "2023-08-31T09:50:34+00:00"
  646. },
  647. {
  648. "name": "composer/spdx-licenses",
  649. "version": "1.5.7",
  650. "source": {
  651. "type": "git",
  652. "url": "https://github.com/composer/spdx-licenses.git",
  653. "reference": "c848241796da2abf65837d51dce1fae55a960149"
  654. },
  655. "dist": {
  656. "type": "zip",
  657. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
  658. "reference": "c848241796da2abf65837d51dce1fae55a960149",
  659. "shasum": "",
  660. "mirrors": [
  661. {
  662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  663. "preferred": true
  664. }
  665. ]
  666. },
  667. "require": {
  668. "php": "^5.3.2 || ^7.0 || ^8.0"
  669. },
  670. "require-dev": {
  671. "phpstan/phpstan": "^0.12.55",
  672. "symfony/phpunit-bridge": "^4.2 || ^5"
  673. },
  674. "type": "library",
  675. "extra": {
  676. "branch-alias": {
  677. "dev-main": "1.x-dev"
  678. }
  679. },
  680. "autoload": {
  681. "psr-4": {
  682. "Composer\\Spdx\\": "src"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "authors": [
  690. {
  691. "name": "Nils Adermann",
  692. "email": "naderman@naderman.de",
  693. "homepage": "http://www.naderman.de"
  694. },
  695. {
  696. "name": "Jordi Boggiano",
  697. "email": "j.boggiano@seld.be",
  698. "homepage": "http://seld.be"
  699. },
  700. {
  701. "name": "Rob Bast",
  702. "email": "rob.bast@gmail.com",
  703. "homepage": "http://robbast.nl"
  704. }
  705. ],
  706. "description": "SPDX licenses list and validation library.",
  707. "keywords": [
  708. "license",
  709. "spdx",
  710. "validator"
  711. ],
  712. "support": {
  713. "irc": "irc://irc.freenode.org/composer",
  714. "issues": "https://github.com/composer/spdx-licenses/issues",
  715. "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
  716. },
  717. "funding": [
  718. {
  719. "url": "https://packagist.com",
  720. "type": "custom"
  721. },
  722. {
  723. "url": "https://github.com/composer",
  724. "type": "github"
  725. },
  726. {
  727. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  728. "type": "tidelift"
  729. }
  730. ],
  731. "time": "2022-05-23T07:37:50+00:00"
  732. },
  733. {
  734. "name": "composer/xdebug-handler",
  735. "version": "3.0.3",
  736. "source": {
  737. "type": "git",
  738. "url": "https://github.com/composer/xdebug-handler.git",
  739. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  740. },
  741. "dist": {
  742. "type": "zip",
  743. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  744. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  745. "shasum": "",
  746. "mirrors": [
  747. {
  748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  749. "preferred": true
  750. }
  751. ]
  752. },
  753. "require": {
  754. "composer/pcre": "^1 || ^2 || ^3",
  755. "php": "^7.2.5 || ^8.0",
  756. "psr/log": "^1 || ^2 || ^3"
  757. },
  758. "require-dev": {
  759. "phpstan/phpstan": "^1.0",
  760. "phpstan/phpstan-strict-rules": "^1.1",
  761. "symfony/phpunit-bridge": "^6.0"
  762. },
  763. "type": "library",
  764. "autoload": {
  765. "psr-4": {
  766. "Composer\\XdebugHandler\\": "src"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "John Stevenson",
  776. "email": "john-stevenson@blueyonder.co.uk"
  777. }
  778. ],
  779. "description": "Restarts a process without Xdebug.",
  780. "keywords": [
  781. "Xdebug",
  782. "performance"
  783. ],
  784. "support": {
  785. "irc": "irc://irc.freenode.org/composer",
  786. "issues": "https://github.com/composer/xdebug-handler/issues",
  787. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  788. },
  789. "funding": [
  790. {
  791. "url": "https://packagist.com",
  792. "type": "custom"
  793. },
  794. {
  795. "url": "https://github.com/composer",
  796. "type": "github"
  797. },
  798. {
  799. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  800. "type": "tidelift"
  801. }
  802. ],
  803. "time": "2022-02-25T21:32:43+00:00"
  804. },
  805. {
  806. "name": "dcat/laravel-wherehasin",
  807. "version": "0.8.0",
  808. "source": {
  809. "type": "git",
  810. "url": "https://github.com/jqhph/laravel-wherehasin.git",
  811. "reference": "4efe5c337bd2c31a89cf81bd35fb5ff3b3585cce"
  812. },
  813. "dist": {
  814. "type": "zip",
  815. "url": "https://api.github.com/repos/jqhph/laravel-wherehasin/zipball/4efe5c337bd2c31a89cf81bd35fb5ff3b3585cce",
  816. "reference": "4efe5c337bd2c31a89cf81bd35fb5ff3b3585cce",
  817. "shasum": "",
  818. "mirrors": [
  819. {
  820. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  821. "preferred": true
  822. }
  823. ]
  824. },
  825. "require": {
  826. "php": ">=7.0"
  827. },
  828. "require-dev": {
  829. "fzaninotto/faker": "^1.4",
  830. "laravel/laravel": ">=5.5",
  831. "mockery/mockery": "^1.0",
  832. "phpunit/phpunit": "^7.5|~9"
  833. },
  834. "type": "library",
  835. "extra": {
  836. "laravel": {
  837. "providers": [
  838. "Dcat\\Laravel\\Database\\WhereHasInServiceProvider"
  839. ]
  840. }
  841. },
  842. "autoload": {
  843. "psr-4": {
  844. "Dcat\\Laravel\\Database\\": "src/"
  845. }
  846. },
  847. "notification-url": "https://packagist.org/downloads/",
  848. "license": [
  849. "MIT"
  850. ],
  851. "authors": [
  852. {
  853. "name": "jqh",
  854. "email": "841324345@qq.com"
  855. }
  856. ],
  857. "description": "Laravel ORM whereHasIn",
  858. "homepage": "https://github.com/jqhph/dcat-admin",
  859. "keywords": [
  860. "laravel",
  861. "orm",
  862. "relation",
  863. "whereHas"
  864. ],
  865. "support": {
  866. "issues": "https://github.com/jqhph/laravel-wherehasin/issues",
  867. "source": "https://github.com/jqhph/laravel-wherehasin/tree/0.8.0"
  868. },
  869. "time": "2021-07-29T07:10:31+00:00"
  870. },
  871. {
  872. "name": "dingo/api",
  873. "version": "v2.4.7",
  874. "source": {
  875. "type": "git",
  876. "url": "https://github.com/dingo/api.git",
  877. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  878. },
  879. "dist": {
  880. "type": "zip",
  881. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  882. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  883. "shasum": "",
  884. "mirrors": [
  885. {
  886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  887. "preferred": true
  888. }
  889. ]
  890. },
  891. "require": {
  892. "dingo/blueprint": "^0.3",
  893. "illuminate/routing": "^5.5 || ^6.0",
  894. "illuminate/support": "^5.5 || ^6.0",
  895. "league/fractal": "^0.17",
  896. "php": "^7.1"
  897. },
  898. "require-dev": {
  899. "friendsofphp/php-cs-fixer": "~2",
  900. "illuminate/auth": "^5.5 || ^6.0",
  901. "illuminate/cache": "^5.5 || ^6.0",
  902. "illuminate/console": "^5.5 || ^6.0",
  903. "illuminate/database": "^5.5 || ^6.0",
  904. "illuminate/events": "^5.5 || ^6.0",
  905. "illuminate/filesystem": "^5.5 || ^6.0",
  906. "illuminate/log": "^5.5 || ^6.0",
  907. "illuminate/pagination": "^5.5 || ^6.0",
  908. "laravel/lumen-framework": "^5.5 || ^6.0",
  909. "mockery/mockery": "~1.0",
  910. "phpdocumentor/reflection-docblock": "3.3.2",
  911. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  912. "squizlabs/php_codesniffer": "~2.0",
  913. "tymon/jwt-auth": "1.0.*"
  914. },
  915. "suggest": {
  916. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  917. },
  918. "type": "library",
  919. "extra": {
  920. "branch-alias": {
  921. "dev-master": "2.0-dev"
  922. },
  923. "laravel": {
  924. "providers": [
  925. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  926. ],
  927. "aliases": {
  928. "API": "Dingo\\Api\\Facade\\API"
  929. }
  930. }
  931. },
  932. "autoload": {
  933. "files": [
  934. "src/helpers.php"
  935. ],
  936. "psr-4": {
  937. "Dingo\\Api\\": "src/"
  938. }
  939. },
  940. "notification-url": "https://packagist.org/downloads/",
  941. "license": [
  942. "BSD-3-Clause"
  943. ],
  944. "authors": [
  945. {
  946. "name": "Jason Lewis",
  947. "email": "jason.lewis1991@gmail.com"
  948. }
  949. ],
  950. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  951. "keywords": [
  952. "api",
  953. "dingo",
  954. "laravel",
  955. "restful"
  956. ],
  957. "support": {
  958. "issues": "https://github.com/dingo/api/issues",
  959. "source": "https://github.com/dingo/api/tree/v2"
  960. },
  961. "abandoned": "api-ecosystem-for-laravel/dingo-api",
  962. "time": "2020-03-19T01:36:11+00:00"
  963. },
  964. {
  965. "name": "dingo/blueprint",
  966. "version": "v0.3.1",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/dingo/blueprint.git",
  970. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  975. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  976. "shasum": "",
  977. "mirrors": [
  978. {
  979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  980. "preferred": true
  981. }
  982. ]
  983. },
  984. "require": {
  985. "doctrine/annotations": "~1.2",
  986. "illuminate/filesystem": "^5.5 || ^6.0",
  987. "illuminate/support": "^5.5 || ^6.0",
  988. "php": "^7.1",
  989. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  990. },
  991. "require-dev": {
  992. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  993. "squizlabs/php_codesniffer": "~2.0"
  994. },
  995. "type": "library",
  996. "extra": {
  997. "branch-alias": {
  998. "dev-master": "0.2-dev"
  999. }
  1000. },
  1001. "autoload": {
  1002. "psr-4": {
  1003. "Dingo\\Blueprint\\": "src"
  1004. }
  1005. },
  1006. "notification-url": "https://packagist.org/downloads/",
  1007. "license": [
  1008. "BSD-3-Clause"
  1009. ],
  1010. "authors": [
  1011. {
  1012. "name": "Jason Lewis",
  1013. "email": "jason.lewis1991@gmail.com"
  1014. }
  1015. ],
  1016. "description": "API Blueprint documentation generator.",
  1017. "keywords": [
  1018. "api",
  1019. "blueprint",
  1020. "dingo",
  1021. "docs",
  1022. "laravel"
  1023. ],
  1024. "support": {
  1025. "issues": "https://github.com/dingo/blueprint/issues",
  1026. "source": "https://github.com/dingo/blueprint/tree/v3.0.1"
  1027. },
  1028. "time": "2019-10-07T10:14:17+00:00"
  1029. },
  1030. {
  1031. "name": "dnoegel/php-xdg-base-dir",
  1032. "version": "v0.1.1",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1036. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1041. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1042. "shasum": "",
  1043. "mirrors": [
  1044. {
  1045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1046. "preferred": true
  1047. }
  1048. ]
  1049. },
  1050. "require": {
  1051. "php": ">=5.3.2"
  1052. },
  1053. "require-dev": {
  1054. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1055. },
  1056. "type": "library",
  1057. "autoload": {
  1058. "psr-4": {
  1059. "XdgBaseDir\\": "src/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "description": "implementation of xdg base directory specification for php",
  1067. "support": {
  1068. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  1069. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  1070. },
  1071. "time": "2019-12-04T15:06:13+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/annotations",
  1075. "version": "1.14.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/annotations.git",
  1079. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1084. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1085. "shasum": "",
  1086. "mirrors": [
  1087. {
  1088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1089. "preferred": true
  1090. }
  1091. ]
  1092. },
  1093. "require": {
  1094. "doctrine/lexer": "^1 || ^2",
  1095. "ext-tokenizer": "*",
  1096. "php": "^7.1 || ^8.0",
  1097. "psr/cache": "^1 || ^2 || ^3"
  1098. },
  1099. "require-dev": {
  1100. "doctrine/cache": "^1.11 || ^2.0",
  1101. "doctrine/coding-standard": "^9 || ^10",
  1102. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1103. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1104. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1105. "vimeo/psalm": "^4.10"
  1106. },
  1107. "suggest": {
  1108. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1109. },
  1110. "type": "library",
  1111. "autoload": {
  1112. "psr-4": {
  1113. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "MIT"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "Guilherme Blanco",
  1123. "email": "guilhermeblanco@gmail.com"
  1124. },
  1125. {
  1126. "name": "Roman Borschel",
  1127. "email": "roman@code-factory.org"
  1128. },
  1129. {
  1130. "name": "Benjamin Eberlei",
  1131. "email": "kontakt@beberlei.de"
  1132. },
  1133. {
  1134. "name": "Jonathan Wage",
  1135. "email": "jonwage@gmail.com"
  1136. },
  1137. {
  1138. "name": "Johannes Schmitt",
  1139. "email": "schmittjoh@gmail.com"
  1140. }
  1141. ],
  1142. "description": "Docblock Annotations Parser",
  1143. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1144. "keywords": [
  1145. "annotations",
  1146. "docblock",
  1147. "parser"
  1148. ],
  1149. "support": {
  1150. "issues": "https://github.com/doctrine/annotations/issues",
  1151. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1152. },
  1153. "time": "2023-02-01T09:20:38+00:00"
  1154. },
  1155. {
  1156. "name": "doctrine/cache",
  1157. "version": "2.2.0",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/doctrine/cache.git",
  1161. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1166. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1167. "shasum": "",
  1168. "mirrors": [
  1169. {
  1170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1171. "preferred": true
  1172. }
  1173. ]
  1174. },
  1175. "require": {
  1176. "php": "~7.1 || ^8.0"
  1177. },
  1178. "conflict": {
  1179. "doctrine/common": ">2.2,<2.4"
  1180. },
  1181. "require-dev": {
  1182. "cache/integration-tests": "dev-master",
  1183. "doctrine/coding-standard": "^9",
  1184. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1185. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1186. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1187. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1188. },
  1189. "type": "library",
  1190. "autoload": {
  1191. "psr-4": {
  1192. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1193. }
  1194. },
  1195. "notification-url": "https://packagist.org/downloads/",
  1196. "license": [
  1197. "MIT"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "Guilherme Blanco",
  1202. "email": "guilhermeblanco@gmail.com"
  1203. },
  1204. {
  1205. "name": "Roman Borschel",
  1206. "email": "roman@code-factory.org"
  1207. },
  1208. {
  1209. "name": "Benjamin Eberlei",
  1210. "email": "kontakt@beberlei.de"
  1211. },
  1212. {
  1213. "name": "Jonathan Wage",
  1214. "email": "jonwage@gmail.com"
  1215. },
  1216. {
  1217. "name": "Johannes Schmitt",
  1218. "email": "schmittjoh@gmail.com"
  1219. }
  1220. ],
  1221. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1222. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1223. "keywords": [
  1224. "abstraction",
  1225. "apcu",
  1226. "cache",
  1227. "caching",
  1228. "couchdb",
  1229. "memcached",
  1230. "php",
  1231. "redis",
  1232. "xcache"
  1233. ],
  1234. "support": {
  1235. "issues": "https://github.com/doctrine/cache/issues",
  1236. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1237. },
  1238. "funding": [
  1239. {
  1240. "url": "https://www.doctrine-project.org/sponsorship.html",
  1241. "type": "custom"
  1242. },
  1243. {
  1244. "url": "https://www.patreon.com/phpdoctrine",
  1245. "type": "patreon"
  1246. },
  1247. {
  1248. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1249. "type": "tidelift"
  1250. }
  1251. ],
  1252. "time": "2022-05-20T20:07:39+00:00"
  1253. },
  1254. {
  1255. "name": "doctrine/dbal",
  1256. "version": "2.13.9",
  1257. "source": {
  1258. "type": "git",
  1259. "url": "https://github.com/doctrine/dbal.git",
  1260. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8"
  1261. },
  1262. "dist": {
  1263. "type": "zip",
  1264. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  1265. "reference": "c480849ca3ad6706a39c970cdfe6888fa8a058b8",
  1266. "shasum": "",
  1267. "mirrors": [
  1268. {
  1269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1270. "preferred": true
  1271. }
  1272. ]
  1273. },
  1274. "require": {
  1275. "doctrine/cache": "^1.0|^2.0",
  1276. "doctrine/deprecations": "^0.5.3|^1",
  1277. "doctrine/event-manager": "^1.0",
  1278. "ext-pdo": "*",
  1279. "php": "^7.1 || ^8"
  1280. },
  1281. "require-dev": {
  1282. "doctrine/coding-standard": "9.0.0",
  1283. "jetbrains/phpstorm-stubs": "2021.1",
  1284. "phpstan/phpstan": "1.4.6",
  1285. "phpunit/phpunit": "^7.5.20|^8.5|9.5.16",
  1286. "psalm/plugin-phpunit": "0.16.1",
  1287. "squizlabs/php_codesniffer": "3.6.2",
  1288. "symfony/cache": "^4.4",
  1289. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  1290. "vimeo/psalm": "4.22.0"
  1291. },
  1292. "suggest": {
  1293. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1294. },
  1295. "bin": [
  1296. "bin/doctrine-dbal"
  1297. ],
  1298. "type": "library",
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "authors": [
  1309. {
  1310. "name": "Guilherme Blanco",
  1311. "email": "guilhermeblanco@gmail.com"
  1312. },
  1313. {
  1314. "name": "Roman Borschel",
  1315. "email": "roman@code-factory.org"
  1316. },
  1317. {
  1318. "name": "Benjamin Eberlei",
  1319. "email": "kontakt@beberlei.de"
  1320. },
  1321. {
  1322. "name": "Jonathan Wage",
  1323. "email": "jonwage@gmail.com"
  1324. }
  1325. ],
  1326. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1327. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1328. "keywords": [
  1329. "abstraction",
  1330. "database",
  1331. "db2",
  1332. "dbal",
  1333. "mariadb",
  1334. "mssql",
  1335. "mysql",
  1336. "oci8",
  1337. "oracle",
  1338. "pdo",
  1339. "pgsql",
  1340. "postgresql",
  1341. "queryobject",
  1342. "sasql",
  1343. "sql",
  1344. "sqlanywhere",
  1345. "sqlite",
  1346. "sqlserver",
  1347. "sqlsrv"
  1348. ],
  1349. "support": {
  1350. "issues": "https://github.com/doctrine/dbal/issues",
  1351. "source": "https://github.com/doctrine/dbal/tree/2.13.9"
  1352. },
  1353. "funding": [
  1354. {
  1355. "url": "https://www.doctrine-project.org/sponsorship.html",
  1356. "type": "custom"
  1357. },
  1358. {
  1359. "url": "https://www.patreon.com/phpdoctrine",
  1360. "type": "patreon"
  1361. },
  1362. {
  1363. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1364. "type": "tidelift"
  1365. }
  1366. ],
  1367. "time": "2022-05-02T20:28:55+00:00"
  1368. },
  1369. {
  1370. "name": "doctrine/deprecations",
  1371. "version": "v1.1.1",
  1372. "source": {
  1373. "type": "git",
  1374. "url": "https://github.com/doctrine/deprecations.git",
  1375. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  1376. },
  1377. "dist": {
  1378. "type": "zip",
  1379. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  1380. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  1381. "shasum": "",
  1382. "mirrors": [
  1383. {
  1384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1385. "preferred": true
  1386. }
  1387. ]
  1388. },
  1389. "require": {
  1390. "php": "^7.1 || ^8.0"
  1391. },
  1392. "require-dev": {
  1393. "doctrine/coding-standard": "^9",
  1394. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1395. "phpstan/phpstan-phpunit": "^1.0",
  1396. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1397. "psalm/plugin-phpunit": "0.18.4",
  1398. "psr/log": "^1 || ^2 || ^3",
  1399. "vimeo/psalm": "4.30.0 || 5.12.0"
  1400. },
  1401. "suggest": {
  1402. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1403. },
  1404. "type": "library",
  1405. "autoload": {
  1406. "psr-4": {
  1407. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1408. }
  1409. },
  1410. "notification-url": "https://packagist.org/downloads/",
  1411. "license": [
  1412. "MIT"
  1413. ],
  1414. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1415. "homepage": "https://www.doctrine-project.org/",
  1416. "support": {
  1417. "issues": "https://github.com/doctrine/deprecations/issues",
  1418. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  1419. },
  1420. "time": "2023-06-03T09:27:29+00:00"
  1421. },
  1422. {
  1423. "name": "doctrine/event-manager",
  1424. "version": "1.2.0",
  1425. "source": {
  1426. "type": "git",
  1427. "url": "https://github.com/doctrine/event-manager.git",
  1428. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520"
  1429. },
  1430. "dist": {
  1431. "type": "zip",
  1432. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1433. "reference": "95aa4cb529f1e96576f3fda9f5705ada4056a520",
  1434. "shasum": "",
  1435. "mirrors": [
  1436. {
  1437. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1438. "preferred": true
  1439. }
  1440. ]
  1441. },
  1442. "require": {
  1443. "doctrine/deprecations": "^0.5.3 || ^1",
  1444. "php": "^7.1 || ^8.0"
  1445. },
  1446. "conflict": {
  1447. "doctrine/common": "<2.9"
  1448. },
  1449. "require-dev": {
  1450. "doctrine/coding-standard": "^9 || ^10",
  1451. "phpstan/phpstan": "~1.4.10 || ^1.8.8",
  1452. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1453. "vimeo/psalm": "^4.24"
  1454. },
  1455. "type": "library",
  1456. "autoload": {
  1457. "psr-4": {
  1458. "Doctrine\\Common\\": "src"
  1459. }
  1460. },
  1461. "notification-url": "https://packagist.org/downloads/",
  1462. "license": [
  1463. "MIT"
  1464. ],
  1465. "authors": [
  1466. {
  1467. "name": "Guilherme Blanco",
  1468. "email": "guilhermeblanco@gmail.com"
  1469. },
  1470. {
  1471. "name": "Roman Borschel",
  1472. "email": "roman@code-factory.org"
  1473. },
  1474. {
  1475. "name": "Benjamin Eberlei",
  1476. "email": "kontakt@beberlei.de"
  1477. },
  1478. {
  1479. "name": "Jonathan Wage",
  1480. "email": "jonwage@gmail.com"
  1481. },
  1482. {
  1483. "name": "Johannes Schmitt",
  1484. "email": "schmittjoh@gmail.com"
  1485. },
  1486. {
  1487. "name": "Marco Pivetta",
  1488. "email": "ocramius@gmail.com"
  1489. }
  1490. ],
  1491. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1492. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1493. "keywords": [
  1494. "event",
  1495. "event dispatcher",
  1496. "event manager",
  1497. "event system",
  1498. "events"
  1499. ],
  1500. "support": {
  1501. "issues": "https://github.com/doctrine/event-manager/issues",
  1502. "source": "https://github.com/doctrine/event-manager/tree/1.2.0"
  1503. },
  1504. "funding": [
  1505. {
  1506. "url": "https://www.doctrine-project.org/sponsorship.html",
  1507. "type": "custom"
  1508. },
  1509. {
  1510. "url": "https://www.patreon.com/phpdoctrine",
  1511. "type": "patreon"
  1512. },
  1513. {
  1514. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1515. "type": "tidelift"
  1516. }
  1517. ],
  1518. "time": "2022-10-12T20:51:15+00:00"
  1519. },
  1520. {
  1521. "name": "doctrine/inflector",
  1522. "version": "2.0.8",
  1523. "source": {
  1524. "type": "git",
  1525. "url": "https://github.com/doctrine/inflector.git",
  1526. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  1527. },
  1528. "dist": {
  1529. "type": "zip",
  1530. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1531. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1532. "shasum": "",
  1533. "mirrors": [
  1534. {
  1535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1536. "preferred": true
  1537. }
  1538. ]
  1539. },
  1540. "require": {
  1541. "php": "^7.2 || ^8.0"
  1542. },
  1543. "require-dev": {
  1544. "doctrine/coding-standard": "^11.0",
  1545. "phpstan/phpstan": "^1.8",
  1546. "phpstan/phpstan-phpunit": "^1.1",
  1547. "phpstan/phpstan-strict-rules": "^1.3",
  1548. "phpunit/phpunit": "^8.5 || ^9.5",
  1549. "vimeo/psalm": "^4.25 || ^5.4"
  1550. },
  1551. "type": "library",
  1552. "autoload": {
  1553. "psr-4": {
  1554. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1555. }
  1556. },
  1557. "notification-url": "https://packagist.org/downloads/",
  1558. "license": [
  1559. "MIT"
  1560. ],
  1561. "authors": [
  1562. {
  1563. "name": "Guilherme Blanco",
  1564. "email": "guilhermeblanco@gmail.com"
  1565. },
  1566. {
  1567. "name": "Roman Borschel",
  1568. "email": "roman@code-factory.org"
  1569. },
  1570. {
  1571. "name": "Benjamin Eberlei",
  1572. "email": "kontakt@beberlei.de"
  1573. },
  1574. {
  1575. "name": "Jonathan Wage",
  1576. "email": "jonwage@gmail.com"
  1577. },
  1578. {
  1579. "name": "Johannes Schmitt",
  1580. "email": "schmittjoh@gmail.com"
  1581. }
  1582. ],
  1583. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1584. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1585. "keywords": [
  1586. "inflection",
  1587. "inflector",
  1588. "lowercase",
  1589. "manipulation",
  1590. "php",
  1591. "plural",
  1592. "singular",
  1593. "strings",
  1594. "uppercase",
  1595. "words"
  1596. ],
  1597. "support": {
  1598. "issues": "https://github.com/doctrine/inflector/issues",
  1599. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1600. },
  1601. "funding": [
  1602. {
  1603. "url": "https://www.doctrine-project.org/sponsorship.html",
  1604. "type": "custom"
  1605. },
  1606. {
  1607. "url": "https://www.patreon.com/phpdoctrine",
  1608. "type": "patreon"
  1609. },
  1610. {
  1611. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1612. "type": "tidelift"
  1613. }
  1614. ],
  1615. "time": "2023-06-16T13:40:37+00:00"
  1616. },
  1617. {
  1618. "name": "doctrine/lexer",
  1619. "version": "1.2.3",
  1620. "source": {
  1621. "type": "git",
  1622. "url": "https://github.com/doctrine/lexer.git",
  1623. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1624. },
  1625. "dist": {
  1626. "type": "zip",
  1627. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1628. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1629. "shasum": "",
  1630. "mirrors": [
  1631. {
  1632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1633. "preferred": true
  1634. }
  1635. ]
  1636. },
  1637. "require": {
  1638. "php": "^7.1 || ^8.0"
  1639. },
  1640. "require-dev": {
  1641. "doctrine/coding-standard": "^9.0",
  1642. "phpstan/phpstan": "^1.3",
  1643. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1644. "vimeo/psalm": "^4.11"
  1645. },
  1646. "type": "library",
  1647. "autoload": {
  1648. "psr-4": {
  1649. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1650. }
  1651. },
  1652. "notification-url": "https://packagist.org/downloads/",
  1653. "license": [
  1654. "MIT"
  1655. ],
  1656. "authors": [
  1657. {
  1658. "name": "Guilherme Blanco",
  1659. "email": "guilhermeblanco@gmail.com"
  1660. },
  1661. {
  1662. "name": "Roman Borschel",
  1663. "email": "roman@code-factory.org"
  1664. },
  1665. {
  1666. "name": "Johannes Schmitt",
  1667. "email": "schmittjoh@gmail.com"
  1668. }
  1669. ],
  1670. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1671. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1672. "keywords": [
  1673. "annotations",
  1674. "docblock",
  1675. "lexer",
  1676. "parser",
  1677. "php"
  1678. ],
  1679. "support": {
  1680. "issues": "https://github.com/doctrine/lexer/issues",
  1681. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://www.doctrine-project.org/sponsorship.html",
  1686. "type": "custom"
  1687. },
  1688. {
  1689. "url": "https://www.patreon.com/phpdoctrine",
  1690. "type": "patreon"
  1691. },
  1692. {
  1693. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1694. "type": "tidelift"
  1695. }
  1696. ],
  1697. "time": "2022-02-28T11:07:21+00:00"
  1698. },
  1699. {
  1700. "name": "dragonmantank/cron-expression",
  1701. "version": "v2.3.1",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/dragonmantank/cron-expression.git",
  1705. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1710. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1711. "shasum": "",
  1712. "mirrors": [
  1713. {
  1714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1715. "preferred": true
  1716. }
  1717. ]
  1718. },
  1719. "require": {
  1720. "php": "^7.0|^8.0"
  1721. },
  1722. "require-dev": {
  1723. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1724. },
  1725. "type": "library",
  1726. "extra": {
  1727. "branch-alias": {
  1728. "dev-master": "2.3-dev"
  1729. }
  1730. },
  1731. "autoload": {
  1732. "psr-4": {
  1733. "Cron\\": "src/Cron/"
  1734. }
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "Michael Dowling",
  1743. "email": "mtdowling@gmail.com",
  1744. "homepage": "https://github.com/mtdowling"
  1745. },
  1746. {
  1747. "name": "Chris Tankersley",
  1748. "email": "chris@ctankersley.com",
  1749. "homepage": "https://github.com/dragonmantank"
  1750. }
  1751. ],
  1752. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1753. "keywords": [
  1754. "cron",
  1755. "schedule"
  1756. ],
  1757. "support": {
  1758. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1759. "source": "https://github.com/dragonmantank/cron-expression/tree/v2.3.1"
  1760. },
  1761. "funding": [
  1762. {
  1763. "url": "https://github.com/dragonmantank",
  1764. "type": "github"
  1765. }
  1766. ],
  1767. "time": "2020-10-13T00:52:37+00:00"
  1768. },
  1769. {
  1770. "name": "easywechat-composer/easywechat-composer",
  1771. "version": "1.4.1",
  1772. "source": {
  1773. "type": "git",
  1774. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1775. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1776. },
  1777. "dist": {
  1778. "type": "zip",
  1779. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1780. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1781. "shasum": "",
  1782. "mirrors": [
  1783. {
  1784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1785. "preferred": true
  1786. }
  1787. ]
  1788. },
  1789. "require": {
  1790. "composer-plugin-api": "^1.0 || ^2.0",
  1791. "php": ">=7.0"
  1792. },
  1793. "require-dev": {
  1794. "composer/composer": "^1.0 || ^2.0",
  1795. "phpunit/phpunit": "^6.5 || ^7.0"
  1796. },
  1797. "type": "composer-plugin",
  1798. "extra": {
  1799. "class": "EasyWeChatComposer\\Plugin"
  1800. },
  1801. "autoload": {
  1802. "psr-4": {
  1803. "EasyWeChatComposer\\": "src/"
  1804. }
  1805. },
  1806. "notification-url": "https://packagist.org/downloads/",
  1807. "license": [
  1808. "MIT"
  1809. ],
  1810. "authors": [
  1811. {
  1812. "name": "张铭阳",
  1813. "email": "mingyoungcheung@gmail.com"
  1814. }
  1815. ],
  1816. "description": "The composer plugin for EasyWeChat",
  1817. "support": {
  1818. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1819. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1820. },
  1821. "time": "2021-07-05T04:03:22+00:00"
  1822. },
  1823. {
  1824. "name": "egulias/email-validator",
  1825. "version": "2.1.25",
  1826. "source": {
  1827. "type": "git",
  1828. "url": "https://github.com/egulias/EmailValidator.git",
  1829. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1830. },
  1831. "dist": {
  1832. "type": "zip",
  1833. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1834. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1835. "shasum": "",
  1836. "mirrors": [
  1837. {
  1838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1839. "preferred": true
  1840. }
  1841. ]
  1842. },
  1843. "require": {
  1844. "doctrine/lexer": "^1.0.1",
  1845. "php": ">=5.5",
  1846. "symfony/polyfill-intl-idn": "^1.10"
  1847. },
  1848. "require-dev": {
  1849. "dominicsayers/isemail": "^3.0.7",
  1850. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1851. "satooshi/php-coveralls": "^1.0.1"
  1852. },
  1853. "suggest": {
  1854. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1855. },
  1856. "type": "library",
  1857. "extra": {
  1858. "branch-alias": {
  1859. "dev-master": "2.1.x-dev"
  1860. }
  1861. },
  1862. "autoload": {
  1863. "psr-4": {
  1864. "Egulias\\EmailValidator\\": "src"
  1865. }
  1866. },
  1867. "notification-url": "https://packagist.org/downloads/",
  1868. "license": [
  1869. "MIT"
  1870. ],
  1871. "authors": [
  1872. {
  1873. "name": "Eduardo Gulias Davis"
  1874. }
  1875. ],
  1876. "description": "A library for validating emails against several RFCs",
  1877. "homepage": "https://github.com/egulias/EmailValidator",
  1878. "keywords": [
  1879. "email",
  1880. "emailvalidation",
  1881. "emailvalidator",
  1882. "validation",
  1883. "validator"
  1884. ],
  1885. "support": {
  1886. "issues": "https://github.com/egulias/EmailValidator/issues",
  1887. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1888. },
  1889. "funding": [
  1890. {
  1891. "url": "https://github.com/egulias",
  1892. "type": "github"
  1893. }
  1894. ],
  1895. "time": "2020-12-29T14:50:06+00:00"
  1896. },
  1897. {
  1898. "name": "ezyang/htmlpurifier",
  1899. "version": "v4.16.0",
  1900. "source": {
  1901. "type": "git",
  1902. "url": "https://github.com/ezyang/htmlpurifier.git",
  1903. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1904. },
  1905. "dist": {
  1906. "type": "zip",
  1907. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1908. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1909. "shasum": "",
  1910. "mirrors": [
  1911. {
  1912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1913. "preferred": true
  1914. }
  1915. ]
  1916. },
  1917. "require": {
  1918. "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"
  1919. },
  1920. "require-dev": {
  1921. "cerdic/css-tidy": "^1.7 || ^2.0",
  1922. "simpletest/simpletest": "dev-master"
  1923. },
  1924. "suggest": {
  1925. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1926. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1927. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1928. "ext-tidy": "Used for pretty-printing HTML"
  1929. },
  1930. "type": "library",
  1931. "autoload": {
  1932. "files": [
  1933. "library/HTMLPurifier.composer.php"
  1934. ],
  1935. "psr-0": {
  1936. "HTMLPurifier": "library/"
  1937. },
  1938. "exclude-from-classmap": [
  1939. "/library/HTMLPurifier/Language/"
  1940. ]
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "LGPL-2.1-or-later"
  1945. ],
  1946. "authors": [
  1947. {
  1948. "name": "Edward Z. Yang",
  1949. "email": "admin@htmlpurifier.org",
  1950. "homepage": "http://ezyang.com"
  1951. }
  1952. ],
  1953. "description": "Standards compliant HTML filter written in PHP",
  1954. "homepage": "http://htmlpurifier.org/",
  1955. "keywords": [
  1956. "html"
  1957. ],
  1958. "support": {
  1959. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1960. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1961. },
  1962. "time": "2022-09-18T07:06:19+00:00"
  1963. },
  1964. {
  1965. "name": "fideloper/proxy",
  1966. "version": "4.4.2",
  1967. "source": {
  1968. "type": "git",
  1969. "url": "https://github.com/fideloper/TrustedProxy.git",
  1970. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1971. },
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1975. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1976. "shasum": "",
  1977. "mirrors": [
  1978. {
  1979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1980. "preferred": true
  1981. }
  1982. ]
  1983. },
  1984. "require": {
  1985. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1986. "php": ">=5.4.0"
  1987. },
  1988. "require-dev": {
  1989. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1990. "mockery/mockery": "^1.0",
  1991. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1992. },
  1993. "type": "library",
  1994. "extra": {
  1995. "laravel": {
  1996. "providers": [
  1997. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1998. ]
  1999. }
  2000. },
  2001. "autoload": {
  2002. "psr-4": {
  2003. "Fideloper\\Proxy\\": "src/"
  2004. }
  2005. },
  2006. "notification-url": "https://packagist.org/downloads/",
  2007. "license": [
  2008. "MIT"
  2009. ],
  2010. "authors": [
  2011. {
  2012. "name": "Chris Fidao",
  2013. "email": "fideloper@gmail.com"
  2014. }
  2015. ],
  2016. "description": "Set trusted proxies for Laravel",
  2017. "keywords": [
  2018. "load balancing",
  2019. "proxy",
  2020. "trusted proxy"
  2021. ],
  2022. "support": {
  2023. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  2024. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  2025. },
  2026. "time": "2022-02-09T13:33:34+00:00"
  2027. },
  2028. {
  2029. "name": "fruitcake/laravel-cors",
  2030. "version": "v2.2.0",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/fruitcake/laravel-cors.git",
  2034. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2039. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2040. "shasum": "",
  2041. "mirrors": [
  2042. {
  2043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2044. "preferred": true
  2045. }
  2046. ]
  2047. },
  2048. "require": {
  2049. "asm89/stack-cors": "^2.0.1",
  2050. "illuminate/contracts": "^6|^7|^8|^9",
  2051. "illuminate/support": "^6|^7|^8|^9",
  2052. "php": ">=7.2"
  2053. },
  2054. "require-dev": {
  2055. "laravel/framework": "^6|^7.24|^8",
  2056. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  2057. "phpunit/phpunit": "^6|^7|^8|^9",
  2058. "squizlabs/php_codesniffer": "^3.5"
  2059. },
  2060. "type": "library",
  2061. "extra": {
  2062. "branch-alias": {
  2063. "dev-master": "2.1-dev"
  2064. },
  2065. "laravel": {
  2066. "providers": [
  2067. "Fruitcake\\Cors\\CorsServiceProvider"
  2068. ]
  2069. }
  2070. },
  2071. "autoload": {
  2072. "psr-4": {
  2073. "Fruitcake\\Cors\\": "src/"
  2074. }
  2075. },
  2076. "notification-url": "https://packagist.org/downloads/",
  2077. "license": [
  2078. "MIT"
  2079. ],
  2080. "authors": [
  2081. {
  2082. "name": "Fruitcake",
  2083. "homepage": "https://fruitcake.nl"
  2084. },
  2085. {
  2086. "name": "Barry vd. Heuvel",
  2087. "email": "barryvdh@gmail.com"
  2088. }
  2089. ],
  2090. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  2091. "keywords": [
  2092. "api",
  2093. "cors",
  2094. "crossdomain",
  2095. "laravel"
  2096. ],
  2097. "support": {
  2098. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  2099. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  2100. },
  2101. "funding": [
  2102. {
  2103. "url": "https://fruitcake.nl",
  2104. "type": "custom"
  2105. },
  2106. {
  2107. "url": "https://github.com/barryvdh",
  2108. "type": "github"
  2109. }
  2110. ],
  2111. "abandoned": true,
  2112. "time": "2022-02-23T14:25:13+00:00"
  2113. },
  2114. {
  2115. "name": "guzzlehttp/guzzle",
  2116. "version": "6.5.8",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/guzzle/guzzle.git",
  2120. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  2125. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  2126. "shasum": "",
  2127. "mirrors": [
  2128. {
  2129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2130. "preferred": true
  2131. }
  2132. ]
  2133. },
  2134. "require": {
  2135. "ext-json": "*",
  2136. "guzzlehttp/promises": "^1.0",
  2137. "guzzlehttp/psr7": "^1.9",
  2138. "php": ">=5.5",
  2139. "symfony/polyfill-intl-idn": "^1.17"
  2140. },
  2141. "require-dev": {
  2142. "ext-curl": "*",
  2143. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  2144. "psr/log": "^1.1"
  2145. },
  2146. "suggest": {
  2147. "psr/log": "Required for using the Log middleware"
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "6.5-dev"
  2153. }
  2154. },
  2155. "autoload": {
  2156. "files": [
  2157. "src/functions_include.php"
  2158. ],
  2159. "psr-4": {
  2160. "GuzzleHttp\\": "src/"
  2161. }
  2162. },
  2163. "notification-url": "https://packagist.org/downloads/",
  2164. "license": [
  2165. "MIT"
  2166. ],
  2167. "authors": [
  2168. {
  2169. "name": "Graham Campbell",
  2170. "email": "hello@gjcampbell.co.uk",
  2171. "homepage": "https://github.com/GrahamCampbell"
  2172. },
  2173. {
  2174. "name": "Michael Dowling",
  2175. "email": "mtdowling@gmail.com",
  2176. "homepage": "https://github.com/mtdowling"
  2177. },
  2178. {
  2179. "name": "Jeremy Lindblom",
  2180. "email": "jeremeamia@gmail.com",
  2181. "homepage": "https://github.com/jeremeamia"
  2182. },
  2183. {
  2184. "name": "George Mponos",
  2185. "email": "gmponos@gmail.com",
  2186. "homepage": "https://github.com/gmponos"
  2187. },
  2188. {
  2189. "name": "Tobias Nyholm",
  2190. "email": "tobias.nyholm@gmail.com",
  2191. "homepage": "https://github.com/Nyholm"
  2192. },
  2193. {
  2194. "name": "Márk Sági-Kazár",
  2195. "email": "mark.sagikazar@gmail.com",
  2196. "homepage": "https://github.com/sagikazarmark"
  2197. },
  2198. {
  2199. "name": "Tobias Schultze",
  2200. "email": "webmaster@tubo-world.de",
  2201. "homepage": "https://github.com/Tobion"
  2202. }
  2203. ],
  2204. "description": "Guzzle is a PHP HTTP client library",
  2205. "homepage": "http://guzzlephp.org/",
  2206. "keywords": [
  2207. "client",
  2208. "curl",
  2209. "framework",
  2210. "http",
  2211. "http client",
  2212. "rest",
  2213. "web service"
  2214. ],
  2215. "support": {
  2216. "issues": "https://github.com/guzzle/guzzle/issues",
  2217. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  2218. },
  2219. "funding": [
  2220. {
  2221. "url": "https://github.com/GrahamCampbell",
  2222. "type": "github"
  2223. },
  2224. {
  2225. "url": "https://github.com/Nyholm",
  2226. "type": "github"
  2227. },
  2228. {
  2229. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2230. "type": "tidelift"
  2231. }
  2232. ],
  2233. "time": "2022-06-20T22:16:07+00:00"
  2234. },
  2235. {
  2236. "name": "guzzlehttp/promises",
  2237. "version": "1.5.3",
  2238. "source": {
  2239. "type": "git",
  2240. "url": "https://github.com/guzzle/promises.git",
  2241. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  2242. },
  2243. "dist": {
  2244. "type": "zip",
  2245. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  2246. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  2247. "shasum": "",
  2248. "mirrors": [
  2249. {
  2250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2251. "preferred": true
  2252. }
  2253. ]
  2254. },
  2255. "require": {
  2256. "php": ">=5.5"
  2257. },
  2258. "require-dev": {
  2259. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  2260. },
  2261. "type": "library",
  2262. "autoload": {
  2263. "files": [
  2264. "src/functions_include.php"
  2265. ],
  2266. "psr-4": {
  2267. "GuzzleHttp\\Promise\\": "src/"
  2268. }
  2269. },
  2270. "notification-url": "https://packagist.org/downloads/",
  2271. "license": [
  2272. "MIT"
  2273. ],
  2274. "authors": [
  2275. {
  2276. "name": "Graham Campbell",
  2277. "email": "hello@gjcampbell.co.uk",
  2278. "homepage": "https://github.com/GrahamCampbell"
  2279. },
  2280. {
  2281. "name": "Michael Dowling",
  2282. "email": "mtdowling@gmail.com",
  2283. "homepage": "https://github.com/mtdowling"
  2284. },
  2285. {
  2286. "name": "Tobias Nyholm",
  2287. "email": "tobias.nyholm@gmail.com",
  2288. "homepage": "https://github.com/Nyholm"
  2289. },
  2290. {
  2291. "name": "Tobias Schultze",
  2292. "email": "webmaster@tubo-world.de",
  2293. "homepage": "https://github.com/Tobion"
  2294. }
  2295. ],
  2296. "description": "Guzzle promises library",
  2297. "keywords": [
  2298. "promise"
  2299. ],
  2300. "support": {
  2301. "issues": "https://github.com/guzzle/promises/issues",
  2302. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://github.com/GrahamCampbell",
  2307. "type": "github"
  2308. },
  2309. {
  2310. "url": "https://github.com/Nyholm",
  2311. "type": "github"
  2312. },
  2313. {
  2314. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2315. "type": "tidelift"
  2316. }
  2317. ],
  2318. "time": "2023-05-21T12:31:43+00:00"
  2319. },
  2320. {
  2321. "name": "guzzlehttp/psr7",
  2322. "version": "1.9.1",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/guzzle/psr7.git",
  2326. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  2331. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  2332. "shasum": "",
  2333. "mirrors": [
  2334. {
  2335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2336. "preferred": true
  2337. }
  2338. ]
  2339. },
  2340. "require": {
  2341. "php": ">=5.4.0",
  2342. "psr/http-message": "~1.0",
  2343. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  2344. },
  2345. "provide": {
  2346. "psr/http-message-implementation": "1.0"
  2347. },
  2348. "require-dev": {
  2349. "ext-zlib": "*",
  2350. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  2351. },
  2352. "suggest": {
  2353. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2354. },
  2355. "type": "library",
  2356. "autoload": {
  2357. "files": [
  2358. "src/functions_include.php"
  2359. ],
  2360. "psr-4": {
  2361. "GuzzleHttp\\Psr7\\": "src/"
  2362. }
  2363. },
  2364. "notification-url": "https://packagist.org/downloads/",
  2365. "license": [
  2366. "MIT"
  2367. ],
  2368. "authors": [
  2369. {
  2370. "name": "Graham Campbell",
  2371. "email": "hello@gjcampbell.co.uk",
  2372. "homepage": "https://github.com/GrahamCampbell"
  2373. },
  2374. {
  2375. "name": "Michael Dowling",
  2376. "email": "mtdowling@gmail.com",
  2377. "homepage": "https://github.com/mtdowling"
  2378. },
  2379. {
  2380. "name": "George Mponos",
  2381. "email": "gmponos@gmail.com",
  2382. "homepage": "https://github.com/gmponos"
  2383. },
  2384. {
  2385. "name": "Tobias Nyholm",
  2386. "email": "tobias.nyholm@gmail.com",
  2387. "homepage": "https://github.com/Nyholm"
  2388. },
  2389. {
  2390. "name": "Márk Sági-Kazár",
  2391. "email": "mark.sagikazar@gmail.com",
  2392. "homepage": "https://github.com/sagikazarmark"
  2393. },
  2394. {
  2395. "name": "Tobias Schultze",
  2396. "email": "webmaster@tubo-world.de",
  2397. "homepage": "https://github.com/Tobion"
  2398. }
  2399. ],
  2400. "description": "PSR-7 message implementation that also provides common utility methods",
  2401. "keywords": [
  2402. "http",
  2403. "message",
  2404. "psr-7",
  2405. "request",
  2406. "response",
  2407. "stream",
  2408. "uri",
  2409. "url"
  2410. ],
  2411. "support": {
  2412. "issues": "https://github.com/guzzle/psr7/issues",
  2413. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  2414. },
  2415. "funding": [
  2416. {
  2417. "url": "https://github.com/GrahamCampbell",
  2418. "type": "github"
  2419. },
  2420. {
  2421. "url": "https://github.com/Nyholm",
  2422. "type": "github"
  2423. },
  2424. {
  2425. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2426. "type": "tidelift"
  2427. }
  2428. ],
  2429. "time": "2023-04-17T16:00:37+00:00"
  2430. },
  2431. {
  2432. "name": "jakub-onderka/php-console-color",
  2433. "version": "v0.2",
  2434. "source": {
  2435. "type": "git",
  2436. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  2437. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  2438. },
  2439. "dist": {
  2440. "type": "zip",
  2441. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  2442. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  2443. "shasum": "",
  2444. "mirrors": [
  2445. {
  2446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2447. "preferred": true
  2448. }
  2449. ]
  2450. },
  2451. "require": {
  2452. "php": ">=5.4.0"
  2453. },
  2454. "require-dev": {
  2455. "jakub-onderka/php-code-style": "1.0",
  2456. "jakub-onderka/php-parallel-lint": "1.0",
  2457. "jakub-onderka/php-var-dump-check": "0.*",
  2458. "phpunit/phpunit": "~4.3",
  2459. "squizlabs/php_codesniffer": "1.*"
  2460. },
  2461. "type": "library",
  2462. "autoload": {
  2463. "psr-4": {
  2464. "JakubOnderka\\PhpConsoleColor\\": "src/"
  2465. }
  2466. },
  2467. "notification-url": "https://packagist.org/downloads/",
  2468. "license": [
  2469. "BSD-2-Clause"
  2470. ],
  2471. "authors": [
  2472. {
  2473. "name": "Jakub Onderka",
  2474. "email": "jakub.onderka@gmail.com"
  2475. }
  2476. ],
  2477. "support": {
  2478. "issues": "https://github.com/JakubOnderka/PHP-Console-Color/issues",
  2479. "source": "https://github.com/JakubOnderka/PHP-Console-Color/tree/master"
  2480. },
  2481. "abandoned": "php-parallel-lint/php-console-color",
  2482. "time": "2018-09-29T17:23:10+00:00"
  2483. },
  2484. {
  2485. "name": "jakub-onderka/php-console-highlighter",
  2486. "version": "v0.4",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  2490. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2495. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  2496. "shasum": "",
  2497. "mirrors": [
  2498. {
  2499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2500. "preferred": true
  2501. }
  2502. ]
  2503. },
  2504. "require": {
  2505. "ext-tokenizer": "*",
  2506. "jakub-onderka/php-console-color": "~0.2",
  2507. "php": ">=5.4.0"
  2508. },
  2509. "require-dev": {
  2510. "jakub-onderka/php-code-style": "~1.0",
  2511. "jakub-onderka/php-parallel-lint": "~1.0",
  2512. "jakub-onderka/php-var-dump-check": "~0.1",
  2513. "phpunit/phpunit": "~4.0",
  2514. "squizlabs/php_codesniffer": "~1.5"
  2515. },
  2516. "type": "library",
  2517. "autoload": {
  2518. "psr-4": {
  2519. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  2520. }
  2521. },
  2522. "notification-url": "https://packagist.org/downloads/",
  2523. "license": [
  2524. "MIT"
  2525. ],
  2526. "authors": [
  2527. {
  2528. "name": "Jakub Onderka",
  2529. "email": "acci@acci.cz",
  2530. "homepage": "http://www.acci.cz/"
  2531. }
  2532. ],
  2533. "description": "Highlight PHP code in terminal",
  2534. "support": {
  2535. "issues": "https://github.com/JakubOnderka/PHP-Console-Highlighter/issues",
  2536. "source": "https://github.com/JakubOnderka/PHP-Console-Highlighter/tree/master"
  2537. },
  2538. "abandoned": "php-parallel-lint/php-console-highlighter",
  2539. "time": "2018-09-29T18:48:56+00:00"
  2540. },
  2541. {
  2542. "name": "justinrainbow/json-schema",
  2543. "version": "v5.2.13",
  2544. "source": {
  2545. "type": "git",
  2546. "url": "https://github.com/justinrainbow/json-schema.git",
  2547. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  2548. },
  2549. "dist": {
  2550. "type": "zip",
  2551. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  2552. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  2553. "shasum": "",
  2554. "mirrors": [
  2555. {
  2556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2557. "preferred": true
  2558. }
  2559. ]
  2560. },
  2561. "require": {
  2562. "php": ">=5.3.3"
  2563. },
  2564. "require-dev": {
  2565. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  2566. "json-schema/json-schema-test-suite": "1.2.0",
  2567. "phpunit/phpunit": "^4.8.35"
  2568. },
  2569. "bin": [
  2570. "bin/validate-json"
  2571. ],
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-master": "5.0.x-dev"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "psr-4": {
  2580. "JsonSchema\\": "src/JsonSchema/"
  2581. }
  2582. },
  2583. "notification-url": "https://packagist.org/downloads/",
  2584. "license": [
  2585. "MIT"
  2586. ],
  2587. "authors": [
  2588. {
  2589. "name": "Bruno Prieto Reis",
  2590. "email": "bruno.p.reis@gmail.com"
  2591. },
  2592. {
  2593. "name": "Justin Rainbow",
  2594. "email": "justin.rainbow@gmail.com"
  2595. },
  2596. {
  2597. "name": "Igor Wiedler",
  2598. "email": "igor@wiedler.ch"
  2599. },
  2600. {
  2601. "name": "Robert Schönthal",
  2602. "email": "seroscho@googlemail.com"
  2603. }
  2604. ],
  2605. "description": "A library to validate a json schema.",
  2606. "homepage": "https://github.com/justinrainbow/json-schema",
  2607. "keywords": [
  2608. "json",
  2609. "schema"
  2610. ],
  2611. "support": {
  2612. "issues": "https://github.com/justinrainbow/json-schema/issues",
  2613. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  2614. },
  2615. "time": "2023-09-26T02:20:38+00:00"
  2616. },
  2617. {
  2618. "name": "laravel/framework",
  2619. "version": "v6.20.44",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://github.com/laravel/framework.git",
  2623. "reference": "505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0"
  2624. },
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://api.github.com/repos/laravel/framework/zipball/505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0",
  2628. "reference": "505ebcdeaa9ca56d6d7dbf38ed4f53998c973ed0",
  2629. "shasum": "",
  2630. "mirrors": [
  2631. {
  2632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2633. "preferred": true
  2634. }
  2635. ]
  2636. },
  2637. "require": {
  2638. "doctrine/inflector": "^1.4|^2.0",
  2639. "dragonmantank/cron-expression": "^2.3.1",
  2640. "egulias/email-validator": "^2.1.10",
  2641. "ext-json": "*",
  2642. "ext-mbstring": "*",
  2643. "ext-openssl": "*",
  2644. "league/commonmark": "^1.3",
  2645. "league/flysystem": "^1.1",
  2646. "monolog/monolog": "^1.12|^2.0",
  2647. "nesbot/carbon": "^2.31",
  2648. "opis/closure": "^3.6",
  2649. "php": "^7.2.5|^8.0",
  2650. "psr/container": "^1.0",
  2651. "psr/simple-cache": "^1.0",
  2652. "ramsey/uuid": "^3.7",
  2653. "swiftmailer/swiftmailer": "^6.0",
  2654. "symfony/console": "^4.3.4",
  2655. "symfony/debug": "^4.3.4",
  2656. "symfony/finder": "^4.3.4",
  2657. "symfony/http-foundation": "^4.3.4",
  2658. "symfony/http-kernel": "^4.3.4",
  2659. "symfony/polyfill-php73": "^1.17",
  2660. "symfony/process": "^4.3.4",
  2661. "symfony/routing": "^4.3.4",
  2662. "symfony/var-dumper": "^4.3.4",
  2663. "tijsverkoyen/css-to-inline-styles": "^2.2.1",
  2664. "vlucas/phpdotenv": "^3.3"
  2665. },
  2666. "conflict": {
  2667. "tightenco/collect": "<5.5.33"
  2668. },
  2669. "replace": {
  2670. "illuminate/auth": "self.version",
  2671. "illuminate/broadcasting": "self.version",
  2672. "illuminate/bus": "self.version",
  2673. "illuminate/cache": "self.version",
  2674. "illuminate/config": "self.version",
  2675. "illuminate/console": "self.version",
  2676. "illuminate/container": "self.version",
  2677. "illuminate/contracts": "self.version",
  2678. "illuminate/cookie": "self.version",
  2679. "illuminate/database": "self.version",
  2680. "illuminate/encryption": "self.version",
  2681. "illuminate/events": "self.version",
  2682. "illuminate/filesystem": "self.version",
  2683. "illuminate/hashing": "self.version",
  2684. "illuminate/http": "self.version",
  2685. "illuminate/log": "self.version",
  2686. "illuminate/mail": "self.version",
  2687. "illuminate/notifications": "self.version",
  2688. "illuminate/pagination": "self.version",
  2689. "illuminate/pipeline": "self.version",
  2690. "illuminate/queue": "self.version",
  2691. "illuminate/redis": "self.version",
  2692. "illuminate/routing": "self.version",
  2693. "illuminate/session": "self.version",
  2694. "illuminate/support": "self.version",
  2695. "illuminate/translation": "self.version",
  2696. "illuminate/validation": "self.version",
  2697. "illuminate/view": "self.version"
  2698. },
  2699. "require-dev": {
  2700. "aws/aws-sdk-php": "^3.155",
  2701. "doctrine/dbal": "^2.6",
  2702. "filp/whoops": "^2.8",
  2703. "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
  2704. "league/flysystem-cached-adapter": "^1.0",
  2705. "mockery/mockery": "~1.3.3|^1.4.2",
  2706. "moontoast/math": "^1.1",
  2707. "orchestra/testbench-core": "^4.8",
  2708. "pda/pheanstalk": "^4.0",
  2709. "phpunit/phpunit": "^7.5.15|^8.4|^9.3.3",
  2710. "predis/predis": "^1.1.1",
  2711. "symfony/cache": "^4.3.4"
  2712. },
  2713. "suggest": {
  2714. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2715. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2716. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2717. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2718. "ext-memcached": "Required to use the memcache cache driver.",
  2719. "ext-pcntl": "Required to use all features of the queue worker.",
  2720. "ext-posix": "Required to use all features of the queue worker.",
  2721. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2722. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2723. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2724. "guzzlehttp/guzzle": "Required to use the Mailgun mail driver and the ping methods on schedules (^6.3.1|^7.0.1).",
  2725. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2726. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2727. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2728. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2729. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2730. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2731. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2732. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2733. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2734. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0).",
  2735. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4).",
  2736. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2).",
  2737. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2738. },
  2739. "type": "library",
  2740. "extra": {
  2741. "branch-alias": {
  2742. "dev-master": "6.x-dev"
  2743. }
  2744. },
  2745. "autoload": {
  2746. "files": [
  2747. "src/Illuminate/Foundation/helpers.php",
  2748. "src/Illuminate/Support/helpers.php"
  2749. ],
  2750. "psr-4": {
  2751. "Illuminate\\": "src/Illuminate/"
  2752. }
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Taylor Otwell",
  2761. "email": "taylor@laravel.com"
  2762. }
  2763. ],
  2764. "description": "The Laravel Framework.",
  2765. "homepage": "https://laravel.com",
  2766. "keywords": [
  2767. "framework",
  2768. "laravel"
  2769. ],
  2770. "support": {
  2771. "issues": "https://github.com/laravel/framework/issues",
  2772. "source": "https://github.com/laravel/framework"
  2773. },
  2774. "time": "2022-01-12T16:12:12+00:00"
  2775. },
  2776. {
  2777. "name": "laravel/tinker",
  2778. "version": "v1.0.10",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/laravel/tinker.git",
  2782. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2787. "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7",
  2788. "shasum": "",
  2789. "mirrors": [
  2790. {
  2791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2792. "preferred": true
  2793. }
  2794. ]
  2795. },
  2796. "require": {
  2797. "illuminate/console": "~5.1|^6.0",
  2798. "illuminate/contracts": "~5.1|^6.0",
  2799. "illuminate/support": "~5.1|^6.0",
  2800. "php": ">=5.5.9",
  2801. "psy/psysh": "0.7.*|0.8.*|0.9.*",
  2802. "symfony/var-dumper": "~3.0|~4.0"
  2803. },
  2804. "require-dev": {
  2805. "phpunit/phpunit": "~4.0|~5.0"
  2806. },
  2807. "suggest": {
  2808. "illuminate/database": "The Illuminate Database package (~5.1)."
  2809. },
  2810. "type": "library",
  2811. "extra": {
  2812. "branch-alias": {
  2813. "dev-master": "1.0-dev"
  2814. },
  2815. "laravel": {
  2816. "providers": [
  2817. "Laravel\\Tinker\\TinkerServiceProvider"
  2818. ]
  2819. }
  2820. },
  2821. "autoload": {
  2822. "psr-4": {
  2823. "Laravel\\Tinker\\": "src/"
  2824. }
  2825. },
  2826. "notification-url": "https://packagist.org/downloads/",
  2827. "license": [
  2828. "MIT"
  2829. ],
  2830. "authors": [
  2831. {
  2832. "name": "Taylor Otwell",
  2833. "email": "taylor@laravel.com"
  2834. }
  2835. ],
  2836. "description": "Powerful REPL for the Laravel framework.",
  2837. "keywords": [
  2838. "REPL",
  2839. "Tinker",
  2840. "laravel",
  2841. "psysh"
  2842. ],
  2843. "support": {
  2844. "issues": "https://github.com/laravel/tinker/issues",
  2845. "source": "https://github.com/laravel/tinker/tree/v1.0.10"
  2846. },
  2847. "time": "2019-08-07T15:10:45+00:00"
  2848. },
  2849. {
  2850. "name": "lcobucci/jwt",
  2851. "version": "3.3.3",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/lcobucci/jwt.git",
  2855. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2860. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2861. "shasum": "",
  2862. "mirrors": [
  2863. {
  2864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2865. "preferred": true
  2866. }
  2867. ]
  2868. },
  2869. "require": {
  2870. "ext-mbstring": "*",
  2871. "ext-openssl": "*",
  2872. "php": "^5.6 || ^7.0"
  2873. },
  2874. "require-dev": {
  2875. "mikey179/vfsstream": "~1.5",
  2876. "phpmd/phpmd": "~2.2",
  2877. "phpunit/php-invoker": "~1.1",
  2878. "phpunit/phpunit": "^5.7 || ^7.3",
  2879. "squizlabs/php_codesniffer": "~2.3"
  2880. },
  2881. "type": "library",
  2882. "extra": {
  2883. "branch-alias": {
  2884. "dev-master": "3.1-dev"
  2885. }
  2886. },
  2887. "autoload": {
  2888. "psr-4": {
  2889. "Lcobucci\\JWT\\": "src"
  2890. }
  2891. },
  2892. "notification-url": "https://packagist.org/downloads/",
  2893. "license": [
  2894. "BSD-3-Clause"
  2895. ],
  2896. "authors": [
  2897. {
  2898. "name": "Luís Otávio Cobucci Oblonczyk",
  2899. "email": "lcobucci@gmail.com",
  2900. "role": "Developer"
  2901. }
  2902. ],
  2903. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2904. "keywords": [
  2905. "JWS",
  2906. "jwt"
  2907. ],
  2908. "support": {
  2909. "issues": "https://github.com/lcobucci/jwt/issues",
  2910. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2911. },
  2912. "funding": [
  2913. {
  2914. "url": "https://github.com/lcobucci",
  2915. "type": "github"
  2916. },
  2917. {
  2918. "url": "https://www.patreon.com/lcobucci",
  2919. "type": "patreon"
  2920. }
  2921. ],
  2922. "time": "2020-08-20T13:22:28+00:00"
  2923. },
  2924. {
  2925. "name": "league/commonmark",
  2926. "version": "1.6.7",
  2927. "source": {
  2928. "type": "git",
  2929. "url": "https://github.com/thephpleague/commonmark.git",
  2930. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b"
  2931. },
  2932. "dist": {
  2933. "type": "zip",
  2934. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2935. "reference": "2b8185c13bc9578367a5bf901881d1c1b5bbd09b",
  2936. "shasum": "",
  2937. "mirrors": [
  2938. {
  2939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2940. "preferred": true
  2941. }
  2942. ]
  2943. },
  2944. "require": {
  2945. "ext-mbstring": "*",
  2946. "php": "^7.1 || ^8.0"
  2947. },
  2948. "conflict": {
  2949. "scrutinizer/ocular": "1.7.*"
  2950. },
  2951. "require-dev": {
  2952. "cebe/markdown": "~1.0",
  2953. "commonmark/commonmark.js": "0.29.2",
  2954. "erusev/parsedown": "~1.0",
  2955. "ext-json": "*",
  2956. "github/gfm": "0.29.0",
  2957. "michelf/php-markdown": "~1.4",
  2958. "mikehaertl/php-shellcommand": "^1.4",
  2959. "phpstan/phpstan": "^0.12.90",
  2960. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2961. "scrutinizer/ocular": "^1.5",
  2962. "symfony/finder": "^4.2"
  2963. },
  2964. "bin": [
  2965. "bin/commonmark"
  2966. ],
  2967. "type": "library",
  2968. "autoload": {
  2969. "psr-4": {
  2970. "League\\CommonMark\\": "src"
  2971. }
  2972. },
  2973. "notification-url": "https://packagist.org/downloads/",
  2974. "license": [
  2975. "BSD-3-Clause"
  2976. ],
  2977. "authors": [
  2978. {
  2979. "name": "Colin O'Dell",
  2980. "email": "colinodell@gmail.com",
  2981. "homepage": "https://www.colinodell.com",
  2982. "role": "Lead Developer"
  2983. }
  2984. ],
  2985. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2986. "homepage": "https://commonmark.thephpleague.com",
  2987. "keywords": [
  2988. "commonmark",
  2989. "flavored",
  2990. "gfm",
  2991. "github",
  2992. "github-flavored",
  2993. "markdown",
  2994. "md",
  2995. "parser"
  2996. ],
  2997. "support": {
  2998. "docs": "https://commonmark.thephpleague.com/",
  2999. "issues": "https://github.com/thephpleague/commonmark/issues",
  3000. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3001. "source": "https://github.com/thephpleague/commonmark"
  3002. },
  3003. "funding": [
  3004. {
  3005. "url": "https://www.colinodell.com/sponsor",
  3006. "type": "custom"
  3007. },
  3008. {
  3009. "url": "https://www.paypal.me/colinpodell/10.00",
  3010. "type": "custom"
  3011. },
  3012. {
  3013. "url": "https://github.com/colinodell",
  3014. "type": "github"
  3015. },
  3016. {
  3017. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3018. "type": "tidelift"
  3019. }
  3020. ],
  3021. "time": "2022-01-13T17:18:13+00:00"
  3022. },
  3023. {
  3024. "name": "league/flysystem",
  3025. "version": "1.1.10",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/thephpleague/flysystem.git",
  3029. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3034. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3035. "shasum": "",
  3036. "mirrors": [
  3037. {
  3038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3039. "preferred": true
  3040. }
  3041. ]
  3042. },
  3043. "require": {
  3044. "ext-fileinfo": "*",
  3045. "league/mime-type-detection": "^1.3",
  3046. "php": "^7.2.5 || ^8.0"
  3047. },
  3048. "conflict": {
  3049. "league/flysystem-sftp": "<1.0.6"
  3050. },
  3051. "require-dev": {
  3052. "phpspec/prophecy": "^1.11.1",
  3053. "phpunit/phpunit": "^8.5.8"
  3054. },
  3055. "suggest": {
  3056. "ext-ftp": "Allows you to use FTP server storage",
  3057. "ext-openssl": "Allows you to use FTPS server storage",
  3058. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3059. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3060. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3061. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3062. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3063. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3064. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3065. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3066. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3067. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3068. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3069. },
  3070. "type": "library",
  3071. "extra": {
  3072. "branch-alias": {
  3073. "dev-master": "1.1-dev"
  3074. }
  3075. },
  3076. "autoload": {
  3077. "psr-4": {
  3078. "League\\Flysystem\\": "src/"
  3079. }
  3080. },
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "MIT"
  3084. ],
  3085. "authors": [
  3086. {
  3087. "name": "Frank de Jonge",
  3088. "email": "info@frenky.net"
  3089. }
  3090. ],
  3091. "description": "Filesystem abstraction: Many filesystems, one API.",
  3092. "keywords": [
  3093. "Cloud Files",
  3094. "WebDAV",
  3095. "abstraction",
  3096. "aws",
  3097. "cloud",
  3098. "copy.com",
  3099. "dropbox",
  3100. "file systems",
  3101. "files",
  3102. "filesystem",
  3103. "filesystems",
  3104. "ftp",
  3105. "rackspace",
  3106. "remote",
  3107. "s3",
  3108. "sftp",
  3109. "storage"
  3110. ],
  3111. "support": {
  3112. "issues": "https://github.com/thephpleague/flysystem/issues",
  3113. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3114. },
  3115. "funding": [
  3116. {
  3117. "url": "https://offset.earth/frankdejonge",
  3118. "type": "other"
  3119. }
  3120. ],
  3121. "time": "2022-10-04T09:16:37+00:00"
  3122. },
  3123. {
  3124. "name": "league/fractal",
  3125. "version": "0.17.0",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/thephpleague/fractal.git",
  3129. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3134. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3135. "shasum": "",
  3136. "mirrors": [
  3137. {
  3138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3139. "preferred": true
  3140. }
  3141. ]
  3142. },
  3143. "require": {
  3144. "php": ">=5.4"
  3145. },
  3146. "require-dev": {
  3147. "doctrine/orm": "^2.5",
  3148. "illuminate/contracts": "~5.0",
  3149. "mockery/mockery": "~0.9",
  3150. "pagerfanta/pagerfanta": "~1.0.0",
  3151. "phpunit/phpunit": "~4.0",
  3152. "squizlabs/php_codesniffer": "~1.5",
  3153. "zendframework/zend-paginator": "~2.3"
  3154. },
  3155. "suggest": {
  3156. "illuminate/pagination": "The Illuminate Pagination component.",
  3157. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3158. "zendframework/zend-paginator": "Zend Framework Paginator"
  3159. },
  3160. "type": "library",
  3161. "extra": {
  3162. "branch-alias": {
  3163. "dev-master": "0.13-dev"
  3164. }
  3165. },
  3166. "autoload": {
  3167. "psr-4": {
  3168. "League\\Fractal\\": "src"
  3169. }
  3170. },
  3171. "notification-url": "https://packagist.org/downloads/",
  3172. "license": [
  3173. "MIT"
  3174. ],
  3175. "authors": [
  3176. {
  3177. "name": "Phil Sturgeon",
  3178. "email": "me@philsturgeon.uk",
  3179. "homepage": "http://philsturgeon.uk/",
  3180. "role": "Developer"
  3181. }
  3182. ],
  3183. "description": "Handle the output of complex data structures ready for API output.",
  3184. "homepage": "http://fractal.thephpleague.com/",
  3185. "keywords": [
  3186. "api",
  3187. "json",
  3188. "league",
  3189. "rest"
  3190. ],
  3191. "support": {
  3192. "issues": "https://github.com/thephpleague/fractal/issues",
  3193. "source": "https://github.com/thephpleague/fractal/tree/master"
  3194. },
  3195. "time": "2017-06-12T11:04:56+00:00"
  3196. },
  3197. {
  3198. "name": "league/mime-type-detection",
  3199. "version": "1.12.0",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3203. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/c7f2872fb273bf493811473dafc88d60ae829f48",
  3208. "reference": "c7f2872fb273bf493811473dafc88d60ae829f48",
  3209. "shasum": "",
  3210. "mirrors": [
  3211. {
  3212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3213. "preferred": true
  3214. }
  3215. ]
  3216. },
  3217. "require": {
  3218. "ext-fileinfo": "*",
  3219. "php": "^7.2 || ^8.0"
  3220. },
  3221. "require-dev": {
  3222. "friendsofphp/php-cs-fixer": "^3.2",
  3223. "phpstan/phpstan": "^0.12.68",
  3224. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3225. },
  3226. "type": "library",
  3227. "autoload": {
  3228. "psr-4": {
  3229. "League\\MimeTypeDetection\\": "src"
  3230. }
  3231. },
  3232. "notification-url": "https://packagist.org/downloads/",
  3233. "license": [
  3234. "MIT"
  3235. ],
  3236. "authors": [
  3237. {
  3238. "name": "Frank de Jonge",
  3239. "email": "info@frankdejonge.nl"
  3240. }
  3241. ],
  3242. "description": "Mime-type detection for Flysystem",
  3243. "support": {
  3244. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3245. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.12.0"
  3246. },
  3247. "funding": [
  3248. {
  3249. "url": "https://github.com/frankdejonge",
  3250. "type": "github"
  3251. },
  3252. {
  3253. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3254. "type": "tidelift"
  3255. }
  3256. ],
  3257. "time": "2023-08-03T07:14:11+00:00"
  3258. },
  3259. {
  3260. "name": "maatwebsite/excel",
  3261. "version": "3.1.48",
  3262. "source": {
  3263. "type": "git",
  3264. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3265. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9"
  3266. },
  3267. "dist": {
  3268. "type": "zip",
  3269. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  3270. "reference": "6d0fe2a1d195960c7af7bf0de760582da02a34b9",
  3271. "shasum": "",
  3272. "mirrors": [
  3273. {
  3274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3275. "preferred": true
  3276. }
  3277. ]
  3278. },
  3279. "require": {
  3280. "composer/semver": "^3.3",
  3281. "ext-json": "*",
  3282. "illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0",
  3283. "php": "^7.0|^8.0",
  3284. "phpoffice/phpspreadsheet": "^1.18",
  3285. "psr/simple-cache": "^1.0|^2.0|^3.0"
  3286. },
  3287. "require-dev": {
  3288. "orchestra/testbench": "^6.0|^7.0|^8.0",
  3289. "predis/predis": "^1.1"
  3290. },
  3291. "type": "library",
  3292. "extra": {
  3293. "laravel": {
  3294. "providers": [
  3295. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3296. ],
  3297. "aliases": {
  3298. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3299. }
  3300. }
  3301. },
  3302. "autoload": {
  3303. "psr-4": {
  3304. "Maatwebsite\\Excel\\": "src/"
  3305. }
  3306. },
  3307. "notification-url": "https://packagist.org/downloads/",
  3308. "license": [
  3309. "MIT"
  3310. ],
  3311. "authors": [
  3312. {
  3313. "name": "Patrick Brouwers",
  3314. "email": "patrick@spartner.nl"
  3315. }
  3316. ],
  3317. "description": "Supercharged Excel exports and imports in Laravel",
  3318. "keywords": [
  3319. "PHPExcel",
  3320. "batch",
  3321. "csv",
  3322. "excel",
  3323. "export",
  3324. "import",
  3325. "laravel",
  3326. "php",
  3327. "phpspreadsheet"
  3328. ],
  3329. "support": {
  3330. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3331. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.48"
  3332. },
  3333. "funding": [
  3334. {
  3335. "url": "https://laravel-excel.com/commercial-support",
  3336. "type": "custom"
  3337. },
  3338. {
  3339. "url": "https://github.com/patrickbrouwers",
  3340. "type": "github"
  3341. }
  3342. ],
  3343. "time": "2023-02-22T21:01:38+00:00"
  3344. },
  3345. {
  3346. "name": "maennchen/zipstream-php",
  3347. "version": "2.1.0",
  3348. "source": {
  3349. "type": "git",
  3350. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3351. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  3352. },
  3353. "dist": {
  3354. "type": "zip",
  3355. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3356. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  3357. "shasum": "",
  3358. "mirrors": [
  3359. {
  3360. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3361. "preferred": true
  3362. }
  3363. ]
  3364. },
  3365. "require": {
  3366. "myclabs/php-enum": "^1.5",
  3367. "php": ">= 7.1",
  3368. "psr/http-message": "^1.0",
  3369. "symfony/polyfill-mbstring": "^1.0"
  3370. },
  3371. "require-dev": {
  3372. "ext-zip": "*",
  3373. "guzzlehttp/guzzle": ">= 6.3",
  3374. "mikey179/vfsstream": "^1.6",
  3375. "phpunit/phpunit": ">= 7.5"
  3376. },
  3377. "type": "library",
  3378. "autoload": {
  3379. "psr-4": {
  3380. "ZipStream\\": "src/"
  3381. }
  3382. },
  3383. "notification-url": "https://packagist.org/downloads/",
  3384. "license": [
  3385. "MIT"
  3386. ],
  3387. "authors": [
  3388. {
  3389. "name": "Paul Duncan",
  3390. "email": "pabs@pablotron.org"
  3391. },
  3392. {
  3393. "name": "Jonatan Männchen",
  3394. "email": "jonatan@maennchen.ch"
  3395. },
  3396. {
  3397. "name": "Jesse Donat",
  3398. "email": "donatj@gmail.com"
  3399. },
  3400. {
  3401. "name": "András Kolesár",
  3402. "email": "kolesar@kolesar.hu"
  3403. }
  3404. ],
  3405. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3406. "keywords": [
  3407. "stream",
  3408. "zip"
  3409. ],
  3410. "support": {
  3411. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3412. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.1.0"
  3413. },
  3414. "funding": [
  3415. {
  3416. "url": "https://github.com/maennchen",
  3417. "type": "github"
  3418. },
  3419. {
  3420. "url": "https://opencollective.com/zipstream",
  3421. "type": "open_collective"
  3422. }
  3423. ],
  3424. "time": "2020-05-30T13:11:16+00:00"
  3425. },
  3426. {
  3427. "name": "markbaker/complex",
  3428. "version": "3.0.2",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3432. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3433. },
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3437. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3438. "shasum": "",
  3439. "mirrors": [
  3440. {
  3441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3442. "preferred": true
  3443. }
  3444. ]
  3445. },
  3446. "require": {
  3447. "php": "^7.2 || ^8.0"
  3448. },
  3449. "require-dev": {
  3450. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3451. "phpcompatibility/php-compatibility": "^9.3",
  3452. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3453. "squizlabs/php_codesniffer": "^3.7"
  3454. },
  3455. "type": "library",
  3456. "autoload": {
  3457. "psr-4": {
  3458. "Complex\\": "classes/src/"
  3459. }
  3460. },
  3461. "notification-url": "https://packagist.org/downloads/",
  3462. "license": [
  3463. "MIT"
  3464. ],
  3465. "authors": [
  3466. {
  3467. "name": "Mark Baker",
  3468. "email": "mark@lange.demon.co.uk"
  3469. }
  3470. ],
  3471. "description": "PHP Class for working with complex numbers",
  3472. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3473. "keywords": [
  3474. "complex",
  3475. "mathematics"
  3476. ],
  3477. "support": {
  3478. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3479. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3480. },
  3481. "time": "2022-12-06T16:21:08+00:00"
  3482. },
  3483. {
  3484. "name": "markbaker/matrix",
  3485. "version": "3.0.1",
  3486. "source": {
  3487. "type": "git",
  3488. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3489. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3490. },
  3491. "dist": {
  3492. "type": "zip",
  3493. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3494. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3495. "shasum": "",
  3496. "mirrors": [
  3497. {
  3498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3499. "preferred": true
  3500. }
  3501. ]
  3502. },
  3503. "require": {
  3504. "php": "^7.1 || ^8.0"
  3505. },
  3506. "require-dev": {
  3507. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3508. "phpcompatibility/php-compatibility": "^9.3",
  3509. "phpdocumentor/phpdocumentor": "2.*",
  3510. "phploc/phploc": "^4.0",
  3511. "phpmd/phpmd": "2.*",
  3512. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3513. "sebastian/phpcpd": "^4.0",
  3514. "squizlabs/php_codesniffer": "^3.7"
  3515. },
  3516. "type": "library",
  3517. "autoload": {
  3518. "psr-4": {
  3519. "Matrix\\": "classes/src/"
  3520. }
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "MIT"
  3525. ],
  3526. "authors": [
  3527. {
  3528. "name": "Mark Baker",
  3529. "email": "mark@demon-angel.eu"
  3530. }
  3531. ],
  3532. "description": "PHP Class for working with matrices",
  3533. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3534. "keywords": [
  3535. "mathematics",
  3536. "matrix",
  3537. "vector"
  3538. ],
  3539. "support": {
  3540. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3541. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3542. },
  3543. "time": "2022-12-02T22:17:43+00:00"
  3544. },
  3545. {
  3546. "name": "monolog/monolog",
  3547. "version": "2.9.1",
  3548. "source": {
  3549. "type": "git",
  3550. "url": "https://github.com/Seldaek/monolog.git",
  3551. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1"
  3552. },
  3553. "dist": {
  3554. "type": "zip",
  3555. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  3556. "reference": "f259e2b15fb95494c83f52d3caad003bbf5ffaa1",
  3557. "shasum": "",
  3558. "mirrors": [
  3559. {
  3560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3561. "preferred": true
  3562. }
  3563. ]
  3564. },
  3565. "require": {
  3566. "php": ">=7.2",
  3567. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3568. },
  3569. "provide": {
  3570. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3571. },
  3572. "require-dev": {
  3573. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3574. "doctrine/couchdb": "~1.0@dev",
  3575. "elasticsearch/elasticsearch": "^7 || ^8",
  3576. "ext-json": "*",
  3577. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3578. "guzzlehttp/guzzle": "^7.4",
  3579. "guzzlehttp/psr7": "^2.2",
  3580. "mongodb/mongodb": "^1.8",
  3581. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3582. "phpspec/prophecy": "^1.15",
  3583. "phpstan/phpstan": "^0.12.91",
  3584. "phpunit/phpunit": "^8.5.14",
  3585. "predis/predis": "^1.1 || ^2.0",
  3586. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3587. "ruflin/elastica": "^7",
  3588. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3589. "symfony/mailer": "^5.4 || ^6",
  3590. "symfony/mime": "^5.4 || ^6"
  3591. },
  3592. "suggest": {
  3593. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3594. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3595. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3596. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3597. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3598. "ext-mbstring": "Allow to work properly with unicode symbols",
  3599. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3600. "ext-openssl": "Required to send log messages using SSL",
  3601. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3602. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3603. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3604. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3605. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3606. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3607. },
  3608. "type": "library",
  3609. "extra": {
  3610. "branch-alias": {
  3611. "dev-main": "2.x-dev"
  3612. }
  3613. },
  3614. "autoload": {
  3615. "psr-4": {
  3616. "Monolog\\": "src/Monolog"
  3617. }
  3618. },
  3619. "notification-url": "https://packagist.org/downloads/",
  3620. "license": [
  3621. "MIT"
  3622. ],
  3623. "authors": [
  3624. {
  3625. "name": "Jordi Boggiano",
  3626. "email": "j.boggiano@seld.be",
  3627. "homepage": "https://seld.be"
  3628. }
  3629. ],
  3630. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3631. "homepage": "https://github.com/Seldaek/monolog",
  3632. "keywords": [
  3633. "log",
  3634. "logging",
  3635. "psr-3"
  3636. ],
  3637. "support": {
  3638. "issues": "https://github.com/Seldaek/monolog/issues",
  3639. "source": "https://github.com/Seldaek/monolog/tree/2.9.1"
  3640. },
  3641. "funding": [
  3642. {
  3643. "url": "https://github.com/Seldaek",
  3644. "type": "github"
  3645. },
  3646. {
  3647. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3648. "type": "tidelift"
  3649. }
  3650. ],
  3651. "time": "2023-02-06T13:44:46+00:00"
  3652. },
  3653. {
  3654. "name": "myclabs/php-enum",
  3655. "version": "1.8.4",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/myclabs/php-enum.git",
  3659. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3664. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3665. "shasum": "",
  3666. "mirrors": [
  3667. {
  3668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3669. "preferred": true
  3670. }
  3671. ]
  3672. },
  3673. "require": {
  3674. "ext-json": "*",
  3675. "php": "^7.3 || ^8.0"
  3676. },
  3677. "require-dev": {
  3678. "phpunit/phpunit": "^9.5",
  3679. "squizlabs/php_codesniffer": "1.*",
  3680. "vimeo/psalm": "^4.6.2"
  3681. },
  3682. "type": "library",
  3683. "autoload": {
  3684. "psr-4": {
  3685. "MyCLabs\\Enum\\": "src/"
  3686. },
  3687. "classmap": [
  3688. "stubs/Stringable.php"
  3689. ]
  3690. },
  3691. "notification-url": "https://packagist.org/downloads/",
  3692. "license": [
  3693. "MIT"
  3694. ],
  3695. "authors": [
  3696. {
  3697. "name": "PHP Enum contributors",
  3698. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3699. }
  3700. ],
  3701. "description": "PHP Enum implementation",
  3702. "homepage": "http://github.com/myclabs/php-enum",
  3703. "keywords": [
  3704. "enum"
  3705. ],
  3706. "support": {
  3707. "issues": "https://github.com/myclabs/php-enum/issues",
  3708. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3709. },
  3710. "funding": [
  3711. {
  3712. "url": "https://github.com/mnapoli",
  3713. "type": "github"
  3714. },
  3715. {
  3716. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3717. "type": "tidelift"
  3718. }
  3719. ],
  3720. "time": "2022-08-04T09:53:51+00:00"
  3721. },
  3722. {
  3723. "name": "namshi/jose",
  3724. "version": "7.2.3",
  3725. "source": {
  3726. "type": "git",
  3727. "url": "https://github.com/namshi/jose.git",
  3728. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3729. },
  3730. "dist": {
  3731. "type": "zip",
  3732. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3733. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3734. "shasum": "",
  3735. "mirrors": [
  3736. {
  3737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3738. "preferred": true
  3739. }
  3740. ]
  3741. },
  3742. "require": {
  3743. "ext-date": "*",
  3744. "ext-hash": "*",
  3745. "ext-json": "*",
  3746. "ext-pcre": "*",
  3747. "ext-spl": "*",
  3748. "php": ">=5.5",
  3749. "symfony/polyfill-php56": "^1.0"
  3750. },
  3751. "require-dev": {
  3752. "phpseclib/phpseclib": "^2.0",
  3753. "phpunit/phpunit": "^4.5|^5.0",
  3754. "satooshi/php-coveralls": "^1.0"
  3755. },
  3756. "suggest": {
  3757. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3758. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3759. },
  3760. "type": "library",
  3761. "autoload": {
  3762. "psr-4": {
  3763. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3764. }
  3765. },
  3766. "notification-url": "https://packagist.org/downloads/",
  3767. "license": [
  3768. "MIT"
  3769. ],
  3770. "authors": [
  3771. {
  3772. "name": "Alessandro Nadalin",
  3773. "email": "alessandro.nadalin@gmail.com"
  3774. },
  3775. {
  3776. "name": "Alessandro Cinelli (cirpo)",
  3777. "email": "alessandro.cinelli@gmail.com"
  3778. }
  3779. ],
  3780. "description": "JSON Object Signing and Encryption library for PHP.",
  3781. "keywords": [
  3782. "JSON Web Signature",
  3783. "JSON Web Token",
  3784. "JWS",
  3785. "json",
  3786. "jwt",
  3787. "token"
  3788. ],
  3789. "support": {
  3790. "issues": "https://github.com/namshi/jose/issues",
  3791. "source": "https://github.com/namshi/jose/tree/master"
  3792. },
  3793. "time": "2016-12-05T07:27:31+00:00"
  3794. },
  3795. {
  3796. "name": "nesbot/carbon",
  3797. "version": "2.70.0",
  3798. "source": {
  3799. "type": "git",
  3800. "url": "https://github.com/briannesbitt/Carbon.git",
  3801. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d"
  3802. },
  3803. "dist": {
  3804. "type": "zip",
  3805. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d3298b38ea8612e5f77d38d1a99438e42f70341d",
  3806. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d",
  3807. "shasum": "",
  3808. "mirrors": [
  3809. {
  3810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3811. "preferred": true
  3812. }
  3813. ]
  3814. },
  3815. "require": {
  3816. "ext-json": "*",
  3817. "php": "^7.1.8 || ^8.0",
  3818. "psr/clock": "^1.0",
  3819. "symfony/polyfill-mbstring": "^1.0",
  3820. "symfony/polyfill-php80": "^1.16",
  3821. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3822. },
  3823. "provide": {
  3824. "psr/clock-implementation": "1.0"
  3825. },
  3826. "require-dev": {
  3827. "doctrine/dbal": "^2.0 || ^3.1.4",
  3828. "doctrine/orm": "^2.7",
  3829. "friendsofphp/php-cs-fixer": "^3.0",
  3830. "kylekatarnls/multi-tester": "^2.0",
  3831. "ondrejmirtes/better-reflection": "*",
  3832. "phpmd/phpmd": "^2.9",
  3833. "phpstan/extension-installer": "^1.0",
  3834. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3835. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3836. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3837. "squizlabs/php_codesniffer": "^3.4"
  3838. },
  3839. "bin": [
  3840. "bin/carbon"
  3841. ],
  3842. "type": "library",
  3843. "extra": {
  3844. "branch-alias": {
  3845. "dev-3.x": "3.x-dev",
  3846. "dev-master": "2.x-dev"
  3847. },
  3848. "laravel": {
  3849. "providers": [
  3850. "Carbon\\Laravel\\ServiceProvider"
  3851. ]
  3852. },
  3853. "phpstan": {
  3854. "includes": [
  3855. "extension.neon"
  3856. ]
  3857. }
  3858. },
  3859. "autoload": {
  3860. "psr-4": {
  3861. "Carbon\\": "src/Carbon/"
  3862. }
  3863. },
  3864. "notification-url": "https://packagist.org/downloads/",
  3865. "license": [
  3866. "MIT"
  3867. ],
  3868. "authors": [
  3869. {
  3870. "name": "Brian Nesbitt",
  3871. "email": "brian@nesbot.com",
  3872. "homepage": "https://markido.com"
  3873. },
  3874. {
  3875. "name": "kylekatarnls",
  3876. "homepage": "https://github.com/kylekatarnls"
  3877. }
  3878. ],
  3879. "description": "An API extension for DateTime that supports 281 different languages.",
  3880. "homepage": "https://carbon.nesbot.com",
  3881. "keywords": [
  3882. "date",
  3883. "datetime",
  3884. "time"
  3885. ],
  3886. "support": {
  3887. "docs": "https://carbon.nesbot.com/docs",
  3888. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3889. "source": "https://github.com/briannesbitt/Carbon"
  3890. },
  3891. "funding": [
  3892. {
  3893. "url": "https://github.com/sponsors/kylekatarnls",
  3894. "type": "github"
  3895. },
  3896. {
  3897. "url": "https://opencollective.com/Carbon#sponsor",
  3898. "type": "opencollective"
  3899. },
  3900. {
  3901. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3902. "type": "tidelift"
  3903. }
  3904. ],
  3905. "time": "2023-09-07T16:43:50+00:00"
  3906. },
  3907. {
  3908. "name": "nikic/php-parser",
  3909. "version": "v4.17.1",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://github.com/nikic/PHP-Parser.git",
  3913. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  3918. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  3919. "shasum": "",
  3920. "mirrors": [
  3921. {
  3922. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3923. "preferred": true
  3924. }
  3925. ]
  3926. },
  3927. "require": {
  3928. "ext-tokenizer": "*",
  3929. "php": ">=7.0"
  3930. },
  3931. "require-dev": {
  3932. "ircmaxell/php-yacc": "^0.0.7",
  3933. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3934. },
  3935. "bin": [
  3936. "bin/php-parse"
  3937. ],
  3938. "type": "library",
  3939. "extra": {
  3940. "branch-alias": {
  3941. "dev-master": "4.9-dev"
  3942. }
  3943. },
  3944. "autoload": {
  3945. "psr-4": {
  3946. "PhpParser\\": "lib/PhpParser"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "BSD-3-Clause"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "Nikita Popov"
  3956. }
  3957. ],
  3958. "description": "A PHP parser written in PHP",
  3959. "keywords": [
  3960. "parser",
  3961. "php"
  3962. ],
  3963. "support": {
  3964. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3965. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  3966. },
  3967. "time": "2023-08-13T19:53:39+00:00"
  3968. },
  3969. {
  3970. "name": "opis/closure",
  3971. "version": "3.6.3",
  3972. "source": {
  3973. "type": "git",
  3974. "url": "https://github.com/opis/closure.git",
  3975. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3976. },
  3977. "dist": {
  3978. "type": "zip",
  3979. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3980. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3981. "shasum": "",
  3982. "mirrors": [
  3983. {
  3984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3985. "preferred": true
  3986. }
  3987. ]
  3988. },
  3989. "require": {
  3990. "php": "^5.4 || ^7.0 || ^8.0"
  3991. },
  3992. "require-dev": {
  3993. "jeremeamia/superclosure": "^2.0",
  3994. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3995. },
  3996. "type": "library",
  3997. "extra": {
  3998. "branch-alias": {
  3999. "dev-master": "3.6.x-dev"
  4000. }
  4001. },
  4002. "autoload": {
  4003. "files": [
  4004. "functions.php"
  4005. ],
  4006. "psr-4": {
  4007. "Opis\\Closure\\": "src/"
  4008. }
  4009. },
  4010. "notification-url": "https://packagist.org/downloads/",
  4011. "license": [
  4012. "MIT"
  4013. ],
  4014. "authors": [
  4015. {
  4016. "name": "Marius Sarca",
  4017. "email": "marius.sarca@gmail.com"
  4018. },
  4019. {
  4020. "name": "Sorin Sarca",
  4021. "email": "sarca_sorin@hotmail.com"
  4022. }
  4023. ],
  4024. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4025. "homepage": "https://opis.io/closure",
  4026. "keywords": [
  4027. "anonymous functions",
  4028. "closure",
  4029. "function",
  4030. "serializable",
  4031. "serialization",
  4032. "serialize"
  4033. ],
  4034. "support": {
  4035. "issues": "https://github.com/opis/closure/issues",
  4036. "source": "https://github.com/opis/closure/tree/3.6.3"
  4037. },
  4038. "time": "2022-01-27T09:35:39+00:00"
  4039. },
  4040. {
  4041. "name": "overtrue/easy-sms",
  4042. "version": "1.3.2",
  4043. "source": {
  4044. "type": "git",
  4045. "url": "https://github.com/overtrue/easy-sms.git",
  4046. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  4047. },
  4048. "dist": {
  4049. "type": "zip",
  4050. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  4051. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  4052. "shasum": "",
  4053. "mirrors": [
  4054. {
  4055. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4056. "preferred": true
  4057. }
  4058. ]
  4059. },
  4060. "require": {
  4061. "ext-json": "*",
  4062. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4063. "php": ">=5.6"
  4064. },
  4065. "require-dev": {
  4066. "mockery/mockery": "1.3.1",
  4067. "phpunit/phpunit": "^5.7 || ^7.5"
  4068. },
  4069. "type": "library",
  4070. "autoload": {
  4071. "psr-4": {
  4072. "Overtrue\\EasySms\\": "src"
  4073. }
  4074. },
  4075. "notification-url": "https://packagist.org/downloads/",
  4076. "license": [
  4077. "MIT"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "overtrue",
  4082. "email": "i@overtrue.me"
  4083. }
  4084. ],
  4085. "description": "The easiest way to send short message.",
  4086. "support": {
  4087. "issues": "https://github.com/overtrue/easy-sms/issues",
  4088. "source": "https://github.com/overtrue/easy-sms/tree/1.3.2"
  4089. },
  4090. "time": "2021-01-22T06:52:59+00:00"
  4091. },
  4092. {
  4093. "name": "overtrue/flysystem-qiniu",
  4094. "version": "1.0.7",
  4095. "source": {
  4096. "type": "git",
  4097. "url": "https://github.com/overtrue/flysystem-qiniu.git",
  4098. "reference": "d6edad78fb84662df4ccd41589218b373e648823"
  4099. },
  4100. "dist": {
  4101. "type": "zip",
  4102. "url": "https://api.github.com/repos/overtrue/flysystem-qiniu/zipball/d6edad78fb84662df4ccd41589218b373e648823",
  4103. "reference": "d6edad78fb84662df4ccd41589218b373e648823",
  4104. "shasum": "",
  4105. "mirrors": [
  4106. {
  4107. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4108. "preferred": true
  4109. }
  4110. ]
  4111. },
  4112. "require": {
  4113. "league/flysystem": "^1.0",
  4114. "php": ">=5.5.9",
  4115. "qiniu/php-sdk": "^7.2"
  4116. },
  4117. "require-dev": {
  4118. "mockery/mockery": "1.3.1",
  4119. "php": ">=5.6.0",
  4120. "phpunit/phpunit": "~8.0"
  4121. },
  4122. "type": "library",
  4123. "autoload": {
  4124. "psr-4": {
  4125. "Overtrue\\Flysystem\\Qiniu\\": "src"
  4126. }
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "MIT"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "overtrue",
  4135. "email": "i@overtrue.me"
  4136. }
  4137. ],
  4138. "description": "Flysystem adapter for the Qiniu storage.",
  4139. "support": {
  4140. "issues": "https://github.com/overtrue/flysystem-qiniu/issues",
  4141. "source": "https://github.com/overtrue/flysystem-qiniu/tree/1.0.7"
  4142. },
  4143. "funding": [
  4144. {
  4145. "url": "https://github.com/overtrue",
  4146. "type": "github"
  4147. }
  4148. ],
  4149. "time": "2022-08-12T03:21:38+00:00"
  4150. },
  4151. {
  4152. "name": "overtrue/laravel-filesystem-qiniu",
  4153. "version": "1.0.2",
  4154. "source": {
  4155. "type": "git",
  4156. "url": "https://github.com/overtrue/laravel-filesystem-qiniu.git",
  4157. "reference": "73e8346de9e892f9e42f17f781e1878e981b75d6"
  4158. },
  4159. "dist": {
  4160. "type": "zip",
  4161. "url": "https://api.github.com/repos/overtrue/laravel-filesystem-qiniu/zipball/73e8346de9e892f9e42f17f781e1878e981b75d6",
  4162. "reference": "73e8346de9e892f9e42f17f781e1878e981b75d6",
  4163. "shasum": "",
  4164. "mirrors": [
  4165. {
  4166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4167. "preferred": true
  4168. }
  4169. ]
  4170. },
  4171. "require": {
  4172. "league/flysystem": "^1.0",
  4173. "overtrue/flysystem-qiniu": "^1.0.2",
  4174. "php": ">=5.5.9"
  4175. },
  4176. "type": "library",
  4177. "extra": {
  4178. "laravel": {
  4179. "providers": [
  4180. "Overtrue\\LaravelFilesystem\\Qiniu\\QiniuStorageServiceProvider"
  4181. ]
  4182. }
  4183. },
  4184. "autoload": {
  4185. "psr-4": {
  4186. "Overtrue\\LaravelFilesystem\\Qiniu\\": "src"
  4187. }
  4188. },
  4189. "notification-url": "https://packagist.org/downloads/",
  4190. "license": [
  4191. "MIT"
  4192. ],
  4193. "authors": [
  4194. {
  4195. "name": "overtrue",
  4196. "email": "i@overtrue.me"
  4197. }
  4198. ],
  4199. "description": "A Qiniu storage filesystem for Laravel.",
  4200. "support": {
  4201. "issues": "https://github.com/overtrue/laravel-filesystem-qiniu/issues",
  4202. "source": "https://github.com/overtrue/laravel-filesystem-qiniu/tree/master"
  4203. },
  4204. "time": "2018-12-06T04:06:18+00:00"
  4205. },
  4206. {
  4207. "name": "overtrue/laravel-wechat",
  4208. "version": "5.1.0",
  4209. "source": {
  4210. "type": "git",
  4211. "url": "https://github.com/overtrue/laravel-wechat.git",
  4212. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4213. },
  4214. "dist": {
  4215. "type": "zip",
  4216. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4217. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4218. "shasum": "",
  4219. "mirrors": [
  4220. {
  4221. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4222. "preferred": true
  4223. }
  4224. ]
  4225. },
  4226. "require": {
  4227. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4228. "overtrue/wechat": "^4.0"
  4229. },
  4230. "require-dev": {
  4231. "friendsofphp/php-cs-fixer": "^2.16",
  4232. "laravel/framework": "^8.5"
  4233. },
  4234. "type": "library",
  4235. "extra": {
  4236. "laravel": {
  4237. "providers": [
  4238. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4239. ],
  4240. "aliases": {
  4241. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4242. }
  4243. }
  4244. },
  4245. "autoload": {
  4246. "psr-4": {
  4247. "Overtrue\\LaravelWeChat\\": "src/"
  4248. }
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "overtrue",
  4257. "email": "anzhengchao@gmail.com"
  4258. }
  4259. ],
  4260. "description": "微信 SDK for Laravel",
  4261. "keywords": [
  4262. "laravel",
  4263. "sdk",
  4264. "wechat",
  4265. "weixin"
  4266. ],
  4267. "support": {
  4268. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  4269. "source": "https://github.com/overtrue/laravel-wechat/tree/5.1.0"
  4270. },
  4271. "time": "2020-09-27T08:32:30+00:00"
  4272. },
  4273. {
  4274. "name": "overtrue/pinyin",
  4275. "version": "4.1.0",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://github.com/overtrue/pinyin.git",
  4279. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  4284. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  4285. "shasum": "",
  4286. "mirrors": [
  4287. {
  4288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4289. "preferred": true
  4290. }
  4291. ]
  4292. },
  4293. "require": {
  4294. "php": ">=7.1"
  4295. },
  4296. "require-dev": {
  4297. "brainmaestro/composer-git-hooks": "^2.7",
  4298. "friendsofphp/php-cs-fixer": "^2.16",
  4299. "phpunit/phpunit": "~8.0"
  4300. },
  4301. "type": "library",
  4302. "extra": {
  4303. "hooks": {
  4304. "pre-commit": [
  4305. "composer test",
  4306. "composer fix-style"
  4307. ],
  4308. "pre-push": [
  4309. "composer test",
  4310. "composer check-style"
  4311. ]
  4312. }
  4313. },
  4314. "autoload": {
  4315. "files": [
  4316. "src/const.php"
  4317. ],
  4318. "psr-4": {
  4319. "Overtrue\\Pinyin\\": "src/"
  4320. }
  4321. },
  4322. "notification-url": "https://packagist.org/downloads/",
  4323. "license": [
  4324. "MIT"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "overtrue",
  4329. "email": "anzhengchao@gmail.com",
  4330. "homepage": "http://github.com/overtrue"
  4331. }
  4332. ],
  4333. "description": "Chinese to pinyin translator.",
  4334. "homepage": "https://github.com/overtrue/pinyin",
  4335. "keywords": [
  4336. "Chinese",
  4337. "Pinyin",
  4338. "cn2pinyin"
  4339. ],
  4340. "support": {
  4341. "issues": "https://github.com/overtrue/pinyin/issues",
  4342. "source": "https://github.com/overtrue/pinyin/tree/4.1.0"
  4343. },
  4344. "funding": [
  4345. {
  4346. "url": "https://github.com/overtrue",
  4347. "type": "github"
  4348. }
  4349. ],
  4350. "time": "2023-04-27T10:17:12+00:00"
  4351. },
  4352. {
  4353. "name": "overtrue/socialite",
  4354. "version": "2.0.24",
  4355. "source": {
  4356. "type": "git",
  4357. "url": "https://github.com/overtrue/socialite.git",
  4358. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec"
  4359. },
  4360. "dist": {
  4361. "type": "zip",
  4362. "url": "https://api.github.com/repos/overtrue/socialite/zipball/ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4363. "reference": "ee7e7b000ec7d64f2b8aba1f6a2eec5cdf3f8bec",
  4364. "shasum": "",
  4365. "mirrors": [
  4366. {
  4367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4368. "preferred": true
  4369. }
  4370. ]
  4371. },
  4372. "require": {
  4373. "ext-json": "*",
  4374. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4375. "php": ">=5.6",
  4376. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  4377. },
  4378. "require-dev": {
  4379. "mockery/mockery": "~1.2",
  4380. "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0"
  4381. },
  4382. "type": "library",
  4383. "autoload": {
  4384. "psr-4": {
  4385. "Overtrue\\Socialite\\": "src/"
  4386. }
  4387. },
  4388. "notification-url": "https://packagist.org/downloads/",
  4389. "license": [
  4390. "MIT"
  4391. ],
  4392. "authors": [
  4393. {
  4394. "name": "overtrue",
  4395. "email": "anzhengchao@gmail.com"
  4396. }
  4397. ],
  4398. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  4399. "keywords": [
  4400. "login",
  4401. "oauth",
  4402. "qq",
  4403. "social",
  4404. "wechat",
  4405. "weibo"
  4406. ],
  4407. "support": {
  4408. "issues": "https://github.com/overtrue/socialite/issues",
  4409. "source": "https://github.com/overtrue/socialite/tree/2.0.24"
  4410. },
  4411. "funding": [
  4412. {
  4413. "url": "https://www.patreon.com/overtrue",
  4414. "type": "patreon"
  4415. }
  4416. ],
  4417. "time": "2021-05-13T16:04:48+00:00"
  4418. },
  4419. {
  4420. "name": "overtrue/wechat",
  4421. "version": "4.6.0",
  4422. "source": {
  4423. "type": "git",
  4424. "url": "https://github.com/w7corp/easywechat.git",
  4425. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1"
  4426. },
  4427. "dist": {
  4428. "type": "zip",
  4429. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/52af4cbe777cd4aea307beafa0a4518c347467b1",
  4430. "reference": "52af4cbe777cd4aea307beafa0a4518c347467b1",
  4431. "shasum": "",
  4432. "mirrors": [
  4433. {
  4434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4435. "preferred": true
  4436. }
  4437. ]
  4438. },
  4439. "require": {
  4440. "easywechat-composer/easywechat-composer": "^1.1",
  4441. "ext-fileinfo": "*",
  4442. "ext-openssl": "*",
  4443. "ext-simplexml": "*",
  4444. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4445. "monolog/monolog": "^1.22 || ^2.0",
  4446. "overtrue/socialite": "~2.0",
  4447. "php": ">=7.2",
  4448. "pimple/pimple": "^3.0",
  4449. "psr/simple-cache": "^1.0",
  4450. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  4451. "symfony/event-dispatcher": "^4.3 || ^5.0",
  4452. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  4453. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  4454. },
  4455. "require-dev": {
  4456. "friendsofphp/php-cs-fixer": "^2.15",
  4457. "mikey179/vfsstream": "^1.6",
  4458. "mockery/mockery": "^1.2.3",
  4459. "phpstan/phpstan": "^0.12.0",
  4460. "phpunit/phpunit": "^7.5"
  4461. },
  4462. "type": "library",
  4463. "autoload": {
  4464. "files": [
  4465. "src/Kernel/Support/Helpers.php",
  4466. "src/Kernel/Helpers.php"
  4467. ],
  4468. "psr-4": {
  4469. "EasyWeChat\\": "src/"
  4470. }
  4471. },
  4472. "notification-url": "https://packagist.org/downloads/",
  4473. "license": [
  4474. "MIT"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "overtrue",
  4479. "email": "anzhengchao@gmail.com"
  4480. }
  4481. ],
  4482. "description": "微信SDK",
  4483. "keywords": [
  4484. "easywechat",
  4485. "sdk",
  4486. "wechat",
  4487. "weixin",
  4488. "weixin-sdk"
  4489. ],
  4490. "support": {
  4491. "issues": "https://github.com/w7corp/easywechat/issues",
  4492. "source": "https://github.com/w7corp/easywechat/tree/4.6.0"
  4493. },
  4494. "funding": [
  4495. {
  4496. "url": "https://github.com/overtrue",
  4497. "type": "github"
  4498. }
  4499. ],
  4500. "abandoned": "w7corp/easywechat",
  4501. "time": "2022-08-24T07:30:42+00:00"
  4502. },
  4503. {
  4504. "name": "paragonie/random_compat",
  4505. "version": "v9.99.100",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://github.com/paragonie/random_compat.git",
  4509. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4514. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4515. "shasum": "",
  4516. "mirrors": [
  4517. {
  4518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4519. "preferred": true
  4520. }
  4521. ]
  4522. },
  4523. "require": {
  4524. "php": ">= 7"
  4525. },
  4526. "require-dev": {
  4527. "phpunit/phpunit": "4.*|5.*",
  4528. "vimeo/psalm": "^1"
  4529. },
  4530. "suggest": {
  4531. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4532. },
  4533. "type": "library",
  4534. "notification-url": "https://packagist.org/downloads/",
  4535. "license": [
  4536. "MIT"
  4537. ],
  4538. "authors": [
  4539. {
  4540. "name": "Paragon Initiative Enterprises",
  4541. "email": "security@paragonie.com",
  4542. "homepage": "https://paragonie.com"
  4543. }
  4544. ],
  4545. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4546. "keywords": [
  4547. "csprng",
  4548. "polyfill",
  4549. "pseudorandom",
  4550. "random"
  4551. ],
  4552. "support": {
  4553. "email": "info@paragonie.com",
  4554. "issues": "https://github.com/paragonie/random_compat/issues",
  4555. "source": "https://github.com/paragonie/random_compat"
  4556. },
  4557. "time": "2020-10-15T08:29:30+00:00"
  4558. },
  4559. {
  4560. "name": "phpdocumentor/reflection-common",
  4561. "version": "2.2.0",
  4562. "source": {
  4563. "type": "git",
  4564. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4565. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4566. },
  4567. "dist": {
  4568. "type": "zip",
  4569. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4570. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4571. "shasum": "",
  4572. "mirrors": [
  4573. {
  4574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4575. "preferred": true
  4576. }
  4577. ]
  4578. },
  4579. "require": {
  4580. "php": "^7.2 || ^8.0"
  4581. },
  4582. "type": "library",
  4583. "extra": {
  4584. "branch-alias": {
  4585. "dev-2.x": "2.x-dev"
  4586. }
  4587. },
  4588. "autoload": {
  4589. "psr-4": {
  4590. "phpDocumentor\\Reflection\\": "src/"
  4591. }
  4592. },
  4593. "notification-url": "https://packagist.org/downloads/",
  4594. "license": [
  4595. "MIT"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "Jaap van Otterdijk",
  4600. "email": "opensource@ijaap.nl"
  4601. }
  4602. ],
  4603. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4604. "homepage": "http://www.phpdoc.org",
  4605. "keywords": [
  4606. "FQSEN",
  4607. "phpDocumentor",
  4608. "phpdoc",
  4609. "reflection",
  4610. "static analysis"
  4611. ],
  4612. "support": {
  4613. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  4614. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  4615. },
  4616. "time": "2020-06-27T09:03:43+00:00"
  4617. },
  4618. {
  4619. "name": "phpdocumentor/reflection-docblock",
  4620. "version": "4.3.4",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4624. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4629. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4630. "shasum": "",
  4631. "mirrors": [
  4632. {
  4633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4634. "preferred": true
  4635. }
  4636. ]
  4637. },
  4638. "require": {
  4639. "php": "^7.0",
  4640. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  4641. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  4642. "webmozart/assert": "^1.0"
  4643. },
  4644. "require-dev": {
  4645. "doctrine/instantiator": "^1.0.5",
  4646. "mockery/mockery": "^1.0",
  4647. "phpdocumentor/type-resolver": "0.4.*",
  4648. "phpunit/phpunit": "^6.4"
  4649. },
  4650. "type": "library",
  4651. "extra": {
  4652. "branch-alias": {
  4653. "dev-master": "4.x-dev"
  4654. }
  4655. },
  4656. "autoload": {
  4657. "psr-4": {
  4658. "phpDocumentor\\Reflection\\": [
  4659. "src/"
  4660. ]
  4661. }
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "MIT"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Mike van Riel",
  4670. "email": "me@mikevanriel.com"
  4671. }
  4672. ],
  4673. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4674. "support": {
  4675. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  4676. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/4.x"
  4677. },
  4678. "time": "2019-12-28T18:55:12+00:00"
  4679. },
  4680. {
  4681. "name": "phpdocumentor/type-resolver",
  4682. "version": "1.6.1",
  4683. "source": {
  4684. "type": "git",
  4685. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4686. "reference": "77a32518733312af16a44300404e945338981de3"
  4687. },
  4688. "dist": {
  4689. "type": "zip",
  4690. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  4691. "reference": "77a32518733312af16a44300404e945338981de3",
  4692. "shasum": "",
  4693. "mirrors": [
  4694. {
  4695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4696. "preferred": true
  4697. }
  4698. ]
  4699. },
  4700. "require": {
  4701. "php": "^7.2 || ^8.0",
  4702. "phpdocumentor/reflection-common": "^2.0"
  4703. },
  4704. "require-dev": {
  4705. "ext-tokenizer": "*",
  4706. "psalm/phar": "^4.8"
  4707. },
  4708. "type": "library",
  4709. "extra": {
  4710. "branch-alias": {
  4711. "dev-1.x": "1.x-dev"
  4712. }
  4713. },
  4714. "autoload": {
  4715. "psr-4": {
  4716. "phpDocumentor\\Reflection\\": "src"
  4717. }
  4718. },
  4719. "notification-url": "https://packagist.org/downloads/",
  4720. "license": [
  4721. "MIT"
  4722. ],
  4723. "authors": [
  4724. {
  4725. "name": "Mike van Riel",
  4726. "email": "me@mikevanriel.com"
  4727. }
  4728. ],
  4729. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4730. "support": {
  4731. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4732. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  4733. },
  4734. "time": "2022-03-15T21:29:03+00:00"
  4735. },
  4736. {
  4737. "name": "phpoffice/phpspreadsheet",
  4738. "version": "1.25.2",
  4739. "source": {
  4740. "type": "git",
  4741. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4742. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5"
  4743. },
  4744. "dist": {
  4745. "type": "zip",
  4746. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4747. "reference": "a317a09e7def49852400a4b3eca4a4b0790ceeb5",
  4748. "shasum": "",
  4749. "mirrors": [
  4750. {
  4751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4752. "preferred": true
  4753. }
  4754. ]
  4755. },
  4756. "require": {
  4757. "ext-ctype": "*",
  4758. "ext-dom": "*",
  4759. "ext-fileinfo": "*",
  4760. "ext-gd": "*",
  4761. "ext-iconv": "*",
  4762. "ext-libxml": "*",
  4763. "ext-mbstring": "*",
  4764. "ext-simplexml": "*",
  4765. "ext-xml": "*",
  4766. "ext-xmlreader": "*",
  4767. "ext-xmlwriter": "*",
  4768. "ext-zip": "*",
  4769. "ext-zlib": "*",
  4770. "ezyang/htmlpurifier": "^4.15",
  4771. "maennchen/zipstream-php": "^2.1",
  4772. "markbaker/complex": "^3.0",
  4773. "markbaker/matrix": "^3.0",
  4774. "php": "^7.3 || ^8.0",
  4775. "psr/http-client": "^1.0",
  4776. "psr/http-factory": "^1.0",
  4777. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4778. },
  4779. "require-dev": {
  4780. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4781. "dompdf/dompdf": "^1.0 || ^2.0",
  4782. "friendsofphp/php-cs-fixer": "^3.2",
  4783. "mitoteam/jpgraph": "10.2.4",
  4784. "mpdf/mpdf": "8.1.1",
  4785. "phpcompatibility/php-compatibility": "^9.3",
  4786. "phpstan/phpstan": "^1.1",
  4787. "phpstan/phpstan-phpunit": "^1.0",
  4788. "phpunit/phpunit": "^8.5 || ^9.0",
  4789. "squizlabs/php_codesniffer": "^3.7",
  4790. "tecnickcom/tcpdf": "6.5"
  4791. },
  4792. "suggest": {
  4793. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4794. "ext-intl": "PHP Internationalization Functions",
  4795. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4796. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4797. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4798. },
  4799. "type": "library",
  4800. "autoload": {
  4801. "psr-4": {
  4802. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4803. }
  4804. },
  4805. "notification-url": "https://packagist.org/downloads/",
  4806. "license": [
  4807. "MIT"
  4808. ],
  4809. "authors": [
  4810. {
  4811. "name": "Maarten Balliauw",
  4812. "homepage": "https://blog.maartenballiauw.be"
  4813. },
  4814. {
  4815. "name": "Mark Baker",
  4816. "homepage": "https://markbakeruk.net"
  4817. },
  4818. {
  4819. "name": "Franck Lefevre",
  4820. "homepage": "https://rootslabs.net"
  4821. },
  4822. {
  4823. "name": "Erik Tilt"
  4824. },
  4825. {
  4826. "name": "Adrien Crivelli"
  4827. }
  4828. ],
  4829. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4830. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4831. "keywords": [
  4832. "OpenXML",
  4833. "excel",
  4834. "gnumeric",
  4835. "ods",
  4836. "php",
  4837. "spreadsheet",
  4838. "xls",
  4839. "xlsx"
  4840. ],
  4841. "support": {
  4842. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4843. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.25.2"
  4844. },
  4845. "time": "2022-09-25T17:21:01+00:00"
  4846. },
  4847. {
  4848. "name": "phpoption/phpoption",
  4849. "version": "1.9.1",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/schmittjoh/php-option.git",
  4853. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  4858. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  4859. "shasum": "",
  4860. "mirrors": [
  4861. {
  4862. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4863. "preferred": true
  4864. }
  4865. ]
  4866. },
  4867. "require": {
  4868. "php": "^7.2.5 || ^8.0"
  4869. },
  4870. "require-dev": {
  4871. "bamarni/composer-bin-plugin": "^1.8.2",
  4872. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  4873. },
  4874. "type": "library",
  4875. "extra": {
  4876. "bamarni-bin": {
  4877. "bin-links": true,
  4878. "forward-command": true
  4879. },
  4880. "branch-alias": {
  4881. "dev-master": "1.9-dev"
  4882. }
  4883. },
  4884. "autoload": {
  4885. "psr-4": {
  4886. "PhpOption\\": "src/PhpOption/"
  4887. }
  4888. },
  4889. "notification-url": "https://packagist.org/downloads/",
  4890. "license": [
  4891. "Apache-2.0"
  4892. ],
  4893. "authors": [
  4894. {
  4895. "name": "Johannes M. Schmitt",
  4896. "email": "schmittjoh@gmail.com",
  4897. "homepage": "https://github.com/schmittjoh"
  4898. },
  4899. {
  4900. "name": "Graham Campbell",
  4901. "email": "hello@gjcampbell.co.uk",
  4902. "homepage": "https://github.com/GrahamCampbell"
  4903. }
  4904. ],
  4905. "description": "Option Type for PHP",
  4906. "keywords": [
  4907. "language",
  4908. "option",
  4909. "php",
  4910. "type"
  4911. ],
  4912. "support": {
  4913. "issues": "https://github.com/schmittjoh/php-option/issues",
  4914. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  4915. },
  4916. "funding": [
  4917. {
  4918. "url": "https://github.com/GrahamCampbell",
  4919. "type": "github"
  4920. },
  4921. {
  4922. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4923. "type": "tidelift"
  4924. }
  4925. ],
  4926. "time": "2023-02-25T19:38:58+00:00"
  4927. },
  4928. {
  4929. "name": "pimple/pimple",
  4930. "version": "v3.5.0",
  4931. "source": {
  4932. "type": "git",
  4933. "url": "https://github.com/silexphp/Pimple.git",
  4934. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4935. },
  4936. "dist": {
  4937. "type": "zip",
  4938. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4939. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4940. "shasum": "",
  4941. "mirrors": [
  4942. {
  4943. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4944. "preferred": true
  4945. }
  4946. ]
  4947. },
  4948. "require": {
  4949. "php": ">=7.2.5",
  4950. "psr/container": "^1.1 || ^2.0"
  4951. },
  4952. "require-dev": {
  4953. "symfony/phpunit-bridge": "^5.4@dev"
  4954. },
  4955. "type": "library",
  4956. "extra": {
  4957. "branch-alias": {
  4958. "dev-master": "3.4.x-dev"
  4959. }
  4960. },
  4961. "autoload": {
  4962. "psr-0": {
  4963. "Pimple": "src/"
  4964. }
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "MIT"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "Fabien Potencier",
  4973. "email": "fabien@symfony.com"
  4974. }
  4975. ],
  4976. "description": "Pimple, a simple Dependency Injection Container",
  4977. "homepage": "https://pimple.symfony.com",
  4978. "keywords": [
  4979. "container",
  4980. "dependency injection"
  4981. ],
  4982. "support": {
  4983. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4984. },
  4985. "time": "2021-10-28T11:13:42+00:00"
  4986. },
  4987. {
  4988. "name": "psr/cache",
  4989. "version": "1.0.1",
  4990. "source": {
  4991. "type": "git",
  4992. "url": "https://github.com/php-fig/cache.git",
  4993. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4994. },
  4995. "dist": {
  4996. "type": "zip",
  4997. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4998. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4999. "shasum": "",
  5000. "mirrors": [
  5001. {
  5002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5003. "preferred": true
  5004. }
  5005. ]
  5006. },
  5007. "require": {
  5008. "php": ">=5.3.0"
  5009. },
  5010. "type": "library",
  5011. "extra": {
  5012. "branch-alias": {
  5013. "dev-master": "1.0.x-dev"
  5014. }
  5015. },
  5016. "autoload": {
  5017. "psr-4": {
  5018. "Psr\\Cache\\": "src/"
  5019. }
  5020. },
  5021. "notification-url": "https://packagist.org/downloads/",
  5022. "license": [
  5023. "MIT"
  5024. ],
  5025. "authors": [
  5026. {
  5027. "name": "PHP-FIG",
  5028. "homepage": "http://www.php-fig.org/"
  5029. }
  5030. ],
  5031. "description": "Common interface for caching libraries",
  5032. "keywords": [
  5033. "cache",
  5034. "psr",
  5035. "psr-6"
  5036. ],
  5037. "support": {
  5038. "source": "https://github.com/php-fig/cache/tree/master"
  5039. },
  5040. "time": "2016-08-06T20:24:11+00:00"
  5041. },
  5042. {
  5043. "name": "psr/clock",
  5044. "version": "1.0.0",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://github.com/php-fig/clock.git",
  5048. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5049. },
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5053. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5054. "shasum": "",
  5055. "mirrors": [
  5056. {
  5057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5058. "preferred": true
  5059. }
  5060. ]
  5061. },
  5062. "require": {
  5063. "php": "^7.0 || ^8.0"
  5064. },
  5065. "type": "library",
  5066. "autoload": {
  5067. "psr-4": {
  5068. "Psr\\Clock\\": "src/"
  5069. }
  5070. },
  5071. "notification-url": "https://packagist.org/downloads/",
  5072. "license": [
  5073. "MIT"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "PHP-FIG",
  5078. "homepage": "https://www.php-fig.org/"
  5079. }
  5080. ],
  5081. "description": "Common interface for reading the clock.",
  5082. "homepage": "https://github.com/php-fig/clock",
  5083. "keywords": [
  5084. "clock",
  5085. "now",
  5086. "psr",
  5087. "psr-20",
  5088. "time"
  5089. ],
  5090. "support": {
  5091. "issues": "https://github.com/php-fig/clock/issues",
  5092. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5093. },
  5094. "time": "2022-11-25T14:36:26+00:00"
  5095. },
  5096. {
  5097. "name": "psr/container",
  5098. "version": "1.1.1",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/php-fig/container.git",
  5102. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  5107. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  5108. "shasum": "",
  5109. "mirrors": [
  5110. {
  5111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5112. "preferred": true
  5113. }
  5114. ]
  5115. },
  5116. "require": {
  5117. "php": ">=7.2.0"
  5118. },
  5119. "type": "library",
  5120. "autoload": {
  5121. "psr-4": {
  5122. "Psr\\Container\\": "src/"
  5123. }
  5124. },
  5125. "notification-url": "https://packagist.org/downloads/",
  5126. "license": [
  5127. "MIT"
  5128. ],
  5129. "authors": [
  5130. {
  5131. "name": "PHP-FIG",
  5132. "homepage": "https://www.php-fig.org/"
  5133. }
  5134. ],
  5135. "description": "Common Container Interface (PHP FIG PSR-11)",
  5136. "homepage": "https://github.com/php-fig/container",
  5137. "keywords": [
  5138. "PSR-11",
  5139. "container",
  5140. "container-interface",
  5141. "container-interop",
  5142. "psr"
  5143. ],
  5144. "support": {
  5145. "issues": "https://github.com/php-fig/container/issues",
  5146. "source": "https://github.com/php-fig/container/tree/1.1.1"
  5147. },
  5148. "time": "2021-03-05T17:36:06+00:00"
  5149. },
  5150. {
  5151. "name": "psr/http-client",
  5152. "version": "1.0.3",
  5153. "source": {
  5154. "type": "git",
  5155. "url": "https://github.com/php-fig/http-client.git",
  5156. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5157. },
  5158. "dist": {
  5159. "type": "zip",
  5160. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5161. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5162. "shasum": "",
  5163. "mirrors": [
  5164. {
  5165. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5166. "preferred": true
  5167. }
  5168. ]
  5169. },
  5170. "require": {
  5171. "php": "^7.0 || ^8.0",
  5172. "psr/http-message": "^1.0 || ^2.0"
  5173. },
  5174. "type": "library",
  5175. "extra": {
  5176. "branch-alias": {
  5177. "dev-master": "1.0.x-dev"
  5178. }
  5179. },
  5180. "autoload": {
  5181. "psr-4": {
  5182. "Psr\\Http\\Client\\": "src/"
  5183. }
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "PHP-FIG",
  5192. "homepage": "https://www.php-fig.org/"
  5193. }
  5194. ],
  5195. "description": "Common interface for HTTP clients",
  5196. "homepage": "https://github.com/php-fig/http-client",
  5197. "keywords": [
  5198. "http",
  5199. "http-client",
  5200. "psr",
  5201. "psr-18"
  5202. ],
  5203. "support": {
  5204. "source": "https://github.com/php-fig/http-client"
  5205. },
  5206. "time": "2023-09-23T14:17:50+00:00"
  5207. },
  5208. {
  5209. "name": "psr/http-factory",
  5210. "version": "1.0.2",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/php-fig/http-factory.git",
  5214. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5219. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5220. "shasum": "",
  5221. "mirrors": [
  5222. {
  5223. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5224. "preferred": true
  5225. }
  5226. ]
  5227. },
  5228. "require": {
  5229. "php": ">=7.0.0",
  5230. "psr/http-message": "^1.0 || ^2.0"
  5231. },
  5232. "type": "library",
  5233. "extra": {
  5234. "branch-alias": {
  5235. "dev-master": "1.0.x-dev"
  5236. }
  5237. },
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Psr\\Http\\Message\\": "src/"
  5241. }
  5242. },
  5243. "notification-url": "https://packagist.org/downloads/",
  5244. "license": [
  5245. "MIT"
  5246. ],
  5247. "authors": [
  5248. {
  5249. "name": "PHP-FIG",
  5250. "homepage": "https://www.php-fig.org/"
  5251. }
  5252. ],
  5253. "description": "Common interfaces for PSR-7 HTTP message factories",
  5254. "keywords": [
  5255. "factory",
  5256. "http",
  5257. "message",
  5258. "psr",
  5259. "psr-17",
  5260. "psr-7",
  5261. "request",
  5262. "response"
  5263. ],
  5264. "support": {
  5265. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5266. },
  5267. "time": "2023-04-10T20:10:41+00:00"
  5268. },
  5269. {
  5270. "name": "psr/http-message",
  5271. "version": "1.1",
  5272. "source": {
  5273. "type": "git",
  5274. "url": "https://github.com/php-fig/http-message.git",
  5275. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  5276. },
  5277. "dist": {
  5278. "type": "zip",
  5279. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5280. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5281. "shasum": "",
  5282. "mirrors": [
  5283. {
  5284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5285. "preferred": true
  5286. }
  5287. ]
  5288. },
  5289. "require": {
  5290. "php": "^7.2 || ^8.0"
  5291. },
  5292. "type": "library",
  5293. "extra": {
  5294. "branch-alias": {
  5295. "dev-master": "1.1.x-dev"
  5296. }
  5297. },
  5298. "autoload": {
  5299. "psr-4": {
  5300. "Psr\\Http\\Message\\": "src/"
  5301. }
  5302. },
  5303. "notification-url": "https://packagist.org/downloads/",
  5304. "license": [
  5305. "MIT"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "PHP-FIG",
  5310. "homepage": "http://www.php-fig.org/"
  5311. }
  5312. ],
  5313. "description": "Common interface for HTTP messages",
  5314. "homepage": "https://github.com/php-fig/http-message",
  5315. "keywords": [
  5316. "http",
  5317. "http-message",
  5318. "psr",
  5319. "psr-7",
  5320. "request",
  5321. "response"
  5322. ],
  5323. "support": {
  5324. "source": "https://github.com/php-fig/http-message/tree/1.1"
  5325. },
  5326. "time": "2023-04-04T09:50:52+00:00"
  5327. },
  5328. {
  5329. "name": "psr/log",
  5330. "version": "1.1.4",
  5331. "source": {
  5332. "type": "git",
  5333. "url": "https://github.com/php-fig/log.git",
  5334. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5335. },
  5336. "dist": {
  5337. "type": "zip",
  5338. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5339. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5340. "shasum": "",
  5341. "mirrors": [
  5342. {
  5343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5344. "preferred": true
  5345. }
  5346. ]
  5347. },
  5348. "require": {
  5349. "php": ">=5.3.0"
  5350. },
  5351. "type": "library",
  5352. "extra": {
  5353. "branch-alias": {
  5354. "dev-master": "1.1.x-dev"
  5355. }
  5356. },
  5357. "autoload": {
  5358. "psr-4": {
  5359. "Psr\\Log\\": "Psr/Log/"
  5360. }
  5361. },
  5362. "notification-url": "https://packagist.org/downloads/",
  5363. "license": [
  5364. "MIT"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "PHP-FIG",
  5369. "homepage": "https://www.php-fig.org/"
  5370. }
  5371. ],
  5372. "description": "Common interface for logging libraries",
  5373. "homepage": "https://github.com/php-fig/log",
  5374. "keywords": [
  5375. "log",
  5376. "psr",
  5377. "psr-3"
  5378. ],
  5379. "support": {
  5380. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5381. },
  5382. "time": "2021-05-03T11:20:27+00:00"
  5383. },
  5384. {
  5385. "name": "psr/simple-cache",
  5386. "version": "1.0.1",
  5387. "source": {
  5388. "type": "git",
  5389. "url": "https://github.com/php-fig/simple-cache.git",
  5390. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5391. },
  5392. "dist": {
  5393. "type": "zip",
  5394. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5395. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5396. "shasum": "",
  5397. "mirrors": [
  5398. {
  5399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5400. "preferred": true
  5401. }
  5402. ]
  5403. },
  5404. "require": {
  5405. "php": ">=5.3.0"
  5406. },
  5407. "type": "library",
  5408. "extra": {
  5409. "branch-alias": {
  5410. "dev-master": "1.0.x-dev"
  5411. }
  5412. },
  5413. "autoload": {
  5414. "psr-4": {
  5415. "Psr\\SimpleCache\\": "src/"
  5416. }
  5417. },
  5418. "notification-url": "https://packagist.org/downloads/",
  5419. "license": [
  5420. "MIT"
  5421. ],
  5422. "authors": [
  5423. {
  5424. "name": "PHP-FIG",
  5425. "homepage": "http://www.php-fig.org/"
  5426. }
  5427. ],
  5428. "description": "Common interfaces for simple caching",
  5429. "keywords": [
  5430. "cache",
  5431. "caching",
  5432. "psr",
  5433. "psr-16",
  5434. "simple-cache"
  5435. ],
  5436. "support": {
  5437. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5438. },
  5439. "time": "2017-10-23T01:57:42+00:00"
  5440. },
  5441. {
  5442. "name": "psy/psysh",
  5443. "version": "v0.9.12",
  5444. "source": {
  5445. "type": "git",
  5446. "url": "https://github.com/bobthecow/psysh.git",
  5447. "reference": "90da7f37568aee36b116a030c5f99c915267edd4"
  5448. },
  5449. "dist": {
  5450. "type": "zip",
  5451. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4",
  5452. "reference": "90da7f37568aee36b116a030c5f99c915267edd4",
  5453. "shasum": "",
  5454. "mirrors": [
  5455. {
  5456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5457. "preferred": true
  5458. }
  5459. ]
  5460. },
  5461. "require": {
  5462. "dnoegel/php-xdg-base-dir": "0.1.*",
  5463. "ext-json": "*",
  5464. "ext-tokenizer": "*",
  5465. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  5466. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  5467. "php": ">=5.4.0",
  5468. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0",
  5469. "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
  5470. },
  5471. "require-dev": {
  5472. "bamarni/composer-bin-plugin": "^1.2",
  5473. "hoa/console": "~2.15|~3.16",
  5474. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  5475. },
  5476. "suggest": {
  5477. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5478. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5479. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5480. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  5481. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  5482. },
  5483. "bin": [
  5484. "bin/psysh"
  5485. ],
  5486. "type": "library",
  5487. "extra": {
  5488. "branch-alias": {
  5489. "dev-develop": "0.9.x-dev"
  5490. }
  5491. },
  5492. "autoload": {
  5493. "files": [
  5494. "src/functions.php"
  5495. ],
  5496. "psr-4": {
  5497. "Psy\\": "src/"
  5498. }
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "MIT"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "Justin Hileman",
  5507. "email": "justin@justinhileman.info",
  5508. "homepage": "http://justinhileman.com"
  5509. }
  5510. ],
  5511. "description": "An interactive shell for modern PHP.",
  5512. "homepage": "http://psysh.org",
  5513. "keywords": [
  5514. "REPL",
  5515. "console",
  5516. "interactive",
  5517. "shell"
  5518. ],
  5519. "support": {
  5520. "issues": "https://github.com/bobthecow/psysh/issues",
  5521. "source": "https://github.com/bobthecow/psysh/tree/v0.9.12"
  5522. },
  5523. "time": "2019-12-06T14:19:43+00:00"
  5524. },
  5525. {
  5526. "name": "qiniu/php-sdk",
  5527. "version": "v7.11.0",
  5528. "source": {
  5529. "type": "git",
  5530. "url": "https://github.com/qiniu/php-sdk.git",
  5531. "reference": "9ee81f0acd57fa7bb435ffe9e515d7a9fdd0489b"
  5532. },
  5533. "dist": {
  5534. "type": "zip",
  5535. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/9ee81f0acd57fa7bb435ffe9e515d7a9fdd0489b",
  5536. "reference": "9ee81f0acd57fa7bb435ffe9e515d7a9fdd0489b",
  5537. "shasum": "",
  5538. "mirrors": [
  5539. {
  5540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5541. "preferred": true
  5542. }
  5543. ]
  5544. },
  5545. "require": {
  5546. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  5547. "php": ">=5.3.3"
  5548. },
  5549. "require-dev": {
  5550. "paragonie/random_compat": ">=2",
  5551. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  5552. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  5553. },
  5554. "type": "library",
  5555. "autoload": {
  5556. "files": [
  5557. "src/Qiniu/functions.php",
  5558. "src/Qiniu/Http/Middleware/Middleware.php"
  5559. ],
  5560. "psr-4": {
  5561. "Qiniu\\": "src/Qiniu"
  5562. }
  5563. },
  5564. "notification-url": "https://packagist.org/downloads/",
  5565. "license": [
  5566. "MIT"
  5567. ],
  5568. "authors": [
  5569. {
  5570. "name": "Qiniu",
  5571. "email": "sdk@qiniu.com",
  5572. "homepage": "http://www.qiniu.com"
  5573. }
  5574. ],
  5575. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  5576. "homepage": "http://developer.qiniu.com/",
  5577. "keywords": [
  5578. "cloud",
  5579. "qiniu",
  5580. "sdk",
  5581. "storage"
  5582. ],
  5583. "support": {
  5584. "issues": "https://github.com/qiniu/php-sdk/issues",
  5585. "source": "https://github.com/qiniu/php-sdk/tree/v7.11.0"
  5586. },
  5587. "time": "2023-09-05T12:33:39+00:00"
  5588. },
  5589. {
  5590. "name": "ralouphie/getallheaders",
  5591. "version": "3.0.3",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://github.com/ralouphie/getallheaders.git",
  5595. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5600. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5601. "shasum": "",
  5602. "mirrors": [
  5603. {
  5604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5605. "preferred": true
  5606. }
  5607. ]
  5608. },
  5609. "require": {
  5610. "php": ">=5.6"
  5611. },
  5612. "require-dev": {
  5613. "php-coveralls/php-coveralls": "^2.1",
  5614. "phpunit/phpunit": "^5 || ^6.5"
  5615. },
  5616. "type": "library",
  5617. "autoload": {
  5618. "files": [
  5619. "src/getallheaders.php"
  5620. ]
  5621. },
  5622. "notification-url": "https://packagist.org/downloads/",
  5623. "license": [
  5624. "MIT"
  5625. ],
  5626. "authors": [
  5627. {
  5628. "name": "Ralph Khattar",
  5629. "email": "ralph.khattar@gmail.com"
  5630. }
  5631. ],
  5632. "description": "A polyfill for getallheaders.",
  5633. "support": {
  5634. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5635. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5636. },
  5637. "time": "2019-03-08T08:55:37+00:00"
  5638. },
  5639. {
  5640. "name": "ramsey/uuid",
  5641. "version": "3.9.7",
  5642. "source": {
  5643. "type": "git",
  5644. "url": "https://github.com/ramsey/uuid.git",
  5645. "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178"
  5646. },
  5647. "dist": {
  5648. "type": "zip",
  5649. "url": "https://api.github.com/repos/ramsey/uuid/zipball/dc75aa439eb4c1b77f5379fd958b3dc0e6014178",
  5650. "reference": "dc75aa439eb4c1b77f5379fd958b3dc0e6014178",
  5651. "shasum": "",
  5652. "mirrors": [
  5653. {
  5654. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5655. "preferred": true
  5656. }
  5657. ]
  5658. },
  5659. "require": {
  5660. "ext-json": "*",
  5661. "paragonie/random_compat": "^1 | ^2 | ^9.99.99",
  5662. "php": "^5.4 | ^7.0 | ^8.0",
  5663. "symfony/polyfill-ctype": "^1.8"
  5664. },
  5665. "replace": {
  5666. "rhumsaa/uuid": "self.version"
  5667. },
  5668. "require-dev": {
  5669. "codeception/aspect-mock": "^1 | ^2",
  5670. "doctrine/annotations": "^1.2",
  5671. "goaop/framework": "1.0.0-alpha.2 | ^1 | >=2.1.0 <=2.3.2",
  5672. "mockery/mockery": "^0.9.11 | ^1",
  5673. "moontoast/math": "^1.1",
  5674. "nikic/php-parser": "<=4.5.0",
  5675. "paragonie/random-lib": "^2",
  5676. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  5677. "php-parallel-lint/php-parallel-lint": "^1.3",
  5678. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  5679. "squizlabs/php_codesniffer": "^3.5",
  5680. "yoast/phpunit-polyfills": "^1.0"
  5681. },
  5682. "suggest": {
  5683. "ext-ctype": "Provides support for PHP Ctype functions",
  5684. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  5685. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  5686. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  5687. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  5688. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5689. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  5690. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5691. },
  5692. "type": "library",
  5693. "autoload": {
  5694. "files": [
  5695. "src/functions.php"
  5696. ],
  5697. "psr-4": {
  5698. "Ramsey\\Uuid\\": "src/"
  5699. }
  5700. },
  5701. "notification-url": "https://packagist.org/downloads/",
  5702. "license": [
  5703. "MIT"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Ben Ramsey",
  5708. "email": "ben@benramsey.com",
  5709. "homepage": "https://benramsey.com"
  5710. },
  5711. {
  5712. "name": "Marijn Huizendveld",
  5713. "email": "marijn.huizendveld@gmail.com"
  5714. },
  5715. {
  5716. "name": "Thibaud Fabre",
  5717. "email": "thibaud@aztech.io"
  5718. }
  5719. ],
  5720. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  5721. "homepage": "https://github.com/ramsey/uuid",
  5722. "keywords": [
  5723. "guid",
  5724. "identifier",
  5725. "uuid"
  5726. ],
  5727. "support": {
  5728. "issues": "https://github.com/ramsey/uuid/issues",
  5729. "rss": "https://github.com/ramsey/uuid/releases.atom",
  5730. "source": "https://github.com/ramsey/uuid",
  5731. "wiki": "https://github.com/ramsey/uuid/wiki"
  5732. },
  5733. "funding": [
  5734. {
  5735. "url": "https://github.com/ramsey",
  5736. "type": "github"
  5737. },
  5738. {
  5739. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5740. "type": "tidelift"
  5741. }
  5742. ],
  5743. "time": "2022-12-19T21:55:10+00:00"
  5744. },
  5745. {
  5746. "name": "react/promise",
  5747. "version": "v2.10.0",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://github.com/reactphp/promise.git",
  5751. "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://api.github.com/repos/reactphp/promise/zipball/f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38",
  5756. "reference": "f913fb8cceba1e6644b7b90c4bfb678ed8a3ef38",
  5757. "shasum": "",
  5758. "mirrors": [
  5759. {
  5760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5761. "preferred": true
  5762. }
  5763. ]
  5764. },
  5765. "require": {
  5766. "php": ">=5.4.0"
  5767. },
  5768. "require-dev": {
  5769. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36"
  5770. },
  5771. "type": "library",
  5772. "autoload": {
  5773. "files": [
  5774. "src/functions_include.php"
  5775. ],
  5776. "psr-4": {
  5777. "React\\Promise\\": "src/"
  5778. }
  5779. },
  5780. "notification-url": "https://packagist.org/downloads/",
  5781. "license": [
  5782. "MIT"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "Jan Sorgalla",
  5787. "email": "jsorgalla@gmail.com",
  5788. "homepage": "https://sorgalla.com/"
  5789. },
  5790. {
  5791. "name": "Christian Lück",
  5792. "email": "christian@clue.engineering",
  5793. "homepage": "https://clue.engineering/"
  5794. },
  5795. {
  5796. "name": "Cees-Jan Kiewiet",
  5797. "email": "reactphp@ceesjankiewiet.nl",
  5798. "homepage": "https://wyrihaximus.net/"
  5799. },
  5800. {
  5801. "name": "Chris Boden",
  5802. "email": "cboden@gmail.com",
  5803. "homepage": "https://cboden.dev/"
  5804. }
  5805. ],
  5806. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5807. "keywords": [
  5808. "promise",
  5809. "promises"
  5810. ],
  5811. "support": {
  5812. "issues": "https://github.com/reactphp/promise/issues",
  5813. "source": "https://github.com/reactphp/promise/tree/v2.10.0"
  5814. },
  5815. "funding": [
  5816. {
  5817. "url": "https://opencollective.com/reactphp",
  5818. "type": "open_collective"
  5819. }
  5820. ],
  5821. "time": "2023-05-02T15:15:43+00:00"
  5822. },
  5823. {
  5824. "name": "seld/jsonlint",
  5825. "version": "1.10.0",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://github.com/Seldaek/jsonlint.git",
  5829. "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/594fd6462aad8ecee0b45ca5045acea4776667f1",
  5834. "reference": "594fd6462aad8ecee0b45ca5045acea4776667f1",
  5835. "shasum": "",
  5836. "mirrors": [
  5837. {
  5838. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5839. "preferred": true
  5840. }
  5841. ]
  5842. },
  5843. "require": {
  5844. "php": "^5.3 || ^7.0 || ^8.0"
  5845. },
  5846. "require-dev": {
  5847. "phpstan/phpstan": "^1.5",
  5848. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  5849. },
  5850. "bin": [
  5851. "bin/jsonlint"
  5852. ],
  5853. "type": "library",
  5854. "autoload": {
  5855. "psr-4": {
  5856. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  5857. }
  5858. },
  5859. "notification-url": "https://packagist.org/downloads/",
  5860. "license": [
  5861. "MIT"
  5862. ],
  5863. "authors": [
  5864. {
  5865. "name": "Jordi Boggiano",
  5866. "email": "j.boggiano@seld.be",
  5867. "homepage": "http://seld.be"
  5868. }
  5869. ],
  5870. "description": "JSON Linter",
  5871. "keywords": [
  5872. "json",
  5873. "linter",
  5874. "parser",
  5875. "validator"
  5876. ],
  5877. "support": {
  5878. "issues": "https://github.com/Seldaek/jsonlint/issues",
  5879. "source": "https://github.com/Seldaek/jsonlint/tree/1.10.0"
  5880. },
  5881. "funding": [
  5882. {
  5883. "url": "https://github.com/Seldaek",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2023-05-11T13:16:46+00:00"
  5892. },
  5893. {
  5894. "name": "seld/phar-utils",
  5895. "version": "1.2.1",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/Seldaek/phar-utils.git",
  5899. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  5904. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  5905. "shasum": "",
  5906. "mirrors": [
  5907. {
  5908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5909. "preferred": true
  5910. }
  5911. ]
  5912. },
  5913. "require": {
  5914. "php": ">=5.3"
  5915. },
  5916. "type": "library",
  5917. "extra": {
  5918. "branch-alias": {
  5919. "dev-master": "1.x-dev"
  5920. }
  5921. },
  5922. "autoload": {
  5923. "psr-4": {
  5924. "Seld\\PharUtils\\": "src/"
  5925. }
  5926. },
  5927. "notification-url": "https://packagist.org/downloads/",
  5928. "license": [
  5929. "MIT"
  5930. ],
  5931. "authors": [
  5932. {
  5933. "name": "Jordi Boggiano",
  5934. "email": "j.boggiano@seld.be"
  5935. }
  5936. ],
  5937. "description": "PHAR file format utilities, for when PHP phars you up",
  5938. "keywords": [
  5939. "phar"
  5940. ],
  5941. "support": {
  5942. "issues": "https://github.com/Seldaek/phar-utils/issues",
  5943. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
  5944. },
  5945. "time": "2022-08-31T10:31:18+00:00"
  5946. },
  5947. {
  5948. "name": "swiftmailer/swiftmailer",
  5949. "version": "v6.3.0",
  5950. "source": {
  5951. "type": "git",
  5952. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5953. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5954. },
  5955. "dist": {
  5956. "type": "zip",
  5957. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5958. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5959. "shasum": "",
  5960. "mirrors": [
  5961. {
  5962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5963. "preferred": true
  5964. }
  5965. ]
  5966. },
  5967. "require": {
  5968. "egulias/email-validator": "^2.0|^3.1",
  5969. "php": ">=7.0.0",
  5970. "symfony/polyfill-iconv": "^1.0",
  5971. "symfony/polyfill-intl-idn": "^1.10",
  5972. "symfony/polyfill-mbstring": "^1.0"
  5973. },
  5974. "require-dev": {
  5975. "mockery/mockery": "^1.0",
  5976. "symfony/phpunit-bridge": "^4.4|^5.4"
  5977. },
  5978. "suggest": {
  5979. "ext-intl": "Needed to support internationalized email addresses"
  5980. },
  5981. "type": "library",
  5982. "extra": {
  5983. "branch-alias": {
  5984. "dev-master": "6.2-dev"
  5985. }
  5986. },
  5987. "autoload": {
  5988. "files": [
  5989. "lib/swift_required.php"
  5990. ]
  5991. },
  5992. "notification-url": "https://packagist.org/downloads/",
  5993. "license": [
  5994. "MIT"
  5995. ],
  5996. "authors": [
  5997. {
  5998. "name": "Chris Corbyn"
  5999. },
  6000. {
  6001. "name": "Fabien Potencier",
  6002. "email": "fabien@symfony.com"
  6003. }
  6004. ],
  6005. "description": "Swiftmailer, free feature-rich PHP mailer",
  6006. "homepage": "https://swiftmailer.symfony.com",
  6007. "keywords": [
  6008. "email",
  6009. "mail",
  6010. "mailer"
  6011. ],
  6012. "support": {
  6013. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6014. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6015. },
  6016. "funding": [
  6017. {
  6018. "url": "https://github.com/fabpot",
  6019. "type": "github"
  6020. },
  6021. {
  6022. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6023. "type": "tidelift"
  6024. }
  6025. ],
  6026. "abandoned": "symfony/mailer",
  6027. "time": "2021-10-18T15:26:12+00:00"
  6028. },
  6029. {
  6030. "name": "symfony/cache",
  6031. "version": "v5.4.29",
  6032. "source": {
  6033. "type": "git",
  6034. "url": "https://github.com/symfony/cache.git",
  6035. "reference": "e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151"
  6036. },
  6037. "dist": {
  6038. "type": "zip",
  6039. "url": "https://api.github.com/repos/symfony/cache/zipball/e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151",
  6040. "reference": "e29c5a97bc2d81269973c3e1d7ceb9d48b4d5151",
  6041. "shasum": "",
  6042. "mirrors": [
  6043. {
  6044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6045. "preferred": true
  6046. }
  6047. ]
  6048. },
  6049. "require": {
  6050. "php": ">=7.2.5",
  6051. "psr/cache": "^1.0|^2.0",
  6052. "psr/log": "^1.1|^2|^3",
  6053. "symfony/cache-contracts": "^1.1.7|^2",
  6054. "symfony/deprecation-contracts": "^2.1|^3",
  6055. "symfony/polyfill-php73": "^1.9",
  6056. "symfony/polyfill-php80": "^1.16",
  6057. "symfony/service-contracts": "^1.1|^2|^3",
  6058. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6059. },
  6060. "conflict": {
  6061. "doctrine/dbal": "<2.13.1",
  6062. "symfony/dependency-injection": "<4.4",
  6063. "symfony/http-kernel": "<4.4",
  6064. "symfony/var-dumper": "<4.4"
  6065. },
  6066. "provide": {
  6067. "psr/cache-implementation": "1.0|2.0",
  6068. "psr/simple-cache-implementation": "1.0|2.0",
  6069. "symfony/cache-implementation": "1.0|2.0"
  6070. },
  6071. "require-dev": {
  6072. "cache/integration-tests": "dev-master",
  6073. "doctrine/cache": "^1.6|^2.0",
  6074. "doctrine/dbal": "^2.13.1|^3.0",
  6075. "predis/predis": "^1.1",
  6076. "psr/simple-cache": "^1.0|^2.0",
  6077. "symfony/config": "^4.4|^5.0|^6.0",
  6078. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6079. "symfony/filesystem": "^4.4|^5.0|^6.0",
  6080. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6081. "symfony/messenger": "^4.4|^5.0|^6.0",
  6082. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6083. },
  6084. "type": "library",
  6085. "autoload": {
  6086. "psr-4": {
  6087. "Symfony\\Component\\Cache\\": ""
  6088. },
  6089. "exclude-from-classmap": [
  6090. "/Tests/"
  6091. ]
  6092. },
  6093. "notification-url": "https://packagist.org/downloads/",
  6094. "license": [
  6095. "MIT"
  6096. ],
  6097. "authors": [
  6098. {
  6099. "name": "Nicolas Grekas",
  6100. "email": "p@tchwork.com"
  6101. },
  6102. {
  6103. "name": "Symfony Community",
  6104. "homepage": "https://symfony.com/contributors"
  6105. }
  6106. ],
  6107. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  6108. "homepage": "https://symfony.com",
  6109. "keywords": [
  6110. "caching",
  6111. "psr6"
  6112. ],
  6113. "support": {
  6114. "source": "https://github.com/symfony/cache/tree/v5.4.29"
  6115. },
  6116. "funding": [
  6117. {
  6118. "url": "https://symfony.com/sponsor",
  6119. "type": "custom"
  6120. },
  6121. {
  6122. "url": "https://github.com/fabpot",
  6123. "type": "github"
  6124. },
  6125. {
  6126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6127. "type": "tidelift"
  6128. }
  6129. ],
  6130. "time": "2023-09-19T13:25:51+00:00"
  6131. },
  6132. {
  6133. "name": "symfony/cache-contracts",
  6134. "version": "v2.5.2",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/symfony/cache-contracts.git",
  6138. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  6143. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  6144. "shasum": "",
  6145. "mirrors": [
  6146. {
  6147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6148. "preferred": true
  6149. }
  6150. ]
  6151. },
  6152. "require": {
  6153. "php": ">=7.2.5",
  6154. "psr/cache": "^1.0|^2.0|^3.0"
  6155. },
  6156. "suggest": {
  6157. "symfony/cache-implementation": ""
  6158. },
  6159. "type": "library",
  6160. "extra": {
  6161. "branch-alias": {
  6162. "dev-main": "2.5-dev"
  6163. },
  6164. "thanks": {
  6165. "name": "symfony/contracts",
  6166. "url": "https://github.com/symfony/contracts"
  6167. }
  6168. },
  6169. "autoload": {
  6170. "psr-4": {
  6171. "Symfony\\Contracts\\Cache\\": ""
  6172. }
  6173. },
  6174. "notification-url": "https://packagist.org/downloads/",
  6175. "license": [
  6176. "MIT"
  6177. ],
  6178. "authors": [
  6179. {
  6180. "name": "Nicolas Grekas",
  6181. "email": "p@tchwork.com"
  6182. },
  6183. {
  6184. "name": "Symfony Community",
  6185. "homepage": "https://symfony.com/contributors"
  6186. }
  6187. ],
  6188. "description": "Generic abstractions related to caching",
  6189. "homepage": "https://symfony.com",
  6190. "keywords": [
  6191. "abstractions",
  6192. "contracts",
  6193. "decoupling",
  6194. "interfaces",
  6195. "interoperability",
  6196. "standards"
  6197. ],
  6198. "support": {
  6199. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  6200. },
  6201. "funding": [
  6202. {
  6203. "url": "https://symfony.com/sponsor",
  6204. "type": "custom"
  6205. },
  6206. {
  6207. "url": "https://github.com/fabpot",
  6208. "type": "github"
  6209. },
  6210. {
  6211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6212. "type": "tidelift"
  6213. }
  6214. ],
  6215. "time": "2022-01-02T09:53:40+00:00"
  6216. },
  6217. {
  6218. "name": "symfony/console",
  6219. "version": "v4.4.49",
  6220. "source": {
  6221. "type": "git",
  6222. "url": "https://github.com/symfony/console.git",
  6223. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9"
  6224. },
  6225. "dist": {
  6226. "type": "zip",
  6227. "url": "https://api.github.com/repos/symfony/console/zipball/33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  6228. "reference": "33fa45ffc81fdcc1ca368d4946da859c8cdb58d9",
  6229. "shasum": "",
  6230. "mirrors": [
  6231. {
  6232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6233. "preferred": true
  6234. }
  6235. ]
  6236. },
  6237. "require": {
  6238. "php": ">=7.1.3",
  6239. "symfony/polyfill-mbstring": "~1.0",
  6240. "symfony/polyfill-php73": "^1.8",
  6241. "symfony/polyfill-php80": "^1.16",
  6242. "symfony/service-contracts": "^1.1|^2"
  6243. },
  6244. "conflict": {
  6245. "psr/log": ">=3",
  6246. "symfony/dependency-injection": "<3.4",
  6247. "symfony/event-dispatcher": "<4.3|>=5",
  6248. "symfony/lock": "<4.4",
  6249. "symfony/process": "<3.3"
  6250. },
  6251. "provide": {
  6252. "psr/log-implementation": "1.0|2.0"
  6253. },
  6254. "require-dev": {
  6255. "psr/log": "^1|^2",
  6256. "symfony/config": "^3.4|^4.0|^5.0",
  6257. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6258. "symfony/event-dispatcher": "^4.3",
  6259. "symfony/lock": "^4.4|^5.0",
  6260. "symfony/process": "^3.4|^4.0|^5.0",
  6261. "symfony/var-dumper": "^4.3|^5.0"
  6262. },
  6263. "suggest": {
  6264. "psr/log": "For using the console logger",
  6265. "symfony/event-dispatcher": "",
  6266. "symfony/lock": "",
  6267. "symfony/process": ""
  6268. },
  6269. "type": "library",
  6270. "autoload": {
  6271. "psr-4": {
  6272. "Symfony\\Component\\Console\\": ""
  6273. },
  6274. "exclude-from-classmap": [
  6275. "/Tests/"
  6276. ]
  6277. },
  6278. "notification-url": "https://packagist.org/downloads/",
  6279. "license": [
  6280. "MIT"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Fabien Potencier",
  6285. "email": "fabien@symfony.com"
  6286. },
  6287. {
  6288. "name": "Symfony Community",
  6289. "homepage": "https://symfony.com/contributors"
  6290. }
  6291. ],
  6292. "description": "Eases the creation of beautiful and testable command line interfaces",
  6293. "homepage": "https://symfony.com",
  6294. "support": {
  6295. "source": "https://github.com/symfony/console/tree/v4.4.49"
  6296. },
  6297. "funding": [
  6298. {
  6299. "url": "https://symfony.com/sponsor",
  6300. "type": "custom"
  6301. },
  6302. {
  6303. "url": "https://github.com/fabpot",
  6304. "type": "github"
  6305. },
  6306. {
  6307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6308. "type": "tidelift"
  6309. }
  6310. ],
  6311. "time": "2022-11-05T17:10:16+00:00"
  6312. },
  6313. {
  6314. "name": "symfony/css-selector",
  6315. "version": "v5.4.26",
  6316. "source": {
  6317. "type": "git",
  6318. "url": "https://github.com/symfony/css-selector.git",
  6319. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  6320. },
  6321. "dist": {
  6322. "type": "zip",
  6323. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  6324. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  6325. "shasum": "",
  6326. "mirrors": [
  6327. {
  6328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6329. "preferred": true
  6330. }
  6331. ]
  6332. },
  6333. "require": {
  6334. "php": ">=7.2.5",
  6335. "symfony/polyfill-php80": "^1.16"
  6336. },
  6337. "type": "library",
  6338. "autoload": {
  6339. "psr-4": {
  6340. "Symfony\\Component\\CssSelector\\": ""
  6341. },
  6342. "exclude-from-classmap": [
  6343. "/Tests/"
  6344. ]
  6345. },
  6346. "notification-url": "https://packagist.org/downloads/",
  6347. "license": [
  6348. "MIT"
  6349. ],
  6350. "authors": [
  6351. {
  6352. "name": "Fabien Potencier",
  6353. "email": "fabien@symfony.com"
  6354. },
  6355. {
  6356. "name": "Jean-François Simon",
  6357. "email": "jeanfrancois.simon@sensiolabs.com"
  6358. },
  6359. {
  6360. "name": "Symfony Community",
  6361. "homepage": "https://symfony.com/contributors"
  6362. }
  6363. ],
  6364. "description": "Converts CSS selectors to XPath expressions",
  6365. "homepage": "https://symfony.com",
  6366. "support": {
  6367. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  6368. },
  6369. "funding": [
  6370. {
  6371. "url": "https://symfony.com/sponsor",
  6372. "type": "custom"
  6373. },
  6374. {
  6375. "url": "https://github.com/fabpot",
  6376. "type": "github"
  6377. },
  6378. {
  6379. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6380. "type": "tidelift"
  6381. }
  6382. ],
  6383. "time": "2023-07-07T06:10:25+00:00"
  6384. },
  6385. {
  6386. "name": "symfony/debug",
  6387. "version": "v4.4.44",
  6388. "source": {
  6389. "type": "git",
  6390. "url": "https://github.com/symfony/debug.git",
  6391. "reference": "1a692492190773c5310bc7877cb590c04c2f05be"
  6392. },
  6393. "dist": {
  6394. "type": "zip",
  6395. "url": "https://api.github.com/repos/symfony/debug/zipball/1a692492190773c5310bc7877cb590c04c2f05be",
  6396. "reference": "1a692492190773c5310bc7877cb590c04c2f05be",
  6397. "shasum": "",
  6398. "mirrors": [
  6399. {
  6400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6401. "preferred": true
  6402. }
  6403. ]
  6404. },
  6405. "require": {
  6406. "php": ">=7.1.3",
  6407. "psr/log": "^1|^2|^3"
  6408. },
  6409. "conflict": {
  6410. "symfony/http-kernel": "<3.4"
  6411. },
  6412. "require-dev": {
  6413. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  6414. },
  6415. "type": "library",
  6416. "autoload": {
  6417. "psr-4": {
  6418. "Symfony\\Component\\Debug\\": ""
  6419. },
  6420. "exclude-from-classmap": [
  6421. "/Tests/"
  6422. ]
  6423. },
  6424. "notification-url": "https://packagist.org/downloads/",
  6425. "license": [
  6426. "MIT"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Fabien Potencier",
  6431. "email": "fabien@symfony.com"
  6432. },
  6433. {
  6434. "name": "Symfony Community",
  6435. "homepage": "https://symfony.com/contributors"
  6436. }
  6437. ],
  6438. "description": "Provides tools to ease debugging PHP code",
  6439. "homepage": "https://symfony.com",
  6440. "support": {
  6441. "source": "https://github.com/symfony/debug/tree/v4.4.44"
  6442. },
  6443. "funding": [
  6444. {
  6445. "url": "https://symfony.com/sponsor",
  6446. "type": "custom"
  6447. },
  6448. {
  6449. "url": "https://github.com/fabpot",
  6450. "type": "github"
  6451. },
  6452. {
  6453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6454. "type": "tidelift"
  6455. }
  6456. ],
  6457. "abandoned": "symfony/error-handler",
  6458. "time": "2022-07-28T16:29:46+00:00"
  6459. },
  6460. {
  6461. "name": "symfony/deprecation-contracts",
  6462. "version": "v2.5.2",
  6463. "source": {
  6464. "type": "git",
  6465. "url": "https://github.com/symfony/deprecation-contracts.git",
  6466. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  6467. },
  6468. "dist": {
  6469. "type": "zip",
  6470. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6471. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  6472. "shasum": "",
  6473. "mirrors": [
  6474. {
  6475. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6476. "preferred": true
  6477. }
  6478. ]
  6479. },
  6480. "require": {
  6481. "php": ">=7.1"
  6482. },
  6483. "type": "library",
  6484. "extra": {
  6485. "branch-alias": {
  6486. "dev-main": "2.5-dev"
  6487. },
  6488. "thanks": {
  6489. "name": "symfony/contracts",
  6490. "url": "https://github.com/symfony/contracts"
  6491. }
  6492. },
  6493. "autoload": {
  6494. "files": [
  6495. "function.php"
  6496. ]
  6497. },
  6498. "notification-url": "https://packagist.org/downloads/",
  6499. "license": [
  6500. "MIT"
  6501. ],
  6502. "authors": [
  6503. {
  6504. "name": "Nicolas Grekas",
  6505. "email": "p@tchwork.com"
  6506. },
  6507. {
  6508. "name": "Symfony Community",
  6509. "homepage": "https://symfony.com/contributors"
  6510. }
  6511. ],
  6512. "description": "A generic function and convention to trigger deprecation notices",
  6513. "homepage": "https://symfony.com",
  6514. "support": {
  6515. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  6516. },
  6517. "funding": [
  6518. {
  6519. "url": "https://symfony.com/sponsor",
  6520. "type": "custom"
  6521. },
  6522. {
  6523. "url": "https://github.com/fabpot",
  6524. "type": "github"
  6525. },
  6526. {
  6527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6528. "type": "tidelift"
  6529. }
  6530. ],
  6531. "time": "2022-01-02T09:53:40+00:00"
  6532. },
  6533. {
  6534. "name": "symfony/error-handler",
  6535. "version": "v4.4.44",
  6536. "source": {
  6537. "type": "git",
  6538. "url": "https://github.com/symfony/error-handler.git",
  6539. "reference": "be731658121ef2d8be88f3a1ec938148a9237291"
  6540. },
  6541. "dist": {
  6542. "type": "zip",
  6543. "url": "https://api.github.com/repos/symfony/error-handler/zipball/be731658121ef2d8be88f3a1ec938148a9237291",
  6544. "reference": "be731658121ef2d8be88f3a1ec938148a9237291",
  6545. "shasum": "",
  6546. "mirrors": [
  6547. {
  6548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6549. "preferred": true
  6550. }
  6551. ]
  6552. },
  6553. "require": {
  6554. "php": ">=7.1.3",
  6555. "psr/log": "^1|^2|^3",
  6556. "symfony/debug": "^4.4.5",
  6557. "symfony/var-dumper": "^4.4|^5.0"
  6558. },
  6559. "require-dev": {
  6560. "symfony/http-kernel": "^4.4|^5.0",
  6561. "symfony/serializer": "^4.4|^5.0"
  6562. },
  6563. "type": "library",
  6564. "autoload": {
  6565. "psr-4": {
  6566. "Symfony\\Component\\ErrorHandler\\": ""
  6567. },
  6568. "exclude-from-classmap": [
  6569. "/Tests/"
  6570. ]
  6571. },
  6572. "notification-url": "https://packagist.org/downloads/",
  6573. "license": [
  6574. "MIT"
  6575. ],
  6576. "authors": [
  6577. {
  6578. "name": "Fabien Potencier",
  6579. "email": "fabien@symfony.com"
  6580. },
  6581. {
  6582. "name": "Symfony Community",
  6583. "homepage": "https://symfony.com/contributors"
  6584. }
  6585. ],
  6586. "description": "Provides tools to manage errors and ease debugging PHP code",
  6587. "homepage": "https://symfony.com",
  6588. "support": {
  6589. "source": "https://github.com/symfony/error-handler/tree/v4.4.44"
  6590. },
  6591. "funding": [
  6592. {
  6593. "url": "https://symfony.com/sponsor",
  6594. "type": "custom"
  6595. },
  6596. {
  6597. "url": "https://github.com/fabpot",
  6598. "type": "github"
  6599. },
  6600. {
  6601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6602. "type": "tidelift"
  6603. }
  6604. ],
  6605. "time": "2022-07-28T16:29:46+00:00"
  6606. },
  6607. {
  6608. "name": "symfony/event-dispatcher",
  6609. "version": "v4.4.44",
  6610. "source": {
  6611. "type": "git",
  6612. "url": "https://github.com/symfony/event-dispatcher.git",
  6613. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a"
  6614. },
  6615. "dist": {
  6616. "type": "zip",
  6617. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  6618. "reference": "1e866e9e5c1b22168e0ce5f0b467f19bba61266a",
  6619. "shasum": "",
  6620. "mirrors": [
  6621. {
  6622. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6623. "preferred": true
  6624. }
  6625. ]
  6626. },
  6627. "require": {
  6628. "php": ">=7.1.3",
  6629. "symfony/event-dispatcher-contracts": "^1.1",
  6630. "symfony/polyfill-php80": "^1.16"
  6631. },
  6632. "conflict": {
  6633. "symfony/dependency-injection": "<3.4"
  6634. },
  6635. "provide": {
  6636. "psr/event-dispatcher-implementation": "1.0",
  6637. "symfony/event-dispatcher-implementation": "1.1"
  6638. },
  6639. "require-dev": {
  6640. "psr/log": "^1|^2|^3",
  6641. "symfony/config": "^3.4|^4.0|^5.0",
  6642. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  6643. "symfony/error-handler": "~3.4|~4.4",
  6644. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6645. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  6646. "symfony/service-contracts": "^1.1|^2",
  6647. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  6648. },
  6649. "suggest": {
  6650. "symfony/dependency-injection": "",
  6651. "symfony/http-kernel": ""
  6652. },
  6653. "type": "library",
  6654. "autoload": {
  6655. "psr-4": {
  6656. "Symfony\\Component\\EventDispatcher\\": ""
  6657. },
  6658. "exclude-from-classmap": [
  6659. "/Tests/"
  6660. ]
  6661. },
  6662. "notification-url": "https://packagist.org/downloads/",
  6663. "license": [
  6664. "MIT"
  6665. ],
  6666. "authors": [
  6667. {
  6668. "name": "Fabien Potencier",
  6669. "email": "fabien@symfony.com"
  6670. },
  6671. {
  6672. "name": "Symfony Community",
  6673. "homepage": "https://symfony.com/contributors"
  6674. }
  6675. ],
  6676. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6677. "homepage": "https://symfony.com",
  6678. "support": {
  6679. "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.44"
  6680. },
  6681. "funding": [
  6682. {
  6683. "url": "https://symfony.com/sponsor",
  6684. "type": "custom"
  6685. },
  6686. {
  6687. "url": "https://github.com/fabpot",
  6688. "type": "github"
  6689. },
  6690. {
  6691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6692. "type": "tidelift"
  6693. }
  6694. ],
  6695. "time": "2022-07-20T09:59:04+00:00"
  6696. },
  6697. {
  6698. "name": "symfony/event-dispatcher-contracts",
  6699. "version": "v1.1.13",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6703. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  6708. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  6709. "shasum": "",
  6710. "mirrors": [
  6711. {
  6712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6713. "preferred": true
  6714. }
  6715. ]
  6716. },
  6717. "require": {
  6718. "php": ">=7.1.3"
  6719. },
  6720. "suggest": {
  6721. "psr/event-dispatcher": "",
  6722. "symfony/event-dispatcher-implementation": ""
  6723. },
  6724. "type": "library",
  6725. "extra": {
  6726. "branch-alias": {
  6727. "dev-main": "1.1-dev"
  6728. },
  6729. "thanks": {
  6730. "name": "symfony/contracts",
  6731. "url": "https://github.com/symfony/contracts"
  6732. }
  6733. },
  6734. "autoload": {
  6735. "psr-4": {
  6736. "Symfony\\Contracts\\EventDispatcher\\": ""
  6737. }
  6738. },
  6739. "notification-url": "https://packagist.org/downloads/",
  6740. "license": [
  6741. "MIT"
  6742. ],
  6743. "authors": [
  6744. {
  6745. "name": "Nicolas Grekas",
  6746. "email": "p@tchwork.com"
  6747. },
  6748. {
  6749. "name": "Symfony Community",
  6750. "homepage": "https://symfony.com/contributors"
  6751. }
  6752. ],
  6753. "description": "Generic abstractions related to dispatching event",
  6754. "homepage": "https://symfony.com",
  6755. "keywords": [
  6756. "abstractions",
  6757. "contracts",
  6758. "decoupling",
  6759. "interfaces",
  6760. "interoperability",
  6761. "standards"
  6762. ],
  6763. "support": {
  6764. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  6765. },
  6766. "funding": [
  6767. {
  6768. "url": "https://symfony.com/sponsor",
  6769. "type": "custom"
  6770. },
  6771. {
  6772. "url": "https://github.com/fabpot",
  6773. "type": "github"
  6774. },
  6775. {
  6776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6777. "type": "tidelift"
  6778. }
  6779. ],
  6780. "time": "2022-01-02T09:41:36+00:00"
  6781. },
  6782. {
  6783. "name": "symfony/filesystem",
  6784. "version": "v5.4.25",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/symfony/filesystem.git",
  6788. "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/symfony/filesystem/zipball/0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
  6793. "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
  6794. "shasum": "",
  6795. "mirrors": [
  6796. {
  6797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6798. "preferred": true
  6799. }
  6800. ]
  6801. },
  6802. "require": {
  6803. "php": ">=7.2.5",
  6804. "symfony/polyfill-ctype": "~1.8",
  6805. "symfony/polyfill-mbstring": "~1.8",
  6806. "symfony/polyfill-php80": "^1.16"
  6807. },
  6808. "type": "library",
  6809. "autoload": {
  6810. "psr-4": {
  6811. "Symfony\\Component\\Filesystem\\": ""
  6812. },
  6813. "exclude-from-classmap": [
  6814. "/Tests/"
  6815. ]
  6816. },
  6817. "notification-url": "https://packagist.org/downloads/",
  6818. "license": [
  6819. "MIT"
  6820. ],
  6821. "authors": [
  6822. {
  6823. "name": "Fabien Potencier",
  6824. "email": "fabien@symfony.com"
  6825. },
  6826. {
  6827. "name": "Symfony Community",
  6828. "homepage": "https://symfony.com/contributors"
  6829. }
  6830. ],
  6831. "description": "Provides basic utilities for the filesystem",
  6832. "homepage": "https://symfony.com",
  6833. "support": {
  6834. "source": "https://github.com/symfony/filesystem/tree/v5.4.25"
  6835. },
  6836. "funding": [
  6837. {
  6838. "url": "https://symfony.com/sponsor",
  6839. "type": "custom"
  6840. },
  6841. {
  6842. "url": "https://github.com/fabpot",
  6843. "type": "github"
  6844. },
  6845. {
  6846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6847. "type": "tidelift"
  6848. }
  6849. ],
  6850. "time": "2023-05-31T13:04:02+00:00"
  6851. },
  6852. {
  6853. "name": "symfony/finder",
  6854. "version": "v4.4.44",
  6855. "source": {
  6856. "type": "git",
  6857. "url": "https://github.com/symfony/finder.git",
  6858. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  6859. },
  6860. "dist": {
  6861. "type": "zip",
  6862. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  6863. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  6864. "shasum": "",
  6865. "mirrors": [
  6866. {
  6867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6868. "preferred": true
  6869. }
  6870. ]
  6871. },
  6872. "require": {
  6873. "php": ">=7.1.3",
  6874. "symfony/polyfill-php80": "^1.16"
  6875. },
  6876. "type": "library",
  6877. "autoload": {
  6878. "psr-4": {
  6879. "Symfony\\Component\\Finder\\": ""
  6880. },
  6881. "exclude-from-classmap": [
  6882. "/Tests/"
  6883. ]
  6884. },
  6885. "notification-url": "https://packagist.org/downloads/",
  6886. "license": [
  6887. "MIT"
  6888. ],
  6889. "authors": [
  6890. {
  6891. "name": "Fabien Potencier",
  6892. "email": "fabien@symfony.com"
  6893. },
  6894. {
  6895. "name": "Symfony Community",
  6896. "homepage": "https://symfony.com/contributors"
  6897. }
  6898. ],
  6899. "description": "Finds files and directories via an intuitive fluent interface",
  6900. "homepage": "https://symfony.com",
  6901. "support": {
  6902. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  6903. },
  6904. "funding": [
  6905. {
  6906. "url": "https://symfony.com/sponsor",
  6907. "type": "custom"
  6908. },
  6909. {
  6910. "url": "https://github.com/fabpot",
  6911. "type": "github"
  6912. },
  6913. {
  6914. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6915. "type": "tidelift"
  6916. }
  6917. ],
  6918. "time": "2022-07-29T07:35:46+00:00"
  6919. },
  6920. {
  6921. "name": "symfony/http-client-contracts",
  6922. "version": "v2.5.2",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/symfony/http-client-contracts.git",
  6926. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  6931. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  6932. "shasum": "",
  6933. "mirrors": [
  6934. {
  6935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6936. "preferred": true
  6937. }
  6938. ]
  6939. },
  6940. "require": {
  6941. "php": ">=7.2.5"
  6942. },
  6943. "suggest": {
  6944. "symfony/http-client-implementation": ""
  6945. },
  6946. "type": "library",
  6947. "extra": {
  6948. "branch-alias": {
  6949. "dev-main": "2.5-dev"
  6950. },
  6951. "thanks": {
  6952. "name": "symfony/contracts",
  6953. "url": "https://github.com/symfony/contracts"
  6954. }
  6955. },
  6956. "autoload": {
  6957. "psr-4": {
  6958. "Symfony\\Contracts\\HttpClient\\": ""
  6959. }
  6960. },
  6961. "notification-url": "https://packagist.org/downloads/",
  6962. "license": [
  6963. "MIT"
  6964. ],
  6965. "authors": [
  6966. {
  6967. "name": "Nicolas Grekas",
  6968. "email": "p@tchwork.com"
  6969. },
  6970. {
  6971. "name": "Symfony Community",
  6972. "homepage": "https://symfony.com/contributors"
  6973. }
  6974. ],
  6975. "description": "Generic abstractions related to HTTP clients",
  6976. "homepage": "https://symfony.com",
  6977. "keywords": [
  6978. "abstractions",
  6979. "contracts",
  6980. "decoupling",
  6981. "interfaces",
  6982. "interoperability",
  6983. "standards"
  6984. ],
  6985. "support": {
  6986. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  6987. },
  6988. "funding": [
  6989. {
  6990. "url": "https://symfony.com/sponsor",
  6991. "type": "custom"
  6992. },
  6993. {
  6994. "url": "https://github.com/fabpot",
  6995. "type": "github"
  6996. },
  6997. {
  6998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6999. "type": "tidelift"
  7000. }
  7001. ],
  7002. "time": "2022-04-12T15:48:08+00:00"
  7003. },
  7004. {
  7005. "name": "symfony/http-foundation",
  7006. "version": "v4.4.49",
  7007. "source": {
  7008. "type": "git",
  7009. "url": "https://github.com/symfony/http-foundation.git",
  7010. "reference": "191413c7b832c015bb38eae963f2e57498c3c173"
  7011. },
  7012. "dist": {
  7013. "type": "zip",
  7014. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/191413c7b832c015bb38eae963f2e57498c3c173",
  7015. "reference": "191413c7b832c015bb38eae963f2e57498c3c173",
  7016. "shasum": "",
  7017. "mirrors": [
  7018. {
  7019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7020. "preferred": true
  7021. }
  7022. ]
  7023. },
  7024. "require": {
  7025. "php": ">=7.1.3",
  7026. "symfony/mime": "^4.3|^5.0",
  7027. "symfony/polyfill-mbstring": "~1.1",
  7028. "symfony/polyfill-php80": "^1.16"
  7029. },
  7030. "require-dev": {
  7031. "predis/predis": "~1.0",
  7032. "symfony/expression-language": "^3.4|^4.0|^5.0"
  7033. },
  7034. "type": "library",
  7035. "autoload": {
  7036. "psr-4": {
  7037. "Symfony\\Component\\HttpFoundation\\": ""
  7038. },
  7039. "exclude-from-classmap": [
  7040. "/Tests/"
  7041. ]
  7042. },
  7043. "notification-url": "https://packagist.org/downloads/",
  7044. "license": [
  7045. "MIT"
  7046. ],
  7047. "authors": [
  7048. {
  7049. "name": "Fabien Potencier",
  7050. "email": "fabien@symfony.com"
  7051. },
  7052. {
  7053. "name": "Symfony Community",
  7054. "homepage": "https://symfony.com/contributors"
  7055. }
  7056. ],
  7057. "description": "Defines an object-oriented layer for the HTTP specification",
  7058. "homepage": "https://symfony.com",
  7059. "support": {
  7060. "source": "https://github.com/symfony/http-foundation/tree/v4.4.49"
  7061. },
  7062. "funding": [
  7063. {
  7064. "url": "https://symfony.com/sponsor",
  7065. "type": "custom"
  7066. },
  7067. {
  7068. "url": "https://github.com/fabpot",
  7069. "type": "github"
  7070. },
  7071. {
  7072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7073. "type": "tidelift"
  7074. }
  7075. ],
  7076. "time": "2022-11-04T16:17:57+00:00"
  7077. },
  7078. {
  7079. "name": "symfony/http-kernel",
  7080. "version": "v4.4.50",
  7081. "source": {
  7082. "type": "git",
  7083. "url": "https://github.com/symfony/http-kernel.git",
  7084. "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef"
  7085. },
  7086. "dist": {
  7087. "type": "zip",
  7088. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/aa6df6c045f034aa13ac752fc234bb300b9488ef",
  7089. "reference": "aa6df6c045f034aa13ac752fc234bb300b9488ef",
  7090. "shasum": "",
  7091. "mirrors": [
  7092. {
  7093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7094. "preferred": true
  7095. }
  7096. ]
  7097. },
  7098. "require": {
  7099. "php": ">=7.1.3",
  7100. "psr/log": "^1|^2",
  7101. "symfony/error-handler": "^4.4",
  7102. "symfony/event-dispatcher": "^4.4",
  7103. "symfony/http-client-contracts": "^1.1|^2",
  7104. "symfony/http-foundation": "^4.4.30|^5.3.7",
  7105. "symfony/polyfill-ctype": "^1.8",
  7106. "symfony/polyfill-php73": "^1.9",
  7107. "symfony/polyfill-php80": "^1.16"
  7108. },
  7109. "conflict": {
  7110. "symfony/browser-kit": "<4.3",
  7111. "symfony/config": "<3.4",
  7112. "symfony/console": ">=5",
  7113. "symfony/dependency-injection": "<4.3",
  7114. "symfony/translation": "<4.2",
  7115. "twig/twig": "<1.43|<2.13,>=2"
  7116. },
  7117. "provide": {
  7118. "psr/log-implementation": "1.0|2.0"
  7119. },
  7120. "require-dev": {
  7121. "psr/cache": "^1.0|^2.0|^3.0",
  7122. "symfony/browser-kit": "^4.3|^5.0",
  7123. "symfony/config": "^3.4|^4.0|^5.0",
  7124. "symfony/console": "^3.4|^4.0",
  7125. "symfony/css-selector": "^3.4|^4.0|^5.0",
  7126. "symfony/dependency-injection": "^4.3|^5.0",
  7127. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  7128. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7129. "symfony/finder": "^3.4|^4.0|^5.0",
  7130. "symfony/process": "^3.4|^4.0|^5.0",
  7131. "symfony/routing": "^3.4|^4.0|^5.0",
  7132. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  7133. "symfony/templating": "^3.4|^4.0|^5.0",
  7134. "symfony/translation": "^4.2|^5.0",
  7135. "symfony/translation-contracts": "^1.1|^2",
  7136. "twig/twig": "^1.43|^2.13|^3.0.4"
  7137. },
  7138. "suggest": {
  7139. "symfony/browser-kit": "",
  7140. "symfony/config": "",
  7141. "symfony/console": "",
  7142. "symfony/dependency-injection": ""
  7143. },
  7144. "type": "library",
  7145. "autoload": {
  7146. "psr-4": {
  7147. "Symfony\\Component\\HttpKernel\\": ""
  7148. },
  7149. "exclude-from-classmap": [
  7150. "/Tests/"
  7151. ]
  7152. },
  7153. "notification-url": "https://packagist.org/downloads/",
  7154. "license": [
  7155. "MIT"
  7156. ],
  7157. "authors": [
  7158. {
  7159. "name": "Fabien Potencier",
  7160. "email": "fabien@symfony.com"
  7161. },
  7162. {
  7163. "name": "Symfony Community",
  7164. "homepage": "https://symfony.com/contributors"
  7165. }
  7166. ],
  7167. "description": "Provides a structured process for converting a Request into a Response",
  7168. "homepage": "https://symfony.com",
  7169. "support": {
  7170. "source": "https://github.com/symfony/http-kernel/tree/v4.4.50"
  7171. },
  7172. "funding": [
  7173. {
  7174. "url": "https://symfony.com/sponsor",
  7175. "type": "custom"
  7176. },
  7177. {
  7178. "url": "https://github.com/fabpot",
  7179. "type": "github"
  7180. },
  7181. {
  7182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7183. "type": "tidelift"
  7184. }
  7185. ],
  7186. "time": "2023-02-01T08:01:31+00:00"
  7187. },
  7188. {
  7189. "name": "symfony/mime",
  7190. "version": "v5.4.26",
  7191. "source": {
  7192. "type": "git",
  7193. "url": "https://github.com/symfony/mime.git",
  7194. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  7195. },
  7196. "dist": {
  7197. "type": "zip",
  7198. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  7199. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  7200. "shasum": "",
  7201. "mirrors": [
  7202. {
  7203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7204. "preferred": true
  7205. }
  7206. ]
  7207. },
  7208. "require": {
  7209. "php": ">=7.2.5",
  7210. "symfony/deprecation-contracts": "^2.1|^3",
  7211. "symfony/polyfill-intl-idn": "^1.10",
  7212. "symfony/polyfill-mbstring": "^1.0",
  7213. "symfony/polyfill-php80": "^1.16"
  7214. },
  7215. "conflict": {
  7216. "egulias/email-validator": "~3.0.0",
  7217. "phpdocumentor/reflection-docblock": "<3.2.2",
  7218. "phpdocumentor/type-resolver": "<1.4.0",
  7219. "symfony/mailer": "<4.4",
  7220. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  7221. },
  7222. "require-dev": {
  7223. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7224. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7225. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7226. "symfony/property-access": "^4.4|^5.1|^6.0",
  7227. "symfony/property-info": "^4.4|^5.1|^6.0",
  7228. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  7229. },
  7230. "type": "library",
  7231. "autoload": {
  7232. "psr-4": {
  7233. "Symfony\\Component\\Mime\\": ""
  7234. },
  7235. "exclude-from-classmap": [
  7236. "/Tests/"
  7237. ]
  7238. },
  7239. "notification-url": "https://packagist.org/downloads/",
  7240. "license": [
  7241. "MIT"
  7242. ],
  7243. "authors": [
  7244. {
  7245. "name": "Fabien Potencier",
  7246. "email": "fabien@symfony.com"
  7247. },
  7248. {
  7249. "name": "Symfony Community",
  7250. "homepage": "https://symfony.com/contributors"
  7251. }
  7252. ],
  7253. "description": "Allows manipulating MIME messages",
  7254. "homepage": "https://symfony.com",
  7255. "keywords": [
  7256. "mime",
  7257. "mime-type"
  7258. ],
  7259. "support": {
  7260. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  7261. },
  7262. "funding": [
  7263. {
  7264. "url": "https://symfony.com/sponsor",
  7265. "type": "custom"
  7266. },
  7267. {
  7268. "url": "https://github.com/fabpot",
  7269. "type": "github"
  7270. },
  7271. {
  7272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7273. "type": "tidelift"
  7274. }
  7275. ],
  7276. "time": "2023-07-27T06:29:31+00:00"
  7277. },
  7278. {
  7279. "name": "symfony/polyfill-ctype",
  7280. "version": "v1.28.0",
  7281. "source": {
  7282. "type": "git",
  7283. "url": "https://github.com/symfony/polyfill-ctype.git",
  7284. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  7285. },
  7286. "dist": {
  7287. "type": "zip",
  7288. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7289. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  7290. "shasum": "",
  7291. "mirrors": [
  7292. {
  7293. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7294. "preferred": true
  7295. }
  7296. ]
  7297. },
  7298. "require": {
  7299. "php": ">=7.1"
  7300. },
  7301. "provide": {
  7302. "ext-ctype": "*"
  7303. },
  7304. "suggest": {
  7305. "ext-ctype": "For best performance"
  7306. },
  7307. "type": "library",
  7308. "extra": {
  7309. "branch-alias": {
  7310. "dev-main": "1.28-dev"
  7311. },
  7312. "thanks": {
  7313. "name": "symfony/polyfill",
  7314. "url": "https://github.com/symfony/polyfill"
  7315. }
  7316. },
  7317. "autoload": {
  7318. "files": [
  7319. "bootstrap.php"
  7320. ],
  7321. "psr-4": {
  7322. "Symfony\\Polyfill\\Ctype\\": ""
  7323. }
  7324. },
  7325. "notification-url": "https://packagist.org/downloads/",
  7326. "license": [
  7327. "MIT"
  7328. ],
  7329. "authors": [
  7330. {
  7331. "name": "Gert de Pagter",
  7332. "email": "BackEndTea@gmail.com"
  7333. },
  7334. {
  7335. "name": "Symfony Community",
  7336. "homepage": "https://symfony.com/contributors"
  7337. }
  7338. ],
  7339. "description": "Symfony polyfill for ctype functions",
  7340. "homepage": "https://symfony.com",
  7341. "keywords": [
  7342. "compatibility",
  7343. "ctype",
  7344. "polyfill",
  7345. "portable"
  7346. ],
  7347. "support": {
  7348. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7349. },
  7350. "funding": [
  7351. {
  7352. "url": "https://symfony.com/sponsor",
  7353. "type": "custom"
  7354. },
  7355. {
  7356. "url": "https://github.com/fabpot",
  7357. "type": "github"
  7358. },
  7359. {
  7360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7361. "type": "tidelift"
  7362. }
  7363. ],
  7364. "time": "2023-01-26T09:26:14+00:00"
  7365. },
  7366. {
  7367. "name": "symfony/polyfill-iconv",
  7368. "version": "v1.28.0",
  7369. "source": {
  7370. "type": "git",
  7371. "url": "https://github.com/symfony/polyfill-iconv.git",
  7372. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7373. },
  7374. "dist": {
  7375. "type": "zip",
  7376. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7377. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7378. "shasum": "",
  7379. "mirrors": [
  7380. {
  7381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7382. "preferred": true
  7383. }
  7384. ]
  7385. },
  7386. "require": {
  7387. "php": ">=7.1"
  7388. },
  7389. "provide": {
  7390. "ext-iconv": "*"
  7391. },
  7392. "suggest": {
  7393. "ext-iconv": "For best performance"
  7394. },
  7395. "type": "library",
  7396. "extra": {
  7397. "branch-alias": {
  7398. "dev-main": "1.28-dev"
  7399. },
  7400. "thanks": {
  7401. "name": "symfony/polyfill",
  7402. "url": "https://github.com/symfony/polyfill"
  7403. }
  7404. },
  7405. "autoload": {
  7406. "files": [
  7407. "bootstrap.php"
  7408. ],
  7409. "psr-4": {
  7410. "Symfony\\Polyfill\\Iconv\\": ""
  7411. }
  7412. },
  7413. "notification-url": "https://packagist.org/downloads/",
  7414. "license": [
  7415. "MIT"
  7416. ],
  7417. "authors": [
  7418. {
  7419. "name": "Nicolas Grekas",
  7420. "email": "p@tchwork.com"
  7421. },
  7422. {
  7423. "name": "Symfony Community",
  7424. "homepage": "https://symfony.com/contributors"
  7425. }
  7426. ],
  7427. "description": "Symfony polyfill for the Iconv extension",
  7428. "homepage": "https://symfony.com",
  7429. "keywords": [
  7430. "compatibility",
  7431. "iconv",
  7432. "polyfill",
  7433. "portable",
  7434. "shim"
  7435. ],
  7436. "support": {
  7437. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7438. },
  7439. "funding": [
  7440. {
  7441. "url": "https://symfony.com/sponsor",
  7442. "type": "custom"
  7443. },
  7444. {
  7445. "url": "https://github.com/fabpot",
  7446. "type": "github"
  7447. },
  7448. {
  7449. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7450. "type": "tidelift"
  7451. }
  7452. ],
  7453. "time": "2023-01-26T09:26:14+00:00"
  7454. },
  7455. {
  7456. "name": "symfony/polyfill-intl-idn",
  7457. "version": "v1.28.0",
  7458. "source": {
  7459. "type": "git",
  7460. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7461. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7462. },
  7463. "dist": {
  7464. "type": "zip",
  7465. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7466. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7467. "shasum": "",
  7468. "mirrors": [
  7469. {
  7470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7471. "preferred": true
  7472. }
  7473. ]
  7474. },
  7475. "require": {
  7476. "php": ">=7.1",
  7477. "symfony/polyfill-intl-normalizer": "^1.10",
  7478. "symfony/polyfill-php72": "^1.10"
  7479. },
  7480. "suggest": {
  7481. "ext-intl": "For best performance"
  7482. },
  7483. "type": "library",
  7484. "extra": {
  7485. "branch-alias": {
  7486. "dev-main": "1.28-dev"
  7487. },
  7488. "thanks": {
  7489. "name": "symfony/polyfill",
  7490. "url": "https://github.com/symfony/polyfill"
  7491. }
  7492. },
  7493. "autoload": {
  7494. "files": [
  7495. "bootstrap.php"
  7496. ],
  7497. "psr-4": {
  7498. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7499. }
  7500. },
  7501. "notification-url": "https://packagist.org/downloads/",
  7502. "license": [
  7503. "MIT"
  7504. ],
  7505. "authors": [
  7506. {
  7507. "name": "Laurent Bassin",
  7508. "email": "laurent@bassin.info"
  7509. },
  7510. {
  7511. "name": "Trevor Rowbotham",
  7512. "email": "trevor.rowbotham@pm.me"
  7513. },
  7514. {
  7515. "name": "Symfony Community",
  7516. "homepage": "https://symfony.com/contributors"
  7517. }
  7518. ],
  7519. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7520. "homepage": "https://symfony.com",
  7521. "keywords": [
  7522. "compatibility",
  7523. "idn",
  7524. "intl",
  7525. "polyfill",
  7526. "portable",
  7527. "shim"
  7528. ],
  7529. "support": {
  7530. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7531. },
  7532. "funding": [
  7533. {
  7534. "url": "https://symfony.com/sponsor",
  7535. "type": "custom"
  7536. },
  7537. {
  7538. "url": "https://github.com/fabpot",
  7539. "type": "github"
  7540. },
  7541. {
  7542. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7543. "type": "tidelift"
  7544. }
  7545. ],
  7546. "time": "2023-01-26T09:30:37+00:00"
  7547. },
  7548. {
  7549. "name": "symfony/polyfill-intl-normalizer",
  7550. "version": "v1.28.0",
  7551. "source": {
  7552. "type": "git",
  7553. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7554. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7555. },
  7556. "dist": {
  7557. "type": "zip",
  7558. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7559. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7560. "shasum": "",
  7561. "mirrors": [
  7562. {
  7563. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7564. "preferred": true
  7565. }
  7566. ]
  7567. },
  7568. "require": {
  7569. "php": ">=7.1"
  7570. },
  7571. "suggest": {
  7572. "ext-intl": "For best performance"
  7573. },
  7574. "type": "library",
  7575. "extra": {
  7576. "branch-alias": {
  7577. "dev-main": "1.28-dev"
  7578. },
  7579. "thanks": {
  7580. "name": "symfony/polyfill",
  7581. "url": "https://github.com/symfony/polyfill"
  7582. }
  7583. },
  7584. "autoload": {
  7585. "files": [
  7586. "bootstrap.php"
  7587. ],
  7588. "psr-4": {
  7589. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7590. },
  7591. "classmap": [
  7592. "Resources/stubs"
  7593. ]
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "MIT"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Nicolas Grekas",
  7602. "email": "p@tchwork.com"
  7603. },
  7604. {
  7605. "name": "Symfony Community",
  7606. "homepage": "https://symfony.com/contributors"
  7607. }
  7608. ],
  7609. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7610. "homepage": "https://symfony.com",
  7611. "keywords": [
  7612. "compatibility",
  7613. "intl",
  7614. "normalizer",
  7615. "polyfill",
  7616. "portable",
  7617. "shim"
  7618. ],
  7619. "support": {
  7620. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7621. },
  7622. "funding": [
  7623. {
  7624. "url": "https://symfony.com/sponsor",
  7625. "type": "custom"
  7626. },
  7627. {
  7628. "url": "https://github.com/fabpot",
  7629. "type": "github"
  7630. },
  7631. {
  7632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7633. "type": "tidelift"
  7634. }
  7635. ],
  7636. "time": "2023-01-26T09:26:14+00:00"
  7637. },
  7638. {
  7639. "name": "symfony/polyfill-mbstring",
  7640. "version": "v1.28.0",
  7641. "source": {
  7642. "type": "git",
  7643. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7644. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7645. },
  7646. "dist": {
  7647. "type": "zip",
  7648. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7649. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7650. "shasum": "",
  7651. "mirrors": [
  7652. {
  7653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7654. "preferred": true
  7655. }
  7656. ]
  7657. },
  7658. "require": {
  7659. "php": ">=7.1"
  7660. },
  7661. "provide": {
  7662. "ext-mbstring": "*"
  7663. },
  7664. "suggest": {
  7665. "ext-mbstring": "For best performance"
  7666. },
  7667. "type": "library",
  7668. "extra": {
  7669. "branch-alias": {
  7670. "dev-main": "1.28-dev"
  7671. },
  7672. "thanks": {
  7673. "name": "symfony/polyfill",
  7674. "url": "https://github.com/symfony/polyfill"
  7675. }
  7676. },
  7677. "autoload": {
  7678. "files": [
  7679. "bootstrap.php"
  7680. ],
  7681. "psr-4": {
  7682. "Symfony\\Polyfill\\Mbstring\\": ""
  7683. }
  7684. },
  7685. "notification-url": "https://packagist.org/downloads/",
  7686. "license": [
  7687. "MIT"
  7688. ],
  7689. "authors": [
  7690. {
  7691. "name": "Nicolas Grekas",
  7692. "email": "p@tchwork.com"
  7693. },
  7694. {
  7695. "name": "Symfony Community",
  7696. "homepage": "https://symfony.com/contributors"
  7697. }
  7698. ],
  7699. "description": "Symfony polyfill for the Mbstring extension",
  7700. "homepage": "https://symfony.com",
  7701. "keywords": [
  7702. "compatibility",
  7703. "mbstring",
  7704. "polyfill",
  7705. "portable",
  7706. "shim"
  7707. ],
  7708. "support": {
  7709. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7710. },
  7711. "funding": [
  7712. {
  7713. "url": "https://symfony.com/sponsor",
  7714. "type": "custom"
  7715. },
  7716. {
  7717. "url": "https://github.com/fabpot",
  7718. "type": "github"
  7719. },
  7720. {
  7721. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7722. "type": "tidelift"
  7723. }
  7724. ],
  7725. "time": "2023-07-28T09:04:16+00:00"
  7726. },
  7727. {
  7728. "name": "symfony/polyfill-php56",
  7729. "version": "v1.20.0",
  7730. "source": {
  7731. "type": "git",
  7732. "url": "https://github.com/symfony/polyfill-php56.git",
  7733. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  7734. },
  7735. "dist": {
  7736. "type": "zip",
  7737. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7738. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  7739. "shasum": "",
  7740. "mirrors": [
  7741. {
  7742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7743. "preferred": true
  7744. }
  7745. ]
  7746. },
  7747. "require": {
  7748. "php": ">=7.1"
  7749. },
  7750. "type": "metapackage",
  7751. "extra": {
  7752. "branch-alias": {
  7753. "dev-main": "1.20-dev"
  7754. },
  7755. "thanks": {
  7756. "name": "symfony/polyfill",
  7757. "url": "https://github.com/symfony/polyfill"
  7758. }
  7759. },
  7760. "notification-url": "https://packagist.org/downloads/",
  7761. "license": [
  7762. "MIT"
  7763. ],
  7764. "authors": [
  7765. {
  7766. "name": "Nicolas Grekas",
  7767. "email": "p@tchwork.com"
  7768. },
  7769. {
  7770. "name": "Symfony Community",
  7771. "homepage": "https://symfony.com/contributors"
  7772. }
  7773. ],
  7774. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  7775. "homepage": "https://symfony.com",
  7776. "keywords": [
  7777. "compatibility",
  7778. "polyfill",
  7779. "portable",
  7780. "shim"
  7781. ],
  7782. "support": {
  7783. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  7784. },
  7785. "funding": [
  7786. {
  7787. "url": "https://symfony.com/sponsor",
  7788. "type": "custom"
  7789. },
  7790. {
  7791. "url": "https://github.com/fabpot",
  7792. "type": "github"
  7793. },
  7794. {
  7795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7796. "type": "tidelift"
  7797. }
  7798. ],
  7799. "time": "2020-10-23T14:02:19+00:00"
  7800. },
  7801. {
  7802. "name": "symfony/polyfill-php72",
  7803. "version": "v1.28.0",
  7804. "source": {
  7805. "type": "git",
  7806. "url": "https://github.com/symfony/polyfill-php72.git",
  7807. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  7808. },
  7809. "dist": {
  7810. "type": "zip",
  7811. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  7812. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  7813. "shasum": "",
  7814. "mirrors": [
  7815. {
  7816. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7817. "preferred": true
  7818. }
  7819. ]
  7820. },
  7821. "require": {
  7822. "php": ">=7.1"
  7823. },
  7824. "type": "library",
  7825. "extra": {
  7826. "branch-alias": {
  7827. "dev-main": "1.28-dev"
  7828. },
  7829. "thanks": {
  7830. "name": "symfony/polyfill",
  7831. "url": "https://github.com/symfony/polyfill"
  7832. }
  7833. },
  7834. "autoload": {
  7835. "files": [
  7836. "bootstrap.php"
  7837. ],
  7838. "psr-4": {
  7839. "Symfony\\Polyfill\\Php72\\": ""
  7840. }
  7841. },
  7842. "notification-url": "https://packagist.org/downloads/",
  7843. "license": [
  7844. "MIT"
  7845. ],
  7846. "authors": [
  7847. {
  7848. "name": "Nicolas Grekas",
  7849. "email": "p@tchwork.com"
  7850. },
  7851. {
  7852. "name": "Symfony Community",
  7853. "homepage": "https://symfony.com/contributors"
  7854. }
  7855. ],
  7856. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7857. "homepage": "https://symfony.com",
  7858. "keywords": [
  7859. "compatibility",
  7860. "polyfill",
  7861. "portable",
  7862. "shim"
  7863. ],
  7864. "support": {
  7865. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  7866. },
  7867. "funding": [
  7868. {
  7869. "url": "https://symfony.com/sponsor",
  7870. "type": "custom"
  7871. },
  7872. {
  7873. "url": "https://github.com/fabpot",
  7874. "type": "github"
  7875. },
  7876. {
  7877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7878. "type": "tidelift"
  7879. }
  7880. ],
  7881. "time": "2023-01-26T09:26:14+00:00"
  7882. },
  7883. {
  7884. "name": "symfony/polyfill-php73",
  7885. "version": "v1.28.0",
  7886. "source": {
  7887. "type": "git",
  7888. "url": "https://github.com/symfony/polyfill-php73.git",
  7889. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  7890. },
  7891. "dist": {
  7892. "type": "zip",
  7893. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7894. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7895. "shasum": "",
  7896. "mirrors": [
  7897. {
  7898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7899. "preferred": true
  7900. }
  7901. ]
  7902. },
  7903. "require": {
  7904. "php": ">=7.1"
  7905. },
  7906. "type": "library",
  7907. "extra": {
  7908. "branch-alias": {
  7909. "dev-main": "1.28-dev"
  7910. },
  7911. "thanks": {
  7912. "name": "symfony/polyfill",
  7913. "url": "https://github.com/symfony/polyfill"
  7914. }
  7915. },
  7916. "autoload": {
  7917. "files": [
  7918. "bootstrap.php"
  7919. ],
  7920. "psr-4": {
  7921. "Symfony\\Polyfill\\Php73\\": ""
  7922. },
  7923. "classmap": [
  7924. "Resources/stubs"
  7925. ]
  7926. },
  7927. "notification-url": "https://packagist.org/downloads/",
  7928. "license": [
  7929. "MIT"
  7930. ],
  7931. "authors": [
  7932. {
  7933. "name": "Nicolas Grekas",
  7934. "email": "p@tchwork.com"
  7935. },
  7936. {
  7937. "name": "Symfony Community",
  7938. "homepage": "https://symfony.com/contributors"
  7939. }
  7940. ],
  7941. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7942. "homepage": "https://symfony.com",
  7943. "keywords": [
  7944. "compatibility",
  7945. "polyfill",
  7946. "portable",
  7947. "shim"
  7948. ],
  7949. "support": {
  7950. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7951. },
  7952. "funding": [
  7953. {
  7954. "url": "https://symfony.com/sponsor",
  7955. "type": "custom"
  7956. },
  7957. {
  7958. "url": "https://github.com/fabpot",
  7959. "type": "github"
  7960. },
  7961. {
  7962. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7963. "type": "tidelift"
  7964. }
  7965. ],
  7966. "time": "2023-01-26T09:26:14+00:00"
  7967. },
  7968. {
  7969. "name": "symfony/polyfill-php80",
  7970. "version": "v1.28.0",
  7971. "source": {
  7972. "type": "git",
  7973. "url": "https://github.com/symfony/polyfill-php80.git",
  7974. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7975. },
  7976. "dist": {
  7977. "type": "zip",
  7978. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7979. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7980. "shasum": "",
  7981. "mirrors": [
  7982. {
  7983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7984. "preferred": true
  7985. }
  7986. ]
  7987. },
  7988. "require": {
  7989. "php": ">=7.1"
  7990. },
  7991. "type": "library",
  7992. "extra": {
  7993. "branch-alias": {
  7994. "dev-main": "1.28-dev"
  7995. },
  7996. "thanks": {
  7997. "name": "symfony/polyfill",
  7998. "url": "https://github.com/symfony/polyfill"
  7999. }
  8000. },
  8001. "autoload": {
  8002. "files": [
  8003. "bootstrap.php"
  8004. ],
  8005. "psr-4": {
  8006. "Symfony\\Polyfill\\Php80\\": ""
  8007. },
  8008. "classmap": [
  8009. "Resources/stubs"
  8010. ]
  8011. },
  8012. "notification-url": "https://packagist.org/downloads/",
  8013. "license": [
  8014. "MIT"
  8015. ],
  8016. "authors": [
  8017. {
  8018. "name": "Ion Bazan",
  8019. "email": "ion.bazan@gmail.com"
  8020. },
  8021. {
  8022. "name": "Nicolas Grekas",
  8023. "email": "p@tchwork.com"
  8024. },
  8025. {
  8026. "name": "Symfony Community",
  8027. "homepage": "https://symfony.com/contributors"
  8028. }
  8029. ],
  8030. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8031. "homepage": "https://symfony.com",
  8032. "keywords": [
  8033. "compatibility",
  8034. "polyfill",
  8035. "portable",
  8036. "shim"
  8037. ],
  8038. "support": {
  8039. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  8040. },
  8041. "funding": [
  8042. {
  8043. "url": "https://symfony.com/sponsor",
  8044. "type": "custom"
  8045. },
  8046. {
  8047. "url": "https://github.com/fabpot",
  8048. "type": "github"
  8049. },
  8050. {
  8051. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8052. "type": "tidelift"
  8053. }
  8054. ],
  8055. "time": "2023-01-26T09:26:14+00:00"
  8056. },
  8057. {
  8058. "name": "symfony/process",
  8059. "version": "v4.4.44",
  8060. "source": {
  8061. "type": "git",
  8062. "url": "https://github.com/symfony/process.git",
  8063. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2"
  8064. },
  8065. "dist": {
  8066. "type": "zip",
  8067. "url": "https://api.github.com/repos/symfony/process/zipball/5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  8068. "reference": "5cee9cdc4f7805e2699d9fd66991a0e6df8252a2",
  8069. "shasum": "",
  8070. "mirrors": [
  8071. {
  8072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8073. "preferred": true
  8074. }
  8075. ]
  8076. },
  8077. "require": {
  8078. "php": ">=7.1.3",
  8079. "symfony/polyfill-php80": "^1.16"
  8080. },
  8081. "type": "library",
  8082. "autoload": {
  8083. "psr-4": {
  8084. "Symfony\\Component\\Process\\": ""
  8085. },
  8086. "exclude-from-classmap": [
  8087. "/Tests/"
  8088. ]
  8089. },
  8090. "notification-url": "https://packagist.org/downloads/",
  8091. "license": [
  8092. "MIT"
  8093. ],
  8094. "authors": [
  8095. {
  8096. "name": "Fabien Potencier",
  8097. "email": "fabien@symfony.com"
  8098. },
  8099. {
  8100. "name": "Symfony Community",
  8101. "homepage": "https://symfony.com/contributors"
  8102. }
  8103. ],
  8104. "description": "Executes commands in sub-processes",
  8105. "homepage": "https://symfony.com",
  8106. "support": {
  8107. "source": "https://github.com/symfony/process/tree/v4.4.44"
  8108. },
  8109. "funding": [
  8110. {
  8111. "url": "https://symfony.com/sponsor",
  8112. "type": "custom"
  8113. },
  8114. {
  8115. "url": "https://github.com/fabpot",
  8116. "type": "github"
  8117. },
  8118. {
  8119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8120. "type": "tidelift"
  8121. }
  8122. ],
  8123. "time": "2022-06-27T13:16:42+00:00"
  8124. },
  8125. {
  8126. "name": "symfony/psr-http-message-bridge",
  8127. "version": "v2.1.4",
  8128. "source": {
  8129. "type": "git",
  8130. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  8131. "reference": "a125b93ef378c492e274f217874906fb9babdebb"
  8132. },
  8133. "dist": {
  8134. "type": "zip",
  8135. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a125b93ef378c492e274f217874906fb9babdebb",
  8136. "reference": "a125b93ef378c492e274f217874906fb9babdebb",
  8137. "shasum": "",
  8138. "mirrors": [
  8139. {
  8140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8141. "preferred": true
  8142. }
  8143. ]
  8144. },
  8145. "require": {
  8146. "php": ">=7.1",
  8147. "psr/http-message": "^1.0",
  8148. "symfony/http-foundation": "^4.4 || ^5.0 || ^6.0"
  8149. },
  8150. "require-dev": {
  8151. "nyholm/psr7": "^1.1",
  8152. "psr/log": "^1.1 || ^2 || ^3",
  8153. "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0",
  8154. "symfony/config": "^4.4 || ^5.0 || ^6.0",
  8155. "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
  8156. "symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0",
  8157. "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0",
  8158. "symfony/phpunit-bridge": "^5.4@dev || ^6.0"
  8159. },
  8160. "suggest": {
  8161. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  8162. },
  8163. "type": "symfony-bridge",
  8164. "extra": {
  8165. "branch-alias": {
  8166. "dev-main": "2.1-dev"
  8167. }
  8168. },
  8169. "autoload": {
  8170. "psr-4": {
  8171. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  8172. },
  8173. "exclude-from-classmap": [
  8174. "/Tests/"
  8175. ]
  8176. },
  8177. "notification-url": "https://packagist.org/downloads/",
  8178. "license": [
  8179. "MIT"
  8180. ],
  8181. "authors": [
  8182. {
  8183. "name": "Fabien Potencier",
  8184. "email": "fabien@symfony.com"
  8185. },
  8186. {
  8187. "name": "Symfony Community",
  8188. "homepage": "http://symfony.com/contributors"
  8189. }
  8190. ],
  8191. "description": "PSR HTTP message bridge",
  8192. "homepage": "http://symfony.com",
  8193. "keywords": [
  8194. "http",
  8195. "http-message",
  8196. "psr-17",
  8197. "psr-7"
  8198. ],
  8199. "support": {
  8200. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  8201. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.1.4"
  8202. },
  8203. "funding": [
  8204. {
  8205. "url": "https://symfony.com/sponsor",
  8206. "type": "custom"
  8207. },
  8208. {
  8209. "url": "https://github.com/fabpot",
  8210. "type": "github"
  8211. },
  8212. {
  8213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8214. "type": "tidelift"
  8215. }
  8216. ],
  8217. "time": "2022-11-28T22:46:34+00:00"
  8218. },
  8219. {
  8220. "name": "symfony/routing",
  8221. "version": "v4.4.44",
  8222. "source": {
  8223. "type": "git",
  8224. "url": "https://github.com/symfony/routing.git",
  8225. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae"
  8226. },
  8227. "dist": {
  8228. "type": "zip",
  8229. "url": "https://api.github.com/repos/symfony/routing/zipball/f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  8230. "reference": "f7751fd8b60a07f3f349947a309b5bdfce22d6ae",
  8231. "shasum": "",
  8232. "mirrors": [
  8233. {
  8234. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8235. "preferred": true
  8236. }
  8237. ]
  8238. },
  8239. "require": {
  8240. "php": ">=7.1.3",
  8241. "symfony/polyfill-php80": "^1.16"
  8242. },
  8243. "conflict": {
  8244. "symfony/config": "<4.2",
  8245. "symfony/dependency-injection": "<3.4",
  8246. "symfony/yaml": "<3.4"
  8247. },
  8248. "require-dev": {
  8249. "doctrine/annotations": "^1.10.4",
  8250. "psr/log": "^1|^2|^3",
  8251. "symfony/config": "^4.2|^5.0",
  8252. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8253. "symfony/expression-language": "^3.4|^4.0|^5.0",
  8254. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  8255. "symfony/yaml": "^3.4|^4.0|^5.0"
  8256. },
  8257. "suggest": {
  8258. "doctrine/annotations": "For using the annotation loader",
  8259. "symfony/config": "For using the all-in-one router or any loader",
  8260. "symfony/expression-language": "For using expression matching",
  8261. "symfony/http-foundation": "For using a Symfony Request object",
  8262. "symfony/yaml": "For using the YAML loader"
  8263. },
  8264. "type": "library",
  8265. "autoload": {
  8266. "psr-4": {
  8267. "Symfony\\Component\\Routing\\": ""
  8268. },
  8269. "exclude-from-classmap": [
  8270. "/Tests/"
  8271. ]
  8272. },
  8273. "notification-url": "https://packagist.org/downloads/",
  8274. "license": [
  8275. "MIT"
  8276. ],
  8277. "authors": [
  8278. {
  8279. "name": "Fabien Potencier",
  8280. "email": "fabien@symfony.com"
  8281. },
  8282. {
  8283. "name": "Symfony Community",
  8284. "homepage": "https://symfony.com/contributors"
  8285. }
  8286. ],
  8287. "description": "Maps an HTTP request to a set of configuration variables",
  8288. "homepage": "https://symfony.com",
  8289. "keywords": [
  8290. "router",
  8291. "routing",
  8292. "uri",
  8293. "url"
  8294. ],
  8295. "support": {
  8296. "source": "https://github.com/symfony/routing/tree/v4.4.44"
  8297. },
  8298. "funding": [
  8299. {
  8300. "url": "https://symfony.com/sponsor",
  8301. "type": "custom"
  8302. },
  8303. {
  8304. "url": "https://github.com/fabpot",
  8305. "type": "github"
  8306. },
  8307. {
  8308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8309. "type": "tidelift"
  8310. }
  8311. ],
  8312. "time": "2022-07-20T09:59:04+00:00"
  8313. },
  8314. {
  8315. "name": "symfony/service-contracts",
  8316. "version": "v2.5.2",
  8317. "source": {
  8318. "type": "git",
  8319. "url": "https://github.com/symfony/service-contracts.git",
  8320. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  8321. },
  8322. "dist": {
  8323. "type": "zip",
  8324. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8325. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  8326. "shasum": "",
  8327. "mirrors": [
  8328. {
  8329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8330. "preferred": true
  8331. }
  8332. ]
  8333. },
  8334. "require": {
  8335. "php": ">=7.2.5",
  8336. "psr/container": "^1.1",
  8337. "symfony/deprecation-contracts": "^2.1|^3"
  8338. },
  8339. "conflict": {
  8340. "ext-psr": "<1.1|>=2"
  8341. },
  8342. "suggest": {
  8343. "symfony/service-implementation": ""
  8344. },
  8345. "type": "library",
  8346. "extra": {
  8347. "branch-alias": {
  8348. "dev-main": "2.5-dev"
  8349. },
  8350. "thanks": {
  8351. "name": "symfony/contracts",
  8352. "url": "https://github.com/symfony/contracts"
  8353. }
  8354. },
  8355. "autoload": {
  8356. "psr-4": {
  8357. "Symfony\\Contracts\\Service\\": ""
  8358. }
  8359. },
  8360. "notification-url": "https://packagist.org/downloads/",
  8361. "license": [
  8362. "MIT"
  8363. ],
  8364. "authors": [
  8365. {
  8366. "name": "Nicolas Grekas",
  8367. "email": "p@tchwork.com"
  8368. },
  8369. {
  8370. "name": "Symfony Community",
  8371. "homepage": "https://symfony.com/contributors"
  8372. }
  8373. ],
  8374. "description": "Generic abstractions related to writing services",
  8375. "homepage": "https://symfony.com",
  8376. "keywords": [
  8377. "abstractions",
  8378. "contracts",
  8379. "decoupling",
  8380. "interfaces",
  8381. "interoperability",
  8382. "standards"
  8383. ],
  8384. "support": {
  8385. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  8386. },
  8387. "funding": [
  8388. {
  8389. "url": "https://symfony.com/sponsor",
  8390. "type": "custom"
  8391. },
  8392. {
  8393. "url": "https://github.com/fabpot",
  8394. "type": "github"
  8395. },
  8396. {
  8397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8398. "type": "tidelift"
  8399. }
  8400. ],
  8401. "time": "2022-05-30T19:17:29+00:00"
  8402. },
  8403. {
  8404. "name": "symfony/translation",
  8405. "version": "v4.4.47",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/symfony/translation.git",
  8409. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/symfony/translation/zipball/45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  8414. "reference": "45036b1d53accc48fe9bab71ccd86d57eba0dd94",
  8415. "shasum": "",
  8416. "mirrors": [
  8417. {
  8418. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8419. "preferred": true
  8420. }
  8421. ]
  8422. },
  8423. "require": {
  8424. "php": ">=7.1.3",
  8425. "symfony/polyfill-mbstring": "~1.0",
  8426. "symfony/polyfill-php80": "^1.16",
  8427. "symfony/translation-contracts": "^1.1.6|^2"
  8428. },
  8429. "conflict": {
  8430. "symfony/config": "<3.4",
  8431. "symfony/dependency-injection": "<3.4",
  8432. "symfony/http-kernel": "<4.4",
  8433. "symfony/yaml": "<3.4"
  8434. },
  8435. "provide": {
  8436. "symfony/translation-implementation": "1.0|2.0"
  8437. },
  8438. "require-dev": {
  8439. "psr/log": "^1|^2|^3",
  8440. "symfony/config": "^3.4|^4.0|^5.0",
  8441. "symfony/console": "^3.4|^4.0|^5.0",
  8442. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  8443. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  8444. "symfony/http-kernel": "^4.4",
  8445. "symfony/intl": "^3.4|^4.0|^5.0",
  8446. "symfony/service-contracts": "^1.1.2|^2",
  8447. "symfony/yaml": "^3.4|^4.0|^5.0"
  8448. },
  8449. "suggest": {
  8450. "psr/log-implementation": "To use logging capability in translator",
  8451. "symfony/config": "",
  8452. "symfony/yaml": ""
  8453. },
  8454. "type": "library",
  8455. "autoload": {
  8456. "psr-4": {
  8457. "Symfony\\Component\\Translation\\": ""
  8458. },
  8459. "exclude-from-classmap": [
  8460. "/Tests/"
  8461. ]
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "MIT"
  8466. ],
  8467. "authors": [
  8468. {
  8469. "name": "Fabien Potencier",
  8470. "email": "fabien@symfony.com"
  8471. },
  8472. {
  8473. "name": "Symfony Community",
  8474. "homepage": "https://symfony.com/contributors"
  8475. }
  8476. ],
  8477. "description": "Provides tools to internationalize your application",
  8478. "homepage": "https://symfony.com",
  8479. "support": {
  8480. "source": "https://github.com/symfony/translation/tree/v4.4.47"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://symfony.com/sponsor",
  8485. "type": "custom"
  8486. },
  8487. {
  8488. "url": "https://github.com/fabpot",
  8489. "type": "github"
  8490. },
  8491. {
  8492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8493. "type": "tidelift"
  8494. }
  8495. ],
  8496. "time": "2022-10-03T15:15:11+00:00"
  8497. },
  8498. {
  8499. "name": "symfony/translation-contracts",
  8500. "version": "v2.5.2",
  8501. "source": {
  8502. "type": "git",
  8503. "url": "https://github.com/symfony/translation-contracts.git",
  8504. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  8505. },
  8506. "dist": {
  8507. "type": "zip",
  8508. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  8509. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  8510. "shasum": "",
  8511. "mirrors": [
  8512. {
  8513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8514. "preferred": true
  8515. }
  8516. ]
  8517. },
  8518. "require": {
  8519. "php": ">=7.2.5"
  8520. },
  8521. "suggest": {
  8522. "symfony/translation-implementation": ""
  8523. },
  8524. "type": "library",
  8525. "extra": {
  8526. "branch-alias": {
  8527. "dev-main": "2.5-dev"
  8528. },
  8529. "thanks": {
  8530. "name": "symfony/contracts",
  8531. "url": "https://github.com/symfony/contracts"
  8532. }
  8533. },
  8534. "autoload": {
  8535. "psr-4": {
  8536. "Symfony\\Contracts\\Translation\\": ""
  8537. }
  8538. },
  8539. "notification-url": "https://packagist.org/downloads/",
  8540. "license": [
  8541. "MIT"
  8542. ],
  8543. "authors": [
  8544. {
  8545. "name": "Nicolas Grekas",
  8546. "email": "p@tchwork.com"
  8547. },
  8548. {
  8549. "name": "Symfony Community",
  8550. "homepage": "https://symfony.com/contributors"
  8551. }
  8552. ],
  8553. "description": "Generic abstractions related to translation",
  8554. "homepage": "https://symfony.com",
  8555. "keywords": [
  8556. "abstractions",
  8557. "contracts",
  8558. "decoupling",
  8559. "interfaces",
  8560. "interoperability",
  8561. "standards"
  8562. ],
  8563. "support": {
  8564. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  8565. },
  8566. "funding": [
  8567. {
  8568. "url": "https://symfony.com/sponsor",
  8569. "type": "custom"
  8570. },
  8571. {
  8572. "url": "https://github.com/fabpot",
  8573. "type": "github"
  8574. },
  8575. {
  8576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8577. "type": "tidelift"
  8578. }
  8579. ],
  8580. "time": "2022-06-27T16:58:25+00:00"
  8581. },
  8582. {
  8583. "name": "symfony/var-dumper",
  8584. "version": "v4.4.47",
  8585. "source": {
  8586. "type": "git",
  8587. "url": "https://github.com/symfony/var-dumper.git",
  8588. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  8589. },
  8590. "dist": {
  8591. "type": "zip",
  8592. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  8593. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  8594. "shasum": "",
  8595. "mirrors": [
  8596. {
  8597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8598. "preferred": true
  8599. }
  8600. ]
  8601. },
  8602. "require": {
  8603. "php": ">=7.1.3",
  8604. "symfony/polyfill-mbstring": "~1.0",
  8605. "symfony/polyfill-php72": "~1.5",
  8606. "symfony/polyfill-php80": "^1.16"
  8607. },
  8608. "conflict": {
  8609. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  8610. "symfony/console": "<3.4"
  8611. },
  8612. "require-dev": {
  8613. "ext-iconv": "*",
  8614. "symfony/console": "^3.4|^4.0|^5.0",
  8615. "symfony/process": "^4.4|^5.0",
  8616. "twig/twig": "^1.43|^2.13|^3.0.4"
  8617. },
  8618. "suggest": {
  8619. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8620. "ext-intl": "To show region name in time zone dump",
  8621. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8622. },
  8623. "bin": [
  8624. "Resources/bin/var-dump-server"
  8625. ],
  8626. "type": "library",
  8627. "autoload": {
  8628. "files": [
  8629. "Resources/functions/dump.php"
  8630. ],
  8631. "psr-4": {
  8632. "Symfony\\Component\\VarDumper\\": ""
  8633. },
  8634. "exclude-from-classmap": [
  8635. "/Tests/"
  8636. ]
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "MIT"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "Nicolas Grekas",
  8645. "email": "p@tchwork.com"
  8646. },
  8647. {
  8648. "name": "Symfony Community",
  8649. "homepage": "https://symfony.com/contributors"
  8650. }
  8651. ],
  8652. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8653. "homepage": "https://symfony.com",
  8654. "keywords": [
  8655. "debug",
  8656. "dump"
  8657. ],
  8658. "support": {
  8659. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  8660. },
  8661. "funding": [
  8662. {
  8663. "url": "https://symfony.com/sponsor",
  8664. "type": "custom"
  8665. },
  8666. {
  8667. "url": "https://github.com/fabpot",
  8668. "type": "github"
  8669. },
  8670. {
  8671. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8672. "type": "tidelift"
  8673. }
  8674. ],
  8675. "time": "2022-10-03T15:15:11+00:00"
  8676. },
  8677. {
  8678. "name": "symfony/var-exporter",
  8679. "version": "v5.4.26",
  8680. "source": {
  8681. "type": "git",
  8682. "url": "https://github.com/symfony/var-exporter.git",
  8683. "reference": "11401fe94f960249b3c63a488c63ba73091c1e4a"
  8684. },
  8685. "dist": {
  8686. "type": "zip",
  8687. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/11401fe94f960249b3c63a488c63ba73091c1e4a",
  8688. "reference": "11401fe94f960249b3c63a488c63ba73091c1e4a",
  8689. "shasum": "",
  8690. "mirrors": [
  8691. {
  8692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8693. "preferred": true
  8694. }
  8695. ]
  8696. },
  8697. "require": {
  8698. "php": ">=7.2.5",
  8699. "symfony/polyfill-php80": "^1.16"
  8700. },
  8701. "require-dev": {
  8702. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  8703. },
  8704. "type": "library",
  8705. "autoload": {
  8706. "psr-4": {
  8707. "Symfony\\Component\\VarExporter\\": ""
  8708. },
  8709. "exclude-from-classmap": [
  8710. "/Tests/"
  8711. ]
  8712. },
  8713. "notification-url": "https://packagist.org/downloads/",
  8714. "license": [
  8715. "MIT"
  8716. ],
  8717. "authors": [
  8718. {
  8719. "name": "Nicolas Grekas",
  8720. "email": "p@tchwork.com"
  8721. },
  8722. {
  8723. "name": "Symfony Community",
  8724. "homepage": "https://symfony.com/contributors"
  8725. }
  8726. ],
  8727. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8728. "homepage": "https://symfony.com",
  8729. "keywords": [
  8730. "clone",
  8731. "construct",
  8732. "export",
  8733. "hydrate",
  8734. "instantiate",
  8735. "serialize"
  8736. ],
  8737. "support": {
  8738. "source": "https://github.com/symfony/var-exporter/tree/v5.4.26"
  8739. },
  8740. "funding": [
  8741. {
  8742. "url": "https://symfony.com/sponsor",
  8743. "type": "custom"
  8744. },
  8745. {
  8746. "url": "https://github.com/fabpot",
  8747. "type": "github"
  8748. },
  8749. {
  8750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8751. "type": "tidelift"
  8752. }
  8753. ],
  8754. "time": "2023-07-20T07:21:16+00:00"
  8755. },
  8756. {
  8757. "name": "tijsverkoyen/css-to-inline-styles",
  8758. "version": "2.2.6",
  8759. "source": {
  8760. "type": "git",
  8761. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8762. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c"
  8763. },
  8764. "dist": {
  8765. "type": "zip",
  8766. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8767. "reference": "c42125b83a4fa63b187fdf29f9c93cb7733da30c",
  8768. "shasum": "",
  8769. "mirrors": [
  8770. {
  8771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8772. "preferred": true
  8773. }
  8774. ]
  8775. },
  8776. "require": {
  8777. "ext-dom": "*",
  8778. "ext-libxml": "*",
  8779. "php": "^5.5 || ^7.0 || ^8.0",
  8780. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8781. },
  8782. "require-dev": {
  8783. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8784. },
  8785. "type": "library",
  8786. "extra": {
  8787. "branch-alias": {
  8788. "dev-master": "2.2.x-dev"
  8789. }
  8790. },
  8791. "autoload": {
  8792. "psr-4": {
  8793. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8794. }
  8795. },
  8796. "notification-url": "https://packagist.org/downloads/",
  8797. "license": [
  8798. "BSD-3-Clause"
  8799. ],
  8800. "authors": [
  8801. {
  8802. "name": "Tijs Verkoyen",
  8803. "email": "css_to_inline_styles@verkoyen.eu",
  8804. "role": "Developer"
  8805. }
  8806. ],
  8807. "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.",
  8808. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8809. "support": {
  8810. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8811. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.6"
  8812. },
  8813. "time": "2023-01-03T09:29:04+00:00"
  8814. },
  8815. {
  8816. "name": "tymon/jwt-auth",
  8817. "version": "1.0.2",
  8818. "source": {
  8819. "type": "git",
  8820. "url": "https://github.com/tymondesigns/jwt-auth.git",
  8821. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  8822. },
  8823. "dist": {
  8824. "type": "zip",
  8825. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  8826. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  8827. "shasum": "",
  8828. "mirrors": [
  8829. {
  8830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8831. "preferred": true
  8832. }
  8833. ]
  8834. },
  8835. "require": {
  8836. "illuminate/auth": "^5.2|^6|^7|^8",
  8837. "illuminate/contracts": "^5.2|^6|^7|^8",
  8838. "illuminate/http": "^5.2|^6|^7|^8",
  8839. "illuminate/support": "^5.2|^6|^7|^8",
  8840. "lcobucci/jwt": "<3.4",
  8841. "namshi/jose": "^7.0",
  8842. "nesbot/carbon": "^1.0|^2.0",
  8843. "php": "^5.5.9|^7.0"
  8844. },
  8845. "require-dev": {
  8846. "illuminate/console": "^5.2|^6|^7|^8",
  8847. "illuminate/database": "^5.2|^6|^7|^8",
  8848. "illuminate/routing": "^5.2|^6|^7|^8",
  8849. "mockery/mockery": ">=0.9.9",
  8850. "phpunit/phpunit": "~4.8|~6.0"
  8851. },
  8852. "type": "library",
  8853. "extra": {
  8854. "branch-alias": {
  8855. "dev-develop": "1.0-dev"
  8856. },
  8857. "laravel": {
  8858. "aliases": {
  8859. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  8860. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  8861. },
  8862. "providers": [
  8863. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  8864. ]
  8865. }
  8866. },
  8867. "autoload": {
  8868. "psr-4": {
  8869. "Tymon\\JWTAuth\\": "src/"
  8870. }
  8871. },
  8872. "notification-url": "https://packagist.org/downloads/",
  8873. "license": [
  8874. "MIT"
  8875. ],
  8876. "authors": [
  8877. {
  8878. "name": "Sean Tymon",
  8879. "email": "tymon148@gmail.com",
  8880. "homepage": "https://tymon.xyz",
  8881. "role": "Developer"
  8882. }
  8883. ],
  8884. "description": "JSON Web Token Authentication for Laravel and Lumen",
  8885. "homepage": "https://github.com/tymondesigns/jwt-auth",
  8886. "keywords": [
  8887. "Authentication",
  8888. "JSON Web Token",
  8889. "auth",
  8890. "jwt",
  8891. "laravel"
  8892. ],
  8893. "support": {
  8894. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  8895. "source": "https://github.com/tymondesigns/jwt-auth"
  8896. },
  8897. "funding": [
  8898. {
  8899. "url": "https://www.patreon.com/seantymon",
  8900. "type": "patreon"
  8901. }
  8902. ],
  8903. "time": "2020-11-27T12:32:42+00:00"
  8904. },
  8905. {
  8906. "name": "vlucas/phpdotenv",
  8907. "version": "v3.6.10",
  8908. "source": {
  8909. "type": "git",
  8910. "url": "https://github.com/vlucas/phpdotenv.git",
  8911. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e"
  8912. },
  8913. "dist": {
  8914. "type": "zip",
  8915. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5b547cdb25825f10251370f57ba5d9d924e6f68e",
  8916. "reference": "5b547cdb25825f10251370f57ba5d9d924e6f68e",
  8917. "shasum": "",
  8918. "mirrors": [
  8919. {
  8920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8921. "preferred": true
  8922. }
  8923. ]
  8924. },
  8925. "require": {
  8926. "php": "^5.4 || ^7.0 || ^8.0",
  8927. "phpoption/phpoption": "^1.5.2",
  8928. "symfony/polyfill-ctype": "^1.17"
  8929. },
  8930. "require-dev": {
  8931. "ext-filter": "*",
  8932. "ext-pcre": "*",
  8933. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  8934. },
  8935. "suggest": {
  8936. "ext-filter": "Required to use the boolean validator.",
  8937. "ext-pcre": "Required to use most of the library."
  8938. },
  8939. "type": "library",
  8940. "extra": {
  8941. "branch-alias": {
  8942. "dev-master": "3.6-dev"
  8943. }
  8944. },
  8945. "autoload": {
  8946. "psr-4": {
  8947. "Dotenv\\": "src/"
  8948. }
  8949. },
  8950. "notification-url": "https://packagist.org/downloads/",
  8951. "license": [
  8952. "BSD-3-Clause"
  8953. ],
  8954. "authors": [
  8955. {
  8956. "name": "Graham Campbell",
  8957. "email": "hello@gjcampbell.co.uk",
  8958. "homepage": "https://github.com/GrahamCampbell"
  8959. },
  8960. {
  8961. "name": "Vance Lucas",
  8962. "email": "vance@vancelucas.com",
  8963. "homepage": "https://github.com/vlucas"
  8964. }
  8965. ],
  8966. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8967. "keywords": [
  8968. "dotenv",
  8969. "env",
  8970. "environment"
  8971. ],
  8972. "support": {
  8973. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8974. "source": "https://github.com/vlucas/phpdotenv/tree/v3.6.10"
  8975. },
  8976. "funding": [
  8977. {
  8978. "url": "https://github.com/GrahamCampbell",
  8979. "type": "github"
  8980. },
  8981. {
  8982. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8983. "type": "tidelift"
  8984. }
  8985. ],
  8986. "time": "2021-12-12T23:02:06+00:00"
  8987. },
  8988. {
  8989. "name": "webmozart/assert",
  8990. "version": "1.11.0",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/webmozarts/assert.git",
  8994. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8999. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9000. "shasum": "",
  9001. "mirrors": [
  9002. {
  9003. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9004. "preferred": true
  9005. }
  9006. ]
  9007. },
  9008. "require": {
  9009. "ext-ctype": "*",
  9010. "php": "^7.2 || ^8.0"
  9011. },
  9012. "conflict": {
  9013. "phpstan/phpstan": "<0.12.20",
  9014. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9015. },
  9016. "require-dev": {
  9017. "phpunit/phpunit": "^8.5.13"
  9018. },
  9019. "type": "library",
  9020. "extra": {
  9021. "branch-alias": {
  9022. "dev-master": "1.10-dev"
  9023. }
  9024. },
  9025. "autoload": {
  9026. "psr-4": {
  9027. "Webmozart\\Assert\\": "src/"
  9028. }
  9029. },
  9030. "notification-url": "https://packagist.org/downloads/",
  9031. "license": [
  9032. "MIT"
  9033. ],
  9034. "authors": [
  9035. {
  9036. "name": "Bernhard Schussek",
  9037. "email": "bschussek@gmail.com"
  9038. }
  9039. ],
  9040. "description": "Assertions to validate method input/output with nice error messages.",
  9041. "keywords": [
  9042. "assert",
  9043. "check",
  9044. "validate"
  9045. ],
  9046. "support": {
  9047. "issues": "https://github.com/webmozarts/assert/issues",
  9048. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9049. },
  9050. "time": "2022-06-03T18:03:27+00:00"
  9051. },
  9052. {
  9053. "name": "zgldh/qiniu-laravel-storage",
  9054. "version": "v0.10.4",
  9055. "source": {
  9056. "type": "git",
  9057. "url": "https://github.com/zgldh/qiniu-laravel-storage.git",
  9058. "reference": "9fc08350af8cc4ffbf61924a31bcfa23d2e96f8d"
  9059. },
  9060. "dist": {
  9061. "type": "zip",
  9062. "url": "https://api.github.com/repos/zgldh/qiniu-laravel-storage/zipball/9fc08350af8cc4ffbf61924a31bcfa23d2e96f8d",
  9063. "reference": "9fc08350af8cc4ffbf61924a31bcfa23d2e96f8d",
  9064. "shasum": "",
  9065. "mirrors": [
  9066. {
  9067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9068. "preferred": true
  9069. }
  9070. ]
  9071. },
  9072. "require": {
  9073. "league/flysystem": "^1.0",
  9074. "php": ">=5.3.3",
  9075. "qiniu/php-sdk": "^7.2"
  9076. },
  9077. "type": "library",
  9078. "extra": {
  9079. "laravel": {
  9080. "providers": [
  9081. "zgldh\\QiniuStorage\\QiniuFilesystemServiceProvider"
  9082. ]
  9083. }
  9084. },
  9085. "autoload": {
  9086. "psr-4": {
  9087. "zgldh\\QiniuStorage\\": "src/"
  9088. }
  9089. },
  9090. "notification-url": "https://packagist.org/downloads/",
  9091. "license": [
  9092. "MIT"
  9093. ],
  9094. "authors": [
  9095. {
  9096. "name": "zgldh",
  9097. "email": "zgldh@hotmail.com",
  9098. "role": "Original Developer"
  9099. },
  9100. {
  9101. "name": "abcsun",
  9102. "email": "chenglongsun_nj@163.com",
  9103. "homepage": "http://github.com/abcsun",
  9104. "role": "Developer"
  9105. }
  9106. ],
  9107. "description": "Qiniu Resource (Cloud) Storage SDK for Laravel 5",
  9108. "keywords": [
  9109. "cloud",
  9110. "laravel",
  9111. "qiniu",
  9112. "sdk",
  9113. "storage"
  9114. ],
  9115. "support": {
  9116. "issues": "https://github.com/zgldh/qiniu-laravel-storage/issues",
  9117. "source": "https://github.com/zgldh/qiniu-laravel-storage/tree/v0.10.4"
  9118. },
  9119. "time": "2020-12-16T06:17:04+00:00"
  9120. },
  9121. {
  9122. "name": "zhuzhichao/ip-location-zh",
  9123. "version": "v2.4.5",
  9124. "source": {
  9125. "type": "git",
  9126. "url": "https://github.com/zhuzhichao/ip-location-zh.git",
  9127. "reference": "24b74242d96cb318824fa9b920f5476f2bba9a41"
  9128. },
  9129. "dist": {
  9130. "type": "zip",
  9131. "url": "https://api.github.com/repos/zhuzhichao/ip-location-zh/zipball/24b74242d96cb318824fa9b920f5476f2bba9a41",
  9132. "reference": "24b74242d96cb318824fa9b920f5476f2bba9a41",
  9133. "shasum": "",
  9134. "mirrors": [
  9135. {
  9136. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9137. "preferred": true
  9138. }
  9139. ]
  9140. },
  9141. "require-dev": {
  9142. "phpunit/phpunit": "^4.0"
  9143. },
  9144. "type": "library",
  9145. "extra": {
  9146. "laravel": {
  9147. "aliases": {
  9148. "Ip": "Zhuzhichao\\IpLocationZh\\Ip"
  9149. }
  9150. }
  9151. },
  9152. "autoload": {
  9153. "psr-4": {
  9154. "Zhuzhichao\\IpLocationZh\\": "src/"
  9155. }
  9156. },
  9157. "notification-url": "https://packagist.org/downloads/",
  9158. "license": [
  9159. "MIT"
  9160. ],
  9161. "authors": [
  9162. {
  9163. "name": "zhuzhichao",
  9164. "email": "me@zhuzhichao.com"
  9165. }
  9166. ],
  9167. "description": "get the ip's location info with Chinese",
  9168. "keywords": [
  9169. "Chinese",
  9170. "IP",
  9171. "location"
  9172. ],
  9173. "support": {
  9174. "issues": "https://github.com/zhuzhichao/ip-location-zh/issues",
  9175. "source": "https://github.com/zhuzhichao/ip-location-zh/tree/v2.4.5"
  9176. },
  9177. "time": "2023-08-29T01:18:10+00:00"
  9178. }
  9179. ],
  9180. "packages-dev": [
  9181. {
  9182. "name": "doctrine/instantiator",
  9183. "version": "1.5.0",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/doctrine/instantiator.git",
  9187. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  9192. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  9193. "shasum": "",
  9194. "mirrors": [
  9195. {
  9196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9197. "preferred": true
  9198. }
  9199. ]
  9200. },
  9201. "require": {
  9202. "php": "^7.1 || ^8.0"
  9203. },
  9204. "require-dev": {
  9205. "doctrine/coding-standard": "^9 || ^11",
  9206. "ext-pdo": "*",
  9207. "ext-phar": "*",
  9208. "phpbench/phpbench": "^0.16 || ^1",
  9209. "phpstan/phpstan": "^1.4",
  9210. "phpstan/phpstan-phpunit": "^1",
  9211. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  9212. "vimeo/psalm": "^4.30 || ^5.4"
  9213. },
  9214. "type": "library",
  9215. "autoload": {
  9216. "psr-4": {
  9217. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  9218. }
  9219. },
  9220. "notification-url": "https://packagist.org/downloads/",
  9221. "license": [
  9222. "MIT"
  9223. ],
  9224. "authors": [
  9225. {
  9226. "name": "Marco Pivetta",
  9227. "email": "ocramius@gmail.com",
  9228. "homepage": "https://ocramius.github.io/"
  9229. }
  9230. ],
  9231. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  9232. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  9233. "keywords": [
  9234. "constructor",
  9235. "instantiate"
  9236. ],
  9237. "support": {
  9238. "issues": "https://github.com/doctrine/instantiator/issues",
  9239. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  9240. },
  9241. "funding": [
  9242. {
  9243. "url": "https://www.doctrine-project.org/sponsorship.html",
  9244. "type": "custom"
  9245. },
  9246. {
  9247. "url": "https://www.patreon.com/phpdoctrine",
  9248. "type": "patreon"
  9249. },
  9250. {
  9251. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9252. "type": "tidelift"
  9253. }
  9254. ],
  9255. "time": "2022-12-30T00:15:36+00:00"
  9256. },
  9257. {
  9258. "name": "filp/whoops",
  9259. "version": "2.15.3",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/filp/whoops.git",
  9263. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/filp/whoops/zipball/c83e88a30524f9360b11f585f71e6b17313b7187",
  9268. "reference": "c83e88a30524f9360b11f585f71e6b17313b7187",
  9269. "shasum": "",
  9270. "mirrors": [
  9271. {
  9272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9273. "preferred": true
  9274. }
  9275. ]
  9276. },
  9277. "require": {
  9278. "php": "^5.5.9 || ^7.0 || ^8.0",
  9279. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9280. },
  9281. "require-dev": {
  9282. "mockery/mockery": "^0.9 || ^1.0",
  9283. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9284. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9285. },
  9286. "suggest": {
  9287. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9288. "whoops/soap": "Formats errors as SOAP responses"
  9289. },
  9290. "type": "library",
  9291. "extra": {
  9292. "branch-alias": {
  9293. "dev-master": "2.7-dev"
  9294. }
  9295. },
  9296. "autoload": {
  9297. "psr-4": {
  9298. "Whoops\\": "src/Whoops/"
  9299. }
  9300. },
  9301. "notification-url": "https://packagist.org/downloads/",
  9302. "license": [
  9303. "MIT"
  9304. ],
  9305. "authors": [
  9306. {
  9307. "name": "Filipe Dobreira",
  9308. "homepage": "https://github.com/filp",
  9309. "role": "Developer"
  9310. }
  9311. ],
  9312. "description": "php error handling for cool kids",
  9313. "homepage": "https://filp.github.io/whoops/",
  9314. "keywords": [
  9315. "error",
  9316. "exception",
  9317. "handling",
  9318. "library",
  9319. "throwable",
  9320. "whoops"
  9321. ],
  9322. "support": {
  9323. "issues": "https://github.com/filp/whoops/issues",
  9324. "source": "https://github.com/filp/whoops/tree/2.15.3"
  9325. },
  9326. "funding": [
  9327. {
  9328. "url": "https://github.com/denis-sokolov",
  9329. "type": "github"
  9330. }
  9331. ],
  9332. "time": "2023-07-13T12:00:00+00:00"
  9333. },
  9334. {
  9335. "name": "fzaninotto/faker",
  9336. "version": "v1.9.2",
  9337. "source": {
  9338. "type": "git",
  9339. "url": "https://github.com/fzaninotto/Faker.git",
  9340. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  9341. },
  9342. "dist": {
  9343. "type": "zip",
  9344. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9345. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  9346. "shasum": "",
  9347. "mirrors": [
  9348. {
  9349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9350. "preferred": true
  9351. }
  9352. ]
  9353. },
  9354. "require": {
  9355. "php": "^5.3.3 || ^7.0"
  9356. },
  9357. "require-dev": {
  9358. "ext-intl": "*",
  9359. "phpunit/phpunit": "^4.8.35 || ^5.7",
  9360. "squizlabs/php_codesniffer": "^2.9.2"
  9361. },
  9362. "type": "library",
  9363. "extra": {
  9364. "branch-alias": {
  9365. "dev-master": "1.9-dev"
  9366. }
  9367. },
  9368. "autoload": {
  9369. "psr-4": {
  9370. "Faker\\": "src/Faker/"
  9371. }
  9372. },
  9373. "notification-url": "https://packagist.org/downloads/",
  9374. "license": [
  9375. "MIT"
  9376. ],
  9377. "authors": [
  9378. {
  9379. "name": "François Zaninotto"
  9380. }
  9381. ],
  9382. "description": "Faker is a PHP library that generates fake data for you.",
  9383. "keywords": [
  9384. "data",
  9385. "faker",
  9386. "fixtures"
  9387. ],
  9388. "support": {
  9389. "issues": "https://github.com/fzaninotto/Faker/issues",
  9390. "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2"
  9391. },
  9392. "abandoned": true,
  9393. "time": "2020-12-11T09:56:16+00:00"
  9394. },
  9395. {
  9396. "name": "hamcrest/hamcrest-php",
  9397. "version": "v2.0.1",
  9398. "source": {
  9399. "type": "git",
  9400. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9401. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9402. },
  9403. "dist": {
  9404. "type": "zip",
  9405. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9406. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9407. "shasum": "",
  9408. "mirrors": [
  9409. {
  9410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9411. "preferred": true
  9412. }
  9413. ]
  9414. },
  9415. "require": {
  9416. "php": "^5.3|^7.0|^8.0"
  9417. },
  9418. "replace": {
  9419. "cordoval/hamcrest-php": "*",
  9420. "davedevelopment/hamcrest-php": "*",
  9421. "kodova/hamcrest-php": "*"
  9422. },
  9423. "require-dev": {
  9424. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9425. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9426. },
  9427. "type": "library",
  9428. "extra": {
  9429. "branch-alias": {
  9430. "dev-master": "2.1-dev"
  9431. }
  9432. },
  9433. "autoload": {
  9434. "classmap": [
  9435. "hamcrest"
  9436. ]
  9437. },
  9438. "notification-url": "https://packagist.org/downloads/",
  9439. "license": [
  9440. "BSD-3-Clause"
  9441. ],
  9442. "description": "This is the PHP port of Hamcrest Matchers",
  9443. "keywords": [
  9444. "test"
  9445. ],
  9446. "support": {
  9447. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9448. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9449. },
  9450. "time": "2020-07-09T08:09:16+00:00"
  9451. },
  9452. {
  9453. "name": "mockery/mockery",
  9454. "version": "1.6.6",
  9455. "source": {
  9456. "type": "git",
  9457. "url": "https://github.com/mockery/mockery.git",
  9458. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  9459. },
  9460. "dist": {
  9461. "type": "zip",
  9462. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  9463. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  9464. "shasum": "",
  9465. "mirrors": [
  9466. {
  9467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9468. "preferred": true
  9469. }
  9470. ]
  9471. },
  9472. "require": {
  9473. "hamcrest/hamcrest-php": "^2.0.1",
  9474. "lib-pcre": ">=7.0",
  9475. "php": ">=7.3"
  9476. },
  9477. "conflict": {
  9478. "phpunit/phpunit": "<8.0"
  9479. },
  9480. "require-dev": {
  9481. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9482. "psalm/plugin-phpunit": "^0.18.4",
  9483. "symplify/easy-coding-standard": "^11.5.0",
  9484. "vimeo/psalm": "^4.30"
  9485. },
  9486. "type": "library",
  9487. "autoload": {
  9488. "files": [
  9489. "library/helpers.php",
  9490. "library/Mockery.php"
  9491. ],
  9492. "psr-4": {
  9493. "Mockery\\": "library/Mockery"
  9494. }
  9495. },
  9496. "notification-url": "https://packagist.org/downloads/",
  9497. "license": [
  9498. "BSD-3-Clause"
  9499. ],
  9500. "authors": [
  9501. {
  9502. "name": "Pádraic Brady",
  9503. "email": "padraic.brady@gmail.com",
  9504. "homepage": "https://github.com/padraic",
  9505. "role": "Author"
  9506. },
  9507. {
  9508. "name": "Dave Marshall",
  9509. "email": "dave.marshall@atstsolutions.co.uk",
  9510. "homepage": "https://davedevelopment.co.uk",
  9511. "role": "Developer"
  9512. },
  9513. {
  9514. "name": "Nathanael Esayeas",
  9515. "email": "nathanael.esayeas@protonmail.com",
  9516. "homepage": "https://github.com/ghostwriter",
  9517. "role": "Lead Developer"
  9518. }
  9519. ],
  9520. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9521. "homepage": "https://github.com/mockery/mockery",
  9522. "keywords": [
  9523. "BDD",
  9524. "TDD",
  9525. "library",
  9526. "mock",
  9527. "mock objects",
  9528. "mockery",
  9529. "stub",
  9530. "test",
  9531. "test double",
  9532. "testing"
  9533. ],
  9534. "support": {
  9535. "docs": "https://docs.mockery.io/",
  9536. "issues": "https://github.com/mockery/mockery/issues",
  9537. "rss": "https://github.com/mockery/mockery/releases.atom",
  9538. "security": "https://github.com/mockery/mockery/security/advisories",
  9539. "source": "https://github.com/mockery/mockery"
  9540. },
  9541. "time": "2023-08-09T00:03:52+00:00"
  9542. },
  9543. {
  9544. "name": "myclabs/deep-copy",
  9545. "version": "1.11.1",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/myclabs/DeepCopy.git",
  9549. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9554. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9555. "shasum": "",
  9556. "mirrors": [
  9557. {
  9558. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9559. "preferred": true
  9560. }
  9561. ]
  9562. },
  9563. "require": {
  9564. "php": "^7.1 || ^8.0"
  9565. },
  9566. "conflict": {
  9567. "doctrine/collections": "<1.6.8",
  9568. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9569. },
  9570. "require-dev": {
  9571. "doctrine/collections": "^1.6.8",
  9572. "doctrine/common": "^2.13.3 || ^3.2.2",
  9573. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9574. },
  9575. "type": "library",
  9576. "autoload": {
  9577. "files": [
  9578. "src/DeepCopy/deep_copy.php"
  9579. ],
  9580. "psr-4": {
  9581. "DeepCopy\\": "src/DeepCopy/"
  9582. }
  9583. },
  9584. "notification-url": "https://packagist.org/downloads/",
  9585. "license": [
  9586. "MIT"
  9587. ],
  9588. "description": "Create deep copies (clones) of your objects",
  9589. "keywords": [
  9590. "clone",
  9591. "copy",
  9592. "duplicate",
  9593. "object",
  9594. "object graph"
  9595. ],
  9596. "support": {
  9597. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9598. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9599. },
  9600. "funding": [
  9601. {
  9602. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9603. "type": "tidelift"
  9604. }
  9605. ],
  9606. "time": "2023-03-08T13:26:56+00:00"
  9607. },
  9608. {
  9609. "name": "nunomaduro/collision",
  9610. "version": "v3.1.0",
  9611. "source": {
  9612. "type": "git",
  9613. "url": "https://github.com/nunomaduro/collision.git",
  9614. "reference": "88b58b5bd9bdcc54756480fb3ce87234696544ee"
  9615. },
  9616. "dist": {
  9617. "type": "zip",
  9618. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/88b58b5bd9bdcc54756480fb3ce87234696544ee",
  9619. "reference": "88b58b5bd9bdcc54756480fb3ce87234696544ee",
  9620. "shasum": "",
  9621. "mirrors": [
  9622. {
  9623. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9624. "preferred": true
  9625. }
  9626. ]
  9627. },
  9628. "require": {
  9629. "filp/whoops": "^2.1.4",
  9630. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  9631. "php": "^7.1 || ^8.0",
  9632. "symfony/console": "~2.8|~3.3|~4.0"
  9633. },
  9634. "require-dev": {
  9635. "laravel/framework": "^6.0",
  9636. "phpunit/phpunit": "^8.0 || ^9.0"
  9637. },
  9638. "type": "library",
  9639. "extra": {
  9640. "laravel": {
  9641. "providers": [
  9642. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9643. ]
  9644. }
  9645. },
  9646. "autoload": {
  9647. "psr-4": {
  9648. "NunoMaduro\\Collision\\": "src/"
  9649. }
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Nuno Maduro",
  9658. "email": "enunomaduro@gmail.com"
  9659. }
  9660. ],
  9661. "description": "Cli error handling for console/command-line PHP applications.",
  9662. "keywords": [
  9663. "artisan",
  9664. "cli",
  9665. "command-line",
  9666. "console",
  9667. "error",
  9668. "handling",
  9669. "laravel",
  9670. "laravel-zero",
  9671. "php",
  9672. "symfony"
  9673. ],
  9674. "support": {
  9675. "issues": "https://github.com/nunomaduro/collision/issues",
  9676. "source": "https://github.com/nunomaduro/collision"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9681. "type": "custom"
  9682. },
  9683. {
  9684. "url": "https://github.com/nunomaduro",
  9685. "type": "github"
  9686. },
  9687. {
  9688. "url": "https://www.patreon.com/nunomaduro",
  9689. "type": "patreon"
  9690. }
  9691. ],
  9692. "time": "2020-10-29T16:05:21+00:00"
  9693. },
  9694. {
  9695. "name": "phar-io/manifest",
  9696. "version": "2.0.3",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/phar-io/manifest.git",
  9700. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9705. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9706. "shasum": "",
  9707. "mirrors": [
  9708. {
  9709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9710. "preferred": true
  9711. }
  9712. ]
  9713. },
  9714. "require": {
  9715. "ext-dom": "*",
  9716. "ext-phar": "*",
  9717. "ext-xmlwriter": "*",
  9718. "phar-io/version": "^3.0.1",
  9719. "php": "^7.2 || ^8.0"
  9720. },
  9721. "type": "library",
  9722. "extra": {
  9723. "branch-alias": {
  9724. "dev-master": "2.0.x-dev"
  9725. }
  9726. },
  9727. "autoload": {
  9728. "classmap": [
  9729. "src/"
  9730. ]
  9731. },
  9732. "notification-url": "https://packagist.org/downloads/",
  9733. "license": [
  9734. "BSD-3-Clause"
  9735. ],
  9736. "authors": [
  9737. {
  9738. "name": "Arne Blankerts",
  9739. "email": "arne@blankerts.de",
  9740. "role": "Developer"
  9741. },
  9742. {
  9743. "name": "Sebastian Heuer",
  9744. "email": "sebastian@phpeople.de",
  9745. "role": "Developer"
  9746. },
  9747. {
  9748. "name": "Sebastian Bergmann",
  9749. "email": "sebastian@phpunit.de",
  9750. "role": "Developer"
  9751. }
  9752. ],
  9753. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9754. "support": {
  9755. "issues": "https://github.com/phar-io/manifest/issues",
  9756. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9757. },
  9758. "time": "2021-07-20T11:28:43+00:00"
  9759. },
  9760. {
  9761. "name": "phar-io/version",
  9762. "version": "3.2.1",
  9763. "source": {
  9764. "type": "git",
  9765. "url": "https://github.com/phar-io/version.git",
  9766. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9767. },
  9768. "dist": {
  9769. "type": "zip",
  9770. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9771. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9772. "shasum": "",
  9773. "mirrors": [
  9774. {
  9775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9776. "preferred": true
  9777. }
  9778. ]
  9779. },
  9780. "require": {
  9781. "php": "^7.2 || ^8.0"
  9782. },
  9783. "type": "library",
  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": "Arne Blankerts",
  9796. "email": "arne@blankerts.de",
  9797. "role": "Developer"
  9798. },
  9799. {
  9800. "name": "Sebastian Heuer",
  9801. "email": "sebastian@phpeople.de",
  9802. "role": "Developer"
  9803. },
  9804. {
  9805. "name": "Sebastian Bergmann",
  9806. "email": "sebastian@phpunit.de",
  9807. "role": "Developer"
  9808. }
  9809. ],
  9810. "description": "Library for handling version information and constraints",
  9811. "support": {
  9812. "issues": "https://github.com/phar-io/version/issues",
  9813. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9814. },
  9815. "time": "2022-02-21T01:04:05+00:00"
  9816. },
  9817. {
  9818. "name": "phpunit/php-code-coverage",
  9819. "version": "7.0.15",
  9820. "source": {
  9821. "type": "git",
  9822. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9823. "reference": "819f92bba8b001d4363065928088de22f25a3a48"
  9824. },
  9825. "dist": {
  9826. "type": "zip",
  9827. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/819f92bba8b001d4363065928088de22f25a3a48",
  9828. "reference": "819f92bba8b001d4363065928088de22f25a3a48",
  9829. "shasum": "",
  9830. "mirrors": [
  9831. {
  9832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9833. "preferred": true
  9834. }
  9835. ]
  9836. },
  9837. "require": {
  9838. "ext-dom": "*",
  9839. "ext-xmlwriter": "*",
  9840. "php": ">=7.2",
  9841. "phpunit/php-file-iterator": "^2.0.2",
  9842. "phpunit/php-text-template": "^1.2.1",
  9843. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  9844. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  9845. "sebastian/environment": "^4.2.2",
  9846. "sebastian/version": "^2.0.1",
  9847. "theseer/tokenizer": "^1.1.3"
  9848. },
  9849. "require-dev": {
  9850. "phpunit/phpunit": "^8.2.2"
  9851. },
  9852. "suggest": {
  9853. "ext-xdebug": "^2.7.2"
  9854. },
  9855. "type": "library",
  9856. "extra": {
  9857. "branch-alias": {
  9858. "dev-master": "7.0-dev"
  9859. }
  9860. },
  9861. "autoload": {
  9862. "classmap": [
  9863. "src/"
  9864. ]
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "BSD-3-Clause"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Sebastian Bergmann",
  9873. "email": "sebastian@phpunit.de",
  9874. "role": "lead"
  9875. }
  9876. ],
  9877. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9878. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9879. "keywords": [
  9880. "coverage",
  9881. "testing",
  9882. "xunit"
  9883. ],
  9884. "support": {
  9885. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9886. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.15"
  9887. },
  9888. "funding": [
  9889. {
  9890. "url": "https://github.com/sebastianbergmann",
  9891. "type": "github"
  9892. }
  9893. ],
  9894. "time": "2021-07-26T12:20:09+00:00"
  9895. },
  9896. {
  9897. "name": "phpunit/php-file-iterator",
  9898. "version": "2.0.5",
  9899. "source": {
  9900. "type": "git",
  9901. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9902. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  9903. },
  9904. "dist": {
  9905. "type": "zip",
  9906. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  9907. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  9908. "shasum": "",
  9909. "mirrors": [
  9910. {
  9911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9912. "preferred": true
  9913. }
  9914. ]
  9915. },
  9916. "require": {
  9917. "php": ">=7.1"
  9918. },
  9919. "require-dev": {
  9920. "phpunit/phpunit": "^8.5"
  9921. },
  9922. "type": "library",
  9923. "extra": {
  9924. "branch-alias": {
  9925. "dev-master": "2.0.x-dev"
  9926. }
  9927. },
  9928. "autoload": {
  9929. "classmap": [
  9930. "src/"
  9931. ]
  9932. },
  9933. "notification-url": "https://packagist.org/downloads/",
  9934. "license": [
  9935. "BSD-3-Clause"
  9936. ],
  9937. "authors": [
  9938. {
  9939. "name": "Sebastian Bergmann",
  9940. "email": "sebastian@phpunit.de",
  9941. "role": "lead"
  9942. }
  9943. ],
  9944. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9945. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9946. "keywords": [
  9947. "filesystem",
  9948. "iterator"
  9949. ],
  9950. "support": {
  9951. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9952. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.5"
  9953. },
  9954. "funding": [
  9955. {
  9956. "url": "https://github.com/sebastianbergmann",
  9957. "type": "github"
  9958. }
  9959. ],
  9960. "time": "2021-12-02T12:42:26+00:00"
  9961. },
  9962. {
  9963. "name": "phpunit/php-text-template",
  9964. "version": "1.2.1",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9968. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9973. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  9974. "shasum": "",
  9975. "mirrors": [
  9976. {
  9977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9978. "preferred": true
  9979. }
  9980. ]
  9981. },
  9982. "require": {
  9983. "php": ">=5.3.3"
  9984. },
  9985. "type": "library",
  9986. "autoload": {
  9987. "classmap": [
  9988. "src/"
  9989. ]
  9990. },
  9991. "notification-url": "https://packagist.org/downloads/",
  9992. "license": [
  9993. "BSD-3-Clause"
  9994. ],
  9995. "authors": [
  9996. {
  9997. "name": "Sebastian Bergmann",
  9998. "email": "sebastian@phpunit.de",
  9999. "role": "lead"
  10000. }
  10001. ],
  10002. "description": "Simple template engine.",
  10003. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10004. "keywords": [
  10005. "template"
  10006. ],
  10007. "support": {
  10008. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10009. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  10010. },
  10011. "time": "2015-06-21T13:50:34+00:00"
  10012. },
  10013. {
  10014. "name": "phpunit/php-timer",
  10015. "version": "2.1.3",
  10016. "source": {
  10017. "type": "git",
  10018. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10019. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  10020. },
  10021. "dist": {
  10022. "type": "zip",
  10023. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  10024. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  10025. "shasum": "",
  10026. "mirrors": [
  10027. {
  10028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10029. "preferred": true
  10030. }
  10031. ]
  10032. },
  10033. "require": {
  10034. "php": ">=7.1"
  10035. },
  10036. "require-dev": {
  10037. "phpunit/phpunit": "^8.5"
  10038. },
  10039. "type": "library",
  10040. "extra": {
  10041. "branch-alias": {
  10042. "dev-master": "2.1-dev"
  10043. }
  10044. },
  10045. "autoload": {
  10046. "classmap": [
  10047. "src/"
  10048. ]
  10049. },
  10050. "notification-url": "https://packagist.org/downloads/",
  10051. "license": [
  10052. "BSD-3-Clause"
  10053. ],
  10054. "authors": [
  10055. {
  10056. "name": "Sebastian Bergmann",
  10057. "email": "sebastian@phpunit.de",
  10058. "role": "lead"
  10059. }
  10060. ],
  10061. "description": "Utility class for timing",
  10062. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10063. "keywords": [
  10064. "timer"
  10065. ],
  10066. "support": {
  10067. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10068. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.3"
  10069. },
  10070. "funding": [
  10071. {
  10072. "url": "https://github.com/sebastianbergmann",
  10073. "type": "github"
  10074. }
  10075. ],
  10076. "time": "2020-11-30T08:20:02+00:00"
  10077. },
  10078. {
  10079. "name": "phpunit/php-token-stream",
  10080. "version": "4.0.4",
  10081. "source": {
  10082. "type": "git",
  10083. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  10084. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  10085. },
  10086. "dist": {
  10087. "type": "zip",
  10088. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  10089. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  10090. "shasum": "",
  10091. "mirrors": [
  10092. {
  10093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10094. "preferred": true
  10095. }
  10096. ]
  10097. },
  10098. "require": {
  10099. "ext-tokenizer": "*",
  10100. "php": "^7.3 || ^8.0"
  10101. },
  10102. "require-dev": {
  10103. "phpunit/phpunit": "^9.0"
  10104. },
  10105. "type": "library",
  10106. "extra": {
  10107. "branch-alias": {
  10108. "dev-master": "4.0-dev"
  10109. }
  10110. },
  10111. "autoload": {
  10112. "classmap": [
  10113. "src/"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "BSD-3-Clause"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Sebastian Bergmann",
  10123. "email": "sebastian@phpunit.de"
  10124. }
  10125. ],
  10126. "description": "Wrapper around PHP's tokenizer extension.",
  10127. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  10128. "keywords": [
  10129. "tokenizer"
  10130. ],
  10131. "support": {
  10132. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  10133. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  10134. },
  10135. "funding": [
  10136. {
  10137. "url": "https://github.com/sebastianbergmann",
  10138. "type": "github"
  10139. }
  10140. ],
  10141. "abandoned": true,
  10142. "time": "2020-08-04T08:28:15+00:00"
  10143. },
  10144. {
  10145. "name": "phpunit/phpunit",
  10146. "version": "8.5.34",
  10147. "source": {
  10148. "type": "git",
  10149. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10150. "reference": "622d0186707f39a4ae71df3bcf42d759bb868854"
  10151. },
  10152. "dist": {
  10153. "type": "zip",
  10154. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/622d0186707f39a4ae71df3bcf42d759bb868854",
  10155. "reference": "622d0186707f39a4ae71df3bcf42d759bb868854",
  10156. "shasum": "",
  10157. "mirrors": [
  10158. {
  10159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10160. "preferred": true
  10161. }
  10162. ]
  10163. },
  10164. "require": {
  10165. "doctrine/instantiator": "^1.3.1",
  10166. "ext-dom": "*",
  10167. "ext-json": "*",
  10168. "ext-libxml": "*",
  10169. "ext-mbstring": "*",
  10170. "ext-xml": "*",
  10171. "ext-xmlwriter": "*",
  10172. "myclabs/deep-copy": "^1.10.0",
  10173. "phar-io/manifest": "^2.0.3",
  10174. "phar-io/version": "^3.0.2",
  10175. "php": ">=7.2",
  10176. "phpunit/php-code-coverage": "^7.0.12",
  10177. "phpunit/php-file-iterator": "^2.0.4",
  10178. "phpunit/php-text-template": "^1.2.1",
  10179. "phpunit/php-timer": "^2.1.2",
  10180. "sebastian/comparator": "^3.0.5",
  10181. "sebastian/diff": "^3.0.2",
  10182. "sebastian/environment": "^4.2.3",
  10183. "sebastian/exporter": "^3.1.5",
  10184. "sebastian/global-state": "^3.0.0",
  10185. "sebastian/object-enumerator": "^3.0.3",
  10186. "sebastian/resource-operations": "^2.0.1",
  10187. "sebastian/type": "^1.1.3",
  10188. "sebastian/version": "^2.0.1"
  10189. },
  10190. "suggest": {
  10191. "ext-soap": "To be able to generate mocks based on WSDL files",
  10192. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage",
  10193. "phpunit/php-invoker": "To allow enforcing time limits"
  10194. },
  10195. "bin": [
  10196. "phpunit"
  10197. ],
  10198. "type": "library",
  10199. "extra": {
  10200. "branch-alias": {
  10201. "dev-master": "8.5-dev"
  10202. }
  10203. },
  10204. "autoload": {
  10205. "classmap": [
  10206. "src/"
  10207. ]
  10208. },
  10209. "notification-url": "https://packagist.org/downloads/",
  10210. "license": [
  10211. "BSD-3-Clause"
  10212. ],
  10213. "authors": [
  10214. {
  10215. "name": "Sebastian Bergmann",
  10216. "email": "sebastian@phpunit.de",
  10217. "role": "lead"
  10218. }
  10219. ],
  10220. "description": "The PHP Unit Testing framework.",
  10221. "homepage": "https://phpunit.de/",
  10222. "keywords": [
  10223. "phpunit",
  10224. "testing",
  10225. "xunit"
  10226. ],
  10227. "support": {
  10228. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10229. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10230. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.34"
  10231. },
  10232. "funding": [
  10233. {
  10234. "url": "https://phpunit.de/sponsors.html",
  10235. "type": "custom"
  10236. },
  10237. {
  10238. "url": "https://github.com/sebastianbergmann",
  10239. "type": "github"
  10240. },
  10241. {
  10242. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10243. "type": "tidelift"
  10244. }
  10245. ],
  10246. "time": "2023-09-19T05:20:51+00:00"
  10247. },
  10248. {
  10249. "name": "sebastian/code-unit-reverse-lookup",
  10250. "version": "1.0.2",
  10251. "source": {
  10252. "type": "git",
  10253. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10254. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  10255. },
  10256. "dist": {
  10257. "type": "zip",
  10258. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  10259. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  10260. "shasum": "",
  10261. "mirrors": [
  10262. {
  10263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10264. "preferred": true
  10265. }
  10266. ]
  10267. },
  10268. "require": {
  10269. "php": ">=5.6"
  10270. },
  10271. "require-dev": {
  10272. "phpunit/phpunit": "^8.5"
  10273. },
  10274. "type": "library",
  10275. "extra": {
  10276. "branch-alias": {
  10277. "dev-master": "1.0.x-dev"
  10278. }
  10279. },
  10280. "autoload": {
  10281. "classmap": [
  10282. "src/"
  10283. ]
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "BSD-3-Clause"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Sebastian Bergmann",
  10292. "email": "sebastian@phpunit.de"
  10293. }
  10294. ],
  10295. "description": "Looks up which function or method a line of code belongs to",
  10296. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10297. "support": {
  10298. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10299. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2"
  10300. },
  10301. "funding": [
  10302. {
  10303. "url": "https://github.com/sebastianbergmann",
  10304. "type": "github"
  10305. }
  10306. ],
  10307. "time": "2020-11-30T08:15:22+00:00"
  10308. },
  10309. {
  10310. "name": "sebastian/comparator",
  10311. "version": "3.0.5",
  10312. "source": {
  10313. "type": "git",
  10314. "url": "https://github.com/sebastianbergmann/comparator.git",
  10315. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770"
  10316. },
  10317. "dist": {
  10318. "type": "zip",
  10319. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  10320. "reference": "1dc7ceb4a24aede938c7af2a9ed1de09609ca770",
  10321. "shasum": "",
  10322. "mirrors": [
  10323. {
  10324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10325. "preferred": true
  10326. }
  10327. ]
  10328. },
  10329. "require": {
  10330. "php": ">=7.1",
  10331. "sebastian/diff": "^3.0",
  10332. "sebastian/exporter": "^3.1"
  10333. },
  10334. "require-dev": {
  10335. "phpunit/phpunit": "^8.5"
  10336. },
  10337. "type": "library",
  10338. "extra": {
  10339. "branch-alias": {
  10340. "dev-master": "3.0-dev"
  10341. }
  10342. },
  10343. "autoload": {
  10344. "classmap": [
  10345. "src/"
  10346. ]
  10347. },
  10348. "notification-url": "https://packagist.org/downloads/",
  10349. "license": [
  10350. "BSD-3-Clause"
  10351. ],
  10352. "authors": [
  10353. {
  10354. "name": "Sebastian Bergmann",
  10355. "email": "sebastian@phpunit.de"
  10356. },
  10357. {
  10358. "name": "Jeff Welch",
  10359. "email": "whatthejeff@gmail.com"
  10360. },
  10361. {
  10362. "name": "Volker Dusch",
  10363. "email": "github@wallbash.com"
  10364. },
  10365. {
  10366. "name": "Bernhard Schussek",
  10367. "email": "bschussek@2bepublished.at"
  10368. }
  10369. ],
  10370. "description": "Provides the functionality to compare PHP values for equality",
  10371. "homepage": "https://github.com/sebastianbergmann/comparator",
  10372. "keywords": [
  10373. "comparator",
  10374. "compare",
  10375. "equality"
  10376. ],
  10377. "support": {
  10378. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10379. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.5"
  10380. },
  10381. "funding": [
  10382. {
  10383. "url": "https://github.com/sebastianbergmann",
  10384. "type": "github"
  10385. }
  10386. ],
  10387. "time": "2022-09-14T12:31:48+00:00"
  10388. },
  10389. {
  10390. "name": "sebastian/diff",
  10391. "version": "3.0.4",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/sebastianbergmann/diff.git",
  10395. "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/6296a0c086dd0117c1b78b059374d7fcbe7545ae",
  10400. "reference": "6296a0c086dd0117c1b78b059374d7fcbe7545ae",
  10401. "shasum": "",
  10402. "mirrors": [
  10403. {
  10404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10405. "preferred": true
  10406. }
  10407. ]
  10408. },
  10409. "require": {
  10410. "php": ">=7.1"
  10411. },
  10412. "require-dev": {
  10413. "phpunit/phpunit": "^7.5 || ^8.0",
  10414. "symfony/process": "^2 || ^3.3 || ^4"
  10415. },
  10416. "type": "library",
  10417. "extra": {
  10418. "branch-alias": {
  10419. "dev-master": "3.0-dev"
  10420. }
  10421. },
  10422. "autoload": {
  10423. "classmap": [
  10424. "src/"
  10425. ]
  10426. },
  10427. "notification-url": "https://packagist.org/downloads/",
  10428. "license": [
  10429. "BSD-3-Clause"
  10430. ],
  10431. "authors": [
  10432. {
  10433. "name": "Sebastian Bergmann",
  10434. "email": "sebastian@phpunit.de"
  10435. },
  10436. {
  10437. "name": "Kore Nordmann",
  10438. "email": "mail@kore-nordmann.de"
  10439. }
  10440. ],
  10441. "description": "Diff implementation",
  10442. "homepage": "https://github.com/sebastianbergmann/diff",
  10443. "keywords": [
  10444. "diff",
  10445. "udiff",
  10446. "unidiff",
  10447. "unified diff"
  10448. ],
  10449. "support": {
  10450. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10451. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.4"
  10452. },
  10453. "funding": [
  10454. {
  10455. "url": "https://github.com/sebastianbergmann",
  10456. "type": "github"
  10457. }
  10458. ],
  10459. "time": "2023-05-07T05:30:20+00:00"
  10460. },
  10461. {
  10462. "name": "sebastian/environment",
  10463. "version": "4.2.4",
  10464. "source": {
  10465. "type": "git",
  10466. "url": "https://github.com/sebastianbergmann/environment.git",
  10467. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  10468. },
  10469. "dist": {
  10470. "type": "zip",
  10471. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  10472. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  10473. "shasum": "",
  10474. "mirrors": [
  10475. {
  10476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10477. "preferred": true
  10478. }
  10479. ]
  10480. },
  10481. "require": {
  10482. "php": ">=7.1"
  10483. },
  10484. "require-dev": {
  10485. "phpunit/phpunit": "^7.5"
  10486. },
  10487. "suggest": {
  10488. "ext-posix": "*"
  10489. },
  10490. "type": "library",
  10491. "extra": {
  10492. "branch-alias": {
  10493. "dev-master": "4.2-dev"
  10494. }
  10495. },
  10496. "autoload": {
  10497. "classmap": [
  10498. "src/"
  10499. ]
  10500. },
  10501. "notification-url": "https://packagist.org/downloads/",
  10502. "license": [
  10503. "BSD-3-Clause"
  10504. ],
  10505. "authors": [
  10506. {
  10507. "name": "Sebastian Bergmann",
  10508. "email": "sebastian@phpunit.de"
  10509. }
  10510. ],
  10511. "description": "Provides functionality to handle HHVM/PHP environments",
  10512. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10513. "keywords": [
  10514. "Xdebug",
  10515. "environment",
  10516. "hhvm"
  10517. ],
  10518. "support": {
  10519. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10520. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.4"
  10521. },
  10522. "funding": [
  10523. {
  10524. "url": "https://github.com/sebastianbergmann",
  10525. "type": "github"
  10526. }
  10527. ],
  10528. "time": "2020-11-30T07:53:42+00:00"
  10529. },
  10530. {
  10531. "name": "sebastian/exporter",
  10532. "version": "3.1.5",
  10533. "source": {
  10534. "type": "git",
  10535. "url": "https://github.com/sebastianbergmann/exporter.git",
  10536. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6"
  10537. },
  10538. "dist": {
  10539. "type": "zip",
  10540. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/73a9676f2833b9a7c36968f9d882589cd75511e6",
  10541. "reference": "73a9676f2833b9a7c36968f9d882589cd75511e6",
  10542. "shasum": "",
  10543. "mirrors": [
  10544. {
  10545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10546. "preferred": true
  10547. }
  10548. ]
  10549. },
  10550. "require": {
  10551. "php": ">=7.0",
  10552. "sebastian/recursion-context": "^3.0"
  10553. },
  10554. "require-dev": {
  10555. "ext-mbstring": "*",
  10556. "phpunit/phpunit": "^8.5"
  10557. },
  10558. "type": "library",
  10559. "extra": {
  10560. "branch-alias": {
  10561. "dev-master": "3.1.x-dev"
  10562. }
  10563. },
  10564. "autoload": {
  10565. "classmap": [
  10566. "src/"
  10567. ]
  10568. },
  10569. "notification-url": "https://packagist.org/downloads/",
  10570. "license": [
  10571. "BSD-3-Clause"
  10572. ],
  10573. "authors": [
  10574. {
  10575. "name": "Sebastian Bergmann",
  10576. "email": "sebastian@phpunit.de"
  10577. },
  10578. {
  10579. "name": "Jeff Welch",
  10580. "email": "whatthejeff@gmail.com"
  10581. },
  10582. {
  10583. "name": "Volker Dusch",
  10584. "email": "github@wallbash.com"
  10585. },
  10586. {
  10587. "name": "Adam Harvey",
  10588. "email": "aharvey@php.net"
  10589. },
  10590. {
  10591. "name": "Bernhard Schussek",
  10592. "email": "bschussek@gmail.com"
  10593. }
  10594. ],
  10595. "description": "Provides the functionality to export PHP variables for visualization",
  10596. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  10597. "keywords": [
  10598. "export",
  10599. "exporter"
  10600. ],
  10601. "support": {
  10602. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10603. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.5"
  10604. },
  10605. "funding": [
  10606. {
  10607. "url": "https://github.com/sebastianbergmann",
  10608. "type": "github"
  10609. }
  10610. ],
  10611. "time": "2022-09-14T06:00:17+00:00"
  10612. },
  10613. {
  10614. "name": "sebastian/global-state",
  10615. "version": "3.0.3",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/sebastianbergmann/global-state.git",
  10619. "reference": "66783ce213de415b451b904bfef9dda0cf9aeae0"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/66783ce213de415b451b904bfef9dda0cf9aeae0",
  10624. "reference": "66783ce213de415b451b904bfef9dda0cf9aeae0",
  10625. "shasum": "",
  10626. "mirrors": [
  10627. {
  10628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10629. "preferred": true
  10630. }
  10631. ]
  10632. },
  10633. "require": {
  10634. "php": ">=7.2",
  10635. "sebastian/object-reflector": "^1.1.1",
  10636. "sebastian/recursion-context": "^3.0"
  10637. },
  10638. "require-dev": {
  10639. "ext-dom": "*",
  10640. "phpunit/phpunit": "^8.0"
  10641. },
  10642. "suggest": {
  10643. "ext-uopz": "*"
  10644. },
  10645. "type": "library",
  10646. "extra": {
  10647. "branch-alias": {
  10648. "dev-master": "3.0-dev"
  10649. }
  10650. },
  10651. "autoload": {
  10652. "classmap": [
  10653. "src/"
  10654. ]
  10655. },
  10656. "notification-url": "https://packagist.org/downloads/",
  10657. "license": [
  10658. "BSD-3-Clause"
  10659. ],
  10660. "authors": [
  10661. {
  10662. "name": "Sebastian Bergmann",
  10663. "email": "sebastian@phpunit.de"
  10664. }
  10665. ],
  10666. "description": "Snapshotting of global state",
  10667. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10668. "keywords": [
  10669. "global state"
  10670. ],
  10671. "support": {
  10672. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10673. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.3"
  10674. },
  10675. "funding": [
  10676. {
  10677. "url": "https://github.com/sebastianbergmann",
  10678. "type": "github"
  10679. }
  10680. ],
  10681. "time": "2023-08-02T09:23:32+00:00"
  10682. },
  10683. {
  10684. "name": "sebastian/object-enumerator",
  10685. "version": "3.0.4",
  10686. "source": {
  10687. "type": "git",
  10688. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10689. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  10690. },
  10691. "dist": {
  10692. "type": "zip",
  10693. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10694. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  10695. "shasum": "",
  10696. "mirrors": [
  10697. {
  10698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10699. "preferred": true
  10700. }
  10701. ]
  10702. },
  10703. "require": {
  10704. "php": ">=7.0",
  10705. "sebastian/object-reflector": "^1.1.1",
  10706. "sebastian/recursion-context": "^3.0"
  10707. },
  10708. "require-dev": {
  10709. "phpunit/phpunit": "^6.0"
  10710. },
  10711. "type": "library",
  10712. "extra": {
  10713. "branch-alias": {
  10714. "dev-master": "3.0.x-dev"
  10715. }
  10716. },
  10717. "autoload": {
  10718. "classmap": [
  10719. "src/"
  10720. ]
  10721. },
  10722. "notification-url": "https://packagist.org/downloads/",
  10723. "license": [
  10724. "BSD-3-Clause"
  10725. ],
  10726. "authors": [
  10727. {
  10728. "name": "Sebastian Bergmann",
  10729. "email": "sebastian@phpunit.de"
  10730. }
  10731. ],
  10732. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10733. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10734. "support": {
  10735. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10736. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4"
  10737. },
  10738. "funding": [
  10739. {
  10740. "url": "https://github.com/sebastianbergmann",
  10741. "type": "github"
  10742. }
  10743. ],
  10744. "time": "2020-11-30T07:40:27+00:00"
  10745. },
  10746. {
  10747. "name": "sebastian/object-reflector",
  10748. "version": "1.1.2",
  10749. "source": {
  10750. "type": "git",
  10751. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10752. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  10753. },
  10754. "dist": {
  10755. "type": "zip",
  10756. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10757. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  10758. "shasum": "",
  10759. "mirrors": [
  10760. {
  10761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10762. "preferred": true
  10763. }
  10764. ]
  10765. },
  10766. "require": {
  10767. "php": ">=7.0"
  10768. },
  10769. "require-dev": {
  10770. "phpunit/phpunit": "^6.0"
  10771. },
  10772. "type": "library",
  10773. "extra": {
  10774. "branch-alias": {
  10775. "dev-master": "1.1-dev"
  10776. }
  10777. },
  10778. "autoload": {
  10779. "classmap": [
  10780. "src/"
  10781. ]
  10782. },
  10783. "notification-url": "https://packagist.org/downloads/",
  10784. "license": [
  10785. "BSD-3-Clause"
  10786. ],
  10787. "authors": [
  10788. {
  10789. "name": "Sebastian Bergmann",
  10790. "email": "sebastian@phpunit.de"
  10791. }
  10792. ],
  10793. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10794. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10795. "support": {
  10796. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10797. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2"
  10798. },
  10799. "funding": [
  10800. {
  10801. "url": "https://github.com/sebastianbergmann",
  10802. "type": "github"
  10803. }
  10804. ],
  10805. "time": "2020-11-30T07:37:18+00:00"
  10806. },
  10807. {
  10808. "name": "sebastian/recursion-context",
  10809. "version": "3.0.1",
  10810. "source": {
  10811. "type": "git",
  10812. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10813. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  10814. },
  10815. "dist": {
  10816. "type": "zip",
  10817. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10818. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  10819. "shasum": "",
  10820. "mirrors": [
  10821. {
  10822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10823. "preferred": true
  10824. }
  10825. ]
  10826. },
  10827. "require": {
  10828. "php": ">=7.0"
  10829. },
  10830. "require-dev": {
  10831. "phpunit/phpunit": "^6.0"
  10832. },
  10833. "type": "library",
  10834. "extra": {
  10835. "branch-alias": {
  10836. "dev-master": "3.0.x-dev"
  10837. }
  10838. },
  10839. "autoload": {
  10840. "classmap": [
  10841. "src/"
  10842. ]
  10843. },
  10844. "notification-url": "https://packagist.org/downloads/",
  10845. "license": [
  10846. "BSD-3-Clause"
  10847. ],
  10848. "authors": [
  10849. {
  10850. "name": "Sebastian Bergmann",
  10851. "email": "sebastian@phpunit.de"
  10852. },
  10853. {
  10854. "name": "Jeff Welch",
  10855. "email": "whatthejeff@gmail.com"
  10856. },
  10857. {
  10858. "name": "Adam Harvey",
  10859. "email": "aharvey@php.net"
  10860. }
  10861. ],
  10862. "description": "Provides functionality to recursively process PHP variables",
  10863. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10864. "support": {
  10865. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10866. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1"
  10867. },
  10868. "funding": [
  10869. {
  10870. "url": "https://github.com/sebastianbergmann",
  10871. "type": "github"
  10872. }
  10873. ],
  10874. "time": "2020-11-30T07:34:24+00:00"
  10875. },
  10876. {
  10877. "name": "sebastian/resource-operations",
  10878. "version": "2.0.2",
  10879. "source": {
  10880. "type": "git",
  10881. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10882. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  10883. },
  10884. "dist": {
  10885. "type": "zip",
  10886. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10887. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  10888. "shasum": "",
  10889. "mirrors": [
  10890. {
  10891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10892. "preferred": true
  10893. }
  10894. ]
  10895. },
  10896. "require": {
  10897. "php": ">=7.1"
  10898. },
  10899. "type": "library",
  10900. "extra": {
  10901. "branch-alias": {
  10902. "dev-master": "2.0-dev"
  10903. }
  10904. },
  10905. "autoload": {
  10906. "classmap": [
  10907. "src/"
  10908. ]
  10909. },
  10910. "notification-url": "https://packagist.org/downloads/",
  10911. "license": [
  10912. "BSD-3-Clause"
  10913. ],
  10914. "authors": [
  10915. {
  10916. "name": "Sebastian Bergmann",
  10917. "email": "sebastian@phpunit.de"
  10918. }
  10919. ],
  10920. "description": "Provides a list of PHP built-in functions that operate on resources",
  10921. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10922. "support": {
  10923. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10924. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.2"
  10925. },
  10926. "funding": [
  10927. {
  10928. "url": "https://github.com/sebastianbergmann",
  10929. "type": "github"
  10930. }
  10931. ],
  10932. "time": "2020-11-30T07:30:19+00:00"
  10933. },
  10934. {
  10935. "name": "sebastian/type",
  10936. "version": "1.1.4",
  10937. "source": {
  10938. "type": "git",
  10939. "url": "https://github.com/sebastianbergmann/type.git",
  10940. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  10941. },
  10942. "dist": {
  10943. "type": "zip",
  10944. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10945. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  10946. "shasum": "",
  10947. "mirrors": [
  10948. {
  10949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10950. "preferred": true
  10951. }
  10952. ]
  10953. },
  10954. "require": {
  10955. "php": ">=7.2"
  10956. },
  10957. "require-dev": {
  10958. "phpunit/phpunit": "^8.2"
  10959. },
  10960. "type": "library",
  10961. "extra": {
  10962. "branch-alias": {
  10963. "dev-master": "1.1-dev"
  10964. }
  10965. },
  10966. "autoload": {
  10967. "classmap": [
  10968. "src/"
  10969. ]
  10970. },
  10971. "notification-url": "https://packagist.org/downloads/",
  10972. "license": [
  10973. "BSD-3-Clause"
  10974. ],
  10975. "authors": [
  10976. {
  10977. "name": "Sebastian Bergmann",
  10978. "email": "sebastian@phpunit.de",
  10979. "role": "lead"
  10980. }
  10981. ],
  10982. "description": "Collection of value objects that represent the types of the PHP type system",
  10983. "homepage": "https://github.com/sebastianbergmann/type",
  10984. "support": {
  10985. "issues": "https://github.com/sebastianbergmann/type/issues",
  10986. "source": "https://github.com/sebastianbergmann/type/tree/1.1.4"
  10987. },
  10988. "funding": [
  10989. {
  10990. "url": "https://github.com/sebastianbergmann",
  10991. "type": "github"
  10992. }
  10993. ],
  10994. "time": "2020-11-30T07:25:11+00:00"
  10995. },
  10996. {
  10997. "name": "sebastian/version",
  10998. "version": "2.0.1",
  10999. "source": {
  11000. "type": "git",
  11001. "url": "https://github.com/sebastianbergmann/version.git",
  11002. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  11003. },
  11004. "dist": {
  11005. "type": "zip",
  11006. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  11007. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  11008. "shasum": "",
  11009. "mirrors": [
  11010. {
  11011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11012. "preferred": true
  11013. }
  11014. ]
  11015. },
  11016. "require": {
  11017. "php": ">=5.6"
  11018. },
  11019. "type": "library",
  11020. "extra": {
  11021. "branch-alias": {
  11022. "dev-master": "2.0.x-dev"
  11023. }
  11024. },
  11025. "autoload": {
  11026. "classmap": [
  11027. "src/"
  11028. ]
  11029. },
  11030. "notification-url": "https://packagist.org/downloads/",
  11031. "license": [
  11032. "BSD-3-Clause"
  11033. ],
  11034. "authors": [
  11035. {
  11036. "name": "Sebastian Bergmann",
  11037. "email": "sebastian@phpunit.de",
  11038. "role": "lead"
  11039. }
  11040. ],
  11041. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11042. "homepage": "https://github.com/sebastianbergmann/version",
  11043. "support": {
  11044. "issues": "https://github.com/sebastianbergmann/version/issues",
  11045. "source": "https://github.com/sebastianbergmann/version/tree/master"
  11046. },
  11047. "time": "2016-10-03T07:35:21+00:00"
  11048. },
  11049. {
  11050. "name": "theseer/tokenizer",
  11051. "version": "1.2.1",
  11052. "source": {
  11053. "type": "git",
  11054. "url": "https://github.com/theseer/tokenizer.git",
  11055. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11056. },
  11057. "dist": {
  11058. "type": "zip",
  11059. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11060. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11061. "shasum": "",
  11062. "mirrors": [
  11063. {
  11064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11065. "preferred": true
  11066. }
  11067. ]
  11068. },
  11069. "require": {
  11070. "ext-dom": "*",
  11071. "ext-tokenizer": "*",
  11072. "ext-xmlwriter": "*",
  11073. "php": "^7.2 || ^8.0"
  11074. },
  11075. "type": "library",
  11076. "autoload": {
  11077. "classmap": [
  11078. "src/"
  11079. ]
  11080. },
  11081. "notification-url": "https://packagist.org/downloads/",
  11082. "license": [
  11083. "BSD-3-Clause"
  11084. ],
  11085. "authors": [
  11086. {
  11087. "name": "Arne Blankerts",
  11088. "email": "arne@blankerts.de",
  11089. "role": "Developer"
  11090. }
  11091. ],
  11092. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11093. "support": {
  11094. "issues": "https://github.com/theseer/tokenizer/issues",
  11095. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11096. },
  11097. "funding": [
  11098. {
  11099. "url": "https://github.com/theseer",
  11100. "type": "github"
  11101. }
  11102. ],
  11103. "time": "2021-07-28T10:34:58+00:00"
  11104. }
  11105. ],
  11106. "aliases": [],
  11107. "minimum-stability": "dev",
  11108. "stability-flags": [],
  11109. "prefer-stable": true,
  11110. "prefer-lowest": false,
  11111. "platform": {
  11112. "php": "^7.2"
  11113. },
  11114. "platform-dev": [],
  11115. "plugin-api-version": "2.3.0"
  11116. }