composer.lock 299 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408
  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": "94970c4e8d0d162c0ba39056e9ce8ee0",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  20. "reference": "eee4fc81296531e6aafba4c2bbccfc5adab1676e",
  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. "ext-json": "*",
  31. "php": ">=5.5"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.0|^5.0|^6.0",
  35. "squizlabs/php_codesniffer": "^3.0"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.x"
  65. },
  66. "time": "2019-01-01T23:59:15+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.1.4",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  79. "reference": "e79d4151ad8924c0cf79d4fe0ec151b8d7663a25",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^4.8.35|^5.4.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2021-06-08T10:49:34+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba-openapi",
  156. "version": "0.2.5",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  160. "reference": "e57268b72616ed146eea1b5749d96b33e1f75ec3"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/e57268b72616ed146eea1b5749d96b33e1f75ec3",
  165. "reference": "e57268b72616ed146eea1b5749d96b33e1f75ec3",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "alibabacloud/credentials": "^1.1",
  176. "alibabacloud/gateway-spi": "^0.0.1",
  177. "alibabacloud/openapi-util": "^0.1.10",
  178. "alibabacloud/tea-utils": "^0.2.0",
  179. "php": ">5.5"
  180. },
  181. "type": "library",
  182. "autoload": {
  183. "psr-4": {
  184. "Darabonba\\OpenApi\\": "src"
  185. }
  186. },
  187. "notification-url": "https://packagist.org/downloads/",
  188. "license": [
  189. "Apache-2.0"
  190. ],
  191. "authors": [
  192. {
  193. "name": "Alibaba Cloud SDK",
  194. "email": "sdk-team@alibabacloud.com"
  195. }
  196. ],
  197. "description": "Alibaba Cloud OpenApi Client",
  198. "support": {
  199. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  200. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.5"
  201. },
  202. "time": "2021-12-22T07:45:24+00:00"
  203. },
  204. {
  205. "name": "alibabacloud/dingtalk",
  206. "version": "1.3.52",
  207. "source": {
  208. "type": "git",
  209. "url": "https://github.com/alibabacloud-sdk-php/dingtalk.git",
  210. "reference": "1eb9bc4e06f8bf9f41e0783b85d77c2955c72419"
  211. },
  212. "dist": {
  213. "type": "zip",
  214. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dingtalk/zipball/1eb9bc4e06f8bf9f41e0783b85d77c2955c72419",
  215. "reference": "1eb9bc4e06f8bf9f41e0783b85d77c2955c72419",
  216. "shasum": "",
  217. "mirrors": [
  218. {
  219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  220. "preferred": true
  221. }
  222. ]
  223. },
  224. "require": {
  225. "alibabacloud/darabonba-openapi": "^0.2.5",
  226. "alibabacloud/endpoint-util": "^0.1.0",
  227. "alibabacloud/openapi-util": "^0.1.10",
  228. "alibabacloud/tea-utils": "^0.2.0",
  229. "php": ">5.5"
  230. },
  231. "type": "library",
  232. "autoload": {
  233. "psr-4": {
  234. "AlibabaCloud\\SDK\\Dingtalk\\Vim_1_0\\": "src/im_1_0/",
  235. "AlibabaCloud\\SDK\\Dingtalk\\Vats_1_0\\": "src/ats_1_0/",
  236. "AlibabaCloud\\SDK\\Dingtalk\\Vcrm_1_0\\": "src/crm_1_0/",
  237. "AlibabaCloud\\SDK\\Dingtalk\\Vdoc_1_0\\": "src/doc_1_0/",
  238. "AlibabaCloud\\SDK\\Dingtalk\\Vedu_1_0\\": "src/edu_1_0/",
  239. "AlibabaCloud\\SDK\\Dingtalk\\Vhrm_1_0\\": "src/hrm_1_0/",
  240. "AlibabaCloud\\SDK\\Dingtalk\\Vokr_1_0\\": "src/okr_1_0/",
  241. "AlibabaCloud\\SDK\\Dingtalk\\Vwms_1_0\\": "src/wms_1_0/",
  242. "AlibabaCloud\\SDK\\Dingtalk\\Valgo_1_0\\": "src/algo_1_0/",
  243. "AlibabaCloud\\SDK\\Dingtalk\\Vdiot_1_0\\": "src/diot_1_0/",
  244. "AlibabaCloud\\SDK\\Dingtalk\\Vlive_1_0\\": "src/live_1_0/",
  245. "AlibabaCloud\\SDK\\Dingtalk\\Vtodo_1_0\\": "src/todo_1_0/",
  246. "AlibabaCloud\\SDK\\Dingtalk\\Vwiki_1_0\\": "src/wiki_1_0/",
  247. "AlibabaCloud\\SDK\\Dingtalk\\Vyida_1_0\\": "src/yida_1_0/",
  248. "AlibabaCloud\\SDK\\Dingtalk\\Vapaas_1_0\\": "src/apaas_1_0/",
  249. "AlibabaCloud\\SDK\\Dingtalk\\Vbadge_1_0\\": "src/badge_1_0/",
  250. "AlibabaCloud\\SDK\\Dingtalk\\Vdrive_1_0\\": "src/drive_1_0/",
  251. "AlibabaCloud\\SDK\\Dingtalk\\Vesign_1_0\\": "src/esign_1_0/",
  252. "AlibabaCloud\\SDK\\Dingtalk\\Vesign_2_0\\": "src/esign_2_0/",
  253. "AlibabaCloud\\SDK\\Dingtalk\\Vh3yun_1_0\\": "src/h3yun_1_0/",
  254. "AlibabaCloud\\SDK\\Dingtalk\\Vjzcrm_1_0\\": "src/jzcrm_1_0/",
  255. "AlibabaCloud\\SDK\\Dingtalk\\Vrobot_1_0\\": "src/robot_1_0/",
  256. "AlibabaCloud\\SDK\\Dingtalk\\Vtrade_1_0\\": "src/trade_1_0/",
  257. "AlibabaCloud\\SDK\\Dingtalk\\Vcarbon_1_0\\": "src/carbon_1_0/",
  258. "AlibabaCloud\\SDK\\Dingtalk\\Vdingmi_1_0\\": "src/dingmi_1_0/",
  259. "AlibabaCloud\\SDK\\Dingtalk\\Vimpaas_1_0\\": "src/impaas_1_0/",
  260. "AlibabaCloud\\SDK\\Dingtalk\\Voauth2_1_0\\": "src/oauth2_1_0/",
  261. "AlibabaCloud\\SDK\\Dingtalk\\Vsearch_1_0\\": "src/search_1_0/",
  262. "AlibabaCloud\\SDK\\Dingtalk\\Valitrip_1_0\\": "src/alitrip_1_0/",
  263. "AlibabaCloud\\SDK\\Dingtalk\\Vcontact_1_0\\": "src/contact_1_0/",
  264. "AlibabaCloud\\SDK\\Dingtalk\\Vcontent_1_0\\": "src/content_1_0/",
  265. "AlibabaCloud\\SDK\\Dingtalk\\Vfinance_1_0\\": "src/finance_1_0/",
  266. "AlibabaCloud\\SDK\\Dingtalk\\Vhrbrain_1_0\\": "src/hrbrain_1_0/",
  267. "AlibabaCloud\\SDK\\Dingtalk\\Vminiapp_1_0\\": "src/miniapp_1_0/",
  268. "AlibabaCloud\\SDK\\Dingtalk\\Vproject_1_0\\": "src/project_1_0/",
  269. "AlibabaCloud\\SDK\\Dingtalk\\Vvillage_1_0\\": "src/village_1_0/",
  270. "AlibabaCloud\\SDK\\Dingtalk\\Vcalendar_1_0\\": "src/calendar_1_0/",
  271. "AlibabaCloud\\SDK\\Dingtalk\\Vindustry_1_0\\": "src/industry_1_0/",
  272. "AlibabaCloud\\SDK\\Dingtalk\\Vresident_1_0\\": "src/resident_1_0/",
  273. "AlibabaCloud\\SDK\\Dingtalk\\Vworkflow_1_0\\": "src/workflow_1_0/",
  274. "AlibabaCloud\\SDK\\Dingtalk\\Vconnector_1_0\\": "src/connector_1_0/",
  275. "AlibabaCloud\\SDK\\Dingtalk\\Vdevicemng_1_0\\": "src/devicemng_1_0/",
  276. "AlibabaCloud\\SDK\\Dingtalk\\Vexclusive_1_0\\": "src/exclusive_1_0/",
  277. "AlibabaCloud\\SDK\\Dingtalk\\Vmicro_app_1_0\\": "src/micro_app_1_0/",
  278. "AlibabaCloud\\SDK\\Dingtalk\\Vworkbench_1_0\\": "src/workbench_1_0/",
  279. "AlibabaCloud\\SDK\\Dingtalk\\Vapp_market_1_0\\": "src/app_market_1_0/",
  280. "AlibabaCloud\\SDK\\Dingtalk\\Vattendance_1_0\\": "src/attendance_1_0/",
  281. "AlibabaCloud\\SDK\\Dingtalk\\Vbizfinance_1_0\\": "src/bizfinance_1_0/",
  282. "AlibabaCloud\\SDK\\Dingtalk\\Vconference_1_0\\": "src/conference_1_0/",
  283. "AlibabaCloud\\SDK\\Dingtalk\\Vdatacenter_1_0\\": "src/datacenter_1_0/",
  284. "AlibabaCloud\\SDK\\Dingtalk\\Vtrajectory_1_0\\": "src/trajectory_1_0/",
  285. "AlibabaCloud\\SDK\\Dingtalk\\Vworkrecord_1_0\\": "src/workrecord_1_0/",
  286. "AlibabaCloud\\SDK\\Dingtalk\\Vorg_culture_1_0\\": "src/org_culture_1_0/",
  287. "AlibabaCloud\\SDK\\Dingtalk\\Vflashmeeting_1_0\\": "src/flashmeeting_1_0/",
  288. "AlibabaCloud\\SDK\\Dingtalk\\Vsmart_device_1_0\\": "src/smart_device_1_0/",
  289. "AlibabaCloud\\SDK\\Dingtalk\\Vmanufacturing_1_0\\": "src/manufacturing_1_0/",
  290. "AlibabaCloud\\SDK\\Dingtalk\\Vservice_group_1_0\\": "src/service_group_1_0/",
  291. "AlibabaCloud\\SDK\\Dingtalk\\Voccupationauth_1_0\\": "src/occupationauth_1_0/",
  292. "AlibabaCloud\\SDK\\Dingtalk\\Vcustomer_service_1_0\\": "src/customer_service_1_0/",
  293. "AlibabaCloud\\SDK\\Dingtalk\\Vgroup_blackboard_1_0\\": "src/group_blackboard_1_0/",
  294. "AlibabaCloud\\SDK\\Dingtalk\\Vproject_integration_1_0\\": "src/project_integration_1_0/"
  295. }
  296. },
  297. "notification-url": "https://packagist.org/downloads/",
  298. "license": [
  299. "Apache-2.0"
  300. ],
  301. "authors": [
  302. {
  303. "name": "Alibaba Cloud SDK",
  304. "email": "sdk-team@alibabacloud.com"
  305. }
  306. ],
  307. "description": "Alibaba Cloud Dingtalk SDK Library for PHP",
  308. "support": {
  309. "source": "https://github.com/alibabacloud-sdk-php/dingtalk/tree/1.3.52"
  310. },
  311. "time": "2022-05-16T01:50:52+00:00"
  312. },
  313. {
  314. "name": "alibabacloud/dysmsapi-20170525",
  315. "version": "2.0.9",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  319. "reference": "f3098cdd4196aa42413e60fececcea08a3374ff1"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/f3098cdd4196aa42413e60fececcea08a3374ff1",
  324. "reference": "f3098cdd4196aa42413e60fececcea08a3374ff1",
  325. "shasum": "",
  326. "mirrors": [
  327. {
  328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  329. "preferred": true
  330. }
  331. ]
  332. },
  333. "require": {
  334. "alibabacloud/darabonba-openapi": "^0.2.5",
  335. "alibabacloud/endpoint-util": "^0.1.0",
  336. "alibabacloud/openapi-util": "^0.1.10",
  337. "alibabacloud/tea-utils": "^0.2.0",
  338. "php": ">5.5"
  339. },
  340. "type": "library",
  341. "autoload": {
  342. "psr-4": {
  343. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  344. }
  345. },
  346. "notification-url": "https://packagist.org/downloads/",
  347. "license": [
  348. "Apache-2.0"
  349. ],
  350. "authors": [
  351. {
  352. "name": "Alibaba Cloud SDK",
  353. "email": "sdk-team@alibabacloud.com"
  354. }
  355. ],
  356. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  357. "support": {
  358. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.9"
  359. },
  360. "time": "2022-01-24T07:38:41+00:00"
  361. },
  362. {
  363. "name": "alibabacloud/endpoint-util",
  364. "version": "0.1.1",
  365. "source": {
  366. "type": "git",
  367. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  368. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  369. },
  370. "dist": {
  371. "type": "zip",
  372. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  373. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  374. "shasum": "",
  375. "mirrors": [
  376. {
  377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  378. "preferred": true
  379. }
  380. ]
  381. },
  382. "require": {
  383. "php": ">5.5"
  384. },
  385. "require-dev": {
  386. "phpunit/phpunit": "^4.8.35|^5.4.3"
  387. },
  388. "type": "library",
  389. "autoload": {
  390. "psr-4": {
  391. "AlibabaCloud\\Endpoint\\": "src"
  392. }
  393. },
  394. "notification-url": "https://packagist.org/downloads/",
  395. "license": [
  396. "Apache-2.0"
  397. ],
  398. "authors": [
  399. {
  400. "name": "Alibaba Cloud SDK",
  401. "email": "sdk-team@alibabacloud.com"
  402. }
  403. ],
  404. "description": "Alibaba Cloud Endpoint Library for PHP",
  405. "support": {
  406. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  407. },
  408. "time": "2020-06-04T10:57:15+00:00"
  409. },
  410. {
  411. "name": "alibabacloud/gateway-spi",
  412. "version": "0.0.1",
  413. "source": {
  414. "type": "git",
  415. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  416. "reference": "36ba38571acbf821cfd84555cdb1327cdbf86935"
  417. },
  418. "dist": {
  419. "type": "zip",
  420. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/36ba38571acbf821cfd84555cdb1327cdbf86935",
  421. "reference": "36ba38571acbf821cfd84555cdb1327cdbf86935",
  422. "shasum": "",
  423. "mirrors": [
  424. {
  425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  426. "preferred": true
  427. }
  428. ]
  429. },
  430. "require": {
  431. "alibabacloud/credentials": "^1.1",
  432. "php": ">5.5"
  433. },
  434. "type": "library",
  435. "autoload": {
  436. "psr-4": {
  437. "Darabonba\\GatewaySpi\\": "src"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "Apache-2.0"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Alibaba Cloud SDK",
  447. "email": "sdk-team@alibabacloud.com"
  448. }
  449. ],
  450. "description": "Alibaba Cloud Gateway SPI Client",
  451. "support": {
  452. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/0.0.1"
  453. },
  454. "time": "2021-12-07T04:41:11+00:00"
  455. },
  456. {
  457. "name": "alibabacloud/openapi-util",
  458. "version": "0.1.11",
  459. "source": {
  460. "type": "git",
  461. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  462. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c"
  463. },
  464. "dist": {
  465. "type": "zip",
  466. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/61ee137955a25c9f5f33170babb6071d4bccf12c",
  467. "reference": "61ee137955a25c9f5f33170babb6071d4bccf12c",
  468. "shasum": "",
  469. "mirrors": [
  470. {
  471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  472. "preferred": true
  473. }
  474. ]
  475. },
  476. "require": {
  477. "alibabacloud/tea": "^3.1",
  478. "alibabacloud/tea-utils": "^0.2",
  479. "lizhichao/one-sm": "^1.5",
  480. "php": ">5.5"
  481. },
  482. "require-dev": {
  483. "phpunit/phpunit": "^4.8.35|^5.4.3"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\OpenApiUtil\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "sdk-team@alibabacloud.com"
  499. }
  500. ],
  501. "description": "Alibaba Cloud OpenApi Util",
  502. "support": {
  503. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  504. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.1.11"
  505. },
  506. "time": "2021-12-28T07:57:21+00:00"
  507. },
  508. {
  509. "name": "alibabacloud/tea",
  510. "version": "3.1.23",
  511. "source": {
  512. "type": "git",
  513. "url": "https://github.com/aliyun/tea-php.git",
  514. "reference": "61fce993274edf6e7131af07256ed7723d97a85f"
  515. },
  516. "dist": {
  517. "type": "zip",
  518. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/61fce993274edf6e7131af07256ed7723d97a85f",
  519. "reference": "61fce993274edf6e7131af07256ed7723d97a85f",
  520. "shasum": "",
  521. "mirrors": [
  522. {
  523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  524. "preferred": true
  525. }
  526. ]
  527. },
  528. "require": {
  529. "adbario/php-dot-notation": "^2.2",
  530. "ext-curl": "*",
  531. "ext-json": "*",
  532. "ext-libxml": "*",
  533. "ext-mbstring": "*",
  534. "ext-openssl": "*",
  535. "ext-simplexml": "*",
  536. "ext-xmlwriter": "*",
  537. "guzzlehttp/guzzle": "^6.3|^7.0",
  538. "php": ">=5.5"
  539. },
  540. "require-dev": {
  541. "phpunit/phpunit": "*",
  542. "symfony/dotenv": "^3.4",
  543. "symfony/var-dumper": "^3.4"
  544. },
  545. "suggest": {
  546. "ext-sockets": "To use client-side monitoring"
  547. },
  548. "type": "library",
  549. "autoload": {
  550. "psr-4": {
  551. "AlibabaCloud\\Tea\\": "src"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "Apache-2.0"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Alibaba Cloud SDK",
  561. "email": "sdk-team@alibabacloud.com",
  562. "homepage": "http://www.alibabacloud.com"
  563. }
  564. ],
  565. "description": "Client of Tea for PHP",
  566. "homepage": "https://www.alibabacloud.com/",
  567. "keywords": [
  568. "alibabacloud",
  569. "client",
  570. "cloud",
  571. "tea"
  572. ],
  573. "support": {
  574. "issues": "https://github.com/aliyun/tea-php/issues",
  575. "source": "https://github.com/aliyun/tea-php"
  576. },
  577. "time": "2021-12-20T02:32:43+00:00"
  578. },
  579. {
  580. "name": "alibabacloud/tea-utils",
  581. "version": "0.2.14",
  582. "source": {
  583. "type": "git",
  584. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  585. "reference": "381df15cb4bdb58dbf596f94869ffd2ef680eddd"
  586. },
  587. "dist": {
  588. "type": "zip",
  589. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/381df15cb4bdb58dbf596f94869ffd2ef680eddd",
  590. "reference": "381df15cb4bdb58dbf596f94869ffd2ef680eddd",
  591. "shasum": "",
  592. "mirrors": [
  593. {
  594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  595. "preferred": true
  596. }
  597. ]
  598. },
  599. "require": {
  600. "alibabacloud/tea": "^3.1",
  601. "php": ">5.5"
  602. },
  603. "type": "library",
  604. "autoload": {
  605. "psr-4": {
  606. "AlibabaCloud\\Tea\\Utils\\": "src"
  607. }
  608. },
  609. "notification-url": "https://packagist.org/downloads/",
  610. "license": [
  611. "Apache-2.0"
  612. ],
  613. "authors": [
  614. {
  615. "name": "Alibaba Cloud SDK",
  616. "email": "sdk-team@alibabacloud.com"
  617. }
  618. ],
  619. "description": "Alibaba Cloud Tea Utils for PHP",
  620. "support": {
  621. "issues": "https://github.com/aliyun/tea-util/issues",
  622. "source": "https://github.com/aliyun/tea-util"
  623. },
  624. "time": "2021-02-02T10:10:58+00:00"
  625. },
  626. {
  627. "name": "aliyuncs/oss-sdk-php",
  628. "version": "v2.5.0",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  632. "reference": "f0413667d765855eb0aaa728b596801464ffdb06"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/f0413667d765855eb0aaa728b596801464ffdb06",
  637. "reference": "f0413667d765855eb0aaa728b596801464ffdb06",
  638. "shasum": "",
  639. "mirrors": [
  640. {
  641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  642. "preferred": true
  643. }
  644. ]
  645. },
  646. "require": {
  647. "php": ">=5.3"
  648. },
  649. "require-dev": {
  650. "phpunit/phpunit": "*",
  651. "satooshi/php-coveralls": "*"
  652. },
  653. "type": "library",
  654. "autoload": {
  655. "psr-4": {
  656. "OSS\\": "src/OSS"
  657. }
  658. },
  659. "notification-url": "https://packagist.org/downloads/",
  660. "license": [
  661. "MIT"
  662. ],
  663. "authors": [
  664. {
  665. "name": "Aliyuncs",
  666. "homepage": "http://www.aliyun.com"
  667. }
  668. ],
  669. "description": "Aliyun OSS SDK for PHP",
  670. "homepage": "http://www.aliyun.com/product/oss/",
  671. "support": {
  672. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  673. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.5.0"
  674. },
  675. "time": "2022-05-13T07:41:28+00:00"
  676. },
  677. {
  678. "name": "aws/aws-crt-php",
  679. "version": "v1.0.2",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/awslabs/aws-crt-php.git",
  683. "reference": "3942776a8c99209908ee0b287746263725685732"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/3942776a8c99209908ee0b287746263725685732",
  688. "reference": "3942776a8c99209908ee0b287746263725685732",
  689. "shasum": "",
  690. "mirrors": [
  691. {
  692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  693. "preferred": true
  694. }
  695. ]
  696. },
  697. "require": {
  698. "php": ">=5.5"
  699. },
  700. "require-dev": {
  701. "phpunit/phpunit": "^4.8.35|^5.4.3"
  702. },
  703. "type": "library",
  704. "autoload": {
  705. "classmap": [
  706. "src/"
  707. ]
  708. },
  709. "notification-url": "https://packagist.org/downloads/",
  710. "license": [
  711. "Apache-2.0"
  712. ],
  713. "authors": [
  714. {
  715. "name": "AWS SDK Common Runtime Team",
  716. "email": "aws-sdk-common-runtime@amazon.com"
  717. }
  718. ],
  719. "description": "AWS Common Runtime for PHP",
  720. "homepage": "http://aws.amazon.com/sdkforphp",
  721. "keywords": [
  722. "amazon",
  723. "aws",
  724. "crt",
  725. "sdk"
  726. ],
  727. "support": {
  728. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  729. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.0.2"
  730. },
  731. "time": "2021-09-03T22:57:30+00:00"
  732. },
  733. {
  734. "name": "aws/aws-sdk-php",
  735. "version": "3.231.2",
  736. "source": {
  737. "type": "git",
  738. "url": "https://github.com/aws/aws-sdk-php.git",
  739. "reference": "9a7c2a8c4b7f95074749e1a7b575e6b4486bdcab"
  740. },
  741. "dist": {
  742. "type": "zip",
  743. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9a7c2a8c4b7f95074749e1a7b575e6b4486bdcab",
  744. "reference": "9a7c2a8c4b7f95074749e1a7b575e6b4486bdcab",
  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. "aws/aws-crt-php": "^1.0.2",
  755. "ext-json": "*",
  756. "ext-pcre": "*",
  757. "ext-simplexml": "*",
  758. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  759. "guzzlehttp/promises": "^1.4.0",
  760. "guzzlehttp/psr7": "^1.8.5 || ^2.3",
  761. "mtdowling/jmespath.php": "^2.6",
  762. "php": ">=5.5"
  763. },
  764. "require-dev": {
  765. "andrewsville/php-token-reflection": "^1.4",
  766. "aws/aws-php-sns-message-validator": "~1.0",
  767. "behat/behat": "~3.0",
  768. "composer/composer": "^1.10.22",
  769. "doctrine/cache": "~1.4",
  770. "ext-dom": "*",
  771. "ext-openssl": "*",
  772. "ext-pcntl": "*",
  773. "ext-sockets": "*",
  774. "nette/neon": "^2.3",
  775. "paragonie/random_compat": ">= 2",
  776. "phpunit/phpunit": "^4.8.35 || ^5.6.3",
  777. "psr/cache": "^1.0",
  778. "psr/simple-cache": "^1.0",
  779. "sebastian/comparator": "^1.2.3"
  780. },
  781. "suggest": {
  782. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  783. "doctrine/cache": "To use the DoctrineCacheAdapter",
  784. "ext-curl": "To send requests using cURL",
  785. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  786. "ext-sockets": "To use client-side monitoring"
  787. },
  788. "type": "library",
  789. "extra": {
  790. "branch-alias": {
  791. "dev-master": "3.0-dev"
  792. }
  793. },
  794. "autoload": {
  795. "files": [
  796. "src/functions.php"
  797. ],
  798. "psr-4": {
  799. "Aws\\": "src/"
  800. }
  801. },
  802. "notification-url": "https://packagist.org/downloads/",
  803. "license": [
  804. "Apache-2.0"
  805. ],
  806. "authors": [
  807. {
  808. "name": "Amazon Web Services",
  809. "homepage": "http://aws.amazon.com"
  810. }
  811. ],
  812. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  813. "homepage": "http://aws.amazon.com/sdkforphp",
  814. "keywords": [
  815. "amazon",
  816. "aws",
  817. "cloud",
  818. "dynamodb",
  819. "ec2",
  820. "glacier",
  821. "s3",
  822. "sdk"
  823. ],
  824. "support": {
  825. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  826. "issues": "https://github.com/aws/aws-sdk-php/issues",
  827. "source": "https://github.com/aws/aws-sdk-php/tree/3.231.2"
  828. },
  829. "time": "2022-07-08T18:16:11+00:00"
  830. },
  831. {
  832. "name": "bower-asset/bootstrap",
  833. "version": "v3.4.1",
  834. "source": {
  835. "type": "git",
  836. "url": "git@github.com:twbs/bootstrap.git",
  837. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  838. },
  839. "dist": {
  840. "type": "zip",
  841. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/68b0d231a13201eb14acd3dc84e51543d16e5f7e",
  842. "reference": "68b0d231a13201eb14acd3dc84e51543d16e5f7e"
  843. },
  844. "require": {
  845. "bower-asset/jquery": ">=1.9.1,<4.0"
  846. },
  847. "type": "bower-asset",
  848. "license": [
  849. "MIT"
  850. ]
  851. },
  852. {
  853. "name": "bower-asset/inputmask",
  854. "version": "3.3.11",
  855. "source": {
  856. "type": "git",
  857. "url": "git@github.com:RobinHerbots/Inputmask.git",
  858. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  863. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  864. },
  865. "require": {
  866. "bower-asset/jquery": ">=1.7"
  867. },
  868. "type": "bower-asset",
  869. "license": [
  870. "http://opensource.org/licenses/mit-license.php"
  871. ]
  872. },
  873. {
  874. "name": "bower-asset/jquery",
  875. "version": "3.4.1",
  876. "source": {
  877. "type": "git",
  878. "url": "https://github.com/jquery/jquery-dist.git",
  879. "reference": "15bc73803f76bc53b654b9fdbbbc096f56d7c03d"
  880. },
  881. "dist": {
  882. "type": "zip",
  883. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/15bc73803f76bc53b654b9fdbbbc096f56d7c03d",
  884. "reference": "15bc73803f76bc53b654b9fdbbbc096f56d7c03d"
  885. },
  886. "type": "bower-asset",
  887. "license": [
  888. "MIT"
  889. ]
  890. },
  891. {
  892. "name": "bower-asset/punycode",
  893. "version": "v1.3.2",
  894. "source": {
  895. "type": "git",
  896. "url": "https://github.com/bestiejs/punycode.js.git",
  897. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  898. },
  899. "dist": {
  900. "type": "zip",
  901. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  902. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  903. },
  904. "type": "bower-asset"
  905. },
  906. {
  907. "name": "bower-asset/yii2-pjax",
  908. "version": "2.0.7.1",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/yiisoft/jquery-pjax.git",
  912. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/aef7b953107264f00234902a3880eb50dafc48be",
  917. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  918. },
  919. "require": {
  920. "bower-asset/jquery": ">=1.8"
  921. },
  922. "type": "bower-asset",
  923. "license": [
  924. "MIT"
  925. ]
  926. },
  927. {
  928. "name": "cebe/markdown",
  929. "version": "1.2.1",
  930. "source": {
  931. "type": "git",
  932. "url": "https://github.com/cebe/markdown.git",
  933. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  934. },
  935. "dist": {
  936. "type": "zip",
  937. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  938. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  939. "shasum": ""
  940. },
  941. "require": {
  942. "lib-pcre": "*",
  943. "php": ">=5.4.0"
  944. },
  945. "require-dev": {
  946. "cebe/indent": "*",
  947. "facebook/xhprof": "*@dev",
  948. "phpunit/phpunit": "4.1.*"
  949. },
  950. "bin": [
  951. "bin/markdown"
  952. ],
  953. "type": "library",
  954. "extra": {
  955. "branch-alias": {
  956. "dev-master": "1.2.x-dev"
  957. }
  958. },
  959. "autoload": {
  960. "psr-4": {
  961. "cebe\\markdown\\": ""
  962. }
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "MIT"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Carsten Brandt",
  971. "email": "mail@cebe.cc",
  972. "homepage": "http://cebe.cc/",
  973. "role": "Creator"
  974. }
  975. ],
  976. "description": "A super fast, highly extensible markdown parser for PHP",
  977. "homepage": "https://github.com/cebe/markdown#readme",
  978. "keywords": [
  979. "extensible",
  980. "fast",
  981. "gfm",
  982. "markdown",
  983. "markdown-extra"
  984. ],
  985. "time": "2018-03-26T11:24:36+00:00"
  986. },
  987. {
  988. "name": "doctrine/lexer",
  989. "version": "1.2.0",
  990. "source": {
  991. "type": "git",
  992. "url": "https://github.com/doctrine/lexer.git",
  993. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
  994. },
  995. "dist": {
  996. "type": "zip",
  997. "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  998. "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
  999. "shasum": ""
  1000. },
  1001. "require": {
  1002. "php": "^7.2"
  1003. },
  1004. "require-dev": {
  1005. "doctrine/coding-standard": "^6.0",
  1006. "phpstan/phpstan": "^0.11.8",
  1007. "phpunit/phpunit": "^8.2"
  1008. },
  1009. "type": "library",
  1010. "extra": {
  1011. "branch-alias": {
  1012. "dev-master": "1.2.x-dev"
  1013. }
  1014. },
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Guilherme Blanco",
  1027. "email": "guilhermeblanco@gmail.com"
  1028. },
  1029. {
  1030. "name": "Roman Borschel",
  1031. "email": "roman@code-factory.org"
  1032. },
  1033. {
  1034. "name": "Johannes Schmitt",
  1035. "email": "schmittjoh@gmail.com"
  1036. }
  1037. ],
  1038. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1039. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1040. "keywords": [
  1041. "annotations",
  1042. "docblock",
  1043. "lexer",
  1044. "parser",
  1045. "php"
  1046. ],
  1047. "time": "2019-10-30T14:39:59+00:00"
  1048. },
  1049. {
  1050. "name": "dompdf/dompdf",
  1051. "version": "v2.0.0",
  1052. "source": {
  1053. "type": "git",
  1054. "url": "https://github.com/dompdf/dompdf.git",
  1055. "reference": "79573d8b8a141ec8a17312515de8740eed014fa9"
  1056. },
  1057. "dist": {
  1058. "type": "zip",
  1059. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/79573d8b8a141ec8a17312515de8740eed014fa9",
  1060. "reference": "79573d8b8a141ec8a17312515de8740eed014fa9",
  1061. "shasum": "",
  1062. "mirrors": [
  1063. {
  1064. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1065. "preferred": true
  1066. }
  1067. ]
  1068. },
  1069. "require": {
  1070. "ext-dom": "*",
  1071. "ext-mbstring": "*",
  1072. "masterminds/html5": "^2.0",
  1073. "phenx/php-font-lib": "^0.5.4",
  1074. "phenx/php-svg-lib": "^0.3.3 || ^0.4.0",
  1075. "php": "^7.1 || ^8.0"
  1076. },
  1077. "require-dev": {
  1078. "ext-json": "*",
  1079. "ext-zip": "*",
  1080. "mockery/mockery": "^1.3",
  1081. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  1082. "squizlabs/php_codesniffer": "^3.5"
  1083. },
  1084. "suggest": {
  1085. "ext-gd": "Needed to process images",
  1086. "ext-gmagick": "Improves image processing performance",
  1087. "ext-imagick": "Improves image processing performance",
  1088. "ext-zlib": "Needed for pdf stream compression"
  1089. },
  1090. "type": "library",
  1091. "autoload": {
  1092. "psr-4": {
  1093. "Dompdf\\": "src/"
  1094. },
  1095. "classmap": [
  1096. "lib/"
  1097. ]
  1098. },
  1099. "notification-url": "https://packagist.org/downloads/",
  1100. "license": [
  1101. "LGPL-2.1"
  1102. ],
  1103. "authors": [
  1104. {
  1105. "name": "Fabien Ménager",
  1106. "email": "fabien.menager@gmail.com"
  1107. },
  1108. {
  1109. "name": "Brian Sweeney",
  1110. "email": "eclecticgeek@gmail.com"
  1111. },
  1112. {
  1113. "name": "Gabriel Bull",
  1114. "email": "me@gabrielbull.com"
  1115. }
  1116. ],
  1117. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  1118. "homepage": "https://github.com/dompdf/dompdf",
  1119. "support": {
  1120. "issues": "https://github.com/dompdf/dompdf/issues",
  1121. "source": "https://github.com/dompdf/dompdf/tree/v2.0.0"
  1122. },
  1123. "time": "2022-06-21T21:14:57+00:00"
  1124. },
  1125. {
  1126. "name": "easydowork/yii2-rotate-captcha",
  1127. "version": "v1.0",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/easydowork/yii2-rotate-captcha.git",
  1131. "reference": "0ca465ced8490970de57987263dedd6233f10003"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/easydowork/yii2-rotate-captcha/zipball/0ca465ced8490970de57987263dedd6233f10003",
  1136. "reference": "0ca465ced8490970de57987263dedd6233f10003",
  1137. "shasum": "",
  1138. "mirrors": [
  1139. {
  1140. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1141. "preferred": true
  1142. }
  1143. ]
  1144. },
  1145. "require": {
  1146. "ext-openssl": "*",
  1147. "php": ">=7.0",
  1148. "yiisoft/yii2": "*"
  1149. },
  1150. "type": "library",
  1151. "autoload": {
  1152. "psr-4": {
  1153. "easydowork\\rotateCaptcha\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "authors": [
  1161. {
  1162. "name": "easydowork",
  1163. "email": "254364502@qq.com"
  1164. }
  1165. ],
  1166. "description": "基于isszz/rotate-captcha组件开发yii2图片旋转验证码",
  1167. "keywords": [
  1168. "captcha",
  1169. "rotate captcha",
  1170. "yii2"
  1171. ],
  1172. "support": {
  1173. "issues": "https://github.com/easydowork/yii2-rotate-captcha/issues",
  1174. "source": "https://github.com/easydowork/yii2-rotate-captcha/tree/v1.0"
  1175. },
  1176. "time": "2022-02-09T03:08:34+00:00"
  1177. },
  1178. {
  1179. "name": "egulias/email-validator",
  1180. "version": "2.1.15",
  1181. "source": {
  1182. "type": "git",
  1183. "url": "https://github.com/egulias/EmailValidator.git",
  1184. "reference": "e834eea5306d85d67de5a05db5882911d5b29357"
  1185. },
  1186. "dist": {
  1187. "type": "zip",
  1188. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e834eea5306d85d67de5a05db5882911d5b29357",
  1189. "reference": "e834eea5306d85d67de5a05db5882911d5b29357",
  1190. "shasum": ""
  1191. },
  1192. "require": {
  1193. "doctrine/lexer": "^1.0.1",
  1194. "php": ">=5.5",
  1195. "symfony/polyfill-intl-idn": "^1.10"
  1196. },
  1197. "require-dev": {
  1198. "dominicsayers/isemail": "^3.0.7",
  1199. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1200. "satooshi/php-coveralls": "^1.0.1"
  1201. },
  1202. "suggest": {
  1203. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1204. },
  1205. "type": "library",
  1206. "extra": {
  1207. "branch-alias": {
  1208. "dev-master": "2.1.x-dev"
  1209. }
  1210. },
  1211. "autoload": {
  1212. "psr-4": {
  1213. "Egulias\\EmailValidator\\": "EmailValidator"
  1214. }
  1215. },
  1216. "notification-url": "https://packagist.org/downloads/",
  1217. "license": [
  1218. "MIT"
  1219. ],
  1220. "authors": [
  1221. {
  1222. "name": "Eduardo Gulias Davis"
  1223. }
  1224. ],
  1225. "description": "A library for validating emails against several RFCs",
  1226. "homepage": "https://github.com/egulias/EmailValidator",
  1227. "keywords": [
  1228. "email",
  1229. "emailvalidation",
  1230. "emailvalidator",
  1231. "validation",
  1232. "validator"
  1233. ],
  1234. "time": "2020-01-20T21:40:59+00:00"
  1235. },
  1236. {
  1237. "name": "ezyang/htmlpurifier",
  1238. "version": "v4.14.0",
  1239. "source": {
  1240. "type": "git",
  1241. "url": "https://github.com/ezyang/htmlpurifier.git",
  1242. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75"
  1243. },
  1244. "dist": {
  1245. "type": "zip",
  1246. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1247. "reference": "12ab42bd6e742c70c0a52f7b82477fcd44e64b75",
  1248. "shasum": "",
  1249. "mirrors": [
  1250. {
  1251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1252. "preferred": true
  1253. }
  1254. ]
  1255. },
  1256. "require": {
  1257. "php": ">=5.2"
  1258. },
  1259. "type": "library",
  1260. "autoload": {
  1261. "files": [
  1262. "library/HTMLPurifier.composer.php"
  1263. ],
  1264. "psr-0": {
  1265. "HTMLPurifier": "library/"
  1266. },
  1267. "exclude-from-classmap": [
  1268. "/library/HTMLPurifier/Language/"
  1269. ]
  1270. },
  1271. "notification-url": "https://packagist.org/downloads/",
  1272. "license": [
  1273. "LGPL-2.1-or-later"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Edward Z. Yang",
  1278. "email": "admin@htmlpurifier.org",
  1279. "homepage": "http://ezyang.com"
  1280. }
  1281. ],
  1282. "description": "Standards compliant HTML filter written in PHP",
  1283. "homepage": "http://htmlpurifier.org/",
  1284. "keywords": [
  1285. "html"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1289. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.14.0"
  1290. },
  1291. "time": "2021-12-25T01:21:49+00:00"
  1292. },
  1293. {
  1294. "name": "guzzlehttp/command",
  1295. "version": "1.2.1",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/guzzle/command.git",
  1299. "reference": "04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/guzzle/command/zipball/04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5",
  1304. "reference": "04b06e7f5ef37d814aeb3f4b6015b65a9d4412c5",
  1305. "shasum": "",
  1306. "mirrors": [
  1307. {
  1308. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1309. "preferred": true
  1310. }
  1311. ]
  1312. },
  1313. "require": {
  1314. "guzzlehttp/guzzle": "^7.3",
  1315. "guzzlehttp/promises": "^1.3",
  1316. "guzzlehttp/psr7": "^1.7 || ^2.0",
  1317. "php": "^7.2.5 || ^8.0"
  1318. },
  1319. "require-dev": {
  1320. "phpunit/phpunit": "^8.5.19"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "branch-alias": {
  1325. "dev-master": "1.2-dev"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "psr-4": {
  1330. "GuzzleHttp\\Command\\": "src/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "MIT"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Graham Campbell",
  1340. "email": "hello@gjcampbell.co.uk",
  1341. "homepage": "https://github.com/GrahamCampbell"
  1342. },
  1343. {
  1344. "name": "Michael Dowling",
  1345. "email": "mtdowling@gmail.com",
  1346. "homepage": "https://github.com/mtdowling"
  1347. },
  1348. {
  1349. "name": "Jeremy Lindblom",
  1350. "email": "jeremeamia@gmail.com",
  1351. "homepage": "https://github.com/jeremeamia"
  1352. },
  1353. {
  1354. "name": "Tobias Nyholm",
  1355. "email": "tobias.nyholm@gmail.com",
  1356. "homepage": "https://github.com/Nyholm"
  1357. }
  1358. ],
  1359. "description": "Provides the foundation for building command-based web service clients",
  1360. "support": {
  1361. "issues": "https://github.com/guzzle/command/issues",
  1362. "source": "https://github.com/guzzle/command/tree/1.2.1"
  1363. },
  1364. "funding": [
  1365. {
  1366. "url": "https://github.com/GrahamCampbell",
  1367. "type": "github"
  1368. },
  1369. {
  1370. "url": "https://github.com/Nyholm",
  1371. "type": "github"
  1372. },
  1373. {
  1374. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  1375. "type": "tidelift"
  1376. }
  1377. ],
  1378. "time": "2021-09-05T19:12:19+00:00"
  1379. },
  1380. {
  1381. "name": "guzzlehttp/guzzle",
  1382. "version": "7.4.5",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/guzzle/guzzle.git",
  1386. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1391. "reference": "1dd98b0564cb3f6bd16ce683cb755f94c10fbd82",
  1392. "shasum": "",
  1393. "mirrors": [
  1394. {
  1395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1396. "preferred": true
  1397. }
  1398. ]
  1399. },
  1400. "require": {
  1401. "ext-json": "*",
  1402. "guzzlehttp/promises": "^1.5",
  1403. "guzzlehttp/psr7": "^1.9 || ^2.4",
  1404. "php": "^7.2.5 || ^8.0",
  1405. "psr/http-client": "^1.0",
  1406. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1407. },
  1408. "provide": {
  1409. "psr/http-client-implementation": "1.0"
  1410. },
  1411. "require-dev": {
  1412. "bamarni/composer-bin-plugin": "^1.4.1",
  1413. "ext-curl": "*",
  1414. "php-http/client-integration-tests": "^3.0",
  1415. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1416. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1417. },
  1418. "suggest": {
  1419. "ext-curl": "Required for CURL handler support",
  1420. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1421. "psr/log": "Required for using the Log middleware"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "7.4-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "files": [
  1431. "src/functions_include.php"
  1432. ],
  1433. "psr-4": {
  1434. "GuzzleHttp\\": "src/"
  1435. }
  1436. },
  1437. "notification-url": "https://packagist.org/downloads/",
  1438. "license": [
  1439. "MIT"
  1440. ],
  1441. "authors": [
  1442. {
  1443. "name": "Graham Campbell",
  1444. "email": "hello@gjcampbell.co.uk",
  1445. "homepage": "https://github.com/GrahamCampbell"
  1446. },
  1447. {
  1448. "name": "Michael Dowling",
  1449. "email": "mtdowling@gmail.com",
  1450. "homepage": "https://github.com/mtdowling"
  1451. },
  1452. {
  1453. "name": "Jeremy Lindblom",
  1454. "email": "jeremeamia@gmail.com",
  1455. "homepage": "https://github.com/jeremeamia"
  1456. },
  1457. {
  1458. "name": "George Mponos",
  1459. "email": "gmponos@gmail.com",
  1460. "homepage": "https://github.com/gmponos"
  1461. },
  1462. {
  1463. "name": "Tobias Nyholm",
  1464. "email": "tobias.nyholm@gmail.com",
  1465. "homepage": "https://github.com/Nyholm"
  1466. },
  1467. {
  1468. "name": "Márk Sági-Kazár",
  1469. "email": "mark.sagikazar@gmail.com",
  1470. "homepage": "https://github.com/sagikazarmark"
  1471. },
  1472. {
  1473. "name": "Tobias Schultze",
  1474. "email": "webmaster@tubo-world.de",
  1475. "homepage": "https://github.com/Tobion"
  1476. }
  1477. ],
  1478. "description": "Guzzle is a PHP HTTP client library",
  1479. "keywords": [
  1480. "client",
  1481. "curl",
  1482. "framework",
  1483. "http",
  1484. "http client",
  1485. "psr-18",
  1486. "psr-7",
  1487. "rest",
  1488. "web service"
  1489. ],
  1490. "support": {
  1491. "issues": "https://github.com/guzzle/guzzle/issues",
  1492. "source": "https://github.com/guzzle/guzzle/tree/7.4.5"
  1493. },
  1494. "funding": [
  1495. {
  1496. "url": "https://github.com/GrahamCampbell",
  1497. "type": "github"
  1498. },
  1499. {
  1500. "url": "https://github.com/Nyholm",
  1501. "type": "github"
  1502. },
  1503. {
  1504. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1505. "type": "tidelift"
  1506. }
  1507. ],
  1508. "time": "2022-06-20T22:16:13+00:00"
  1509. },
  1510. {
  1511. "name": "guzzlehttp/guzzle-services",
  1512. "version": "1.3.1",
  1513. "source": {
  1514. "type": "git",
  1515. "url": "https://github.com/guzzle/guzzle-services.git",
  1516. "reference": "3731f120ce6856f4c71fff7cb2a27e263fe69f84"
  1517. },
  1518. "dist": {
  1519. "type": "zip",
  1520. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/3731f120ce6856f4c71fff7cb2a27e263fe69f84",
  1521. "reference": "3731f120ce6856f4c71fff7cb2a27e263fe69f84",
  1522. "shasum": "",
  1523. "mirrors": [
  1524. {
  1525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1526. "preferred": true
  1527. }
  1528. ]
  1529. },
  1530. "require": {
  1531. "guzzlehttp/command": "^1.2",
  1532. "guzzlehttp/guzzle": "^7.3",
  1533. "guzzlehttp/psr7": "^1.7 || ^2.0",
  1534. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  1535. "php": "^7.2.5 || ^8.0"
  1536. },
  1537. "require-dev": {
  1538. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1539. },
  1540. "suggest": {
  1541. "gimler/guzzle-description-loader": "^0.0.4"
  1542. },
  1543. "type": "library",
  1544. "extra": {
  1545. "branch-alias": {
  1546. "dev-master": "1.3-dev"
  1547. }
  1548. },
  1549. "autoload": {
  1550. "psr-4": {
  1551. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1552. }
  1553. },
  1554. "notification-url": "https://packagist.org/downloads/",
  1555. "license": [
  1556. "MIT"
  1557. ],
  1558. "authors": [
  1559. {
  1560. "name": "Graham Campbell",
  1561. "email": "hello@gjcampbell.co.uk",
  1562. "homepage": "https://github.com/GrahamCampbell"
  1563. },
  1564. {
  1565. "name": "Michael Dowling",
  1566. "email": "mtdowling@gmail.com",
  1567. "homepage": "https://github.com/mtdowling"
  1568. },
  1569. {
  1570. "name": "Stefano Kowalke",
  1571. "email": "blueduck@mail.org",
  1572. "homepage": "https://github.com/Konafets"
  1573. },
  1574. {
  1575. "name": "Tobias Nyholm",
  1576. "email": "tobias.nyholm@gmail.com",
  1577. "homepage": "https://github.com/Nyholm"
  1578. }
  1579. ],
  1580. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  1581. "support": {
  1582. "issues": "https://github.com/guzzle/guzzle-services/issues",
  1583. "source": "https://github.com/guzzle/guzzle-services/tree/1.3.1"
  1584. },
  1585. "funding": [
  1586. {
  1587. "url": "https://github.com/GrahamCampbell",
  1588. "type": "github"
  1589. },
  1590. {
  1591. "url": "https://github.com/Nyholm",
  1592. "type": "github"
  1593. },
  1594. {
  1595. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  1596. "type": "tidelift"
  1597. }
  1598. ],
  1599. "time": "2021-10-07T13:01:35+00:00"
  1600. },
  1601. {
  1602. "name": "guzzlehttp/promises",
  1603. "version": "1.5.1",
  1604. "source": {
  1605. "type": "git",
  1606. "url": "https://github.com/guzzle/promises.git",
  1607. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
  1608. },
  1609. "dist": {
  1610. "type": "zip",
  1611. "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1612. "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
  1613. "shasum": "",
  1614. "mirrors": [
  1615. {
  1616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1617. "preferred": true
  1618. }
  1619. ]
  1620. },
  1621. "require": {
  1622. "php": ">=5.5"
  1623. },
  1624. "require-dev": {
  1625. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1626. },
  1627. "type": "library",
  1628. "extra": {
  1629. "branch-alias": {
  1630. "dev-master": "1.5-dev"
  1631. }
  1632. },
  1633. "autoload": {
  1634. "files": [
  1635. "src/functions_include.php"
  1636. ],
  1637. "psr-4": {
  1638. "GuzzleHttp\\Promise\\": "src/"
  1639. }
  1640. },
  1641. "notification-url": "https://packagist.org/downloads/",
  1642. "license": [
  1643. "MIT"
  1644. ],
  1645. "authors": [
  1646. {
  1647. "name": "Graham Campbell",
  1648. "email": "hello@gjcampbell.co.uk",
  1649. "homepage": "https://github.com/GrahamCampbell"
  1650. },
  1651. {
  1652. "name": "Michael Dowling",
  1653. "email": "mtdowling@gmail.com",
  1654. "homepage": "https://github.com/mtdowling"
  1655. },
  1656. {
  1657. "name": "Tobias Nyholm",
  1658. "email": "tobias.nyholm@gmail.com",
  1659. "homepage": "https://github.com/Nyholm"
  1660. },
  1661. {
  1662. "name": "Tobias Schultze",
  1663. "email": "webmaster@tubo-world.de",
  1664. "homepage": "https://github.com/Tobion"
  1665. }
  1666. ],
  1667. "description": "Guzzle promises library",
  1668. "keywords": [
  1669. "promise"
  1670. ],
  1671. "support": {
  1672. "issues": "https://github.com/guzzle/promises/issues",
  1673. "source": "https://github.com/guzzle/promises/tree/1.5.1"
  1674. },
  1675. "funding": [
  1676. {
  1677. "url": "https://github.com/GrahamCampbell",
  1678. "type": "github"
  1679. },
  1680. {
  1681. "url": "https://github.com/Nyholm",
  1682. "type": "github"
  1683. },
  1684. {
  1685. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1686. "type": "tidelift"
  1687. }
  1688. ],
  1689. "time": "2021-10-22T20:56:57+00:00"
  1690. },
  1691. {
  1692. "name": "guzzlehttp/psr7",
  1693. "version": "1.9.0",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/guzzle/psr7.git",
  1697. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  1702. "reference": "e98e3e6d4f86621a9b75f623996e6bbdeb4b9318",
  1703. "shasum": "",
  1704. "mirrors": [
  1705. {
  1706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1707. "preferred": true
  1708. }
  1709. ]
  1710. },
  1711. "require": {
  1712. "php": ">=5.4.0",
  1713. "psr/http-message": "~1.0",
  1714. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1715. },
  1716. "provide": {
  1717. "psr/http-message-implementation": "1.0"
  1718. },
  1719. "require-dev": {
  1720. "ext-zlib": "*",
  1721. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1722. },
  1723. "suggest": {
  1724. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1725. },
  1726. "type": "library",
  1727. "extra": {
  1728. "branch-alias": {
  1729. "dev-master": "1.9-dev"
  1730. }
  1731. },
  1732. "autoload": {
  1733. "files": [
  1734. "src/functions_include.php"
  1735. ],
  1736. "psr-4": {
  1737. "GuzzleHttp\\Psr7\\": "src/"
  1738. }
  1739. },
  1740. "notification-url": "https://packagist.org/downloads/",
  1741. "license": [
  1742. "MIT"
  1743. ],
  1744. "authors": [
  1745. {
  1746. "name": "Graham Campbell",
  1747. "email": "hello@gjcampbell.co.uk",
  1748. "homepage": "https://github.com/GrahamCampbell"
  1749. },
  1750. {
  1751. "name": "Michael Dowling",
  1752. "email": "mtdowling@gmail.com",
  1753. "homepage": "https://github.com/mtdowling"
  1754. },
  1755. {
  1756. "name": "George Mponos",
  1757. "email": "gmponos@gmail.com",
  1758. "homepage": "https://github.com/gmponos"
  1759. },
  1760. {
  1761. "name": "Tobias Nyholm",
  1762. "email": "tobias.nyholm@gmail.com",
  1763. "homepage": "https://github.com/Nyholm"
  1764. },
  1765. {
  1766. "name": "Márk Sági-Kazár",
  1767. "email": "mark.sagikazar@gmail.com",
  1768. "homepage": "https://github.com/sagikazarmark"
  1769. },
  1770. {
  1771. "name": "Tobias Schultze",
  1772. "email": "webmaster@tubo-world.de",
  1773. "homepage": "https://github.com/Tobion"
  1774. }
  1775. ],
  1776. "description": "PSR-7 message implementation that also provides common utility methods",
  1777. "keywords": [
  1778. "http",
  1779. "message",
  1780. "psr-7",
  1781. "request",
  1782. "response",
  1783. "stream",
  1784. "uri",
  1785. "url"
  1786. ],
  1787. "support": {
  1788. "issues": "https://github.com/guzzle/psr7/issues",
  1789. "source": "https://github.com/guzzle/psr7/tree/1.9.0"
  1790. },
  1791. "funding": [
  1792. {
  1793. "url": "https://github.com/GrahamCampbell",
  1794. "type": "github"
  1795. },
  1796. {
  1797. "url": "https://github.com/Nyholm",
  1798. "type": "github"
  1799. },
  1800. {
  1801. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1802. "type": "tidelift"
  1803. }
  1804. ],
  1805. "time": "2022-06-20T21:43:03+00:00"
  1806. },
  1807. {
  1808. "name": "guzzlehttp/uri-template",
  1809. "version": "v1.0.1",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/guzzle/uri-template.git",
  1813. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/b945d74a55a25a949158444f09ec0d3c120d69e2",
  1818. "reference": "b945d74a55a25a949158444f09ec0d3c120d69e2",
  1819. "shasum": "",
  1820. "mirrors": [
  1821. {
  1822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1823. "preferred": true
  1824. }
  1825. ]
  1826. },
  1827. "require": {
  1828. "php": "^7.2.5 || ^8.0",
  1829. "symfony/polyfill-php80": "^1.17"
  1830. },
  1831. "require-dev": {
  1832. "phpunit/phpunit": "^8.5.19 || ^9.5.8",
  1833. "uri-template/tests": "1.0.0"
  1834. },
  1835. "type": "library",
  1836. "extra": {
  1837. "branch-alias": {
  1838. "dev-master": "1.0-dev"
  1839. }
  1840. },
  1841. "autoload": {
  1842. "psr-4": {
  1843. "GuzzleHttp\\UriTemplate\\": "src"
  1844. }
  1845. },
  1846. "notification-url": "https://packagist.org/downloads/",
  1847. "license": [
  1848. "MIT"
  1849. ],
  1850. "authors": [
  1851. {
  1852. "name": "Graham Campbell",
  1853. "email": "hello@gjcampbell.co.uk",
  1854. "homepage": "https://github.com/GrahamCampbell"
  1855. },
  1856. {
  1857. "name": "Michael Dowling",
  1858. "email": "mtdowling@gmail.com",
  1859. "homepage": "https://github.com/mtdowling"
  1860. },
  1861. {
  1862. "name": "George Mponos",
  1863. "email": "gmponos@gmail.com",
  1864. "homepage": "https://github.com/gmponos"
  1865. },
  1866. {
  1867. "name": "Tobias Nyholm",
  1868. "email": "tobias.nyholm@gmail.com",
  1869. "homepage": "https://github.com/Nyholm"
  1870. }
  1871. ],
  1872. "description": "A polyfill class for uri_template of PHP",
  1873. "keywords": [
  1874. "guzzlehttp",
  1875. "uri-template"
  1876. ],
  1877. "support": {
  1878. "issues": "https://github.com/guzzle/uri-template/issues",
  1879. "source": "https://github.com/guzzle/uri-template/tree/v1.0.1"
  1880. },
  1881. "funding": [
  1882. {
  1883. "url": "https://github.com/GrahamCampbell",
  1884. "type": "github"
  1885. },
  1886. {
  1887. "url": "https://github.com/Nyholm",
  1888. "type": "github"
  1889. },
  1890. {
  1891. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1892. "type": "tidelift"
  1893. }
  1894. ],
  1895. "time": "2021-10-07T12:57:01+00:00"
  1896. },
  1897. {
  1898. "name": "laminas/laminas-escaper",
  1899. "version": "2.9.0",
  1900. "source": {
  1901. "type": "git",
  1902. "url": "https://github.com/laminas/laminas-escaper.git",
  1903. "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f"
  1904. },
  1905. "dist": {
  1906. "type": "zip",
  1907. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/891ad70986729e20ed2e86355fcf93c9dc238a5f",
  1908. "reference": "891ad70986729e20ed2e86355fcf93c9dc238a5f",
  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": "^7.3 || ~8.0.0 || ~8.1.0"
  1919. },
  1920. "conflict": {
  1921. "zendframework/zend-escaper": "*"
  1922. },
  1923. "require-dev": {
  1924. "laminas/laminas-coding-standard": "~2.3.0",
  1925. "phpunit/phpunit": "^9.3",
  1926. "psalm/plugin-phpunit": "^0.12.2",
  1927. "vimeo/psalm": "^3.16"
  1928. },
  1929. "suggest": {
  1930. "ext-iconv": "*",
  1931. "ext-mbstring": "*"
  1932. },
  1933. "type": "library",
  1934. "autoload": {
  1935. "psr-4": {
  1936. "Laminas\\Escaper\\": "src/"
  1937. }
  1938. },
  1939. "notification-url": "https://packagist.org/downloads/",
  1940. "license": [
  1941. "BSD-3-Clause"
  1942. ],
  1943. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  1944. "homepage": "https://laminas.dev",
  1945. "keywords": [
  1946. "escaper",
  1947. "laminas"
  1948. ],
  1949. "support": {
  1950. "chat": "https://laminas.dev/chat",
  1951. "docs": "https://docs.laminas.dev/laminas-escaper/",
  1952. "forum": "https://discourse.laminas.dev",
  1953. "issues": "https://github.com/laminas/laminas-escaper/issues",
  1954. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  1955. "source": "https://github.com/laminas/laminas-escaper"
  1956. },
  1957. "funding": [
  1958. {
  1959. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1960. "type": "community_bridge"
  1961. }
  1962. ],
  1963. "time": "2021-09-02T17:10:53+00:00"
  1964. },
  1965. {
  1966. "name": "lizhichao/one-sm",
  1967. "version": "1.10",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/lizhichao/sm.git",
  1971. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  1976. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  1977. "shasum": "",
  1978. "mirrors": [
  1979. {
  1980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1981. "preferred": true
  1982. }
  1983. ]
  1984. },
  1985. "require": {
  1986. "php": ">=5.6"
  1987. },
  1988. "type": "library",
  1989. "autoload": {
  1990. "psr-4": {
  1991. "OneSm\\": "src/"
  1992. }
  1993. },
  1994. "notification-url": "https://packagist.org/downloads/",
  1995. "license": [
  1996. "Apache-2.0"
  1997. ],
  1998. "authors": [
  1999. {
  2000. "name": "tanszhe",
  2001. "email": "1018595261@qq.com"
  2002. }
  2003. ],
  2004. "description": "国密sm3",
  2005. "keywords": [
  2006. "php",
  2007. "sm3"
  2008. ],
  2009. "support": {
  2010. "issues": "https://github.com/lizhichao/sm/issues",
  2011. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2012. },
  2013. "funding": [
  2014. {
  2015. "url": "https://www.vicsdf.com/img/w.jpg",
  2016. "type": "custom"
  2017. },
  2018. {
  2019. "url": "https://www.vicsdf.com/img/z.jpg",
  2020. "type": "custom"
  2021. }
  2022. ],
  2023. "time": "2021-05-26T06:19:22+00:00"
  2024. },
  2025. {
  2026. "name": "maennchen/zipstream-php",
  2027. "version": "2.1.0",
  2028. "source": {
  2029. "type": "git",
  2030. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2031. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58"
  2032. },
  2033. "dist": {
  2034. "type": "zip",
  2035. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2036. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  2037. "shasum": "",
  2038. "mirrors": [
  2039. {
  2040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2041. "preferred": true
  2042. }
  2043. ]
  2044. },
  2045. "require": {
  2046. "myclabs/php-enum": "^1.5",
  2047. "php": ">= 7.1",
  2048. "psr/http-message": "^1.0",
  2049. "symfony/polyfill-mbstring": "^1.0"
  2050. },
  2051. "require-dev": {
  2052. "ext-zip": "*",
  2053. "guzzlehttp/guzzle": ">= 6.3",
  2054. "mikey179/vfsstream": "^1.6",
  2055. "phpunit/phpunit": ">= 7.5"
  2056. },
  2057. "type": "library",
  2058. "autoload": {
  2059. "psr-4": {
  2060. "ZipStream\\": "src/"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "MIT"
  2066. ],
  2067. "authors": [
  2068. {
  2069. "name": "Paul Duncan",
  2070. "email": "pabs@pablotron.org"
  2071. },
  2072. {
  2073. "name": "Jonatan Männchen",
  2074. "email": "jonatan@maennchen.ch"
  2075. },
  2076. {
  2077. "name": "Jesse Donat",
  2078. "email": "donatj@gmail.com"
  2079. },
  2080. {
  2081. "name": "András Kolesár",
  2082. "email": "kolesar@kolesar.hu"
  2083. }
  2084. ],
  2085. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2086. "keywords": [
  2087. "stream",
  2088. "zip"
  2089. ],
  2090. "support": {
  2091. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2092. "source": "https://github.com/maennchen/ZipStream-PHP/tree/master"
  2093. },
  2094. "funding": [
  2095. {
  2096. "url": "https://opencollective.com/zipstream",
  2097. "type": "open_collective"
  2098. }
  2099. ],
  2100. "time": "2020-05-30T13:11:16+00:00"
  2101. },
  2102. {
  2103. "name": "markbaker/complex",
  2104. "version": "3.0.1",
  2105. "source": {
  2106. "type": "git",
  2107. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2108. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22"
  2109. },
  2110. "dist": {
  2111. "type": "zip",
  2112. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2113. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  2114. "shasum": "",
  2115. "mirrors": [
  2116. {
  2117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2118. "preferred": true
  2119. }
  2120. ]
  2121. },
  2122. "require": {
  2123. "php": "^7.2 || ^8.0"
  2124. },
  2125. "require-dev": {
  2126. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2127. "phpcompatibility/php-compatibility": "^9.0",
  2128. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2129. "squizlabs/php_codesniffer": "^3.4"
  2130. },
  2131. "type": "library",
  2132. "autoload": {
  2133. "psr-4": {
  2134. "Complex\\": "classes/src/"
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Mark Baker",
  2144. "email": "mark@lange.demon.co.uk"
  2145. }
  2146. ],
  2147. "description": "PHP Class for working with complex numbers",
  2148. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2149. "keywords": [
  2150. "complex",
  2151. "mathematics"
  2152. ],
  2153. "support": {
  2154. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2155. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.1"
  2156. },
  2157. "time": "2021-06-29T15:32:53+00:00"
  2158. },
  2159. {
  2160. "name": "markbaker/matrix",
  2161. "version": "3.0.0",
  2162. "source": {
  2163. "type": "git",
  2164. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2165. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576"
  2166. },
  2167. "dist": {
  2168. "type": "zip",
  2169. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  2170. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  2171. "shasum": "",
  2172. "mirrors": [
  2173. {
  2174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2175. "preferred": true
  2176. }
  2177. ]
  2178. },
  2179. "require": {
  2180. "php": "^7.1 || ^8.0"
  2181. },
  2182. "require-dev": {
  2183. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2184. "phpcompatibility/php-compatibility": "^9.0",
  2185. "phpdocumentor/phpdocumentor": "2.*",
  2186. "phploc/phploc": "^4.0",
  2187. "phpmd/phpmd": "2.*",
  2188. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  2189. "sebastian/phpcpd": "^4.0",
  2190. "squizlabs/php_codesniffer": "^3.4"
  2191. },
  2192. "type": "library",
  2193. "autoload": {
  2194. "psr-4": {
  2195. "Matrix\\": "classes/src/"
  2196. }
  2197. },
  2198. "notification-url": "https://packagist.org/downloads/",
  2199. "license": [
  2200. "MIT"
  2201. ],
  2202. "authors": [
  2203. {
  2204. "name": "Mark Baker",
  2205. "email": "mark@demon-angel.eu"
  2206. }
  2207. ],
  2208. "description": "PHP Class for working with matrices",
  2209. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2210. "keywords": [
  2211. "mathematics",
  2212. "matrix",
  2213. "vector"
  2214. ],
  2215. "support": {
  2216. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2217. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.0"
  2218. },
  2219. "time": "2021-07-01T19:01:15+00:00"
  2220. },
  2221. {
  2222. "name": "masterminds/html5",
  2223. "version": "2.7.5",
  2224. "source": {
  2225. "type": "git",
  2226. "url": "https://github.com/Masterminds/html5-php.git",
  2227. "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab"
  2228. },
  2229. "dist": {
  2230. "type": "zip",
  2231. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f640ac1bdddff06ea333a920c95bbad8872429ab",
  2232. "reference": "f640ac1bdddff06ea333a920c95bbad8872429ab",
  2233. "shasum": "",
  2234. "mirrors": [
  2235. {
  2236. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2237. "preferred": true
  2238. }
  2239. ]
  2240. },
  2241. "require": {
  2242. "ext-ctype": "*",
  2243. "ext-dom": "*",
  2244. "ext-libxml": "*",
  2245. "php": ">=5.3.0"
  2246. },
  2247. "require-dev": {
  2248. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7"
  2249. },
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-master": "2.7-dev"
  2254. }
  2255. },
  2256. "autoload": {
  2257. "psr-4": {
  2258. "Masterminds\\": "src"
  2259. }
  2260. },
  2261. "notification-url": "https://packagist.org/downloads/",
  2262. "license": [
  2263. "MIT"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Matt Butcher",
  2268. "email": "technosophos@gmail.com"
  2269. },
  2270. {
  2271. "name": "Matt Farina",
  2272. "email": "matt@mattfarina.com"
  2273. },
  2274. {
  2275. "name": "Asmir Mustafic",
  2276. "email": "goetas@gmail.com"
  2277. }
  2278. ],
  2279. "description": "An HTML5 parser and serializer.",
  2280. "homepage": "http://masterminds.github.io/html5-php",
  2281. "keywords": [
  2282. "HTML5",
  2283. "dom",
  2284. "html",
  2285. "parser",
  2286. "querypath",
  2287. "serializer",
  2288. "xml"
  2289. ],
  2290. "support": {
  2291. "issues": "https://github.com/Masterminds/html5-php/issues",
  2292. "source": "https://github.com/Masterminds/html5-php/tree/2.7.5"
  2293. },
  2294. "time": "2021-07-01T14:25:37+00:00"
  2295. },
  2296. {
  2297. "name": "mtdowling/jmespath.php",
  2298. "version": "2.6.1",
  2299. "source": {
  2300. "type": "git",
  2301. "url": "https://github.com/jmespath/jmespath.php.git",
  2302. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb"
  2303. },
  2304. "dist": {
  2305. "type": "zip",
  2306. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2307. "reference": "9b87907a81b87bc76d19a7fb2d61e61486ee9edb",
  2308. "shasum": "",
  2309. "mirrors": [
  2310. {
  2311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2312. "preferred": true
  2313. }
  2314. ]
  2315. },
  2316. "require": {
  2317. "php": "^5.4 || ^7.0 || ^8.0",
  2318. "symfony/polyfill-mbstring": "^1.17"
  2319. },
  2320. "require-dev": {
  2321. "composer/xdebug-handler": "^1.4 || ^2.0",
  2322. "phpunit/phpunit": "^4.8.36 || ^7.5.15"
  2323. },
  2324. "bin": [
  2325. "bin/jp.php"
  2326. ],
  2327. "type": "library",
  2328. "extra": {
  2329. "branch-alias": {
  2330. "dev-master": "2.6-dev"
  2331. }
  2332. },
  2333. "autoload": {
  2334. "files": [
  2335. "src/JmesPath.php"
  2336. ],
  2337. "psr-4": {
  2338. "JmesPath\\": "src/"
  2339. }
  2340. },
  2341. "notification-url": "https://packagist.org/downloads/",
  2342. "license": [
  2343. "MIT"
  2344. ],
  2345. "authors": [
  2346. {
  2347. "name": "Michael Dowling",
  2348. "email": "mtdowling@gmail.com",
  2349. "homepage": "https://github.com/mtdowling"
  2350. }
  2351. ],
  2352. "description": "Declaratively specify how to extract elements from a JSON document",
  2353. "keywords": [
  2354. "json",
  2355. "jsonpath"
  2356. ],
  2357. "support": {
  2358. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2359. "source": "https://github.com/jmespath/jmespath.php/tree/2.6.1"
  2360. },
  2361. "time": "2021-06-14T00:11:39+00:00"
  2362. },
  2363. {
  2364. "name": "myclabs/php-enum",
  2365. "version": "1.8.3",
  2366. "source": {
  2367. "type": "git",
  2368. "url": "https://github.com/myclabs/php-enum.git",
  2369. "reference": "b942d263c641ddb5190929ff840c68f78713e937"
  2370. },
  2371. "dist": {
  2372. "type": "zip",
  2373. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  2374. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  2375. "shasum": "",
  2376. "mirrors": [
  2377. {
  2378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2379. "preferred": true
  2380. }
  2381. ]
  2382. },
  2383. "require": {
  2384. "ext-json": "*",
  2385. "php": "^7.3 || ^8.0"
  2386. },
  2387. "require-dev": {
  2388. "phpunit/phpunit": "^9.5",
  2389. "squizlabs/php_codesniffer": "1.*",
  2390. "vimeo/psalm": "^4.6.2"
  2391. },
  2392. "type": "library",
  2393. "autoload": {
  2394. "psr-4": {
  2395. "MyCLabs\\Enum\\": "src/"
  2396. }
  2397. },
  2398. "notification-url": "https://packagist.org/downloads/",
  2399. "license": [
  2400. "MIT"
  2401. ],
  2402. "authors": [
  2403. {
  2404. "name": "PHP Enum contributors",
  2405. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2406. }
  2407. ],
  2408. "description": "PHP Enum implementation",
  2409. "homepage": "http://github.com/myclabs/php-enum",
  2410. "keywords": [
  2411. "enum"
  2412. ],
  2413. "support": {
  2414. "issues": "https://github.com/myclabs/php-enum/issues",
  2415. "source": "https://github.com/myclabs/php-enum/tree/1.8.3"
  2416. },
  2417. "funding": [
  2418. {
  2419. "url": "https://github.com/mnapoli",
  2420. "type": "github"
  2421. },
  2422. {
  2423. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2424. "type": "tidelift"
  2425. }
  2426. ],
  2427. "time": "2021-07-05T08:18:36+00:00"
  2428. },
  2429. {
  2430. "name": "overtrue/pinyin",
  2431. "version": "4.0.8",
  2432. "source": {
  2433. "type": "git",
  2434. "url": "https://github.com/overtrue/pinyin.git",
  2435. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2"
  2436. },
  2437. "dist": {
  2438. "type": "zip",
  2439. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  2440. "reference": "04bdb4d33d50e8fb1aa5a824064c5151c4b15dc2",
  2441. "shasum": "",
  2442. "mirrors": [
  2443. {
  2444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2445. "preferred": true
  2446. }
  2447. ]
  2448. },
  2449. "require": {
  2450. "php": ">=7.1"
  2451. },
  2452. "require-dev": {
  2453. "brainmaestro/composer-git-hooks": "^2.7",
  2454. "friendsofphp/php-cs-fixer": "^2.16",
  2455. "phpunit/phpunit": "~8.0"
  2456. },
  2457. "type": "library",
  2458. "extra": {
  2459. "hooks": {
  2460. "pre-commit": [
  2461. "composer test",
  2462. "composer fix-style"
  2463. ],
  2464. "pre-push": [
  2465. "composer test",
  2466. "composer check-style"
  2467. ]
  2468. }
  2469. },
  2470. "autoload": {
  2471. "files": [
  2472. "src/const.php"
  2473. ],
  2474. "psr-4": {
  2475. "Overtrue\\Pinyin\\": "src/"
  2476. }
  2477. },
  2478. "notification-url": "https://packagist.org/downloads/",
  2479. "license": [
  2480. "MIT"
  2481. ],
  2482. "authors": [
  2483. {
  2484. "name": "overtrue",
  2485. "email": "anzhengchao@gmail.com",
  2486. "homepage": "http://github.com/overtrue"
  2487. }
  2488. ],
  2489. "description": "Chinese to pinyin translator.",
  2490. "homepage": "https://github.com/overtrue/pinyin",
  2491. "keywords": [
  2492. "Chinese",
  2493. "Pinyin",
  2494. "cn2pinyin"
  2495. ],
  2496. "support": {
  2497. "issues": "https://github.com/overtrue/pinyin/issues",
  2498. "source": "https://github.com/overtrue/pinyin/tree/4.0.8"
  2499. },
  2500. "funding": [
  2501. {
  2502. "url": "https://www.patreon.com/overtrue",
  2503. "type": "patreon"
  2504. }
  2505. ],
  2506. "time": "2021-07-19T03:43:32+00:00"
  2507. },
  2508. {
  2509. "name": "paragonie/random_compat",
  2510. "version": "v9.99.100",
  2511. "source": {
  2512. "type": "git",
  2513. "url": "https://github.com/paragonie/random_compat.git",
  2514. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  2515. },
  2516. "dist": {
  2517. "type": "zip",
  2518. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2519. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  2520. "shasum": "",
  2521. "mirrors": [
  2522. {
  2523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2524. "preferred": true
  2525. }
  2526. ]
  2527. },
  2528. "require": {
  2529. "php": ">= 7"
  2530. },
  2531. "require-dev": {
  2532. "phpunit/phpunit": "4.*|5.*",
  2533. "vimeo/psalm": "^1"
  2534. },
  2535. "suggest": {
  2536. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2537. },
  2538. "type": "library",
  2539. "notification-url": "https://packagist.org/downloads/",
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "authors": [
  2544. {
  2545. "name": "Paragon Initiative Enterprises",
  2546. "email": "security@paragonie.com",
  2547. "homepage": "https://paragonie.com"
  2548. }
  2549. ],
  2550. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2551. "keywords": [
  2552. "csprng",
  2553. "polyfill",
  2554. "pseudorandom",
  2555. "random"
  2556. ],
  2557. "support": {
  2558. "email": "info@paragonie.com",
  2559. "issues": "https://github.com/paragonie/random_compat/issues",
  2560. "source": "https://github.com/paragonie/random_compat"
  2561. },
  2562. "time": "2020-10-15T08:29:30+00:00"
  2563. },
  2564. {
  2565. "name": "pclzip/pclzip",
  2566. "version": "2.8.2",
  2567. "source": {
  2568. "type": "git",
  2569. "url": "https://github.com/ivanlanin/pclzip.git",
  2570. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd"
  2571. },
  2572. "dist": {
  2573. "type": "zip",
  2574. "url": "https://api.github.com/repos/ivanlanin/pclzip/zipball/19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  2575. "reference": "19dd1de9d3f5fc4d7d70175b4c344dee329f45fd",
  2576. "shasum": "",
  2577. "mirrors": [
  2578. {
  2579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2580. "preferred": true
  2581. }
  2582. ]
  2583. },
  2584. "type": "library",
  2585. "autoload": {
  2586. "classmap": [
  2587. "pclzip.lib.php"
  2588. ]
  2589. },
  2590. "notification-url": "https://packagist.org/downloads/",
  2591. "license": [
  2592. "LGPL-2.1"
  2593. ],
  2594. "authors": [
  2595. {
  2596. "name": "Vincent Blavet"
  2597. }
  2598. ],
  2599. "description": "A PHP library that offers compression and extraction functions for Zip formatted archives",
  2600. "homepage": "http://www.phpconcept.net/pclzip",
  2601. "keywords": [
  2602. "php",
  2603. "zip"
  2604. ],
  2605. "support": {
  2606. "issues": "https://github.com/ivanlanin/pclzip/issues",
  2607. "source": "https://github.com/ivanlanin/pclzip/tree/master"
  2608. },
  2609. "time": "2014-06-05T11:42:24+00:00"
  2610. },
  2611. {
  2612. "name": "phenx/php-font-lib",
  2613. "version": "0.5.4",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/dompdf/php-font-lib.git",
  2617. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  2622. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  2623. "shasum": "",
  2624. "mirrors": [
  2625. {
  2626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2627. "preferred": true
  2628. }
  2629. ]
  2630. },
  2631. "require": {
  2632. "ext-mbstring": "*"
  2633. },
  2634. "require-dev": {
  2635. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  2636. },
  2637. "type": "library",
  2638. "autoload": {
  2639. "psr-4": {
  2640. "FontLib\\": "src/FontLib"
  2641. }
  2642. },
  2643. "notification-url": "https://packagist.org/downloads/",
  2644. "license": [
  2645. "LGPL-3.0"
  2646. ],
  2647. "authors": [
  2648. {
  2649. "name": "Fabien Ménager",
  2650. "email": "fabien.menager@gmail.com"
  2651. }
  2652. ],
  2653. "description": "A library to read, parse, export and make subsets of different types of font files.",
  2654. "homepage": "https://github.com/PhenX/php-font-lib",
  2655. "support": {
  2656. "issues": "https://github.com/dompdf/php-font-lib/issues",
  2657. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  2658. },
  2659. "time": "2021-12-17T19:44:54+00:00"
  2660. },
  2661. {
  2662. "name": "phenx/php-svg-lib",
  2663. "version": "0.4.1",
  2664. "source": {
  2665. "type": "git",
  2666. "url": "https://github.com/dompdf/php-svg-lib.git",
  2667. "reference": "4498b5df7b08e8469f0f8279651ea5de9626ed02"
  2668. },
  2669. "dist": {
  2670. "type": "zip",
  2671. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/4498b5df7b08e8469f0f8279651ea5de9626ed02",
  2672. "reference": "4498b5df7b08e8469f0f8279651ea5de9626ed02",
  2673. "shasum": "",
  2674. "mirrors": [
  2675. {
  2676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2677. "preferred": true
  2678. }
  2679. ]
  2680. },
  2681. "require": {
  2682. "ext-mbstring": "*",
  2683. "php": "^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0",
  2684. "sabberworm/php-css-parser": "^8.4"
  2685. },
  2686. "require-dev": {
  2687. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  2688. },
  2689. "type": "library",
  2690. "autoload": {
  2691. "psr-4": {
  2692. "Svg\\": "src/Svg"
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "LGPL-3.0"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "Fabien Ménager",
  2702. "email": "fabien.menager@gmail.com"
  2703. }
  2704. ],
  2705. "description": "A library to read, parse and export to PDF SVG files.",
  2706. "homepage": "https://github.com/PhenX/php-svg-lib",
  2707. "support": {
  2708. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  2709. "source": "https://github.com/dompdf/php-svg-lib/tree/0.4.1"
  2710. },
  2711. "time": "2022-03-07T12:52:04+00:00"
  2712. },
  2713. {
  2714. "name": "phpoffice/common",
  2715. "version": "1.0.1",
  2716. "source": {
  2717. "type": "git",
  2718. "url": "https://github.com/PHPOffice/Common.git",
  2719. "reference": "6b5c03a704013bb79c5bab5319759cee34297903"
  2720. },
  2721. "dist": {
  2722. "type": "zip",
  2723. "url": "https://api.github.com/repos/PHPOffice/Common/zipball/6b5c03a704013bb79c5bab5319759cee34297903",
  2724. "reference": "6b5c03a704013bb79c5bab5319759cee34297903",
  2725. "shasum": "",
  2726. "mirrors": [
  2727. {
  2728. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2729. "preferred": true
  2730. }
  2731. ]
  2732. },
  2733. "require": {
  2734. "pclzip/pclzip": "^2.8",
  2735. "php": ">=7.1"
  2736. },
  2737. "require-dev": {
  2738. "phpmd/phpmd": "2.*",
  2739. "phpstan/phpstan": "^0.12.88",
  2740. "phpunit/phpunit": ">=7"
  2741. },
  2742. "type": "library",
  2743. "autoload": {
  2744. "psr-4": {
  2745. "PhpOffice\\Common\\": "src/Common/"
  2746. }
  2747. },
  2748. "notification-url": "https://packagist.org/downloads/",
  2749. "license": [
  2750. "LGPL-3.0-only"
  2751. ],
  2752. "authors": [
  2753. {
  2754. "name": "Mark Baker"
  2755. },
  2756. {
  2757. "name": "Franck Lefevre",
  2758. "homepage": "http://rootslabs.net"
  2759. }
  2760. ],
  2761. "description": "PHPOffice Common",
  2762. "homepage": "http://phpoffice.github.io",
  2763. "keywords": [
  2764. "common",
  2765. "component",
  2766. "office",
  2767. "php"
  2768. ],
  2769. "support": {
  2770. "issues": "https://github.com/PHPOffice/Common/issues",
  2771. "source": "https://github.com/PHPOffice/Common/tree/1.0.1"
  2772. },
  2773. "time": "2022-02-17T16:34:52+00:00"
  2774. },
  2775. {
  2776. "name": "phpoffice/phppresentation",
  2777. "version": "1.0.0",
  2778. "source": {
  2779. "type": "git",
  2780. "url": "https://github.com/PHPOffice/PHPPresentation.git",
  2781. "reference": "732d029640b78b5010750949629f635ed984ee10"
  2782. },
  2783. "dist": {
  2784. "type": "zip",
  2785. "url": "https://api.github.com/repos/PHPOffice/PHPPresentation/zipball/732d029640b78b5010750949629f635ed984ee10",
  2786. "reference": "732d029640b78b5010750949629f635ed984ee10",
  2787. "shasum": "",
  2788. "mirrors": [
  2789. {
  2790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2791. "preferred": true
  2792. }
  2793. ]
  2794. },
  2795. "require": {
  2796. "ext-xml": "*",
  2797. "ext-zip": "*",
  2798. "php": "^7.1|^8.0",
  2799. "phpoffice/common": "^1",
  2800. "phpoffice/phpspreadsheet": "^1.9.0"
  2801. },
  2802. "require-dev": {
  2803. "phpmd/phpmd": "2.*",
  2804. "phpstan/phpstan": "^0.12.88",
  2805. "phpunit/phpunit": ">=7.0"
  2806. },
  2807. "suggest": {
  2808. "ext-gd": "Required to add images"
  2809. },
  2810. "type": "library",
  2811. "autoload": {
  2812. "psr-4": {
  2813. "PhpOffice\\PhpPresentation\\": "src/PhpPresentation/"
  2814. }
  2815. },
  2816. "notification-url": "https://packagist.org/downloads/",
  2817. "license": [
  2818. "LGPL-3.0-only"
  2819. ],
  2820. "authors": [
  2821. {
  2822. "name": "Mark Baker"
  2823. },
  2824. {
  2825. "name": "Franck Lefevre",
  2826. "homepage": "http://rootslabs.net"
  2827. },
  2828. {
  2829. "name": "Ivan Lanin",
  2830. "homepage": "http://ivan.lanin.org"
  2831. }
  2832. ],
  2833. "description": "PHPPresentation - Read, Create and Write Presentations documents in PHP",
  2834. "homepage": "http://phpoffice.github.io",
  2835. "keywords": [
  2836. "LibreOffice",
  2837. "PowerPoint",
  2838. "odp",
  2839. "php",
  2840. "ppt",
  2841. "pptx",
  2842. "presentations"
  2843. ],
  2844. "support": {
  2845. "issues": "https://github.com/PHPOffice/PHPPresentation/issues",
  2846. "source": "https://github.com/PHPOffice/PHPPresentation/tree/1.0.0"
  2847. },
  2848. "time": "2021-11-25T08:43:20+00:00"
  2849. },
  2850. {
  2851. "name": "phpoffice/phpspreadsheet",
  2852. "version": "1.23.0",
  2853. "source": {
  2854. "type": "git",
  2855. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  2856. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e"
  2857. },
  2858. "dist": {
  2859. "type": "zip",
  2860. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/21e4cf62699eebf007db28775f7d1554e612ed9e",
  2861. "reference": "21e4cf62699eebf007db28775f7d1554e612ed9e",
  2862. "shasum": "",
  2863. "mirrors": [
  2864. {
  2865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2866. "preferred": true
  2867. }
  2868. ]
  2869. },
  2870. "require": {
  2871. "ext-ctype": "*",
  2872. "ext-dom": "*",
  2873. "ext-fileinfo": "*",
  2874. "ext-gd": "*",
  2875. "ext-iconv": "*",
  2876. "ext-libxml": "*",
  2877. "ext-mbstring": "*",
  2878. "ext-simplexml": "*",
  2879. "ext-xml": "*",
  2880. "ext-xmlreader": "*",
  2881. "ext-xmlwriter": "*",
  2882. "ext-zip": "*",
  2883. "ext-zlib": "*",
  2884. "ezyang/htmlpurifier": "^4.13",
  2885. "maennchen/zipstream-php": "^2.1",
  2886. "markbaker/complex": "^3.0",
  2887. "markbaker/matrix": "^3.0",
  2888. "php": "^7.3 || ^8.0",
  2889. "psr/http-client": "^1.0",
  2890. "psr/http-factory": "^1.0",
  2891. "psr/simple-cache": "^1.0 || ^2.0"
  2892. },
  2893. "require-dev": {
  2894. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2895. "dompdf/dompdf": "^1.0",
  2896. "friendsofphp/php-cs-fixer": "^3.2",
  2897. "jpgraph/jpgraph": "^4.0",
  2898. "mpdf/mpdf": "8.0.17",
  2899. "phpcompatibility/php-compatibility": "^9.3",
  2900. "phpstan/phpstan": "^1.1",
  2901. "phpstan/phpstan-phpunit": "^1.0",
  2902. "phpunit/phpunit": "^8.5 || ^9.0",
  2903. "squizlabs/php_codesniffer": "^3.6",
  2904. "tecnickcom/tcpdf": "^6.4"
  2905. },
  2906. "suggest": {
  2907. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  2908. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  2909. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  2910. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  2911. },
  2912. "type": "library",
  2913. "autoload": {
  2914. "psr-4": {
  2915. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  2916. }
  2917. },
  2918. "notification-url": "https://packagist.org/downloads/",
  2919. "license": [
  2920. "MIT"
  2921. ],
  2922. "authors": [
  2923. {
  2924. "name": "Maarten Balliauw",
  2925. "homepage": "https://blog.maartenballiauw.be"
  2926. },
  2927. {
  2928. "name": "Mark Baker",
  2929. "homepage": "https://markbakeruk.net"
  2930. },
  2931. {
  2932. "name": "Franck Lefevre",
  2933. "homepage": "https://rootslabs.net"
  2934. },
  2935. {
  2936. "name": "Erik Tilt"
  2937. },
  2938. {
  2939. "name": "Adrien Crivelli"
  2940. }
  2941. ],
  2942. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  2943. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  2944. "keywords": [
  2945. "OpenXML",
  2946. "excel",
  2947. "gnumeric",
  2948. "ods",
  2949. "php",
  2950. "spreadsheet",
  2951. "xls",
  2952. "xlsx"
  2953. ],
  2954. "support": {
  2955. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  2956. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.23.0"
  2957. },
  2958. "time": "2022-04-24T13:53:10+00:00"
  2959. },
  2960. {
  2961. "name": "phpoffice/phpword",
  2962. "version": "0.18.3",
  2963. "source": {
  2964. "type": "git",
  2965. "url": "https://github.com/PHPOffice/PHPWord.git",
  2966. "reference": "be0190cd5d8f95b4be08d5853b107aa4e352759a"
  2967. },
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/be0190cd5d8f95b4be08d5853b107aa4e352759a",
  2971. "reference": "be0190cd5d8f95b4be08d5853b107aa4e352759a",
  2972. "shasum": "",
  2973. "mirrors": [
  2974. {
  2975. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2976. "preferred": true
  2977. }
  2978. ]
  2979. },
  2980. "require": {
  2981. "ext-xml": "*",
  2982. "laminas/laminas-escaper": "^2.2",
  2983. "php": "^5.3.3 || ^7.0 || ^8.0"
  2984. },
  2985. "require-dev": {
  2986. "dompdf/dompdf": "0.8.* || 1.0.*",
  2987. "ext-gd": "*",
  2988. "ext-zip": "*",
  2989. "friendsofphp/php-cs-fixer": "^2.2",
  2990. "mpdf/mpdf": "5.7.4 || 6.* || 7.* || 8.*",
  2991. "php-coveralls/php-coveralls": "1.1.0 || ^2.0",
  2992. "phploc/phploc": "2.* || 3.* || 4.* || 5.* || 6.* || 7.*",
  2993. "phpmd/phpmd": "2.*",
  2994. "phpunit/phpunit": "^4.8.36 || ^7.0",
  2995. "squizlabs/php_codesniffer": "^2.9 || ^3.5",
  2996. "tecnickcom/tcpdf": "6.*"
  2997. },
  2998. "suggest": {
  2999. "dompdf/dompdf": "Allows writing PDF",
  3000. "ext-gd2": "Allows adding images",
  3001. "ext-xmlwriter": "Allows writing OOXML and ODF",
  3002. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  3003. "ext-zip": "Allows writing OOXML and ODF"
  3004. },
  3005. "type": "library",
  3006. "extra": {
  3007. "branch-alias": {
  3008. "dev-develop": "0.19-dev"
  3009. }
  3010. },
  3011. "autoload": {
  3012. "psr-4": {
  3013. "PhpOffice\\PhpWord\\": "src/PhpWord"
  3014. }
  3015. },
  3016. "notification-url": "https://packagist.org/downloads/",
  3017. "license": [
  3018. "LGPL-3.0"
  3019. ],
  3020. "authors": [
  3021. {
  3022. "name": "Mark Baker"
  3023. },
  3024. {
  3025. "name": "Gabriel Bull",
  3026. "email": "me@gabrielbull.com",
  3027. "homepage": "http://gabrielbull.com/"
  3028. },
  3029. {
  3030. "name": "Franck Lefevre",
  3031. "homepage": "https://rootslabs.net/blog/"
  3032. },
  3033. {
  3034. "name": "Ivan Lanin",
  3035. "homepage": "http://ivan.lanin.org"
  3036. },
  3037. {
  3038. "name": "Roman Syroeshko",
  3039. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  3040. },
  3041. {
  3042. "name": "Antoine de Troostembergh"
  3043. }
  3044. ],
  3045. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  3046. "homepage": "http://phpoffice.github.io",
  3047. "keywords": [
  3048. "ISO IEC 29500",
  3049. "OOXML",
  3050. "Office Open XML",
  3051. "OpenDocument",
  3052. "OpenXML",
  3053. "PhpOffice",
  3054. "PhpWord",
  3055. "Rich Text Format",
  3056. "WordprocessingML",
  3057. "doc",
  3058. "docx",
  3059. "html",
  3060. "odf",
  3061. "odt",
  3062. "office",
  3063. "pdf",
  3064. "php",
  3065. "reader",
  3066. "rtf",
  3067. "template",
  3068. "template processor",
  3069. "word",
  3070. "writer"
  3071. ],
  3072. "support": {
  3073. "issues": "https://github.com/PHPOffice/PHPWord/issues",
  3074. "source": "https://github.com/PHPOffice/PHPWord/tree/0.18.3"
  3075. },
  3076. "time": "2022-02-17T15:40:03+00:00"
  3077. },
  3078. {
  3079. "name": "psr/http-client",
  3080. "version": "1.0.1",
  3081. "source": {
  3082. "type": "git",
  3083. "url": "https://github.com/php-fig/http-client.git",
  3084. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  3085. },
  3086. "dist": {
  3087. "type": "zip",
  3088. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3089. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  3090. "shasum": "",
  3091. "mirrors": [
  3092. {
  3093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3094. "preferred": true
  3095. }
  3096. ]
  3097. },
  3098. "require": {
  3099. "php": "^7.0 || ^8.0",
  3100. "psr/http-message": "^1.0"
  3101. },
  3102. "type": "library",
  3103. "extra": {
  3104. "branch-alias": {
  3105. "dev-master": "1.0.x-dev"
  3106. }
  3107. },
  3108. "autoload": {
  3109. "psr-4": {
  3110. "Psr\\Http\\Client\\": "src/"
  3111. }
  3112. },
  3113. "notification-url": "https://packagist.org/downloads/",
  3114. "license": [
  3115. "MIT"
  3116. ],
  3117. "authors": [
  3118. {
  3119. "name": "PHP-FIG",
  3120. "homepage": "http://www.php-fig.org/"
  3121. }
  3122. ],
  3123. "description": "Common interface for HTTP clients",
  3124. "homepage": "https://github.com/php-fig/http-client",
  3125. "keywords": [
  3126. "http",
  3127. "http-client",
  3128. "psr",
  3129. "psr-18"
  3130. ],
  3131. "support": {
  3132. "source": "https://github.com/php-fig/http-client/tree/master"
  3133. },
  3134. "time": "2020-06-29T06:28:15+00:00"
  3135. },
  3136. {
  3137. "name": "psr/http-factory",
  3138. "version": "1.0.1",
  3139. "source": {
  3140. "type": "git",
  3141. "url": "https://github.com/php-fig/http-factory.git",
  3142. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
  3143. },
  3144. "dist": {
  3145. "type": "zip",
  3146. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3147. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  3148. "shasum": "",
  3149. "mirrors": [
  3150. {
  3151. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3152. "preferred": true
  3153. }
  3154. ]
  3155. },
  3156. "require": {
  3157. "php": ">=7.0.0",
  3158. "psr/http-message": "^1.0"
  3159. },
  3160. "type": "library",
  3161. "extra": {
  3162. "branch-alias": {
  3163. "dev-master": "1.0.x-dev"
  3164. }
  3165. },
  3166. "autoload": {
  3167. "psr-4": {
  3168. "Psr\\Http\\Message\\": "src/"
  3169. }
  3170. },
  3171. "notification-url": "https://packagist.org/downloads/",
  3172. "license": [
  3173. "MIT"
  3174. ],
  3175. "authors": [
  3176. {
  3177. "name": "PHP-FIG",
  3178. "homepage": "http://www.php-fig.org/"
  3179. }
  3180. ],
  3181. "description": "Common interfaces for PSR-7 HTTP message factories",
  3182. "keywords": [
  3183. "factory",
  3184. "http",
  3185. "message",
  3186. "psr",
  3187. "psr-17",
  3188. "psr-7",
  3189. "request",
  3190. "response"
  3191. ],
  3192. "support": {
  3193. "source": "https://github.com/php-fig/http-factory/tree/master"
  3194. },
  3195. "time": "2019-04-30T12:38:16+00:00"
  3196. },
  3197. {
  3198. "name": "psr/http-message",
  3199. "version": "1.0.1",
  3200. "source": {
  3201. "type": "git",
  3202. "url": "https://github.com/php-fig/http-message.git",
  3203. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  3204. },
  3205. "dist": {
  3206. "type": "zip",
  3207. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  3208. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  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. "php": ">=5.3.0"
  3219. },
  3220. "type": "library",
  3221. "extra": {
  3222. "branch-alias": {
  3223. "dev-master": "1.0.x-dev"
  3224. }
  3225. },
  3226. "autoload": {
  3227. "psr-4": {
  3228. "Psr\\Http\\Message\\": "src/"
  3229. }
  3230. },
  3231. "notification-url": "https://packagist.org/downloads/",
  3232. "license": [
  3233. "MIT"
  3234. ],
  3235. "authors": [
  3236. {
  3237. "name": "PHP-FIG",
  3238. "homepage": "http://www.php-fig.org/"
  3239. }
  3240. ],
  3241. "description": "Common interface for HTTP messages",
  3242. "homepage": "https://github.com/php-fig/http-message",
  3243. "keywords": [
  3244. "http",
  3245. "http-message",
  3246. "psr",
  3247. "psr-7",
  3248. "request",
  3249. "response"
  3250. ],
  3251. "support": {
  3252. "source": "https://github.com/php-fig/http-message/tree/master"
  3253. },
  3254. "time": "2016-08-06T14:39:51+00:00"
  3255. },
  3256. {
  3257. "name": "psr/simple-cache",
  3258. "version": "1.0.1",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/php-fig/simple-cache.git",
  3262. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3267. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3268. "shasum": "",
  3269. "mirrors": [
  3270. {
  3271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3272. "preferred": true
  3273. }
  3274. ]
  3275. },
  3276. "require": {
  3277. "php": ">=5.3.0"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "1.0.x-dev"
  3283. }
  3284. },
  3285. "autoload": {
  3286. "psr-4": {
  3287. "Psr\\SimpleCache\\": "src/"
  3288. }
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "MIT"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "PHP-FIG",
  3297. "homepage": "http://www.php-fig.org/"
  3298. }
  3299. ],
  3300. "description": "Common interfaces for simple caching",
  3301. "keywords": [
  3302. "cache",
  3303. "caching",
  3304. "psr",
  3305. "psr-16",
  3306. "simple-cache"
  3307. ],
  3308. "support": {
  3309. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3310. },
  3311. "time": "2017-10-23T01:57:42+00:00"
  3312. },
  3313. {
  3314. "name": "qcloud/cos-sdk-v5",
  3315. "version": "v2.5.5",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  3319. "reference": "40e51efc05d5addeb9029db7840846809bd666c4"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/40e51efc05d5addeb9029db7840846809bd666c4",
  3324. "reference": "40e51efc05d5addeb9029db7840846809bd666c4",
  3325. "shasum": "",
  3326. "mirrors": [
  3327. {
  3328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3329. "preferred": true
  3330. }
  3331. ]
  3332. },
  3333. "require": {
  3334. "ext-curl": "*",
  3335. "ext-json": "*",
  3336. "ext-simplexml": "*",
  3337. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  3338. "guzzlehttp/guzzle-services": "^1.1",
  3339. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  3340. "php": ">=5.6"
  3341. },
  3342. "type": "library",
  3343. "extra": {
  3344. "branch-alias": {
  3345. "dev-master": "2.4-dev"
  3346. }
  3347. },
  3348. "autoload": {
  3349. "files": [
  3350. "src/Common.php"
  3351. ],
  3352. "psr-4": {
  3353. "Qcloud\\Cos\\": "src/"
  3354. }
  3355. },
  3356. "notification-url": "https://packagist.org/downloads/",
  3357. "license": [
  3358. "MIT"
  3359. ],
  3360. "authors": [
  3361. {
  3362. "name": "yaozongyou",
  3363. "email": "yaozongyou@vip.qq.com"
  3364. },
  3365. {
  3366. "name": "lewzylu",
  3367. "email": "327874225@qq.com"
  3368. },
  3369. {
  3370. "name": "tuunalai",
  3371. "email": "550566181@qq.com"
  3372. }
  3373. ],
  3374. "description": "PHP SDK for QCloud COS",
  3375. "keywords": [
  3376. "cos",
  3377. "php",
  3378. "qcloud"
  3379. ],
  3380. "support": {
  3381. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  3382. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.5.5"
  3383. },
  3384. "time": "2022-04-27T06:20:21+00:00"
  3385. },
  3386. {
  3387. "name": "ralouphie/getallheaders",
  3388. "version": "3.0.3",
  3389. "source": {
  3390. "type": "git",
  3391. "url": "https://github.com/ralouphie/getallheaders.git",
  3392. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3393. },
  3394. "dist": {
  3395. "type": "zip",
  3396. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3397. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3398. "shasum": "",
  3399. "mirrors": [
  3400. {
  3401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3402. "preferred": true
  3403. }
  3404. ]
  3405. },
  3406. "require": {
  3407. "php": ">=5.6"
  3408. },
  3409. "require-dev": {
  3410. "php-coveralls/php-coveralls": "^2.1",
  3411. "phpunit/phpunit": "^5 || ^6.5"
  3412. },
  3413. "type": "library",
  3414. "autoload": {
  3415. "files": [
  3416. "src/getallheaders.php"
  3417. ]
  3418. },
  3419. "notification-url": "https://packagist.org/downloads/",
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "authors": [
  3424. {
  3425. "name": "Ralph Khattar",
  3426. "email": "ralph.khattar@gmail.com"
  3427. }
  3428. ],
  3429. "description": "A polyfill for getallheaders.",
  3430. "support": {
  3431. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3432. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3433. },
  3434. "time": "2019-03-08T08:55:37+00:00"
  3435. },
  3436. {
  3437. "name": "sabberworm/php-css-parser",
  3438. "version": "8.4.0",
  3439. "source": {
  3440. "type": "git",
  3441. "url": "https://github.com/sabberworm/PHP-CSS-Parser.git",
  3442. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30"
  3443. },
  3444. "dist": {
  3445. "type": "zip",
  3446. "url": "https://api.github.com/repos/sabberworm/PHP-CSS-Parser/zipball/e41d2140031d533348b2192a83f02d8dd8a71d30",
  3447. "reference": "e41d2140031d533348b2192a83f02d8dd8a71d30",
  3448. "shasum": "",
  3449. "mirrors": [
  3450. {
  3451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3452. "preferred": true
  3453. }
  3454. ]
  3455. },
  3456. "require": {
  3457. "ext-iconv": "*",
  3458. "php": ">=5.6.20"
  3459. },
  3460. "require-dev": {
  3461. "codacy/coverage": "^1.4",
  3462. "phpunit/phpunit": "^4.8.36"
  3463. },
  3464. "suggest": {
  3465. "ext-mbstring": "for parsing UTF-8 CSS"
  3466. },
  3467. "type": "library",
  3468. "autoload": {
  3469. "psr-4": {
  3470. "Sabberworm\\CSS\\": "src/"
  3471. }
  3472. },
  3473. "notification-url": "https://packagist.org/downloads/",
  3474. "license": [
  3475. "MIT"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Raphael Schweikert"
  3480. }
  3481. ],
  3482. "description": "Parser for CSS Files written in PHP",
  3483. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  3484. "keywords": [
  3485. "css",
  3486. "parser",
  3487. "stylesheet"
  3488. ],
  3489. "support": {
  3490. "issues": "https://github.com/sabberworm/PHP-CSS-Parser/issues",
  3491. "source": "https://github.com/sabberworm/PHP-CSS-Parser/tree/8.4.0"
  3492. },
  3493. "time": "2021-12-11T13:40:54+00:00"
  3494. },
  3495. {
  3496. "name": "smalot/pdfparser",
  3497. "version": "v2.2.1",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/smalot/pdfparser.git",
  3501. "reference": "7c007090776f29119e72be28f7780e638ea0cbf4"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/smalot/pdfparser/zipball/7c007090776f29119e72be28f7780e638ea0cbf4",
  3506. "reference": "7c007090776f29119e72be28f7780e638ea0cbf4",
  3507. "shasum": "",
  3508. "mirrors": [
  3509. {
  3510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3511. "preferred": true
  3512. }
  3513. ]
  3514. },
  3515. "require": {
  3516. "ext-iconv": "*",
  3517. "ext-zlib": "*",
  3518. "php": ">=7.1",
  3519. "symfony/polyfill-mbstring": "^1.18"
  3520. },
  3521. "type": "library",
  3522. "autoload": {
  3523. "psr-0": {
  3524. "Smalot\\PdfParser\\": "src/"
  3525. }
  3526. },
  3527. "notification-url": "https://packagist.org/downloads/",
  3528. "license": [
  3529. "LGPL-3.0"
  3530. ],
  3531. "authors": [
  3532. {
  3533. "name": "Sebastien MALOT",
  3534. "email": "sebastien@malot.fr"
  3535. }
  3536. ],
  3537. "description": "Pdf parser library. Can read and extract information from pdf file.",
  3538. "homepage": "https://www.pdfparser.org",
  3539. "keywords": [
  3540. "extract",
  3541. "parse",
  3542. "parser",
  3543. "pdf",
  3544. "text"
  3545. ],
  3546. "support": {
  3547. "issues": "https://github.com/smalot/pdfparser/issues",
  3548. "source": "https://github.com/smalot/pdfparser/tree/v2.2.1"
  3549. },
  3550. "time": "2022-05-02T06:42:03+00:00"
  3551. },
  3552. {
  3553. "name": "swiftmailer/swiftmailer",
  3554. "version": "v6.2.3",
  3555. "source": {
  3556. "type": "git",
  3557. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3558. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9"
  3559. },
  3560. "dist": {
  3561. "type": "zip",
  3562. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3563. "reference": "149cfdf118b169f7840bbe3ef0d4bc795d1780c9",
  3564. "shasum": ""
  3565. },
  3566. "require": {
  3567. "egulias/email-validator": "~2.0",
  3568. "php": ">=7.0.0",
  3569. "symfony/polyfill-iconv": "^1.0",
  3570. "symfony/polyfill-intl-idn": "^1.10",
  3571. "symfony/polyfill-mbstring": "^1.0"
  3572. },
  3573. "require-dev": {
  3574. "mockery/mockery": "~0.9.1",
  3575. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  3576. },
  3577. "suggest": {
  3578. "ext-intl": "Needed to support internationalized email addresses",
  3579. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  3580. },
  3581. "type": "library",
  3582. "extra": {
  3583. "branch-alias": {
  3584. "dev-master": "6.2-dev"
  3585. }
  3586. },
  3587. "autoload": {
  3588. "files": [
  3589. "lib/swift_required.php"
  3590. ]
  3591. },
  3592. "notification-url": "https://packagist.org/downloads/",
  3593. "license": [
  3594. "MIT"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "Chris Corbyn"
  3599. },
  3600. {
  3601. "name": "Fabien Potencier",
  3602. "email": "fabien@symfony.com"
  3603. }
  3604. ],
  3605. "description": "Swiftmailer, free feature-rich PHP mailer",
  3606. "homepage": "https://swiftmailer.symfony.com",
  3607. "keywords": [
  3608. "email",
  3609. "mail",
  3610. "mailer"
  3611. ],
  3612. "time": "2019-11-12T09:31:26+00:00"
  3613. },
  3614. {
  3615. "name": "symfony/deprecation-contracts",
  3616. "version": "v2.5.2",
  3617. "source": {
  3618. "type": "git",
  3619. "url": "https://github.com/symfony/deprecation-contracts.git",
  3620. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  3621. },
  3622. "dist": {
  3623. "type": "zip",
  3624. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3625. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  3626. "shasum": "",
  3627. "mirrors": [
  3628. {
  3629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3630. "preferred": true
  3631. }
  3632. ]
  3633. },
  3634. "require": {
  3635. "php": ">=7.1"
  3636. },
  3637. "type": "library",
  3638. "extra": {
  3639. "branch-alias": {
  3640. "dev-main": "2.5-dev"
  3641. },
  3642. "thanks": {
  3643. "name": "symfony/contracts",
  3644. "url": "https://github.com/symfony/contracts"
  3645. }
  3646. },
  3647. "autoload": {
  3648. "files": [
  3649. "function.php"
  3650. ]
  3651. },
  3652. "notification-url": "https://packagist.org/downloads/",
  3653. "license": [
  3654. "MIT"
  3655. ],
  3656. "authors": [
  3657. {
  3658. "name": "Nicolas Grekas",
  3659. "email": "p@tchwork.com"
  3660. },
  3661. {
  3662. "name": "Symfony Community",
  3663. "homepage": "https://symfony.com/contributors"
  3664. }
  3665. ],
  3666. "description": "A generic function and convention to trigger deprecation notices",
  3667. "homepage": "https://symfony.com",
  3668. "support": {
  3669. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  3670. },
  3671. "funding": [
  3672. {
  3673. "url": "https://symfony.com/sponsor",
  3674. "type": "custom"
  3675. },
  3676. {
  3677. "url": "https://github.com/fabpot",
  3678. "type": "github"
  3679. },
  3680. {
  3681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3682. "type": "tidelift"
  3683. }
  3684. ],
  3685. "time": "2022-01-02T09:53:40+00:00"
  3686. },
  3687. {
  3688. "name": "symfony/polyfill-iconv",
  3689. "version": "v1.13.1",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/symfony/polyfill-iconv.git",
  3693. "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/a019efccc03f1a335af6b4f20c30f5ea8060be36",
  3698. "reference": "a019efccc03f1a335af6b4f20c30f5ea8060be36",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "php": ">=5.3.3"
  3703. },
  3704. "suggest": {
  3705. "ext-iconv": "For best performance"
  3706. },
  3707. "type": "library",
  3708. "extra": {
  3709. "branch-alias": {
  3710. "dev-master": "1.13-dev"
  3711. }
  3712. },
  3713. "autoload": {
  3714. "psr-4": {
  3715. "Symfony\\Polyfill\\Iconv\\": ""
  3716. },
  3717. "files": [
  3718. "bootstrap.php"
  3719. ]
  3720. },
  3721. "notification-url": "https://packagist.org/downloads/",
  3722. "license": [
  3723. "MIT"
  3724. ],
  3725. "authors": [
  3726. {
  3727. "name": "Nicolas Grekas",
  3728. "email": "p@tchwork.com"
  3729. },
  3730. {
  3731. "name": "Symfony Community",
  3732. "homepage": "https://symfony.com/contributors"
  3733. }
  3734. ],
  3735. "description": "Symfony polyfill for the Iconv extension",
  3736. "homepage": "https://symfony.com",
  3737. "keywords": [
  3738. "compatibility",
  3739. "iconv",
  3740. "polyfill",
  3741. "portable",
  3742. "shim"
  3743. ],
  3744. "time": "2019-11-27T13:56:44+00:00"
  3745. },
  3746. {
  3747. "name": "symfony/polyfill-intl-idn",
  3748. "version": "v1.26.0",
  3749. "source": {
  3750. "type": "git",
  3751. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  3752. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8"
  3753. },
  3754. "dist": {
  3755. "type": "zip",
  3756. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  3757. "reference": "59a8d271f00dd0e4c2e518104cc7963f655a1aa8",
  3758. "shasum": "",
  3759. "mirrors": [
  3760. {
  3761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3762. "preferred": true
  3763. }
  3764. ]
  3765. },
  3766. "require": {
  3767. "php": ">=7.1",
  3768. "symfony/polyfill-intl-normalizer": "^1.10",
  3769. "symfony/polyfill-php72": "^1.10"
  3770. },
  3771. "suggest": {
  3772. "ext-intl": "For best performance"
  3773. },
  3774. "type": "library",
  3775. "extra": {
  3776. "branch-alias": {
  3777. "dev-main": "1.26-dev"
  3778. },
  3779. "thanks": {
  3780. "name": "symfony/polyfill",
  3781. "url": "https://github.com/symfony/polyfill"
  3782. }
  3783. },
  3784. "autoload": {
  3785. "files": [
  3786. "bootstrap.php"
  3787. ],
  3788. "psr-4": {
  3789. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3790. }
  3791. },
  3792. "notification-url": "https://packagist.org/downloads/",
  3793. "license": [
  3794. "MIT"
  3795. ],
  3796. "authors": [
  3797. {
  3798. "name": "Laurent Bassin",
  3799. "email": "laurent@bassin.info"
  3800. },
  3801. {
  3802. "name": "Trevor Rowbotham",
  3803. "email": "trevor.rowbotham@pm.me"
  3804. },
  3805. {
  3806. "name": "Symfony Community",
  3807. "homepage": "https://symfony.com/contributors"
  3808. }
  3809. ],
  3810. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3811. "homepage": "https://symfony.com",
  3812. "keywords": [
  3813. "compatibility",
  3814. "idn",
  3815. "intl",
  3816. "polyfill",
  3817. "portable",
  3818. "shim"
  3819. ],
  3820. "support": {
  3821. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.26.0"
  3822. },
  3823. "funding": [
  3824. {
  3825. "url": "https://symfony.com/sponsor",
  3826. "type": "custom"
  3827. },
  3828. {
  3829. "url": "https://github.com/fabpot",
  3830. "type": "github"
  3831. },
  3832. {
  3833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3834. "type": "tidelift"
  3835. }
  3836. ],
  3837. "time": "2022-05-24T11:49:31+00:00"
  3838. },
  3839. {
  3840. "name": "symfony/polyfill-intl-normalizer",
  3841. "version": "v1.26.0",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3845. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  3850. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  3851. "shasum": "",
  3852. "mirrors": [
  3853. {
  3854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3855. "preferred": true
  3856. }
  3857. ]
  3858. },
  3859. "require": {
  3860. "php": ">=7.1"
  3861. },
  3862. "suggest": {
  3863. "ext-intl": "For best performance"
  3864. },
  3865. "type": "library",
  3866. "extra": {
  3867. "branch-alias": {
  3868. "dev-main": "1.26-dev"
  3869. },
  3870. "thanks": {
  3871. "name": "symfony/polyfill",
  3872. "url": "https://github.com/symfony/polyfill"
  3873. }
  3874. },
  3875. "autoload": {
  3876. "files": [
  3877. "bootstrap.php"
  3878. ],
  3879. "psr-4": {
  3880. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3881. },
  3882. "classmap": [
  3883. "Resources/stubs"
  3884. ]
  3885. },
  3886. "notification-url": "https://packagist.org/downloads/",
  3887. "license": [
  3888. "MIT"
  3889. ],
  3890. "authors": [
  3891. {
  3892. "name": "Nicolas Grekas",
  3893. "email": "p@tchwork.com"
  3894. },
  3895. {
  3896. "name": "Symfony Community",
  3897. "homepage": "https://symfony.com/contributors"
  3898. }
  3899. ],
  3900. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3901. "homepage": "https://symfony.com",
  3902. "keywords": [
  3903. "compatibility",
  3904. "intl",
  3905. "normalizer",
  3906. "polyfill",
  3907. "portable",
  3908. "shim"
  3909. ],
  3910. "support": {
  3911. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  3912. },
  3913. "funding": [
  3914. {
  3915. "url": "https://symfony.com/sponsor",
  3916. "type": "custom"
  3917. },
  3918. {
  3919. "url": "https://github.com/fabpot",
  3920. "type": "github"
  3921. },
  3922. {
  3923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3924. "type": "tidelift"
  3925. }
  3926. ],
  3927. "time": "2022-05-24T11:49:31+00:00"
  3928. },
  3929. {
  3930. "name": "symfony/polyfill-mbstring",
  3931. "version": "v1.26.0",
  3932. "source": {
  3933. "type": "git",
  3934. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3935. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  3936. },
  3937. "dist": {
  3938. "type": "zip",
  3939. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3940. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  3941. "shasum": "",
  3942. "mirrors": [
  3943. {
  3944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3945. "preferred": true
  3946. }
  3947. ]
  3948. },
  3949. "require": {
  3950. "php": ">=7.1"
  3951. },
  3952. "provide": {
  3953. "ext-mbstring": "*"
  3954. },
  3955. "suggest": {
  3956. "ext-mbstring": "For best performance"
  3957. },
  3958. "type": "library",
  3959. "extra": {
  3960. "branch-alias": {
  3961. "dev-main": "1.26-dev"
  3962. },
  3963. "thanks": {
  3964. "name": "symfony/polyfill",
  3965. "url": "https://github.com/symfony/polyfill"
  3966. }
  3967. },
  3968. "autoload": {
  3969. "files": [
  3970. "bootstrap.php"
  3971. ],
  3972. "psr-4": {
  3973. "Symfony\\Polyfill\\Mbstring\\": ""
  3974. }
  3975. },
  3976. "notification-url": "https://packagist.org/downloads/",
  3977. "license": [
  3978. "MIT"
  3979. ],
  3980. "authors": [
  3981. {
  3982. "name": "Nicolas Grekas",
  3983. "email": "p@tchwork.com"
  3984. },
  3985. {
  3986. "name": "Symfony Community",
  3987. "homepage": "https://symfony.com/contributors"
  3988. }
  3989. ],
  3990. "description": "Symfony polyfill for the Mbstring extension",
  3991. "homepage": "https://symfony.com",
  3992. "keywords": [
  3993. "compatibility",
  3994. "mbstring",
  3995. "polyfill",
  3996. "portable",
  3997. "shim"
  3998. ],
  3999. "support": {
  4000. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  4001. },
  4002. "funding": [
  4003. {
  4004. "url": "https://symfony.com/sponsor",
  4005. "type": "custom"
  4006. },
  4007. {
  4008. "url": "https://github.com/fabpot",
  4009. "type": "github"
  4010. },
  4011. {
  4012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4013. "type": "tidelift"
  4014. }
  4015. ],
  4016. "time": "2022-05-24T11:49:31+00:00"
  4017. },
  4018. {
  4019. "name": "symfony/polyfill-php72",
  4020. "version": "v1.26.0",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/symfony/polyfill-php72.git",
  4024. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4029. "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
  4030. "shasum": "",
  4031. "mirrors": [
  4032. {
  4033. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4034. "preferred": true
  4035. }
  4036. ]
  4037. },
  4038. "require": {
  4039. "php": ">=7.1"
  4040. },
  4041. "type": "library",
  4042. "extra": {
  4043. "branch-alias": {
  4044. "dev-main": "1.26-dev"
  4045. },
  4046. "thanks": {
  4047. "name": "symfony/polyfill",
  4048. "url": "https://github.com/symfony/polyfill"
  4049. }
  4050. },
  4051. "autoload": {
  4052. "files": [
  4053. "bootstrap.php"
  4054. ],
  4055. "psr-4": {
  4056. "Symfony\\Polyfill\\Php72\\": ""
  4057. }
  4058. },
  4059. "notification-url": "https://packagist.org/downloads/",
  4060. "license": [
  4061. "MIT"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "Nicolas Grekas",
  4066. "email": "p@tchwork.com"
  4067. },
  4068. {
  4069. "name": "Symfony Community",
  4070. "homepage": "https://symfony.com/contributors"
  4071. }
  4072. ],
  4073. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  4074. "homepage": "https://symfony.com",
  4075. "keywords": [
  4076. "compatibility",
  4077. "polyfill",
  4078. "portable",
  4079. "shim"
  4080. ],
  4081. "support": {
  4082. "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
  4083. },
  4084. "funding": [
  4085. {
  4086. "url": "https://symfony.com/sponsor",
  4087. "type": "custom"
  4088. },
  4089. {
  4090. "url": "https://github.com/fabpot",
  4091. "type": "github"
  4092. },
  4093. {
  4094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4095. "type": "tidelift"
  4096. }
  4097. ],
  4098. "time": "2022-05-24T11:49:31+00:00"
  4099. },
  4100. {
  4101. "name": "symfony/polyfill-php80",
  4102. "version": "v1.26.0",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://github.com/symfony/polyfill-php80.git",
  4106. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4111. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  4112. "shasum": "",
  4113. "mirrors": [
  4114. {
  4115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4116. "preferred": true
  4117. }
  4118. ]
  4119. },
  4120. "require": {
  4121. "php": ">=7.1"
  4122. },
  4123. "type": "library",
  4124. "extra": {
  4125. "branch-alias": {
  4126. "dev-main": "1.26-dev"
  4127. },
  4128. "thanks": {
  4129. "name": "symfony/polyfill",
  4130. "url": "https://github.com/symfony/polyfill"
  4131. }
  4132. },
  4133. "autoload": {
  4134. "files": [
  4135. "bootstrap.php"
  4136. ],
  4137. "psr-4": {
  4138. "Symfony\\Polyfill\\Php80\\": ""
  4139. },
  4140. "classmap": [
  4141. "Resources/stubs"
  4142. ]
  4143. },
  4144. "notification-url": "https://packagist.org/downloads/",
  4145. "license": [
  4146. "MIT"
  4147. ],
  4148. "authors": [
  4149. {
  4150. "name": "Ion Bazan",
  4151. "email": "ion.bazan@gmail.com"
  4152. },
  4153. {
  4154. "name": "Nicolas Grekas",
  4155. "email": "p@tchwork.com"
  4156. },
  4157. {
  4158. "name": "Symfony Community",
  4159. "homepage": "https://symfony.com/contributors"
  4160. }
  4161. ],
  4162. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4163. "homepage": "https://symfony.com",
  4164. "keywords": [
  4165. "compatibility",
  4166. "polyfill",
  4167. "portable",
  4168. "shim"
  4169. ],
  4170. "support": {
  4171. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  4172. },
  4173. "funding": [
  4174. {
  4175. "url": "https://symfony.com/sponsor",
  4176. "type": "custom"
  4177. },
  4178. {
  4179. "url": "https://github.com/fabpot",
  4180. "type": "github"
  4181. },
  4182. {
  4183. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4184. "type": "tidelift"
  4185. }
  4186. ],
  4187. "time": "2022-05-10T07:21:04+00:00"
  4188. },
  4189. {
  4190. "name": "tencentcloud/common",
  4191. "version": "3.0.630",
  4192. "source": {
  4193. "type": "git",
  4194. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  4195. "reference": "e1fb4b9234aa3ef6d12074b037cfb573c29fe4f6"
  4196. },
  4197. "dist": {
  4198. "type": "zip",
  4199. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/e1fb4b9234aa3ef6d12074b037cfb573c29fe4f6",
  4200. "reference": "e1fb4b9234aa3ef6d12074b037cfb573c29fe4f6",
  4201. "shasum": "",
  4202. "mirrors": [
  4203. {
  4204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4205. "preferred": true
  4206. }
  4207. ]
  4208. },
  4209. "require": {
  4210. "guzzlehttp/guzzle": "^6.3||^7.0",
  4211. "php": ">=5.6.0"
  4212. },
  4213. "type": "library",
  4214. "autoload": {
  4215. "psr-4": {
  4216. "TencentCloud\\": "./src/TencentCloud"
  4217. }
  4218. },
  4219. "notification-url": "https://packagist.org/downloads/",
  4220. "license": [
  4221. "Apache-2.0"
  4222. ],
  4223. "authors": [
  4224. {
  4225. "name": "tencentcloudapi",
  4226. "email": "tencentcloudapi@tencent.com",
  4227. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  4228. "role": "Developer"
  4229. }
  4230. ],
  4231. "description": "TencentCloudApi php sdk",
  4232. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  4233. "support": {
  4234. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  4235. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.630"
  4236. },
  4237. "time": "2022-05-17T23:03:12+00:00"
  4238. },
  4239. {
  4240. "name": "tencentcloud/sms",
  4241. "version": "3.0.630",
  4242. "source": {
  4243. "type": "git",
  4244. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  4245. "reference": "a87dd65c3fe3c8ecdeffda57f22b9fb8085c5f98"
  4246. },
  4247. "dist": {
  4248. "type": "zip",
  4249. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/a87dd65c3fe3c8ecdeffda57f22b9fb8085c5f98",
  4250. "reference": "a87dd65c3fe3c8ecdeffda57f22b9fb8085c5f98",
  4251. "shasum": "",
  4252. "mirrors": [
  4253. {
  4254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4255. "preferred": true
  4256. }
  4257. ]
  4258. },
  4259. "require": {
  4260. "tencentcloud/common": "3.0.630"
  4261. },
  4262. "type": "library",
  4263. "autoload": {
  4264. "psr-4": {
  4265. "TencentCloud\\": "./src/TencentCloud"
  4266. }
  4267. },
  4268. "notification-url": "https://packagist.org/downloads/",
  4269. "license": [
  4270. "Apache-2.0"
  4271. ],
  4272. "authors": [
  4273. {
  4274. "name": "tencentcloudapi",
  4275. "email": "tencentcloudapi@tencent.com",
  4276. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  4277. "role": "Developer"
  4278. }
  4279. ],
  4280. "description": "TencentCloudApi php sdk sms",
  4281. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  4282. "support": {
  4283. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  4284. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.630"
  4285. },
  4286. "time": "2022-05-17T23:18:32+00:00"
  4287. },
  4288. {
  4289. "name": "wechatpay/wechatpay",
  4290. "version": "1.4.5",
  4291. "source": {
  4292. "type": "git",
  4293. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  4294. "reference": "43b05b3bd471c896781ae54250fbd460567c103a"
  4295. },
  4296. "dist": {
  4297. "type": "zip",
  4298. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/43b05b3bd471c896781ae54250fbd460567c103a",
  4299. "reference": "43b05b3bd471c896781ae54250fbd460567c103a",
  4300. "shasum": "",
  4301. "mirrors": [
  4302. {
  4303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4304. "preferred": true
  4305. }
  4306. ]
  4307. },
  4308. "require": {
  4309. "ext-curl": "*",
  4310. "ext-libxml": "*",
  4311. "ext-openssl": "*",
  4312. "ext-simplexml": "*",
  4313. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  4314. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  4315. "php": ">=7.1.2"
  4316. },
  4317. "require-dev": {
  4318. "phpstan/phpstan": "^0.12.89 || ^1.0",
  4319. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  4320. },
  4321. "bin": [
  4322. "bin/CertificateDownloader.php"
  4323. ],
  4324. "type": "library",
  4325. "autoload": {
  4326. "psr-4": {
  4327. "WeChatPay\\": "src/"
  4328. }
  4329. },
  4330. "notification-url": "https://packagist.org/downloads/",
  4331. "license": [
  4332. "Apache-2.0"
  4333. ],
  4334. "authors": [
  4335. {
  4336. "name": "James ZHANG",
  4337. "homepage": "https://github.com/TheNorthMemory"
  4338. },
  4339. {
  4340. "name": "WeChatPay Community",
  4341. "homepage": "https://developers.weixin.qq.com/community/pay"
  4342. }
  4343. ],
  4344. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  4345. "homepage": "https://pay.weixin.qq.com/",
  4346. "keywords": [
  4347. "AES-GCM",
  4348. "aes-ecb",
  4349. "openapi-chainable",
  4350. "rsa-oaep",
  4351. "wechatpay",
  4352. "xml-builder",
  4353. "xml-parser"
  4354. ],
  4355. "support": {
  4356. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  4357. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.5"
  4358. },
  4359. "time": "2022-05-23T10:45:16+00:00"
  4360. },
  4361. {
  4362. "name": "yiisoft/yii2",
  4363. "version": "2.0.32",
  4364. "source": {
  4365. "type": "git",
  4366. "url": "https://github.com/yiisoft/yii2-framework.git",
  4367. "reference": "a4aca1a2154098844a039d21112cafd31d70b8fd"
  4368. },
  4369. "dist": {
  4370. "type": "zip",
  4371. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/a4aca1a2154098844a039d21112cafd31d70b8fd",
  4372. "reference": "a4aca1a2154098844a039d21112cafd31d70b8fd",
  4373. "shasum": ""
  4374. },
  4375. "require": {
  4376. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  4377. "bower-asset/jquery": "3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  4378. "bower-asset/punycode": "1.3.*",
  4379. "bower-asset/yii2-pjax": "~2.0.1",
  4380. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  4381. "ext-ctype": "*",
  4382. "ext-mbstring": "*",
  4383. "ezyang/htmlpurifier": "~4.6",
  4384. "lib-pcre": "*",
  4385. "php": ">=5.4.0",
  4386. "yiisoft/yii2-composer": "~2.0.4"
  4387. },
  4388. "bin": [
  4389. "yii"
  4390. ],
  4391. "type": "library",
  4392. "extra": {
  4393. "branch-alias": {
  4394. "dev-master": "2.0.x-dev"
  4395. }
  4396. },
  4397. "autoload": {
  4398. "psr-4": {
  4399. "yii\\": ""
  4400. }
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "BSD-3-Clause"
  4405. ],
  4406. "authors": [
  4407. {
  4408. "name": "Qiang Xue",
  4409. "email": "qiang.xue@gmail.com",
  4410. "homepage": "http://www.yiiframework.com/",
  4411. "role": "Founder and project lead"
  4412. },
  4413. {
  4414. "name": "Alexander Makarov",
  4415. "email": "sam@rmcreative.ru",
  4416. "homepage": "http://rmcreative.ru/",
  4417. "role": "Core framework development"
  4418. },
  4419. {
  4420. "name": "Maurizio Domba",
  4421. "homepage": "http://mdomba.info/",
  4422. "role": "Core framework development"
  4423. },
  4424. {
  4425. "name": "Carsten Brandt",
  4426. "email": "mail@cebe.cc",
  4427. "homepage": "http://cebe.cc/",
  4428. "role": "Core framework development"
  4429. },
  4430. {
  4431. "name": "Timur Ruziev",
  4432. "email": "resurtm@gmail.com",
  4433. "homepage": "http://resurtm.com/",
  4434. "role": "Core framework development"
  4435. },
  4436. {
  4437. "name": "Paul Klimov",
  4438. "email": "klimov.paul@gmail.com",
  4439. "role": "Core framework development"
  4440. },
  4441. {
  4442. "name": "Dmitry Naumenko",
  4443. "email": "d.naumenko.a@gmail.com",
  4444. "role": "Core framework development"
  4445. },
  4446. {
  4447. "name": "Boudewijn Vahrmeijer",
  4448. "email": "info@dynasource.eu",
  4449. "homepage": "http://dynasource.eu",
  4450. "role": "Core framework development"
  4451. }
  4452. ],
  4453. "description": "Yii PHP Framework Version 2",
  4454. "homepage": "http://www.yiiframework.com/",
  4455. "keywords": [
  4456. "framework",
  4457. "yii2"
  4458. ],
  4459. "time": "2020-01-21T22:29:38+00:00"
  4460. },
  4461. {
  4462. "name": "yiisoft/yii2-bootstrap",
  4463. "version": "2.0.10",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/yiisoft/yii2-bootstrap.git",
  4467. "reference": "073c9ab0a4eb71f2485d84c96a1967130300d8fc"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/073c9ab0a4eb71f2485d84c96a1967130300d8fc",
  4472. "reference": "073c9ab0a4eb71f2485d84c96a1967130300d8fc",
  4473. "shasum": ""
  4474. },
  4475. "require": {
  4476. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  4477. "yiisoft/yii2": "~2.0.6"
  4478. },
  4479. "require-dev": {
  4480. "phpunit/phpunit": "<7"
  4481. },
  4482. "type": "yii2-extension",
  4483. "extra": {
  4484. "branch-alias": {
  4485. "dev-master": "2.0.x-dev"
  4486. }
  4487. },
  4488. "autoload": {
  4489. "psr-4": {
  4490. "yii\\bootstrap\\": "src"
  4491. }
  4492. },
  4493. "notification-url": "https://packagist.org/downloads/",
  4494. "license": [
  4495. "BSD-3-Clause"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "Paul Klimov",
  4500. "email": "klimov.paul@gmail.com"
  4501. },
  4502. {
  4503. "name": "Alexander Makarov",
  4504. "email": "sam@rmcreative.ru",
  4505. "homepage": "http://rmcreative.ru/"
  4506. },
  4507. {
  4508. "name": "Antonio Ramirez",
  4509. "email": "amigo.cobos@gmail.com"
  4510. },
  4511. {
  4512. "name": "Qiang Xue",
  4513. "email": "qiang.xue@gmail.com",
  4514. "homepage": "http://www.yiiframework.com/"
  4515. }
  4516. ],
  4517. "description": "The Twitter Bootstrap extension for the Yii framework",
  4518. "keywords": [
  4519. "bootstrap",
  4520. "yii2"
  4521. ],
  4522. "time": "2019-04-23T13:18:43+00:00"
  4523. },
  4524. {
  4525. "name": "yiisoft/yii2-composer",
  4526. "version": "2.0.8",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/yiisoft/yii2-composer.git",
  4530. "reference": "5c7ca9836cf80b34db265332a7f2f8438eb469b9"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/5c7ca9836cf80b34db265332a7f2f8438eb469b9",
  4535. "reference": "5c7ca9836cf80b34db265332a7f2f8438eb469b9",
  4536. "shasum": ""
  4537. },
  4538. "require": {
  4539. "composer-plugin-api": "^2.0"
  4540. },
  4541. "require-dev": {
  4542. "composer/composer": "^1.0",
  4543. "phpunit/phpunit": "<7"
  4544. },
  4545. "type": "composer-plugin",
  4546. "extra": {
  4547. "class": "yii\\composer\\Plugin",
  4548. "branch-alias": {
  4549. "dev-master": "2.0.x-dev"
  4550. }
  4551. },
  4552. "autoload": {
  4553. "psr-4": {
  4554. "yii\\composer\\": ""
  4555. }
  4556. },
  4557. "notification-url": "https://packagist.org/downloads/",
  4558. "license": [
  4559. "BSD-3-Clause"
  4560. ],
  4561. "authors": [
  4562. {
  4563. "name": "Qiang Xue",
  4564. "email": "qiang.xue@gmail.com"
  4565. },
  4566. {
  4567. "name": "Carsten Brandt",
  4568. "email": "mail@cebe.cc"
  4569. }
  4570. ],
  4571. "description": "The composer plugin for Yii extension installer",
  4572. "keywords": [
  4573. "composer",
  4574. "extension installer",
  4575. "yii2"
  4576. ],
  4577. "time": "2019-07-16T13:22:30+00:00"
  4578. },
  4579. {
  4580. "name": "yiisoft/yii2-elasticsearch",
  4581. "version": "2.1.2",
  4582. "source": {
  4583. "type": "git",
  4584. "url": "https://github.com/yiisoft/yii2-elasticsearch.git",
  4585. "reference": "12092110ca850a7772f9fc574d238121c27a1723"
  4586. },
  4587. "dist": {
  4588. "type": "zip",
  4589. "url": "https://api.github.com/repos/yiisoft/yii2-elasticsearch/zipball/12092110ca850a7772f9fc574d238121c27a1723",
  4590. "reference": "12092110ca850a7772f9fc574d238121c27a1723",
  4591. "shasum": "",
  4592. "mirrors": [
  4593. {
  4594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4595. "preferred": true
  4596. }
  4597. ]
  4598. },
  4599. "require": {
  4600. "ext-curl": "*",
  4601. "ext-json": "*",
  4602. "ext-mbstring": "*",
  4603. "paragonie/random_compat": ">=1",
  4604. "yiisoft/yii2": "~2.0.14"
  4605. },
  4606. "require-dev": {
  4607. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  4608. },
  4609. "type": "yii2-extension",
  4610. "extra": {
  4611. "branch-alias": {
  4612. "dev-master": "2.1.x-dev"
  4613. }
  4614. },
  4615. "autoload": {
  4616. "psr-4": {
  4617. "yii\\elasticsearch\\": ""
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "BSD-3-Clause"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Carsten Brandt",
  4627. "email": "mail@cebe.cc"
  4628. }
  4629. ],
  4630. "description": "Elasticsearch integration and ActiveRecord for the Yii framework",
  4631. "keywords": [
  4632. "active-record",
  4633. "elasticsearch",
  4634. "fulltext",
  4635. "search",
  4636. "yii2"
  4637. ],
  4638. "support": {
  4639. "forum": "http://www.yiiframework.com/forum/",
  4640. "irc": "irc://irc.freenode.net/yii",
  4641. "issues": "https://github.com/yiisoft/yii2-elasticsearch/issues",
  4642. "source": "https://github.com/yiisoft/yii2-elasticsearch",
  4643. "wiki": "http://www.yiiframework.com/wiki/"
  4644. },
  4645. "funding": [
  4646. {
  4647. "url": "https://opencollective.com/yiisoft",
  4648. "type": "open_collective"
  4649. },
  4650. {
  4651. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-elasticsearch",
  4652. "type": "tidelift"
  4653. }
  4654. ],
  4655. "time": "2021-08-09T21:01:23+00:00"
  4656. },
  4657. {
  4658. "name": "yiisoft/yii2-mongodb",
  4659. "version": "2.1.9",
  4660. "source": {
  4661. "type": "git",
  4662. "url": "https://github.com/yiisoft/yii2-mongodb.git",
  4663. "reference": "780cb4b0478bf8851e8395a76dcfc6b367258224"
  4664. },
  4665. "dist": {
  4666. "type": "zip",
  4667. "url": "https://api.github.com/repos/yiisoft/yii2-mongodb/zipball/780cb4b0478bf8851e8395a76dcfc6b367258224",
  4668. "reference": "780cb4b0478bf8851e8395a76dcfc6b367258224",
  4669. "shasum": "",
  4670. "mirrors": [
  4671. {
  4672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4673. "preferred": true
  4674. }
  4675. ]
  4676. },
  4677. "require": {
  4678. "ext-mongodb": ">=1.0.0",
  4679. "yiisoft/yii2": "~2.0.14"
  4680. },
  4681. "require-dev": {
  4682. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  4683. },
  4684. "type": "yii2-extension",
  4685. "extra": {
  4686. "branch-alias": {
  4687. "dev-master": "2.1.x-dev"
  4688. }
  4689. },
  4690. "autoload": {
  4691. "psr-4": {
  4692. "yii\\mongodb\\": "src"
  4693. }
  4694. },
  4695. "notification-url": "https://packagist.org/downloads/",
  4696. "license": [
  4697. "BSD-3-Clause"
  4698. ],
  4699. "authors": [
  4700. {
  4701. "name": "Paul Klimov",
  4702. "email": "klimov.paul@gmail.com"
  4703. }
  4704. ],
  4705. "description": "MongoDB extension for the Yii framework",
  4706. "keywords": [
  4707. "GridFS",
  4708. "active-record",
  4709. "mongo",
  4710. "mongodb",
  4711. "yii2"
  4712. ],
  4713. "support": {
  4714. "forum": "http://www.yiiframework.com/forum/",
  4715. "irc": "irc://irc.freenode.net/yii",
  4716. "issues": "https://github.com/yiisoft/yii2-mongodb/issues",
  4717. "source": "https://github.com/yiisoft/yii2-mongodb",
  4718. "wiki": "http://www.yiiframework.com/wiki/"
  4719. },
  4720. "time": "2019-11-19T20:27:26+00:00"
  4721. },
  4722. {
  4723. "name": "yiisoft/yii2-redis",
  4724. "version": "2.0.13",
  4725. "source": {
  4726. "type": "git",
  4727. "url": "https://github.com/yiisoft/yii2-redis.git",
  4728. "reference": "8b3ef7f6d7153b8958f75deab602c57aad454e1c"
  4729. },
  4730. "dist": {
  4731. "type": "zip",
  4732. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/8b3ef7f6d7153b8958f75deab602c57aad454e1c",
  4733. "reference": "8b3ef7f6d7153b8958f75deab602c57aad454e1c",
  4734. "shasum": "",
  4735. "mirrors": [
  4736. {
  4737. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4738. "preferred": true
  4739. }
  4740. ]
  4741. },
  4742. "require": {
  4743. "ext-openssl": "*",
  4744. "yiisoft/yii2": "~2.0.16"
  4745. },
  4746. "require-dev": {
  4747. "phpunit/phpunit": "<7",
  4748. "yiisoft/yii2-dev": "~2.0.16"
  4749. },
  4750. "type": "yii2-extension",
  4751. "extra": {
  4752. "branch-alias": {
  4753. "dev-master": "2.0.x-dev"
  4754. }
  4755. },
  4756. "autoload": {
  4757. "psr-4": {
  4758. "yii\\redis\\": "src"
  4759. }
  4760. },
  4761. "notification-url": "https://packagist.org/downloads/",
  4762. "license": [
  4763. "BSD-3-Clause"
  4764. ],
  4765. "authors": [
  4766. {
  4767. "name": "Carsten Brandt",
  4768. "email": "mail@cebe.cc"
  4769. }
  4770. ],
  4771. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  4772. "keywords": [
  4773. "active-record",
  4774. "cache",
  4775. "redis",
  4776. "session",
  4777. "yii2"
  4778. ],
  4779. "support": {
  4780. "forum": "http://www.yiiframework.com/forum/",
  4781. "irc": "irc://irc.freenode.net/yii",
  4782. "issues": "https://github.com/yiisoft/yii2-redis/issues",
  4783. "source": "https://github.com/yiisoft/yii2-redis",
  4784. "wiki": "http://www.yiiframework.com/wiki/"
  4785. },
  4786. "funding": [
  4787. {
  4788. "url": "https://github.com/yiisoft",
  4789. "type": "github"
  4790. },
  4791. {
  4792. "url": "https://opencollective.com/yiisoft",
  4793. "type": "open_collective"
  4794. },
  4795. {
  4796. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-redis",
  4797. "type": "tidelift"
  4798. }
  4799. ],
  4800. "time": "2020-05-02T12:03:42+00:00"
  4801. },
  4802. {
  4803. "name": "yiisoft/yii2-sphinx",
  4804. "version": "2.0.14",
  4805. "source": {
  4806. "type": "git",
  4807. "url": "https://github.com/yiisoft/yii2-sphinx.git",
  4808. "reference": "7cf0995c81db11f58afad744c3cdb4da36a65ad9"
  4809. },
  4810. "dist": {
  4811. "type": "zip",
  4812. "url": "https://api.github.com/repos/yiisoft/yii2-sphinx/zipball/7cf0995c81db11f58afad744c3cdb4da36a65ad9",
  4813. "reference": "7cf0995c81db11f58afad744c3cdb4da36a65ad9",
  4814. "shasum": "",
  4815. "mirrors": [
  4816. {
  4817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4818. "preferred": true
  4819. }
  4820. ]
  4821. },
  4822. "require": {
  4823. "ext-pdo": "*",
  4824. "ext-pdo_mysql": "*",
  4825. "yiisoft/yii2": "~2.0.13"
  4826. },
  4827. "require-dev": {
  4828. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  4829. },
  4830. "type": "yii2-extension",
  4831. "extra": {
  4832. "branch-alias": {
  4833. "dev-master": "2.0.x-dev"
  4834. }
  4835. },
  4836. "autoload": {
  4837. "psr-4": {
  4838. "yii\\sphinx\\": "src"
  4839. }
  4840. },
  4841. "notification-url": "https://packagist.org/downloads/",
  4842. "license": [
  4843. "BSD-3-Clause"
  4844. ],
  4845. "authors": [
  4846. {
  4847. "name": "Paul Klimov",
  4848. "email": "klimov.paul@gmail.com"
  4849. }
  4850. ],
  4851. "description": "Sphinx full text search engine extension for the Yii framework",
  4852. "keywords": [
  4853. "active-record",
  4854. "fulltext",
  4855. "search",
  4856. "sphinx",
  4857. "yii2"
  4858. ],
  4859. "support": {
  4860. "forum": "http://www.yiiframework.com/forum/",
  4861. "irc": "irc://irc.freenode.net/yii",
  4862. "issues": "https://github.com/yiisoft/yii2-sphinx/issues",
  4863. "source": "https://github.com/yiisoft/yii2-sphinx",
  4864. "wiki": "http://www.yiiframework.com/wiki/"
  4865. },
  4866. "funding": [
  4867. {
  4868. "url": "https://github.com/yiisoft",
  4869. "type": "github"
  4870. },
  4871. {
  4872. "url": "https://opencollective.com/yiisoft",
  4873. "type": "open_collective"
  4874. },
  4875. {
  4876. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-sphinx",
  4877. "type": "tidelift"
  4878. }
  4879. ],
  4880. "time": "2021-12-30T08:46:04+00:00"
  4881. },
  4882. {
  4883. "name": "yiisoft/yii2-swiftmailer",
  4884. "version": "2.1.2",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  4888. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/09659a55959f9e64b8178d842b64a9ffae42b994",
  4893. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994",
  4894. "shasum": ""
  4895. },
  4896. "require": {
  4897. "swiftmailer/swiftmailer": "~6.0",
  4898. "yiisoft/yii2": ">=2.0.4"
  4899. },
  4900. "type": "yii2-extension",
  4901. "extra": {
  4902. "branch-alias": {
  4903. "dev-master": "2.1.x-dev"
  4904. }
  4905. },
  4906. "autoload": {
  4907. "psr-4": {
  4908. "yii\\swiftmailer\\": "src"
  4909. }
  4910. },
  4911. "notification-url": "https://packagist.org/downloads/",
  4912. "license": [
  4913. "BSD-3-Clause"
  4914. ],
  4915. "authors": [
  4916. {
  4917. "name": "Paul Klimov",
  4918. "email": "klimov.paul@gmail.com"
  4919. }
  4920. ],
  4921. "description": "The SwiftMailer integration for the Yii framework",
  4922. "keywords": [
  4923. "email",
  4924. "mail",
  4925. "mailer",
  4926. "swift",
  4927. "swiftmailer",
  4928. "yii2"
  4929. ],
  4930. "time": "2018-09-23T22:00:47+00:00"
  4931. }
  4932. ],
  4933. "packages-dev": [
  4934. {
  4935. "name": "behat/gherkin",
  4936. "version": "v4.6.0",
  4937. "source": {
  4938. "type": "git",
  4939. "url": "https://github.com/Behat/Gherkin.git",
  4940. "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07"
  4941. },
  4942. "dist": {
  4943. "type": "zip",
  4944. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/ab0a02ea14893860bca00f225f5621d351a3ad07",
  4945. "reference": "ab0a02ea14893860bca00f225f5621d351a3ad07",
  4946. "shasum": ""
  4947. },
  4948. "require": {
  4949. "php": ">=5.3.1"
  4950. },
  4951. "require-dev": {
  4952. "phpunit/phpunit": "~4.5|~5",
  4953. "symfony/phpunit-bridge": "~2.7|~3|~4",
  4954. "symfony/yaml": "~2.3|~3|~4"
  4955. },
  4956. "suggest": {
  4957. "symfony/yaml": "If you want to parse features, represented in YAML files"
  4958. },
  4959. "type": "library",
  4960. "extra": {
  4961. "branch-alias": {
  4962. "dev-master": "4.4-dev"
  4963. }
  4964. },
  4965. "autoload": {
  4966. "psr-0": {
  4967. "Behat\\Gherkin": "src/"
  4968. }
  4969. },
  4970. "notification-url": "https://packagist.org/downloads/",
  4971. "license": [
  4972. "MIT"
  4973. ],
  4974. "authors": [
  4975. {
  4976. "name": "Konstantin Kudryashov",
  4977. "email": "ever.zet@gmail.com",
  4978. "homepage": "http://everzet.com"
  4979. }
  4980. ],
  4981. "description": "Gherkin DSL parser for PHP 5.3",
  4982. "homepage": "http://behat.org/",
  4983. "keywords": [
  4984. "BDD",
  4985. "Behat",
  4986. "Cucumber",
  4987. "DSL",
  4988. "gherkin",
  4989. "parser"
  4990. ],
  4991. "time": "2019-01-16T14:22:17+00:00"
  4992. },
  4993. {
  4994. "name": "codeception/codeception",
  4995. "version": "4.0.2",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://github.com/Codeception/Codeception.git",
  4999. "reference": "e610c15ebb73b56722c67e1c799bf0565f062899"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/e610c15ebb73b56722c67e1c799bf0565f062899",
  5004. "reference": "e610c15ebb73b56722c67e1c799bf0565f062899",
  5005. "shasum": ""
  5006. },
  5007. "require": {
  5008. "behat/gherkin": "^4.4.0",
  5009. "codeception/lib-asserts": "^1.0",
  5010. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1",
  5011. "codeception/stub": "^2.0 | ^3.0",
  5012. "ext-curl": "*",
  5013. "ext-json": "*",
  5014. "ext-mbstring": "*",
  5015. "guzzlehttp/psr7": "~1.4",
  5016. "php": ">=5.6.0 <8.0",
  5017. "symfony/console": ">=2.7 <6.0",
  5018. "symfony/css-selector": ">=2.7 <6.0",
  5019. "symfony/event-dispatcher": ">=2.7 <6.0",
  5020. "symfony/finder": ">=2.7 <6.0",
  5021. "symfony/yaml": ">=2.7 <6.0"
  5022. },
  5023. "require-dev": {
  5024. "codeception/module-asserts": "*@dev",
  5025. "codeception/module-cli": "*@dev",
  5026. "codeception/module-db": "*@dev",
  5027. "codeception/module-filesystem": "*@dev",
  5028. "codeception/module-phpbrowser": "*@dev",
  5029. "codeception/specify": "~0.3",
  5030. "codeception/util-universalframework": "*@dev",
  5031. "monolog/monolog": "~1.8",
  5032. "squizlabs/php_codesniffer": "~2.0",
  5033. "symfony/process": ">=2.7 <6.0",
  5034. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0"
  5035. },
  5036. "suggest": {
  5037. "codeception/specify": "BDD-style code blocks",
  5038. "codeception/verify": "BDD-style assertions",
  5039. "hoa/console": "For interactive console functionality",
  5040. "stecman/symfony-console-completion": "For BASH autocompletion",
  5041. "symfony/phpunit-bridge": "For phpunit-bridge support"
  5042. },
  5043. "bin": [
  5044. "codecept"
  5045. ],
  5046. "type": "library",
  5047. "extra": {
  5048. "branch-alias": []
  5049. },
  5050. "autoload": {
  5051. "psr-4": {
  5052. "Codeception\\": "src/Codeception",
  5053. "Codeception\\Extension\\": "ext"
  5054. }
  5055. },
  5056. "notification-url": "https://packagist.org/downloads/",
  5057. "license": [
  5058. "MIT"
  5059. ],
  5060. "authors": [
  5061. {
  5062. "name": "Michael Bodnarchuk",
  5063. "email": "davert@mail.ua",
  5064. "homepage": "http://codegyre.com"
  5065. }
  5066. ],
  5067. "description": "BDD-style testing framework",
  5068. "homepage": "http://codeception.com/",
  5069. "keywords": [
  5070. "BDD",
  5071. "TDD",
  5072. "acceptance testing",
  5073. "functional testing",
  5074. "unit testing"
  5075. ],
  5076. "time": "2020-01-14T14:44:10+00:00"
  5077. },
  5078. {
  5079. "name": "codeception/lib-asserts",
  5080. "version": "1.10.1",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/Codeception/lib-asserts.git",
  5084. "reference": "f052dfebad3e9bcafc66c22a7ef39cb1a30cebd2"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/f052dfebad3e9bcafc66c22a7ef39cb1a30cebd2",
  5089. "reference": "f052dfebad3e9bcafc66c22a7ef39cb1a30cebd2",
  5090. "shasum": ""
  5091. },
  5092. "require": {
  5093. "php": ">=7.2.0 <8.0",
  5094. "phpunit/phpunit": "^8.4"
  5095. },
  5096. "type": "library",
  5097. "autoload": {
  5098. "classmap": [
  5099. "src/"
  5100. ]
  5101. },
  5102. "notification-url": "https://packagist.org/downloads/",
  5103. "license": [
  5104. "MIT"
  5105. ],
  5106. "authors": [
  5107. {
  5108. "name": "Michael Bodnarchuk",
  5109. "email": "davert@mail.ua",
  5110. "homepage": "http://codegyre.com"
  5111. },
  5112. {
  5113. "name": "Gintautas Miselis"
  5114. }
  5115. ],
  5116. "description": "Assertion methods used by Codeception core and Asserts module",
  5117. "homepage": "http://codeception.com/",
  5118. "keywords": [
  5119. "codeception"
  5120. ],
  5121. "time": "2019-11-23T20:16:40+00:00"
  5122. },
  5123. {
  5124. "name": "codeception/lib-innerbrowser",
  5125. "version": "1.2.3",
  5126. "source": {
  5127. "type": "git",
  5128. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  5129. "reference": "289028f011dcc954c530e946ea34bb7ce4ec2721"
  5130. },
  5131. "dist": {
  5132. "type": "zip",
  5133. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/289028f011dcc954c530e946ea34bb7ce4ec2721",
  5134. "reference": "289028f011dcc954c530e946ea34bb7ce4ec2721",
  5135. "shasum": ""
  5136. },
  5137. "require": {
  5138. "codeception/codeception": "*@dev",
  5139. "php": ">=5.6.0 <8.0",
  5140. "symfony/browser-kit": ">=2.7 <6.0",
  5141. "symfony/dom-crawler": ">=2.7 <6.0"
  5142. },
  5143. "conflict": {
  5144. "codeception/codeception": "<4.0"
  5145. },
  5146. "require-dev": {
  5147. "codeception/util-universalframework": "dev-master"
  5148. },
  5149. "type": "library",
  5150. "autoload": {
  5151. "classmap": [
  5152. "src/"
  5153. ]
  5154. },
  5155. "notification-url": "https://packagist.org/downloads/",
  5156. "license": [
  5157. "MIT"
  5158. ],
  5159. "authors": [
  5160. {
  5161. "name": "Michael Bodnarchuk",
  5162. "email": "davert@mail.ua",
  5163. "homepage": "http://codegyre.com"
  5164. },
  5165. {
  5166. "name": "Gintautas Miselis"
  5167. }
  5168. ],
  5169. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  5170. "homepage": "http://codeception.com/",
  5171. "keywords": [
  5172. "codeception"
  5173. ],
  5174. "time": "2019-11-26T16:50:12+00:00"
  5175. },
  5176. {
  5177. "name": "codeception/module-asserts",
  5178. "version": "1.1.1",
  5179. "source": {
  5180. "type": "git",
  5181. "url": "https://github.com/Codeception/module-asserts.git",
  5182. "reference": "87c83ca3ccfbc0d79f5effb57e1f82eeaab0cb3e"
  5183. },
  5184. "dist": {
  5185. "type": "zip",
  5186. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/87c83ca3ccfbc0d79f5effb57e1f82eeaab0cb3e",
  5187. "reference": "87c83ca3ccfbc0d79f5effb57e1f82eeaab0cb3e",
  5188. "shasum": ""
  5189. },
  5190. "require": {
  5191. "codeception/codeception": "*@dev",
  5192. "codeception/lib-asserts": "^1.0.0",
  5193. "php": ">=5.6.0 <8.0"
  5194. },
  5195. "conflict": {
  5196. "codeception/codeception": "<4.0"
  5197. },
  5198. "require-dev": {
  5199. "codeception/util-robohelpers": "dev-master"
  5200. },
  5201. "type": "library",
  5202. "autoload": {
  5203. "classmap": [
  5204. "src/"
  5205. ]
  5206. },
  5207. "notification-url": "https://packagist.org/downloads/",
  5208. "license": [
  5209. "MIT"
  5210. ],
  5211. "authors": [
  5212. {
  5213. "name": "Michael Bodnarchuk"
  5214. },
  5215. {
  5216. "name": "Gintautas Miselis"
  5217. }
  5218. ],
  5219. "description": "Codeception module containing various assertions",
  5220. "homepage": "http://codeception.com/",
  5221. "keywords": [
  5222. "assertions",
  5223. "asserts",
  5224. "codeception"
  5225. ],
  5226. "time": "2019-11-13T17:32:27+00:00"
  5227. },
  5228. {
  5229. "name": "codeception/module-filesystem",
  5230. "version": "1.0.2",
  5231. "source": {
  5232. "type": "git",
  5233. "url": "https://github.com/Codeception/module-filesystem.git",
  5234. "reference": "fe3c352479924ec0aaf6a6c3d6825dc14242b81e"
  5235. },
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://api.github.com/repos/Codeception/module-filesystem/zipball/fe3c352479924ec0aaf6a6c3d6825dc14242b81e",
  5239. "reference": "fe3c352479924ec0aaf6a6c3d6825dc14242b81e",
  5240. "shasum": ""
  5241. },
  5242. "require": {
  5243. "codeception/codeception": "*@dev",
  5244. "php": ">=5.6.0 <8.0",
  5245. "symfony/finder": ">=2.7 <6.0"
  5246. },
  5247. "conflict": {
  5248. "codeception/codeception": "<4.0"
  5249. },
  5250. "require-dev": {
  5251. "codeception/util-robohelpers": "dev-master"
  5252. },
  5253. "type": "library",
  5254. "autoload": {
  5255. "classmap": [
  5256. "src/"
  5257. ]
  5258. },
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "MIT"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Michael Bodnarchuk"
  5266. },
  5267. {
  5268. "name": "Gintautas Miselis"
  5269. }
  5270. ],
  5271. "description": "Codeception module for testing local filesystem",
  5272. "homepage": "http://codeception.com/",
  5273. "keywords": [
  5274. "codeception",
  5275. "filesystem"
  5276. ],
  5277. "time": "2019-12-04T17:13:39+00:00"
  5278. },
  5279. {
  5280. "name": "codeception/module-yii2",
  5281. "version": "1.0.1",
  5282. "source": {
  5283. "type": "git",
  5284. "url": "https://github.com/Codeception/module-yii2.git",
  5285. "reference": "9796e9a990e80aa5f8b049563071c2825289a6ff"
  5286. },
  5287. "dist": {
  5288. "type": "zip",
  5289. "url": "https://api.github.com/repos/Codeception/module-yii2/zipball/9796e9a990e80aa5f8b049563071c2825289a6ff",
  5290. "reference": "9796e9a990e80aa5f8b049563071c2825289a6ff",
  5291. "shasum": ""
  5292. },
  5293. "require": {
  5294. "codeception/codeception": "4.0.x-dev | ^4.0",
  5295. "codeception/lib-innerbrowser": "^1.0",
  5296. "php": ">=5.6.0 <8.0"
  5297. },
  5298. "require-dev": {
  5299. "codeception/util-robohelpers": "dev-master"
  5300. },
  5301. "type": "library",
  5302. "autoload": {
  5303. "classmap": [
  5304. "src/"
  5305. ]
  5306. },
  5307. "notification-url": "https://packagist.org/downloads/",
  5308. "license": [
  5309. "MIT"
  5310. ],
  5311. "authors": [
  5312. {
  5313. "name": "Alexander Makarov"
  5314. },
  5315. {
  5316. "name": "Sam Mouse"
  5317. },
  5318. {
  5319. "name": "Michael Bodnarchuk"
  5320. }
  5321. ],
  5322. "description": "Codeception module for Yii2 framework",
  5323. "homepage": "http://codeception.com/",
  5324. "keywords": [
  5325. "codeception",
  5326. "yii2"
  5327. ],
  5328. "time": "2019-10-25T17:28:12+00:00"
  5329. },
  5330. {
  5331. "name": "codeception/phpunit-wrapper",
  5332. "version": "8.1.1",
  5333. "source": {
  5334. "type": "git",
  5335. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  5336. "reference": "f1370a15e5fe60e7347b1c60642479b923a7ceef"
  5337. },
  5338. "dist": {
  5339. "type": "zip",
  5340. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/f1370a15e5fe60e7347b1c60642479b923a7ceef",
  5341. "reference": "f1370a15e5fe60e7347b1c60642479b923a7ceef",
  5342. "shasum": ""
  5343. },
  5344. "require": {
  5345. "php": ">=7.2",
  5346. "phpunit/php-code-coverage": "^7.0",
  5347. "phpunit/phpunit": "^8.0",
  5348. "sebastian/comparator": "^3.0",
  5349. "sebastian/diff": "^3.0"
  5350. },
  5351. "require-dev": {
  5352. "codeception/specify": "*",
  5353. "vlucas/phpdotenv": "^3.0"
  5354. },
  5355. "type": "library",
  5356. "autoload": {
  5357. "psr-4": {
  5358. "Codeception\\PHPUnit\\": "src\\"
  5359. }
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Davert",
  5368. "email": "davert.php@resend.cc"
  5369. }
  5370. ],
  5371. "description": "PHPUnit classes used by Codeception",
  5372. "time": "2019-12-21T16:08:14+00:00"
  5373. },
  5374. {
  5375. "name": "codeception/specify",
  5376. "version": "0.4.6",
  5377. "source": {
  5378. "type": "git",
  5379. "url": "https://github.com/Codeception/Specify.git",
  5380. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286"
  5381. },
  5382. "dist": {
  5383. "type": "zip",
  5384. "url": "https://api.github.com/repos/Codeception/Specify/zipball/21b586f503ca444aa519dd9cafb32f113a05f286",
  5385. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286",
  5386. "shasum": ""
  5387. },
  5388. "require": {
  5389. "myclabs/deep-copy": "~1.1",
  5390. "php": ">=5.4.0"
  5391. },
  5392. "require-dev": {
  5393. "phpunit/phpunit": "~4.0"
  5394. },
  5395. "type": "library",
  5396. "autoload": {
  5397. "psr-0": {
  5398. "Codeception\\": "src/"
  5399. }
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "MIT"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "Michael Bodnarchuk",
  5408. "email": "davert.php@mailican.com"
  5409. }
  5410. ],
  5411. "description": "BDD code blocks for PHPUnit and Codeception",
  5412. "time": "2016-10-21T09:42:00+00:00"
  5413. },
  5414. {
  5415. "name": "codeception/stub",
  5416. "version": "3.6.0",
  5417. "source": {
  5418. "type": "git",
  5419. "url": "https://github.com/Codeception/Stub.git",
  5420. "reference": "94874f511ab1025b1f4cb927884cdda5004ece64"
  5421. },
  5422. "dist": {
  5423. "type": "zip",
  5424. "url": "https://api.github.com/repos/Codeception/Stub/zipball/94874f511ab1025b1f4cb927884cdda5004ece64",
  5425. "reference": "94874f511ab1025b1f4cb927884cdda5004ece64",
  5426. "shasum": ""
  5427. },
  5428. "require": {
  5429. "phpunit/phpunit": "^8.4"
  5430. },
  5431. "type": "library",
  5432. "autoload": {
  5433. "psr-4": {
  5434. "Codeception\\": "src/"
  5435. }
  5436. },
  5437. "notification-url": "https://packagist.org/downloads/",
  5438. "license": [
  5439. "MIT"
  5440. ],
  5441. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  5442. "time": "2019-11-23T20:11:30+00:00"
  5443. },
  5444. {
  5445. "name": "codeception/verify",
  5446. "version": "1.1.0",
  5447. "source": {
  5448. "type": "git",
  5449. "url": "https://github.com/Codeception/Verify.git",
  5450. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3"
  5451. },
  5452. "dist": {
  5453. "type": "zip",
  5454. "url": "https://api.github.com/repos/Codeception/Verify/zipball/fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  5455. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  5456. "shasum": ""
  5457. },
  5458. "require": {
  5459. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.4",
  5460. "php": ">= 7.0",
  5461. "phpunit/phpunit": "> 6.0"
  5462. },
  5463. "type": "library",
  5464. "autoload": {
  5465. "files": [
  5466. "src/Codeception/function.php"
  5467. ],
  5468. "psr-4": {
  5469. "Codeception\\": "src\\Codeception"
  5470. }
  5471. },
  5472. "notification-url": "https://packagist.org/downloads/",
  5473. "license": [
  5474. "MIT"
  5475. ],
  5476. "authors": [
  5477. {
  5478. "name": "Michael Bodnarchuk",
  5479. "email": "davert@codeception.com"
  5480. }
  5481. ],
  5482. "description": "BDD assertion library for PHPUnit",
  5483. "time": "2019-07-30T18:21:46+00:00"
  5484. },
  5485. {
  5486. "name": "doctrine/instantiator",
  5487. "version": "1.3.0",
  5488. "source": {
  5489. "type": "git",
  5490. "url": "https://github.com/doctrine/instantiator.git",
  5491. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1"
  5492. },
  5493. "dist": {
  5494. "type": "zip",
  5495. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1",
  5496. "reference": "ae466f726242e637cebdd526a7d991b9433bacf1",
  5497. "shasum": ""
  5498. },
  5499. "require": {
  5500. "php": "^7.1"
  5501. },
  5502. "require-dev": {
  5503. "doctrine/coding-standard": "^6.0",
  5504. "ext-pdo": "*",
  5505. "ext-phar": "*",
  5506. "phpbench/phpbench": "^0.13",
  5507. "phpstan/phpstan-phpunit": "^0.11",
  5508. "phpstan/phpstan-shim": "^0.11",
  5509. "phpunit/phpunit": "^7.0"
  5510. },
  5511. "type": "library",
  5512. "extra": {
  5513. "branch-alias": {
  5514. "dev-master": "1.2.x-dev"
  5515. }
  5516. },
  5517. "autoload": {
  5518. "psr-4": {
  5519. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  5520. }
  5521. },
  5522. "notification-url": "https://packagist.org/downloads/",
  5523. "license": [
  5524. "MIT"
  5525. ],
  5526. "authors": [
  5527. {
  5528. "name": "Marco Pivetta",
  5529. "email": "ocramius@gmail.com",
  5530. "homepage": "http://ocramius.github.com/"
  5531. }
  5532. ],
  5533. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  5534. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  5535. "keywords": [
  5536. "constructor",
  5537. "instantiate"
  5538. ],
  5539. "time": "2019-10-21T16:45:58+00:00"
  5540. },
  5541. {
  5542. "name": "fzaninotto/faker",
  5543. "version": "v1.9.1",
  5544. "source": {
  5545. "type": "git",
  5546. "url": "https://github.com/fzaninotto/Faker.git",
  5547. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
  5548. },
  5549. "dist": {
  5550. "type": "zip",
  5551. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
  5552. "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
  5553. "shasum": ""
  5554. },
  5555. "require": {
  5556. "php": "^5.3.3 || ^7.0"
  5557. },
  5558. "require-dev": {
  5559. "ext-intl": "*",
  5560. "phpunit/phpunit": "^4.8.35 || ^5.7",
  5561. "squizlabs/php_codesniffer": "^2.9.2"
  5562. },
  5563. "type": "library",
  5564. "extra": {
  5565. "branch-alias": {
  5566. "dev-master": "1.9-dev"
  5567. }
  5568. },
  5569. "autoload": {
  5570. "psr-4": {
  5571. "Faker\\": "src/Faker/"
  5572. }
  5573. },
  5574. "notification-url": "https://packagist.org/downloads/",
  5575. "license": [
  5576. "MIT"
  5577. ],
  5578. "authors": [
  5579. {
  5580. "name": "François Zaninotto"
  5581. }
  5582. ],
  5583. "description": "Faker is a PHP library that generates fake data for you.",
  5584. "keywords": [
  5585. "data",
  5586. "faker",
  5587. "fixtures"
  5588. ],
  5589. "time": "2019-12-12T13:22:17+00:00"
  5590. },
  5591. {
  5592. "name": "myclabs/deep-copy",
  5593. "version": "1.9.5",
  5594. "source": {
  5595. "type": "git",
  5596. "url": "https://github.com/myclabs/DeepCopy.git",
  5597. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef"
  5598. },
  5599. "dist": {
  5600. "type": "zip",
  5601. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef",
  5602. "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef",
  5603. "shasum": ""
  5604. },
  5605. "require": {
  5606. "php": "^7.1"
  5607. },
  5608. "replace": {
  5609. "myclabs/deep-copy": "self.version"
  5610. },
  5611. "require-dev": {
  5612. "doctrine/collections": "^1.0",
  5613. "doctrine/common": "^2.6",
  5614. "phpunit/phpunit": "^7.1"
  5615. },
  5616. "type": "library",
  5617. "autoload": {
  5618. "psr-4": {
  5619. "DeepCopy\\": "src/DeepCopy/"
  5620. },
  5621. "files": [
  5622. "src/DeepCopy/deep_copy.php"
  5623. ]
  5624. },
  5625. "notification-url": "https://packagist.org/downloads/",
  5626. "license": [
  5627. "MIT"
  5628. ],
  5629. "description": "Create deep copies (clones) of your objects",
  5630. "keywords": [
  5631. "clone",
  5632. "copy",
  5633. "duplicate",
  5634. "object",
  5635. "object graph"
  5636. ],
  5637. "time": "2020-01-17T21:11:47+00:00"
  5638. },
  5639. {
  5640. "name": "opis/closure",
  5641. "version": "3.5.1",
  5642. "source": {
  5643. "type": "git",
  5644. "url": "https://github.com/opis/closure.git",
  5645. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969"
  5646. },
  5647. "dist": {
  5648. "type": "zip",
  5649. "url": "https://api.github.com/repos/opis/closure/zipball/93ebc5712cdad8d5f489b500c59d122df2e53969",
  5650. "reference": "93ebc5712cdad8d5f489b500c59d122df2e53969",
  5651. "shasum": ""
  5652. },
  5653. "require": {
  5654. "php": "^5.4 || ^7.0"
  5655. },
  5656. "require-dev": {
  5657. "jeremeamia/superclosure": "^2.0",
  5658. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  5659. },
  5660. "type": "library",
  5661. "extra": {
  5662. "branch-alias": {
  5663. "dev-master": "3.5.x-dev"
  5664. }
  5665. },
  5666. "autoload": {
  5667. "psr-4": {
  5668. "Opis\\Closure\\": "src/"
  5669. },
  5670. "files": [
  5671. "functions.php"
  5672. ]
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "Marius Sarca",
  5681. "email": "marius.sarca@gmail.com"
  5682. },
  5683. {
  5684. "name": "Sorin Sarca",
  5685. "email": "sarca_sorin@hotmail.com"
  5686. }
  5687. ],
  5688. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  5689. "homepage": "https://opis.io/closure",
  5690. "keywords": [
  5691. "anonymous functions",
  5692. "closure",
  5693. "function",
  5694. "serializable",
  5695. "serialization",
  5696. "serialize"
  5697. ],
  5698. "time": "2019-11-29T22:36:02+00:00"
  5699. },
  5700. {
  5701. "name": "phar-io/manifest",
  5702. "version": "1.0.3",
  5703. "source": {
  5704. "type": "git",
  5705. "url": "https://github.com/phar-io/manifest.git",
  5706. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  5707. },
  5708. "dist": {
  5709. "type": "zip",
  5710. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5711. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  5712. "shasum": ""
  5713. },
  5714. "require": {
  5715. "ext-dom": "*",
  5716. "ext-phar": "*",
  5717. "phar-io/version": "^2.0",
  5718. "php": "^5.6 || ^7.0"
  5719. },
  5720. "type": "library",
  5721. "extra": {
  5722. "branch-alias": {
  5723. "dev-master": "1.0.x-dev"
  5724. }
  5725. },
  5726. "autoload": {
  5727. "classmap": [
  5728. "src/"
  5729. ]
  5730. },
  5731. "notification-url": "https://packagist.org/downloads/",
  5732. "license": [
  5733. "BSD-3-Clause"
  5734. ],
  5735. "authors": [
  5736. {
  5737. "name": "Arne Blankerts",
  5738. "email": "arne@blankerts.de",
  5739. "role": "Developer"
  5740. },
  5741. {
  5742. "name": "Sebastian Heuer",
  5743. "email": "sebastian@phpeople.de",
  5744. "role": "Developer"
  5745. },
  5746. {
  5747. "name": "Sebastian Bergmann",
  5748. "email": "sebastian@phpunit.de",
  5749. "role": "Developer"
  5750. }
  5751. ],
  5752. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5753. "time": "2018-07-08T19:23:20+00:00"
  5754. },
  5755. {
  5756. "name": "phar-io/version",
  5757. "version": "2.0.1",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/phar-io/version.git",
  5761. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5766. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  5767. "shasum": ""
  5768. },
  5769. "require": {
  5770. "php": "^5.6 || ^7.0"
  5771. },
  5772. "type": "library",
  5773. "autoload": {
  5774. "classmap": [
  5775. "src/"
  5776. ]
  5777. },
  5778. "notification-url": "https://packagist.org/downloads/",
  5779. "license": [
  5780. "BSD-3-Clause"
  5781. ],
  5782. "authors": [
  5783. {
  5784. "name": "Arne Blankerts",
  5785. "email": "arne@blankerts.de",
  5786. "role": "Developer"
  5787. },
  5788. {
  5789. "name": "Sebastian Heuer",
  5790. "email": "sebastian@phpeople.de",
  5791. "role": "Developer"
  5792. },
  5793. {
  5794. "name": "Sebastian Bergmann",
  5795. "email": "sebastian@phpunit.de",
  5796. "role": "Developer"
  5797. }
  5798. ],
  5799. "description": "Library for handling version information and constraints",
  5800. "time": "2018-07-08T19:19:57+00:00"
  5801. },
  5802. {
  5803. "name": "phpdocumentor/reflection-common",
  5804. "version": "2.2.0",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  5808. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5813. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  5814. "shasum": "",
  5815. "mirrors": [
  5816. {
  5817. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5818. "preferred": true
  5819. }
  5820. ]
  5821. },
  5822. "require": {
  5823. "php": "^7.2 || ^8.0"
  5824. },
  5825. "type": "library",
  5826. "extra": {
  5827. "branch-alias": {
  5828. "dev-2.x": "2.x-dev"
  5829. }
  5830. },
  5831. "autoload": {
  5832. "psr-4": {
  5833. "phpDocumentor\\Reflection\\": "src/"
  5834. }
  5835. },
  5836. "notification-url": "https://packagist.org/downloads/",
  5837. "license": [
  5838. "MIT"
  5839. ],
  5840. "authors": [
  5841. {
  5842. "name": "Jaap van Otterdijk",
  5843. "email": "opensource@ijaap.nl"
  5844. }
  5845. ],
  5846. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  5847. "homepage": "http://www.phpdoc.org",
  5848. "keywords": [
  5849. "FQSEN",
  5850. "phpDocumentor",
  5851. "phpdoc",
  5852. "reflection",
  5853. "static analysis"
  5854. ],
  5855. "support": {
  5856. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  5857. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  5858. },
  5859. "time": "2020-06-27T09:03:43+00:00"
  5860. },
  5861. {
  5862. "name": "phpdocumentor/reflection-docblock",
  5863. "version": "5.3.0",
  5864. "source": {
  5865. "type": "git",
  5866. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  5867. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  5868. },
  5869. "dist": {
  5870. "type": "zip",
  5871. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  5872. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  5873. "shasum": "",
  5874. "mirrors": [
  5875. {
  5876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5877. "preferred": true
  5878. }
  5879. ]
  5880. },
  5881. "require": {
  5882. "ext-filter": "*",
  5883. "php": "^7.2 || ^8.0",
  5884. "phpdocumentor/reflection-common": "^2.2",
  5885. "phpdocumentor/type-resolver": "^1.3",
  5886. "webmozart/assert": "^1.9.1"
  5887. },
  5888. "require-dev": {
  5889. "mockery/mockery": "~1.3.2",
  5890. "psalm/phar": "^4.8"
  5891. },
  5892. "type": "library",
  5893. "extra": {
  5894. "branch-alias": {
  5895. "dev-master": "5.x-dev"
  5896. }
  5897. },
  5898. "autoload": {
  5899. "psr-4": {
  5900. "phpDocumentor\\Reflection\\": "src"
  5901. }
  5902. },
  5903. "notification-url": "https://packagist.org/downloads/",
  5904. "license": [
  5905. "MIT"
  5906. ],
  5907. "authors": [
  5908. {
  5909. "name": "Mike van Riel",
  5910. "email": "me@mikevanriel.com"
  5911. },
  5912. {
  5913. "name": "Jaap van Otterdijk",
  5914. "email": "account@ijaap.nl"
  5915. }
  5916. ],
  5917. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  5918. "support": {
  5919. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  5920. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  5921. },
  5922. "time": "2021-10-19T17:43:47+00:00"
  5923. },
  5924. {
  5925. "name": "phpdocumentor/type-resolver",
  5926. "version": "1.6.1",
  5927. "source": {
  5928. "type": "git",
  5929. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  5930. "reference": "77a32518733312af16a44300404e945338981de3"
  5931. },
  5932. "dist": {
  5933. "type": "zip",
  5934. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  5935. "reference": "77a32518733312af16a44300404e945338981de3",
  5936. "shasum": "",
  5937. "mirrors": [
  5938. {
  5939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5940. "preferred": true
  5941. }
  5942. ]
  5943. },
  5944. "require": {
  5945. "php": "^7.2 || ^8.0",
  5946. "phpdocumentor/reflection-common": "^2.0"
  5947. },
  5948. "require-dev": {
  5949. "ext-tokenizer": "*",
  5950. "psalm/phar": "^4.8"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-1.x": "1.x-dev"
  5956. }
  5957. },
  5958. "autoload": {
  5959. "psr-4": {
  5960. "phpDocumentor\\Reflection\\": "src"
  5961. }
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Mike van Riel",
  5970. "email": "me@mikevanriel.com"
  5971. }
  5972. ],
  5973. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  5974. "support": {
  5975. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  5976. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  5977. },
  5978. "time": "2022-03-15T21:29:03+00:00"
  5979. },
  5980. {
  5981. "name": "phpspec/php-diff",
  5982. "version": "v1.1.0",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://github.com/phpspec/php-diff.git",
  5986. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/0464787bfa7cd13576c5a1e318709768798bec6a",
  5991. "reference": "0464787bfa7cd13576c5a1e318709768798bec6a",
  5992. "shasum": ""
  5993. },
  5994. "type": "library",
  5995. "extra": {
  5996. "branch-alias": {
  5997. "dev-master": "1.0.x-dev"
  5998. }
  5999. },
  6000. "autoload": {
  6001. "psr-0": {
  6002. "Diff": "lib/"
  6003. }
  6004. },
  6005. "notification-url": "https://packagist.org/downloads/",
  6006. "license": [
  6007. "BSD-3-Clause"
  6008. ],
  6009. "authors": [
  6010. {
  6011. "name": "Chris Boulton",
  6012. "homepage": "http://github.com/chrisboulton"
  6013. }
  6014. ],
  6015. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  6016. "time": "2016-04-07T12:29:16+00:00"
  6017. },
  6018. {
  6019. "name": "phpspec/prophecy",
  6020. "version": "v1.10.2",
  6021. "source": {
  6022. "type": "git",
  6023. "url": "https://github.com/phpspec/prophecy.git",
  6024. "reference": "b4400efc9d206e83138e2bb97ed7f5b14b831cd9"
  6025. },
  6026. "dist": {
  6027. "type": "zip",
  6028. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/b4400efc9d206e83138e2bb97ed7f5b14b831cd9",
  6029. "reference": "b4400efc9d206e83138e2bb97ed7f5b14b831cd9",
  6030. "shasum": ""
  6031. },
  6032. "require": {
  6033. "doctrine/instantiator": "^1.0.2",
  6034. "php": "^5.3|^7.0",
  6035. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  6036. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  6037. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  6038. },
  6039. "require-dev": {
  6040. "phpspec/phpspec": "^2.5 || ^3.2",
  6041. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  6042. },
  6043. "type": "library",
  6044. "extra": {
  6045. "branch-alias": {
  6046. "dev-master": "1.10.x-dev"
  6047. }
  6048. },
  6049. "autoload": {
  6050. "psr-4": {
  6051. "Prophecy\\": "src/Prophecy"
  6052. }
  6053. },
  6054. "notification-url": "https://packagist.org/downloads/",
  6055. "license": [
  6056. "MIT"
  6057. ],
  6058. "authors": [
  6059. {
  6060. "name": "Konstantin Kudryashov",
  6061. "email": "ever.zet@gmail.com",
  6062. "homepage": "http://everzet.com"
  6063. },
  6064. {
  6065. "name": "Marcello Duarte",
  6066. "email": "marcello.duarte@gmail.com"
  6067. }
  6068. ],
  6069. "description": "Highly opinionated mocking framework for PHP 5.3+",
  6070. "homepage": "https://github.com/phpspec/prophecy",
  6071. "keywords": [
  6072. "Double",
  6073. "Dummy",
  6074. "fake",
  6075. "mock",
  6076. "spy",
  6077. "stub"
  6078. ],
  6079. "time": "2020-01-20T15:57:02+00:00"
  6080. },
  6081. {
  6082. "name": "phpunit/php-code-coverage",
  6083. "version": "7.0.10",
  6084. "source": {
  6085. "type": "git",
  6086. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6087. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf"
  6088. },
  6089. "dist": {
  6090. "type": "zip",
  6091. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f1884187926fbb755a9aaf0b3836ad3165b478bf",
  6092. "reference": "f1884187926fbb755a9aaf0b3836ad3165b478bf",
  6093. "shasum": ""
  6094. },
  6095. "require": {
  6096. "ext-dom": "*",
  6097. "ext-xmlwriter": "*",
  6098. "php": "^7.2",
  6099. "phpunit/php-file-iterator": "^2.0.2",
  6100. "phpunit/php-text-template": "^1.2.1",
  6101. "phpunit/php-token-stream": "^3.1.1",
  6102. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  6103. "sebastian/environment": "^4.2.2",
  6104. "sebastian/version": "^2.0.1",
  6105. "theseer/tokenizer": "^1.1.3"
  6106. },
  6107. "require-dev": {
  6108. "phpunit/phpunit": "^8.2.2"
  6109. },
  6110. "suggest": {
  6111. "ext-xdebug": "^2.7.2"
  6112. },
  6113. "type": "library",
  6114. "extra": {
  6115. "branch-alias": {
  6116. "dev-master": "7.0-dev"
  6117. }
  6118. },
  6119. "autoload": {
  6120. "classmap": [
  6121. "src/"
  6122. ]
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "BSD-3-Clause"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Sebastian Bergmann",
  6131. "email": "sebastian@phpunit.de",
  6132. "role": "lead"
  6133. }
  6134. ],
  6135. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6136. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6137. "keywords": [
  6138. "coverage",
  6139. "testing",
  6140. "xunit"
  6141. ],
  6142. "time": "2019-11-20T13:55:58+00:00"
  6143. },
  6144. {
  6145. "name": "phpunit/php-file-iterator",
  6146. "version": "2.0.2",
  6147. "source": {
  6148. "type": "git",
  6149. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6150. "reference": "050bedf145a257b1ff02746c31894800e5122946"
  6151. },
  6152. "dist": {
  6153. "type": "zip",
  6154. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/050bedf145a257b1ff02746c31894800e5122946",
  6155. "reference": "050bedf145a257b1ff02746c31894800e5122946",
  6156. "shasum": ""
  6157. },
  6158. "require": {
  6159. "php": "^7.1"
  6160. },
  6161. "require-dev": {
  6162. "phpunit/phpunit": "^7.1"
  6163. },
  6164. "type": "library",
  6165. "extra": {
  6166. "branch-alias": {
  6167. "dev-master": "2.0.x-dev"
  6168. }
  6169. },
  6170. "autoload": {
  6171. "classmap": [
  6172. "src/"
  6173. ]
  6174. },
  6175. "notification-url": "https://packagist.org/downloads/",
  6176. "license": [
  6177. "BSD-3-Clause"
  6178. ],
  6179. "authors": [
  6180. {
  6181. "name": "Sebastian Bergmann",
  6182. "email": "sebastian@phpunit.de",
  6183. "role": "lead"
  6184. }
  6185. ],
  6186. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6187. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6188. "keywords": [
  6189. "filesystem",
  6190. "iterator"
  6191. ],
  6192. "time": "2018-09-13T20:33:42+00:00"
  6193. },
  6194. {
  6195. "name": "phpunit/php-text-template",
  6196. "version": "1.2.1",
  6197. "source": {
  6198. "type": "git",
  6199. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6200. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  6201. },
  6202. "dist": {
  6203. "type": "zip",
  6204. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6205. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  6206. "shasum": ""
  6207. },
  6208. "require": {
  6209. "php": ">=5.3.3"
  6210. },
  6211. "type": "library",
  6212. "autoload": {
  6213. "classmap": [
  6214. "src/"
  6215. ]
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "BSD-3-Clause"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Sebastian Bergmann",
  6224. "email": "sebastian@phpunit.de",
  6225. "role": "lead"
  6226. }
  6227. ],
  6228. "description": "Simple template engine.",
  6229. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6230. "keywords": [
  6231. "template"
  6232. ],
  6233. "time": "2015-06-21T13:50:34+00:00"
  6234. },
  6235. {
  6236. "name": "phpunit/php-timer",
  6237. "version": "2.1.2",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6241. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e",
  6246. "reference": "1038454804406b0b5f5f520358e78c1c2f71501e",
  6247. "shasum": ""
  6248. },
  6249. "require": {
  6250. "php": "^7.1"
  6251. },
  6252. "require-dev": {
  6253. "phpunit/phpunit": "^7.0"
  6254. },
  6255. "type": "library",
  6256. "extra": {
  6257. "branch-alias": {
  6258. "dev-master": "2.1-dev"
  6259. }
  6260. },
  6261. "autoload": {
  6262. "classmap": [
  6263. "src/"
  6264. ]
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "BSD-3-Clause"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Sebastian Bergmann",
  6273. "email": "sebastian@phpunit.de",
  6274. "role": "lead"
  6275. }
  6276. ],
  6277. "description": "Utility class for timing",
  6278. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6279. "keywords": [
  6280. "timer"
  6281. ],
  6282. "time": "2019-06-07T04:22:29+00:00"
  6283. },
  6284. {
  6285. "name": "phpunit/php-token-stream",
  6286. "version": "3.1.1",
  6287. "source": {
  6288. "type": "git",
  6289. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  6290. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff"
  6291. },
  6292. "dist": {
  6293. "type": "zip",
  6294. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/995192df77f63a59e47f025390d2d1fdf8f425ff",
  6295. "reference": "995192df77f63a59e47f025390d2d1fdf8f425ff",
  6296. "shasum": ""
  6297. },
  6298. "require": {
  6299. "ext-tokenizer": "*",
  6300. "php": "^7.1"
  6301. },
  6302. "require-dev": {
  6303. "phpunit/phpunit": "^7.0"
  6304. },
  6305. "type": "library",
  6306. "extra": {
  6307. "branch-alias": {
  6308. "dev-master": "3.1-dev"
  6309. }
  6310. },
  6311. "autoload": {
  6312. "classmap": [
  6313. "src/"
  6314. ]
  6315. },
  6316. "notification-url": "https://packagist.org/downloads/",
  6317. "license": [
  6318. "BSD-3-Clause"
  6319. ],
  6320. "authors": [
  6321. {
  6322. "name": "Sebastian Bergmann",
  6323. "email": "sebastian@phpunit.de"
  6324. }
  6325. ],
  6326. "description": "Wrapper around PHP's tokenizer extension.",
  6327. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  6328. "keywords": [
  6329. "tokenizer"
  6330. ],
  6331. "time": "2019-09-17T06:23:10+00:00"
  6332. },
  6333. {
  6334. "name": "phpunit/phpunit",
  6335. "version": "8.5.2",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6339. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  6344. "reference": "018b6ac3c8ab20916db85fa91bf6465acb64d1e0",
  6345. "shasum": ""
  6346. },
  6347. "require": {
  6348. "doctrine/instantiator": "^1.2.0",
  6349. "ext-dom": "*",
  6350. "ext-json": "*",
  6351. "ext-libxml": "*",
  6352. "ext-mbstring": "*",
  6353. "ext-xml": "*",
  6354. "ext-xmlwriter": "*",
  6355. "myclabs/deep-copy": "^1.9.1",
  6356. "phar-io/manifest": "^1.0.3",
  6357. "phar-io/version": "^2.0.1",
  6358. "php": "^7.2",
  6359. "phpspec/prophecy": "^1.8.1",
  6360. "phpunit/php-code-coverage": "^7.0.7",
  6361. "phpunit/php-file-iterator": "^2.0.2",
  6362. "phpunit/php-text-template": "^1.2.1",
  6363. "phpunit/php-timer": "^2.1.2",
  6364. "sebastian/comparator": "^3.0.2",
  6365. "sebastian/diff": "^3.0.2",
  6366. "sebastian/environment": "^4.2.2",
  6367. "sebastian/exporter": "^3.1.1",
  6368. "sebastian/global-state": "^3.0.0",
  6369. "sebastian/object-enumerator": "^3.0.3",
  6370. "sebastian/resource-operations": "^2.0.1",
  6371. "sebastian/type": "^1.1.3",
  6372. "sebastian/version": "^2.0.1"
  6373. },
  6374. "require-dev": {
  6375. "ext-pdo": "*"
  6376. },
  6377. "suggest": {
  6378. "ext-soap": "*",
  6379. "ext-xdebug": "*",
  6380. "phpunit/php-invoker": "^2.0.0"
  6381. },
  6382. "bin": [
  6383. "phpunit"
  6384. ],
  6385. "type": "library",
  6386. "extra": {
  6387. "branch-alias": {
  6388. "dev-master": "8.5-dev"
  6389. }
  6390. },
  6391. "autoload": {
  6392. "classmap": [
  6393. "src/"
  6394. ]
  6395. },
  6396. "notification-url": "https://packagist.org/downloads/",
  6397. "license": [
  6398. "BSD-3-Clause"
  6399. ],
  6400. "authors": [
  6401. {
  6402. "name": "Sebastian Bergmann",
  6403. "email": "sebastian@phpunit.de",
  6404. "role": "lead"
  6405. }
  6406. ],
  6407. "description": "The PHP Unit Testing framework.",
  6408. "homepage": "https://phpunit.de/",
  6409. "keywords": [
  6410. "phpunit",
  6411. "testing",
  6412. "xunit"
  6413. ],
  6414. "time": "2020-01-08T08:49:49+00:00"
  6415. },
  6416. {
  6417. "name": "psr/container",
  6418. "version": "1.1.1",
  6419. "source": {
  6420. "type": "git",
  6421. "url": "https://github.com/php-fig/container.git",
  6422. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  6423. },
  6424. "dist": {
  6425. "type": "zip",
  6426. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  6427. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  6428. "shasum": "",
  6429. "mirrors": [
  6430. {
  6431. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6432. "preferred": true
  6433. }
  6434. ]
  6435. },
  6436. "require": {
  6437. "php": ">=7.2.0"
  6438. },
  6439. "type": "library",
  6440. "autoload": {
  6441. "psr-4": {
  6442. "Psr\\Container\\": "src/"
  6443. }
  6444. },
  6445. "notification-url": "https://packagist.org/downloads/",
  6446. "license": [
  6447. "MIT"
  6448. ],
  6449. "authors": [
  6450. {
  6451. "name": "PHP-FIG",
  6452. "homepage": "https://www.php-fig.org/"
  6453. }
  6454. ],
  6455. "description": "Common Container Interface (PHP FIG PSR-11)",
  6456. "homepage": "https://github.com/php-fig/container",
  6457. "keywords": [
  6458. "PSR-11",
  6459. "container",
  6460. "container-interface",
  6461. "container-interop",
  6462. "psr"
  6463. ],
  6464. "support": {
  6465. "issues": "https://github.com/php-fig/container/issues",
  6466. "source": "https://github.com/php-fig/container/tree/1.1.1"
  6467. },
  6468. "time": "2021-03-05T17:36:06+00:00"
  6469. },
  6470. {
  6471. "name": "psr/event-dispatcher",
  6472. "version": "1.0.0",
  6473. "source": {
  6474. "type": "git",
  6475. "url": "https://github.com/php-fig/event-dispatcher.git",
  6476. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6477. },
  6478. "dist": {
  6479. "type": "zip",
  6480. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6481. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6482. "shasum": "",
  6483. "mirrors": [
  6484. {
  6485. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6486. "preferred": true
  6487. }
  6488. ]
  6489. },
  6490. "require": {
  6491. "php": ">=7.2.0"
  6492. },
  6493. "type": "library",
  6494. "extra": {
  6495. "branch-alias": {
  6496. "dev-master": "1.0.x-dev"
  6497. }
  6498. },
  6499. "autoload": {
  6500. "psr-4": {
  6501. "Psr\\EventDispatcher\\": "src/"
  6502. }
  6503. },
  6504. "notification-url": "https://packagist.org/downloads/",
  6505. "license": [
  6506. "MIT"
  6507. ],
  6508. "authors": [
  6509. {
  6510. "name": "PHP-FIG",
  6511. "homepage": "http://www.php-fig.org/"
  6512. }
  6513. ],
  6514. "description": "Standard interfaces for event handling.",
  6515. "keywords": [
  6516. "events",
  6517. "psr",
  6518. "psr-14"
  6519. ],
  6520. "support": {
  6521. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6522. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6523. },
  6524. "time": "2019-01-08T18:20:26+00:00"
  6525. },
  6526. {
  6527. "name": "sebastian/code-unit-reverse-lookup",
  6528. "version": "1.0.1",
  6529. "source": {
  6530. "type": "git",
  6531. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6532. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  6533. },
  6534. "dist": {
  6535. "type": "zip",
  6536. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6537. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  6538. "shasum": ""
  6539. },
  6540. "require": {
  6541. "php": "^5.6 || ^7.0"
  6542. },
  6543. "require-dev": {
  6544. "phpunit/phpunit": "^5.7 || ^6.0"
  6545. },
  6546. "type": "library",
  6547. "extra": {
  6548. "branch-alias": {
  6549. "dev-master": "1.0.x-dev"
  6550. }
  6551. },
  6552. "autoload": {
  6553. "classmap": [
  6554. "src/"
  6555. ]
  6556. },
  6557. "notification-url": "https://packagist.org/downloads/",
  6558. "license": [
  6559. "BSD-3-Clause"
  6560. ],
  6561. "authors": [
  6562. {
  6563. "name": "Sebastian Bergmann",
  6564. "email": "sebastian@phpunit.de"
  6565. }
  6566. ],
  6567. "description": "Looks up which function or method a line of code belongs to",
  6568. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6569. "time": "2017-03-04T06:30:41+00:00"
  6570. },
  6571. {
  6572. "name": "sebastian/comparator",
  6573. "version": "3.0.2",
  6574. "source": {
  6575. "type": "git",
  6576. "url": "https://github.com/sebastianbergmann/comparator.git",
  6577. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da"
  6578. },
  6579. "dist": {
  6580. "type": "zip",
  6581. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6582. "reference": "5de4fc177adf9bce8df98d8d141a7559d7ccf6da",
  6583. "shasum": ""
  6584. },
  6585. "require": {
  6586. "php": "^7.1",
  6587. "sebastian/diff": "^3.0",
  6588. "sebastian/exporter": "^3.1"
  6589. },
  6590. "require-dev": {
  6591. "phpunit/phpunit": "^7.1"
  6592. },
  6593. "type": "library",
  6594. "extra": {
  6595. "branch-alias": {
  6596. "dev-master": "3.0-dev"
  6597. }
  6598. },
  6599. "autoload": {
  6600. "classmap": [
  6601. "src/"
  6602. ]
  6603. },
  6604. "notification-url": "https://packagist.org/downloads/",
  6605. "license": [
  6606. "BSD-3-Clause"
  6607. ],
  6608. "authors": [
  6609. {
  6610. "name": "Jeff Welch",
  6611. "email": "whatthejeff@gmail.com"
  6612. },
  6613. {
  6614. "name": "Volker Dusch",
  6615. "email": "github@wallbash.com"
  6616. },
  6617. {
  6618. "name": "Bernhard Schussek",
  6619. "email": "bschussek@2bepublished.at"
  6620. },
  6621. {
  6622. "name": "Sebastian Bergmann",
  6623. "email": "sebastian@phpunit.de"
  6624. }
  6625. ],
  6626. "description": "Provides the functionality to compare PHP values for equality",
  6627. "homepage": "https://github.com/sebastianbergmann/comparator",
  6628. "keywords": [
  6629. "comparator",
  6630. "compare",
  6631. "equality"
  6632. ],
  6633. "time": "2018-07-12T15:12:46+00:00"
  6634. },
  6635. {
  6636. "name": "sebastian/diff",
  6637. "version": "3.0.3",
  6638. "source": {
  6639. "type": "git",
  6640. "url": "https://github.com/sebastianbergmann/diff.git",
  6641. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  6642. },
  6643. "dist": {
  6644. "type": "zip",
  6645. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  6646. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  6647. "shasum": "",
  6648. "mirrors": [
  6649. {
  6650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6651. "preferred": true
  6652. }
  6653. ]
  6654. },
  6655. "require": {
  6656. "php": ">=7.1"
  6657. },
  6658. "require-dev": {
  6659. "phpunit/phpunit": "^7.5 || ^8.0",
  6660. "symfony/process": "^2 || ^3.3 || ^4"
  6661. },
  6662. "type": "library",
  6663. "extra": {
  6664. "branch-alias": {
  6665. "dev-master": "3.0-dev"
  6666. }
  6667. },
  6668. "autoload": {
  6669. "classmap": [
  6670. "src/"
  6671. ]
  6672. },
  6673. "notification-url": "https://packagist.org/downloads/",
  6674. "license": [
  6675. "BSD-3-Clause"
  6676. ],
  6677. "authors": [
  6678. {
  6679. "name": "Sebastian Bergmann",
  6680. "email": "sebastian@phpunit.de"
  6681. },
  6682. {
  6683. "name": "Kore Nordmann",
  6684. "email": "mail@kore-nordmann.de"
  6685. }
  6686. ],
  6687. "description": "Diff implementation",
  6688. "homepage": "https://github.com/sebastianbergmann/diff",
  6689. "keywords": [
  6690. "diff",
  6691. "udiff",
  6692. "unidiff",
  6693. "unified diff"
  6694. ],
  6695. "support": {
  6696. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6697. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  6698. },
  6699. "funding": [
  6700. {
  6701. "url": "https://github.com/sebastianbergmann",
  6702. "type": "github"
  6703. }
  6704. ],
  6705. "time": "2020-11-30T07:59:04+00:00"
  6706. },
  6707. {
  6708. "name": "sebastian/environment",
  6709. "version": "4.2.3",
  6710. "source": {
  6711. "type": "git",
  6712. "url": "https://github.com/sebastianbergmann/environment.git",
  6713. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368"
  6714. },
  6715. "dist": {
  6716. "type": "zip",
  6717. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  6718. "reference": "464c90d7bdf5ad4e8a6aea15c091fec0603d4368",
  6719. "shasum": ""
  6720. },
  6721. "require": {
  6722. "php": "^7.1"
  6723. },
  6724. "require-dev": {
  6725. "phpunit/phpunit": "^7.5"
  6726. },
  6727. "suggest": {
  6728. "ext-posix": "*"
  6729. },
  6730. "type": "library",
  6731. "extra": {
  6732. "branch-alias": {
  6733. "dev-master": "4.2-dev"
  6734. }
  6735. },
  6736. "autoload": {
  6737. "classmap": [
  6738. "src/"
  6739. ]
  6740. },
  6741. "notification-url": "https://packagist.org/downloads/",
  6742. "license": [
  6743. "BSD-3-Clause"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "Sebastian Bergmann",
  6748. "email": "sebastian@phpunit.de"
  6749. }
  6750. ],
  6751. "description": "Provides functionality to handle HHVM/PHP environments",
  6752. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6753. "keywords": [
  6754. "Xdebug",
  6755. "environment",
  6756. "hhvm"
  6757. ],
  6758. "time": "2019-11-20T08:46:58+00:00"
  6759. },
  6760. {
  6761. "name": "sebastian/exporter",
  6762. "version": "3.1.2",
  6763. "source": {
  6764. "type": "git",
  6765. "url": "https://github.com/sebastianbergmann/exporter.git",
  6766. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  6767. },
  6768. "dist": {
  6769. "type": "zip",
  6770. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6771. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  6772. "shasum": ""
  6773. },
  6774. "require": {
  6775. "php": "^7.0",
  6776. "sebastian/recursion-context": "^3.0"
  6777. },
  6778. "require-dev": {
  6779. "ext-mbstring": "*",
  6780. "phpunit/phpunit": "^6.0"
  6781. },
  6782. "type": "library",
  6783. "extra": {
  6784. "branch-alias": {
  6785. "dev-master": "3.1.x-dev"
  6786. }
  6787. },
  6788. "autoload": {
  6789. "classmap": [
  6790. "src/"
  6791. ]
  6792. },
  6793. "notification-url": "https://packagist.org/downloads/",
  6794. "license": [
  6795. "BSD-3-Clause"
  6796. ],
  6797. "authors": [
  6798. {
  6799. "name": "Sebastian Bergmann",
  6800. "email": "sebastian@phpunit.de"
  6801. },
  6802. {
  6803. "name": "Jeff Welch",
  6804. "email": "whatthejeff@gmail.com"
  6805. },
  6806. {
  6807. "name": "Volker Dusch",
  6808. "email": "github@wallbash.com"
  6809. },
  6810. {
  6811. "name": "Adam Harvey",
  6812. "email": "aharvey@php.net"
  6813. },
  6814. {
  6815. "name": "Bernhard Schussek",
  6816. "email": "bschussek@gmail.com"
  6817. }
  6818. ],
  6819. "description": "Provides the functionality to export PHP variables for visualization",
  6820. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  6821. "keywords": [
  6822. "export",
  6823. "exporter"
  6824. ],
  6825. "time": "2019-09-14T09:02:43+00:00"
  6826. },
  6827. {
  6828. "name": "sebastian/global-state",
  6829. "version": "3.0.0",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://github.com/sebastianbergmann/global-state.git",
  6833. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6838. "reference": "edf8a461cf1d4005f19fb0b6b8b95a9f7fa0adc4",
  6839. "shasum": ""
  6840. },
  6841. "require": {
  6842. "php": "^7.2",
  6843. "sebastian/object-reflector": "^1.1.1",
  6844. "sebastian/recursion-context": "^3.0"
  6845. },
  6846. "require-dev": {
  6847. "ext-dom": "*",
  6848. "phpunit/phpunit": "^8.0"
  6849. },
  6850. "suggest": {
  6851. "ext-uopz": "*"
  6852. },
  6853. "type": "library",
  6854. "extra": {
  6855. "branch-alias": {
  6856. "dev-master": "3.0-dev"
  6857. }
  6858. },
  6859. "autoload": {
  6860. "classmap": [
  6861. "src/"
  6862. ]
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "BSD-3-Clause"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "Sebastian Bergmann",
  6871. "email": "sebastian@phpunit.de"
  6872. }
  6873. ],
  6874. "description": "Snapshotting of global state",
  6875. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6876. "keywords": [
  6877. "global state"
  6878. ],
  6879. "time": "2019-02-01T05:30:01+00:00"
  6880. },
  6881. {
  6882. "name": "sebastian/object-enumerator",
  6883. "version": "3.0.3",
  6884. "source": {
  6885. "type": "git",
  6886. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  6887. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  6888. },
  6889. "dist": {
  6890. "type": "zip",
  6891. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6892. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  6893. "shasum": ""
  6894. },
  6895. "require": {
  6896. "php": "^7.0",
  6897. "sebastian/object-reflector": "^1.1.1",
  6898. "sebastian/recursion-context": "^3.0"
  6899. },
  6900. "require-dev": {
  6901. "phpunit/phpunit": "^6.0"
  6902. },
  6903. "type": "library",
  6904. "extra": {
  6905. "branch-alias": {
  6906. "dev-master": "3.0.x-dev"
  6907. }
  6908. },
  6909. "autoload": {
  6910. "classmap": [
  6911. "src/"
  6912. ]
  6913. },
  6914. "notification-url": "https://packagist.org/downloads/",
  6915. "license": [
  6916. "BSD-3-Clause"
  6917. ],
  6918. "authors": [
  6919. {
  6920. "name": "Sebastian Bergmann",
  6921. "email": "sebastian@phpunit.de"
  6922. }
  6923. ],
  6924. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6925. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6926. "time": "2017-08-03T12:35:26+00:00"
  6927. },
  6928. {
  6929. "name": "sebastian/object-reflector",
  6930. "version": "1.1.1",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  6934. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  6939. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "php": "^7.0"
  6944. },
  6945. "require-dev": {
  6946. "phpunit/phpunit": "^6.0"
  6947. },
  6948. "type": "library",
  6949. "extra": {
  6950. "branch-alias": {
  6951. "dev-master": "1.1-dev"
  6952. }
  6953. },
  6954. "autoload": {
  6955. "classmap": [
  6956. "src/"
  6957. ]
  6958. },
  6959. "notification-url": "https://packagist.org/downloads/",
  6960. "license": [
  6961. "BSD-3-Clause"
  6962. ],
  6963. "authors": [
  6964. {
  6965. "name": "Sebastian Bergmann",
  6966. "email": "sebastian@phpunit.de"
  6967. }
  6968. ],
  6969. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6970. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6971. "time": "2017-03-29T09:07:27+00:00"
  6972. },
  6973. {
  6974. "name": "sebastian/recursion-context",
  6975. "version": "3.0.0",
  6976. "source": {
  6977. "type": "git",
  6978. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  6979. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  6980. },
  6981. "dist": {
  6982. "type": "zip",
  6983. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6984. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  6985. "shasum": ""
  6986. },
  6987. "require": {
  6988. "php": "^7.0"
  6989. },
  6990. "require-dev": {
  6991. "phpunit/phpunit": "^6.0"
  6992. },
  6993. "type": "library",
  6994. "extra": {
  6995. "branch-alias": {
  6996. "dev-master": "3.0.x-dev"
  6997. }
  6998. },
  6999. "autoload": {
  7000. "classmap": [
  7001. "src/"
  7002. ]
  7003. },
  7004. "notification-url": "https://packagist.org/downloads/",
  7005. "license": [
  7006. "BSD-3-Clause"
  7007. ],
  7008. "authors": [
  7009. {
  7010. "name": "Jeff Welch",
  7011. "email": "whatthejeff@gmail.com"
  7012. },
  7013. {
  7014. "name": "Sebastian Bergmann",
  7015. "email": "sebastian@phpunit.de"
  7016. },
  7017. {
  7018. "name": "Adam Harvey",
  7019. "email": "aharvey@php.net"
  7020. }
  7021. ],
  7022. "description": "Provides functionality to recursively process PHP variables",
  7023. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  7024. "time": "2017-03-03T06:23:57+00:00"
  7025. },
  7026. {
  7027. "name": "sebastian/resource-operations",
  7028. "version": "2.0.1",
  7029. "source": {
  7030. "type": "git",
  7031. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7032. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9"
  7033. },
  7034. "dist": {
  7035. "type": "zip",
  7036. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7037. "reference": "4d7a795d35b889bf80a0cc04e08d77cedfa917a9",
  7038. "shasum": ""
  7039. },
  7040. "require": {
  7041. "php": "^7.1"
  7042. },
  7043. "type": "library",
  7044. "extra": {
  7045. "branch-alias": {
  7046. "dev-master": "2.0-dev"
  7047. }
  7048. },
  7049. "autoload": {
  7050. "classmap": [
  7051. "src/"
  7052. ]
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "BSD-3-Clause"
  7057. ],
  7058. "authors": [
  7059. {
  7060. "name": "Sebastian Bergmann",
  7061. "email": "sebastian@phpunit.de"
  7062. }
  7063. ],
  7064. "description": "Provides a list of PHP built-in functions that operate on resources",
  7065. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7066. "time": "2018-10-04T04:07:39+00:00"
  7067. },
  7068. {
  7069. "name": "sebastian/type",
  7070. "version": "1.1.3",
  7071. "source": {
  7072. "type": "git",
  7073. "url": "https://github.com/sebastianbergmann/type.git",
  7074. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3"
  7075. },
  7076. "dist": {
  7077. "type": "zip",
  7078. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7079. "reference": "3aaaa15fa71d27650d62a948be022fe3b48541a3",
  7080. "shasum": ""
  7081. },
  7082. "require": {
  7083. "php": "^7.2"
  7084. },
  7085. "require-dev": {
  7086. "phpunit/phpunit": "^8.2"
  7087. },
  7088. "type": "library",
  7089. "extra": {
  7090. "branch-alias": {
  7091. "dev-master": "1.1-dev"
  7092. }
  7093. },
  7094. "autoload": {
  7095. "classmap": [
  7096. "src/"
  7097. ]
  7098. },
  7099. "notification-url": "https://packagist.org/downloads/",
  7100. "license": [
  7101. "BSD-3-Clause"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "Sebastian Bergmann",
  7106. "email": "sebastian@phpunit.de",
  7107. "role": "lead"
  7108. }
  7109. ],
  7110. "description": "Collection of value objects that represent the types of the PHP type system",
  7111. "homepage": "https://github.com/sebastianbergmann/type",
  7112. "time": "2019-07-02T08:10:15+00:00"
  7113. },
  7114. {
  7115. "name": "sebastian/version",
  7116. "version": "2.0.1",
  7117. "source": {
  7118. "type": "git",
  7119. "url": "https://github.com/sebastianbergmann/version.git",
  7120. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  7121. },
  7122. "dist": {
  7123. "type": "zip",
  7124. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  7125. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  7126. "shasum": ""
  7127. },
  7128. "require": {
  7129. "php": ">=5.6"
  7130. },
  7131. "type": "library",
  7132. "extra": {
  7133. "branch-alias": {
  7134. "dev-master": "2.0.x-dev"
  7135. }
  7136. },
  7137. "autoload": {
  7138. "classmap": [
  7139. "src/"
  7140. ]
  7141. },
  7142. "notification-url": "https://packagist.org/downloads/",
  7143. "license": [
  7144. "BSD-3-Clause"
  7145. ],
  7146. "authors": [
  7147. {
  7148. "name": "Sebastian Bergmann",
  7149. "email": "sebastian@phpunit.de",
  7150. "role": "lead"
  7151. }
  7152. ],
  7153. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7154. "homepage": "https://github.com/sebastianbergmann/version",
  7155. "time": "2016-10-03T07:35:21+00:00"
  7156. },
  7157. {
  7158. "name": "symfony/browser-kit",
  7159. "version": "v4.2.4",
  7160. "source": {
  7161. "type": "git",
  7162. "url": "https://github.com/symfony/browser-kit.git",
  7163. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0"
  7164. },
  7165. "dist": {
  7166. "type": "zip",
  7167. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/61d85c5af2fc058014c7c89504c3944e73a086f0",
  7168. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0",
  7169. "shasum": ""
  7170. },
  7171. "require": {
  7172. "php": "^7.1.3",
  7173. "symfony/dom-crawler": "~3.4|~4.0"
  7174. },
  7175. "require-dev": {
  7176. "symfony/css-selector": "~3.4|~4.0",
  7177. "symfony/process": "~3.4|~4.0"
  7178. },
  7179. "suggest": {
  7180. "symfony/process": ""
  7181. },
  7182. "type": "library",
  7183. "extra": {
  7184. "branch-alias": {
  7185. "dev-master": "4.2-dev"
  7186. }
  7187. },
  7188. "autoload": {
  7189. "psr-4": {
  7190. "Symfony\\Component\\BrowserKit\\": ""
  7191. },
  7192. "exclude-from-classmap": [
  7193. "/Tests/"
  7194. ]
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Fabien Potencier",
  7203. "email": "fabien@symfony.com"
  7204. },
  7205. {
  7206. "name": "Symfony Community",
  7207. "homepage": "https://symfony.com/contributors"
  7208. }
  7209. ],
  7210. "description": "Symfony BrowserKit Component",
  7211. "homepage": "https://symfony.com",
  7212. "time": "2019-02-23T15:17:42+00:00"
  7213. },
  7214. {
  7215. "name": "symfony/console",
  7216. "version": "v5.4.10",
  7217. "source": {
  7218. "type": "git",
  7219. "url": "https://github.com/symfony/console.git",
  7220. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000"
  7221. },
  7222. "dist": {
  7223. "type": "zip",
  7224. "url": "https://api.github.com/repos/symfony/console/zipball/4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7225. "reference": "4d671ab4ddac94ee439ea73649c69d9d200b5000",
  7226. "shasum": "",
  7227. "mirrors": [
  7228. {
  7229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7230. "preferred": true
  7231. }
  7232. ]
  7233. },
  7234. "require": {
  7235. "php": ">=7.2.5",
  7236. "symfony/deprecation-contracts": "^2.1|^3",
  7237. "symfony/polyfill-mbstring": "~1.0",
  7238. "symfony/polyfill-php73": "^1.9",
  7239. "symfony/polyfill-php80": "^1.16",
  7240. "symfony/service-contracts": "^1.1|^2|^3",
  7241. "symfony/string": "^5.1|^6.0"
  7242. },
  7243. "conflict": {
  7244. "psr/log": ">=3",
  7245. "symfony/dependency-injection": "<4.4",
  7246. "symfony/dotenv": "<5.1",
  7247. "symfony/event-dispatcher": "<4.4",
  7248. "symfony/lock": "<4.4",
  7249. "symfony/process": "<4.4"
  7250. },
  7251. "provide": {
  7252. "psr/log-implementation": "1.0|2.0"
  7253. },
  7254. "require-dev": {
  7255. "psr/log": "^1|^2",
  7256. "symfony/config": "^4.4|^5.0|^6.0",
  7257. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7258. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7259. "symfony/lock": "^4.4|^5.0|^6.0",
  7260. "symfony/process": "^4.4|^5.0|^6.0",
  7261. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7262. },
  7263. "suggest": {
  7264. "psr/log": "For using the console logger",
  7265. "symfony/event-dispatcher": "",
  7266. "symfony/lock": "",
  7267. "symfony/process": ""
  7268. },
  7269. "type": "library",
  7270. "autoload": {
  7271. "psr-4": {
  7272. "Symfony\\Component\\Console\\": ""
  7273. },
  7274. "exclude-from-classmap": [
  7275. "/Tests/"
  7276. ]
  7277. },
  7278. "notification-url": "https://packagist.org/downloads/",
  7279. "license": [
  7280. "MIT"
  7281. ],
  7282. "authors": [
  7283. {
  7284. "name": "Fabien Potencier",
  7285. "email": "fabien@symfony.com"
  7286. },
  7287. {
  7288. "name": "Symfony Community",
  7289. "homepage": "https://symfony.com/contributors"
  7290. }
  7291. ],
  7292. "description": "Eases the creation of beautiful and testable command line interfaces",
  7293. "homepage": "https://symfony.com",
  7294. "keywords": [
  7295. "cli",
  7296. "command line",
  7297. "console",
  7298. "terminal"
  7299. ],
  7300. "support": {
  7301. "source": "https://github.com/symfony/console/tree/v5.4.10"
  7302. },
  7303. "funding": [
  7304. {
  7305. "url": "https://symfony.com/sponsor",
  7306. "type": "custom"
  7307. },
  7308. {
  7309. "url": "https://github.com/fabpot",
  7310. "type": "github"
  7311. },
  7312. {
  7313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7314. "type": "tidelift"
  7315. }
  7316. ],
  7317. "time": "2022-06-26T13:00:04+00:00"
  7318. },
  7319. {
  7320. "name": "symfony/css-selector",
  7321. "version": "v5.0.3",
  7322. "source": {
  7323. "type": "git",
  7324. "url": "https://github.com/symfony/css-selector.git",
  7325. "reference": "ff60c90cb7950b592ebc84ad1289d0345bf24f9f"
  7326. },
  7327. "dist": {
  7328. "type": "zip",
  7329. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ff60c90cb7950b592ebc84ad1289d0345bf24f9f",
  7330. "reference": "ff60c90cb7950b592ebc84ad1289d0345bf24f9f",
  7331. "shasum": ""
  7332. },
  7333. "require": {
  7334. "php": "^7.2.5"
  7335. },
  7336. "type": "library",
  7337. "extra": {
  7338. "branch-alias": {
  7339. "dev-master": "5.0-dev"
  7340. }
  7341. },
  7342. "autoload": {
  7343. "psr-4": {
  7344. "Symfony\\Component\\CssSelector\\": ""
  7345. },
  7346. "exclude-from-classmap": [
  7347. "/Tests/"
  7348. ]
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Fabien Potencier",
  7357. "email": "fabien@symfony.com"
  7358. },
  7359. {
  7360. "name": "Jean-François Simon",
  7361. "email": "jeanfrancois.simon@sensiolabs.com"
  7362. },
  7363. {
  7364. "name": "Symfony Community",
  7365. "homepage": "https://symfony.com/contributors"
  7366. }
  7367. ],
  7368. "description": "Symfony CssSelector Component",
  7369. "homepage": "https://symfony.com",
  7370. "time": "2020-01-04T14:08:26+00:00"
  7371. },
  7372. {
  7373. "name": "symfony/dom-crawler",
  7374. "version": "v4.4.3",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/symfony/dom-crawler.git",
  7378. "reference": "b66fe8ccc850ea11c4cd31677706c1219768bea1"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/b66fe8ccc850ea11c4cd31677706c1219768bea1",
  7383. "reference": "b66fe8ccc850ea11c4cd31677706c1219768bea1",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "php": "^7.1.3",
  7388. "symfony/polyfill-ctype": "~1.8",
  7389. "symfony/polyfill-mbstring": "~1.0"
  7390. },
  7391. "conflict": {
  7392. "masterminds/html5": "<2.6"
  7393. },
  7394. "require-dev": {
  7395. "masterminds/html5": "^2.6",
  7396. "symfony/css-selector": "^3.4|^4.0|^5.0"
  7397. },
  7398. "suggest": {
  7399. "symfony/css-selector": ""
  7400. },
  7401. "type": "library",
  7402. "extra": {
  7403. "branch-alias": {
  7404. "dev-master": "4.4-dev"
  7405. }
  7406. },
  7407. "autoload": {
  7408. "psr-4": {
  7409. "Symfony\\Component\\DomCrawler\\": ""
  7410. },
  7411. "exclude-from-classmap": [
  7412. "/Tests/"
  7413. ]
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "license": [
  7417. "MIT"
  7418. ],
  7419. "authors": [
  7420. {
  7421. "name": "Fabien Potencier",
  7422. "email": "fabien@symfony.com"
  7423. },
  7424. {
  7425. "name": "Symfony Community",
  7426. "homepage": "https://symfony.com/contributors"
  7427. }
  7428. ],
  7429. "description": "Symfony DomCrawler Component",
  7430. "homepage": "https://symfony.com",
  7431. "time": "2020-01-04T13:00:46+00:00"
  7432. },
  7433. {
  7434. "name": "symfony/event-dispatcher",
  7435. "version": "v5.0.3",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/symfony/event-dispatcher.git",
  7439. "reference": "4a7a8cdca1120c091b4797f0e5bba69c1e783224"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4a7a8cdca1120c091b4797f0e5bba69c1e783224",
  7444. "reference": "4a7a8cdca1120c091b4797f0e5bba69c1e783224",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "php": "^7.2.5",
  7449. "symfony/event-dispatcher-contracts": "^2"
  7450. },
  7451. "conflict": {
  7452. "symfony/dependency-injection": "<4.4"
  7453. },
  7454. "provide": {
  7455. "psr/event-dispatcher-implementation": "1.0",
  7456. "symfony/event-dispatcher-implementation": "2.0"
  7457. },
  7458. "require-dev": {
  7459. "psr/log": "~1.0",
  7460. "symfony/config": "^4.4|^5.0",
  7461. "symfony/dependency-injection": "^4.4|^5.0",
  7462. "symfony/expression-language": "^4.4|^5.0",
  7463. "symfony/http-foundation": "^4.4|^5.0",
  7464. "symfony/service-contracts": "^1.1|^2",
  7465. "symfony/stopwatch": "^4.4|^5.0"
  7466. },
  7467. "suggest": {
  7468. "symfony/dependency-injection": "",
  7469. "symfony/http-kernel": ""
  7470. },
  7471. "type": "library",
  7472. "extra": {
  7473. "branch-alias": {
  7474. "dev-master": "5.0-dev"
  7475. }
  7476. },
  7477. "autoload": {
  7478. "psr-4": {
  7479. "Symfony\\Component\\EventDispatcher\\": ""
  7480. },
  7481. "exclude-from-classmap": [
  7482. "/Tests/"
  7483. ]
  7484. },
  7485. "notification-url": "https://packagist.org/downloads/",
  7486. "license": [
  7487. "MIT"
  7488. ],
  7489. "authors": [
  7490. {
  7491. "name": "Fabien Potencier",
  7492. "email": "fabien@symfony.com"
  7493. },
  7494. {
  7495. "name": "Symfony Community",
  7496. "homepage": "https://symfony.com/contributors"
  7497. }
  7498. ],
  7499. "description": "Symfony EventDispatcher Component",
  7500. "homepage": "https://symfony.com",
  7501. "time": "2020-01-10T21:57:37+00:00"
  7502. },
  7503. {
  7504. "name": "symfony/event-dispatcher-contracts",
  7505. "version": "v2.5.2",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7509. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  7514. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  7515. "shasum": "",
  7516. "mirrors": [
  7517. {
  7518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7519. "preferred": true
  7520. }
  7521. ]
  7522. },
  7523. "require": {
  7524. "php": ">=7.2.5",
  7525. "psr/event-dispatcher": "^1"
  7526. },
  7527. "suggest": {
  7528. "symfony/event-dispatcher-implementation": ""
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "branch-alias": {
  7533. "dev-main": "2.5-dev"
  7534. },
  7535. "thanks": {
  7536. "name": "symfony/contracts",
  7537. "url": "https://github.com/symfony/contracts"
  7538. }
  7539. },
  7540. "autoload": {
  7541. "psr-4": {
  7542. "Symfony\\Contracts\\EventDispatcher\\": ""
  7543. }
  7544. },
  7545. "notification-url": "https://packagist.org/downloads/",
  7546. "license": [
  7547. "MIT"
  7548. ],
  7549. "authors": [
  7550. {
  7551. "name": "Nicolas Grekas",
  7552. "email": "p@tchwork.com"
  7553. },
  7554. {
  7555. "name": "Symfony Community",
  7556. "homepage": "https://symfony.com/contributors"
  7557. }
  7558. ],
  7559. "description": "Generic abstractions related to dispatching event",
  7560. "homepage": "https://symfony.com",
  7561. "keywords": [
  7562. "abstractions",
  7563. "contracts",
  7564. "decoupling",
  7565. "interfaces",
  7566. "interoperability",
  7567. "standards"
  7568. ],
  7569. "support": {
  7570. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  7571. },
  7572. "funding": [
  7573. {
  7574. "url": "https://symfony.com/sponsor",
  7575. "type": "custom"
  7576. },
  7577. {
  7578. "url": "https://github.com/fabpot",
  7579. "type": "github"
  7580. },
  7581. {
  7582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7583. "type": "tidelift"
  7584. }
  7585. ],
  7586. "time": "2022-01-02T09:53:40+00:00"
  7587. },
  7588. {
  7589. "name": "symfony/finder",
  7590. "version": "v5.0.3",
  7591. "source": {
  7592. "type": "git",
  7593. "url": "https://github.com/symfony/finder.git",
  7594. "reference": "4176e7cb846fe08f32518b7e0ed8462e2db8d9bb"
  7595. },
  7596. "dist": {
  7597. "type": "zip",
  7598. "url": "https://api.github.com/repos/symfony/finder/zipball/4176e7cb846fe08f32518b7e0ed8462e2db8d9bb",
  7599. "reference": "4176e7cb846fe08f32518b7e0ed8462e2db8d9bb",
  7600. "shasum": ""
  7601. },
  7602. "require": {
  7603. "php": "^7.2.5"
  7604. },
  7605. "type": "library",
  7606. "extra": {
  7607. "branch-alias": {
  7608. "dev-master": "5.0-dev"
  7609. }
  7610. },
  7611. "autoload": {
  7612. "psr-4": {
  7613. "Symfony\\Component\\Finder\\": ""
  7614. },
  7615. "exclude-from-classmap": [
  7616. "/Tests/"
  7617. ]
  7618. },
  7619. "notification-url": "https://packagist.org/downloads/",
  7620. "license": [
  7621. "MIT"
  7622. ],
  7623. "authors": [
  7624. {
  7625. "name": "Fabien Potencier",
  7626. "email": "fabien@symfony.com"
  7627. },
  7628. {
  7629. "name": "Symfony Community",
  7630. "homepage": "https://symfony.com/contributors"
  7631. }
  7632. ],
  7633. "description": "Symfony Finder Component",
  7634. "homepage": "https://symfony.com",
  7635. "time": "2020-01-04T14:08:26+00:00"
  7636. },
  7637. {
  7638. "name": "symfony/polyfill-ctype",
  7639. "version": "v1.26.0",
  7640. "source": {
  7641. "type": "git",
  7642. "url": "https://github.com/symfony/polyfill-ctype.git",
  7643. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  7644. },
  7645. "dist": {
  7646. "type": "zip",
  7647. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  7648. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  7649. "shasum": "",
  7650. "mirrors": [
  7651. {
  7652. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7653. "preferred": true
  7654. }
  7655. ]
  7656. },
  7657. "require": {
  7658. "php": ">=7.1"
  7659. },
  7660. "provide": {
  7661. "ext-ctype": "*"
  7662. },
  7663. "suggest": {
  7664. "ext-ctype": "For best performance"
  7665. },
  7666. "type": "library",
  7667. "extra": {
  7668. "branch-alias": {
  7669. "dev-main": "1.26-dev"
  7670. },
  7671. "thanks": {
  7672. "name": "symfony/polyfill",
  7673. "url": "https://github.com/symfony/polyfill"
  7674. }
  7675. },
  7676. "autoload": {
  7677. "files": [
  7678. "bootstrap.php"
  7679. ],
  7680. "psr-4": {
  7681. "Symfony\\Polyfill\\Ctype\\": ""
  7682. }
  7683. },
  7684. "notification-url": "https://packagist.org/downloads/",
  7685. "license": [
  7686. "MIT"
  7687. ],
  7688. "authors": [
  7689. {
  7690. "name": "Gert de Pagter",
  7691. "email": "BackEndTea@gmail.com"
  7692. },
  7693. {
  7694. "name": "Symfony Community",
  7695. "homepage": "https://symfony.com/contributors"
  7696. }
  7697. ],
  7698. "description": "Symfony polyfill for ctype functions",
  7699. "homepage": "https://symfony.com",
  7700. "keywords": [
  7701. "compatibility",
  7702. "ctype",
  7703. "polyfill",
  7704. "portable"
  7705. ],
  7706. "support": {
  7707. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  7708. },
  7709. "funding": [
  7710. {
  7711. "url": "https://symfony.com/sponsor",
  7712. "type": "custom"
  7713. },
  7714. {
  7715. "url": "https://github.com/fabpot",
  7716. "type": "github"
  7717. },
  7718. {
  7719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7720. "type": "tidelift"
  7721. }
  7722. ],
  7723. "time": "2022-05-24T11:49:31+00:00"
  7724. },
  7725. {
  7726. "name": "symfony/polyfill-intl-grapheme",
  7727. "version": "v1.25.0",
  7728. "source": {
  7729. "type": "git",
  7730. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7731. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
  7732. },
  7733. "dist": {
  7734. "type": "zip",
  7735. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
  7736. "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
  7737. "shasum": "",
  7738. "mirrors": [
  7739. {
  7740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7741. "preferred": true
  7742. }
  7743. ]
  7744. },
  7745. "require": {
  7746. "php": ">=7.1"
  7747. },
  7748. "suggest": {
  7749. "ext-intl": "For best performance"
  7750. },
  7751. "type": "library",
  7752. "extra": {
  7753. "branch-alias": {
  7754. "dev-main": "1.23-dev"
  7755. },
  7756. "thanks": {
  7757. "name": "symfony/polyfill",
  7758. "url": "https://github.com/symfony/polyfill"
  7759. }
  7760. },
  7761. "autoload": {
  7762. "files": [
  7763. "bootstrap.php"
  7764. ],
  7765. "psr-4": {
  7766. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7767. }
  7768. },
  7769. "notification-url": "https://packagist.org/downloads/",
  7770. "license": [
  7771. "MIT"
  7772. ],
  7773. "authors": [
  7774. {
  7775. "name": "Nicolas Grekas",
  7776. "email": "p@tchwork.com"
  7777. },
  7778. {
  7779. "name": "Symfony Community",
  7780. "homepage": "https://symfony.com/contributors"
  7781. }
  7782. ],
  7783. "description": "Symfony polyfill for intl's grapheme_* functions",
  7784. "homepage": "https://symfony.com",
  7785. "keywords": [
  7786. "compatibility",
  7787. "grapheme",
  7788. "intl",
  7789. "polyfill",
  7790. "portable",
  7791. "shim"
  7792. ],
  7793. "support": {
  7794. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.25.0"
  7795. },
  7796. "funding": [
  7797. {
  7798. "url": "https://symfony.com/sponsor",
  7799. "type": "custom"
  7800. },
  7801. {
  7802. "url": "https://github.com/fabpot",
  7803. "type": "github"
  7804. },
  7805. {
  7806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7807. "type": "tidelift"
  7808. }
  7809. ],
  7810. "time": "2021-11-23T21:10:46+00:00"
  7811. },
  7812. {
  7813. "name": "symfony/polyfill-php73",
  7814. "version": "v1.26.0",
  7815. "source": {
  7816. "type": "git",
  7817. "url": "https://github.com/symfony/polyfill-php73.git",
  7818. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  7819. },
  7820. "dist": {
  7821. "type": "zip",
  7822. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  7823. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  7824. "shasum": "",
  7825. "mirrors": [
  7826. {
  7827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7828. "preferred": true
  7829. }
  7830. ]
  7831. },
  7832. "require": {
  7833. "php": ">=7.1"
  7834. },
  7835. "type": "library",
  7836. "extra": {
  7837. "branch-alias": {
  7838. "dev-main": "1.26-dev"
  7839. },
  7840. "thanks": {
  7841. "name": "symfony/polyfill",
  7842. "url": "https://github.com/symfony/polyfill"
  7843. }
  7844. },
  7845. "autoload": {
  7846. "files": [
  7847. "bootstrap.php"
  7848. ],
  7849. "psr-4": {
  7850. "Symfony\\Polyfill\\Php73\\": ""
  7851. },
  7852. "classmap": [
  7853. "Resources/stubs"
  7854. ]
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Nicolas Grekas",
  7863. "email": "p@tchwork.com"
  7864. },
  7865. {
  7866. "name": "Symfony Community",
  7867. "homepage": "https://symfony.com/contributors"
  7868. }
  7869. ],
  7870. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7871. "homepage": "https://symfony.com",
  7872. "keywords": [
  7873. "compatibility",
  7874. "polyfill",
  7875. "portable",
  7876. "shim"
  7877. ],
  7878. "support": {
  7879. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  7880. },
  7881. "funding": [
  7882. {
  7883. "url": "https://symfony.com/sponsor",
  7884. "type": "custom"
  7885. },
  7886. {
  7887. "url": "https://github.com/fabpot",
  7888. "type": "github"
  7889. },
  7890. {
  7891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7892. "type": "tidelift"
  7893. }
  7894. ],
  7895. "time": "2022-05-24T11:49:31+00:00"
  7896. },
  7897. {
  7898. "name": "symfony/service-contracts",
  7899. "version": "v2.5.2",
  7900. "source": {
  7901. "type": "git",
  7902. "url": "https://github.com/symfony/service-contracts.git",
  7903. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7904. },
  7905. "dist": {
  7906. "type": "zip",
  7907. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7908. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7909. "shasum": "",
  7910. "mirrors": [
  7911. {
  7912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7913. "preferred": true
  7914. }
  7915. ]
  7916. },
  7917. "require": {
  7918. "php": ">=7.2.5",
  7919. "psr/container": "^1.1",
  7920. "symfony/deprecation-contracts": "^2.1|^3"
  7921. },
  7922. "conflict": {
  7923. "ext-psr": "<1.1|>=2"
  7924. },
  7925. "suggest": {
  7926. "symfony/service-implementation": ""
  7927. },
  7928. "type": "library",
  7929. "extra": {
  7930. "branch-alias": {
  7931. "dev-main": "2.5-dev"
  7932. },
  7933. "thanks": {
  7934. "name": "symfony/contracts",
  7935. "url": "https://github.com/symfony/contracts"
  7936. }
  7937. },
  7938. "autoload": {
  7939. "psr-4": {
  7940. "Symfony\\Contracts\\Service\\": ""
  7941. }
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "MIT"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Nicolas Grekas",
  7950. "email": "p@tchwork.com"
  7951. },
  7952. {
  7953. "name": "Symfony Community",
  7954. "homepage": "https://symfony.com/contributors"
  7955. }
  7956. ],
  7957. "description": "Generic abstractions related to writing services",
  7958. "homepage": "https://symfony.com",
  7959. "keywords": [
  7960. "abstractions",
  7961. "contracts",
  7962. "decoupling",
  7963. "interfaces",
  7964. "interoperability",
  7965. "standards"
  7966. ],
  7967. "support": {
  7968. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7969. },
  7970. "funding": [
  7971. {
  7972. "url": "https://symfony.com/sponsor",
  7973. "type": "custom"
  7974. },
  7975. {
  7976. "url": "https://github.com/fabpot",
  7977. "type": "github"
  7978. },
  7979. {
  7980. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7981. "type": "tidelift"
  7982. }
  7983. ],
  7984. "time": "2022-05-30T19:17:29+00:00"
  7985. },
  7986. {
  7987. "name": "symfony/string",
  7988. "version": "v5.4.10",
  7989. "source": {
  7990. "type": "git",
  7991. "url": "https://github.com/symfony/string.git",
  7992. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097"
  7993. },
  7994. "dist": {
  7995. "type": "zip",
  7996. "url": "https://api.github.com/repos/symfony/string/zipball/4432bc7df82a554b3e413a8570ce2fea90e94097",
  7997. "reference": "4432bc7df82a554b3e413a8570ce2fea90e94097",
  7998. "shasum": "",
  7999. "mirrors": [
  8000. {
  8001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8002. "preferred": true
  8003. }
  8004. ]
  8005. },
  8006. "require": {
  8007. "php": ">=7.2.5",
  8008. "symfony/polyfill-ctype": "~1.8",
  8009. "symfony/polyfill-intl-grapheme": "~1.0",
  8010. "symfony/polyfill-intl-normalizer": "~1.0",
  8011. "symfony/polyfill-mbstring": "~1.0",
  8012. "symfony/polyfill-php80": "~1.15"
  8013. },
  8014. "conflict": {
  8015. "symfony/translation-contracts": ">=3.0"
  8016. },
  8017. "require-dev": {
  8018. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8019. "symfony/http-client": "^4.4|^5.0|^6.0",
  8020. "symfony/translation-contracts": "^1.1|^2",
  8021. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  8022. },
  8023. "type": "library",
  8024. "autoload": {
  8025. "files": [
  8026. "Resources/functions.php"
  8027. ],
  8028. "psr-4": {
  8029. "Symfony\\Component\\String\\": ""
  8030. },
  8031. "exclude-from-classmap": [
  8032. "/Tests/"
  8033. ]
  8034. },
  8035. "notification-url": "https://packagist.org/downloads/",
  8036. "license": [
  8037. "MIT"
  8038. ],
  8039. "authors": [
  8040. {
  8041. "name": "Nicolas Grekas",
  8042. "email": "p@tchwork.com"
  8043. },
  8044. {
  8045. "name": "Symfony Community",
  8046. "homepage": "https://symfony.com/contributors"
  8047. }
  8048. ],
  8049. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8050. "homepage": "https://symfony.com",
  8051. "keywords": [
  8052. "grapheme",
  8053. "i18n",
  8054. "string",
  8055. "unicode",
  8056. "utf-8",
  8057. "utf8"
  8058. ],
  8059. "support": {
  8060. "source": "https://github.com/symfony/string/tree/v5.4.10"
  8061. },
  8062. "funding": [
  8063. {
  8064. "url": "https://symfony.com/sponsor",
  8065. "type": "custom"
  8066. },
  8067. {
  8068. "url": "https://github.com/fabpot",
  8069. "type": "github"
  8070. },
  8071. {
  8072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8073. "type": "tidelift"
  8074. }
  8075. ],
  8076. "time": "2022-06-26T15:57:47+00:00"
  8077. },
  8078. {
  8079. "name": "symfony/yaml",
  8080. "version": "v5.0.3",
  8081. "source": {
  8082. "type": "git",
  8083. "url": "https://github.com/symfony/yaml.git",
  8084. "reference": "69b44e3b8f90949aee2eb3aa9b86ceeb01cbf62a"
  8085. },
  8086. "dist": {
  8087. "type": "zip",
  8088. "url": "https://api.github.com/repos/symfony/yaml/zipball/69b44e3b8f90949aee2eb3aa9b86ceeb01cbf62a",
  8089. "reference": "69b44e3b8f90949aee2eb3aa9b86ceeb01cbf62a",
  8090. "shasum": ""
  8091. },
  8092. "require": {
  8093. "php": "^7.2.5",
  8094. "symfony/polyfill-ctype": "~1.8"
  8095. },
  8096. "conflict": {
  8097. "symfony/console": "<4.4"
  8098. },
  8099. "require-dev": {
  8100. "symfony/console": "^4.4|^5.0"
  8101. },
  8102. "suggest": {
  8103. "symfony/console": "For validating YAML files using the lint command"
  8104. },
  8105. "type": "library",
  8106. "extra": {
  8107. "branch-alias": {
  8108. "dev-master": "5.0-dev"
  8109. }
  8110. },
  8111. "autoload": {
  8112. "psr-4": {
  8113. "Symfony\\Component\\Yaml\\": ""
  8114. },
  8115. "exclude-from-classmap": [
  8116. "/Tests/"
  8117. ]
  8118. },
  8119. "notification-url": "https://packagist.org/downloads/",
  8120. "license": [
  8121. "MIT"
  8122. ],
  8123. "authors": [
  8124. {
  8125. "name": "Fabien Potencier",
  8126. "email": "fabien@symfony.com"
  8127. },
  8128. {
  8129. "name": "Symfony Community",
  8130. "homepage": "https://symfony.com/contributors"
  8131. }
  8132. ],
  8133. "description": "Symfony Yaml Component",
  8134. "homepage": "https://symfony.com",
  8135. "time": "2020-01-21T11:12:28+00:00"
  8136. },
  8137. {
  8138. "name": "theseer/tokenizer",
  8139. "version": "1.1.3",
  8140. "source": {
  8141. "type": "git",
  8142. "url": "https://github.com/theseer/tokenizer.git",
  8143. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  8144. },
  8145. "dist": {
  8146. "type": "zip",
  8147. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8148. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  8149. "shasum": ""
  8150. },
  8151. "require": {
  8152. "ext-dom": "*",
  8153. "ext-tokenizer": "*",
  8154. "ext-xmlwriter": "*",
  8155. "php": "^7.0"
  8156. },
  8157. "type": "library",
  8158. "autoload": {
  8159. "classmap": [
  8160. "src/"
  8161. ]
  8162. },
  8163. "notification-url": "https://packagist.org/downloads/",
  8164. "license": [
  8165. "BSD-3-Clause"
  8166. ],
  8167. "authors": [
  8168. {
  8169. "name": "Arne Blankerts",
  8170. "email": "arne@blankerts.de",
  8171. "role": "Developer"
  8172. }
  8173. ],
  8174. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  8175. "time": "2019-06-13T22:48:21+00:00"
  8176. },
  8177. {
  8178. "name": "webmozart/assert",
  8179. "version": "1.10.0",
  8180. "source": {
  8181. "type": "git",
  8182. "url": "https://github.com/webmozarts/assert.git",
  8183. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  8184. },
  8185. "dist": {
  8186. "type": "zip",
  8187. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  8188. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  8189. "shasum": "",
  8190. "mirrors": [
  8191. {
  8192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8193. "preferred": true
  8194. }
  8195. ]
  8196. },
  8197. "require": {
  8198. "php": "^7.2 || ^8.0",
  8199. "symfony/polyfill-ctype": "^1.8"
  8200. },
  8201. "conflict": {
  8202. "phpstan/phpstan": "<0.12.20",
  8203. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8204. },
  8205. "require-dev": {
  8206. "phpunit/phpunit": "^8.5.13"
  8207. },
  8208. "type": "library",
  8209. "extra": {
  8210. "branch-alias": {
  8211. "dev-master": "1.10-dev"
  8212. }
  8213. },
  8214. "autoload": {
  8215. "psr-4": {
  8216. "Webmozart\\Assert\\": "src/"
  8217. }
  8218. },
  8219. "notification-url": "https://packagist.org/downloads/",
  8220. "license": [
  8221. "MIT"
  8222. ],
  8223. "authors": [
  8224. {
  8225. "name": "Bernhard Schussek",
  8226. "email": "bschussek@gmail.com"
  8227. }
  8228. ],
  8229. "description": "Assertions to validate method input/output with nice error messages.",
  8230. "keywords": [
  8231. "assert",
  8232. "check",
  8233. "validate"
  8234. ],
  8235. "support": {
  8236. "issues": "https://github.com/webmozarts/assert/issues",
  8237. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  8238. },
  8239. "time": "2021-03-09T10:59:23+00:00"
  8240. },
  8241. {
  8242. "name": "yiisoft/yii2-debug",
  8243. "version": "2.1.13",
  8244. "source": {
  8245. "type": "git",
  8246. "url": "https://github.com/yiisoft/yii2-debug.git",
  8247. "reference": "696712a2a3565b1a072ad3c9d298e262967e8282"
  8248. },
  8249. "dist": {
  8250. "type": "zip",
  8251. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/696712a2a3565b1a072ad3c9d298e262967e8282",
  8252. "reference": "696712a2a3565b1a072ad3c9d298e262967e8282",
  8253. "shasum": ""
  8254. },
  8255. "require": {
  8256. "ext-mbstring": "*",
  8257. "opis/closure": "^3.3",
  8258. "php": ">=5.4",
  8259. "yiisoft/yii2": "~2.0.13"
  8260. },
  8261. "require-dev": {
  8262. "phpunit/phpunit": "<7",
  8263. "yiisoft/yii2-coding-standards": "~2.0",
  8264. "yiisoft/yii2-swiftmailer": "*"
  8265. },
  8266. "type": "yii2-extension",
  8267. "extra": {
  8268. "branch-alias": {
  8269. "dev-master": "2.0.x-dev"
  8270. }
  8271. },
  8272. "autoload": {
  8273. "psr-4": {
  8274. "yii\\debug\\": "src"
  8275. }
  8276. },
  8277. "notification-url": "https://packagist.org/downloads/",
  8278. "license": [
  8279. "BSD-3-Clause"
  8280. ],
  8281. "authors": [
  8282. {
  8283. "name": "Qiang Xue",
  8284. "email": "qiang.xue@gmail.com"
  8285. },
  8286. {
  8287. "name": "Simon Karlen",
  8288. "email": "simi.albi@outlook.com"
  8289. }
  8290. ],
  8291. "description": "The debugger extension for the Yii framework",
  8292. "keywords": [
  8293. "debug",
  8294. "debugger",
  8295. "yii2"
  8296. ],
  8297. "time": "2020-01-17T13:40:32+00:00"
  8298. },
  8299. {
  8300. "name": "yiisoft/yii2-faker",
  8301. "version": "2.0.4",
  8302. "source": {
  8303. "type": "git",
  8304. "url": "https://github.com/yiisoft/yii2-faker.git",
  8305. "reference": "3df62b1dcb272a8413f9c6e532c9d73f325ccde1"
  8306. },
  8307. "dist": {
  8308. "type": "zip",
  8309. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/3df62b1dcb272a8413f9c6e532c9d73f325ccde1",
  8310. "reference": "3df62b1dcb272a8413f9c6e532c9d73f325ccde1",
  8311. "shasum": ""
  8312. },
  8313. "require": {
  8314. "fzaninotto/faker": "~1.4",
  8315. "yiisoft/yii2": "~2.0.0"
  8316. },
  8317. "type": "yii2-extension",
  8318. "extra": {
  8319. "branch-alias": {
  8320. "dev-master": "2.0.x-dev"
  8321. }
  8322. },
  8323. "autoload": {
  8324. "psr-4": {
  8325. "yii\\faker\\": ""
  8326. }
  8327. },
  8328. "notification-url": "https://packagist.org/downloads/",
  8329. "license": [
  8330. "BSD-3-Clause"
  8331. ],
  8332. "authors": [
  8333. {
  8334. "name": "Mark Jebri",
  8335. "email": "mark.github@yandex.ru"
  8336. }
  8337. ],
  8338. "description": "Fixture generator. The Faker integration for the Yii framework.",
  8339. "keywords": [
  8340. "Fixture",
  8341. "faker",
  8342. "yii2"
  8343. ],
  8344. "time": "2018-02-19T20:27:10+00:00"
  8345. },
  8346. {
  8347. "name": "yiisoft/yii2-gii",
  8348. "version": "2.1.4",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/yiisoft/yii2-gii.git",
  8352. "reference": "d879cb186361fbc6f71a2d994d580b5a071a5642"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/d879cb186361fbc6f71a2d994d580b5a071a5642",
  8357. "reference": "d879cb186361fbc6f71a2d994d580b5a071a5642",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "phpspec/php-diff": "^1.1.0",
  8362. "yiisoft/yii2": "~2.0.14"
  8363. },
  8364. "require-dev": {
  8365. "phpunit/phpunit": "<7",
  8366. "yiisoft/yii2-coding-standards": "~2.0"
  8367. },
  8368. "type": "yii2-extension",
  8369. "extra": {
  8370. "branch-alias": {
  8371. "dev-master": "2.0.x-dev"
  8372. }
  8373. },
  8374. "autoload": {
  8375. "psr-4": {
  8376. "yii\\gii\\": "src"
  8377. }
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "BSD-3-Clause"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Qiang Xue",
  8386. "email": "qiang.xue@gmail.com"
  8387. }
  8388. ],
  8389. "description": "The Gii extension for the Yii framework",
  8390. "keywords": [
  8391. "code generator",
  8392. "gii",
  8393. "yii2"
  8394. ],
  8395. "time": "2020-01-17T13:33:30+00:00"
  8396. }
  8397. ],
  8398. "aliases": [],
  8399. "minimum-stability": "stable",
  8400. "stability-flags": [],
  8401. "prefer-stable": false,
  8402. "prefer-lowest": false,
  8403. "platform": {
  8404. "php": ">=5.6.0"
  8405. },
  8406. "platform-dev": [],
  8407. "plugin-api-version": "2.3.0"
  8408. }