composer.lock 223 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392
  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": "c1c95258f44e0be5aad345c483d66252",
  8. "packages": [
  9. {
  10. "name": "anlity/yii2-swoole-async-timer",
  11. "version": "0.9.2",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://api.github.com/repos/anlityli/yii2-swoole-async-timer/zipball/60bb70e0e34951d5aa46b89fa224f471f68e666d",
  15. "reference": "60bb70e0e34951d5aa46b89fa224f471f68e666d",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "yiisoft/yii2": "~2.0.0"
  20. },
  21. "type": "yii2-extension",
  22. "autoload": {
  23. "psr-4": {
  24. "anlity\\swooleAsyncTimer\\": ""
  25. }
  26. },
  27. "notification-url": "https://packagist.org/downloads/",
  28. "license": [
  29. "BSD-4-Clause"
  30. ],
  31. "authors": [
  32. {
  33. "name": "anlity",
  34. "email": "leo@leocode.net"
  35. }
  36. ],
  37. "description": "用于异步处理任务和需要定时器完成的任务",
  38. "homepage": "https://github.com/anlityli/yii2-swoole-async-timer",
  39. "keywords": [
  40. "extension",
  41. "swoole",
  42. "yii2"
  43. ],
  44. "time": "2019-11-22T03:10:24+00:00"
  45. },
  46. {
  47. "name": "bower-asset/bootstrap",
  48. "version": "v3.3.7",
  49. "source": {
  50. "type": "git",
  51. "url": "https://github.com/twbs/bootstrap.git",
  52. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
  53. },
  54. "dist": {
  55. "type": "zip",
  56. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/0b9c4a4007c44201dce9a6cc1a38407005c26c86",
  57. "reference": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
  58. },
  59. "require": {
  60. "bower-asset/jquery": ">=1.9.1,<4.0"
  61. },
  62. "type": "bower-asset",
  63. "license": [
  64. "MIT"
  65. ]
  66. },
  67. {
  68. "name": "bower-asset/inputmask",
  69. "version": "3.3.11",
  70. "source": {
  71. "type": "git",
  72. "url": "https://github.com/RobinHerbots/Inputmask.git",
  73. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  74. },
  75. "dist": {
  76. "type": "zip",
  77. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/5e670ad62f50c738388d4dcec78d2888505ad77b",
  78. "reference": "5e670ad62f50c738388d4dcec78d2888505ad77b"
  79. },
  80. "require": {
  81. "bower-asset/jquery": ">=1.7"
  82. },
  83. "type": "bower-asset",
  84. "license": [
  85. "http://opensource.org/licenses/mit-license.php"
  86. ]
  87. },
  88. {
  89. "name": "bower-asset/jquery",
  90. "version": "3.2.1",
  91. "source": {
  92. "type": "git",
  93. "url": "https://github.com/jquery/jquery-dist.git",
  94. "reference": "77d2a51d0520d2ee44173afdf4e40a9201f5964e"
  95. },
  96. "dist": {
  97. "type": "zip",
  98. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/77d2a51d0520d2ee44173afdf4e40a9201f5964e",
  99. "reference": "77d2a51d0520d2ee44173afdf4e40a9201f5964e"
  100. },
  101. "type": "bower-asset",
  102. "license": [
  103. "MIT"
  104. ]
  105. },
  106. {
  107. "name": "bower-asset/punycode",
  108. "version": "v1.3.2",
  109. "source": {
  110. "type": "git",
  111. "url": "https://github.com/bestiejs/punycode.js.git",
  112. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  113. },
  114. "dist": {
  115. "type": "zip",
  116. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/38c8d3131a82567bfef18da09f7f4db68c84f8a3",
  117. "reference": "38c8d3131a82567bfef18da09f7f4db68c84f8a3"
  118. },
  119. "type": "bower-asset"
  120. },
  121. {
  122. "name": "bower-asset/yii2-pjax",
  123. "version": "2.0.7.1",
  124. "source": {
  125. "type": "git",
  126. "url": "git@github.com:yiisoft/jquery-pjax.git",
  127. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  128. },
  129. "dist": {
  130. "type": "zip",
  131. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/aef7b953107264f00234902a3880eb50dafc48be",
  132. "reference": "aef7b953107264f00234902a3880eb50dafc48be"
  133. },
  134. "require": {
  135. "bower-asset/jquery": ">=1.8"
  136. },
  137. "type": "bower-asset",
  138. "license": [
  139. "MIT"
  140. ]
  141. },
  142. {
  143. "name": "cebe/markdown",
  144. "version": "1.2.1",
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  148. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "lib-pcre": "*",
  153. "php": ">=5.4.0"
  154. },
  155. "require-dev": {
  156. "cebe/indent": "*",
  157. "facebook/xhprof": "*@dev",
  158. "phpunit/phpunit": "4.1.*"
  159. },
  160. "bin": [
  161. "bin/markdown"
  162. ],
  163. "type": "library",
  164. "extra": {
  165. "branch-alias": {
  166. "dev-master": "1.2.x-dev"
  167. }
  168. },
  169. "autoload": {
  170. "psr-4": {
  171. "cebe\\markdown\\": ""
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Carsten Brandt",
  181. "email": "mail@cebe.cc",
  182. "homepage": "http://cebe.cc/",
  183. "role": "Creator"
  184. }
  185. ],
  186. "description": "A super fast, highly extensible markdown parser for PHP",
  187. "homepage": "https://github.com/cebe/markdown#readme",
  188. "keywords": [
  189. "extensible",
  190. "fast",
  191. "gfm",
  192. "markdown",
  193. "markdown-extra"
  194. ],
  195. "time": "2018-03-26T11:24:36+00:00"
  196. },
  197. {
  198. "name": "clue/stream-filter",
  199. "version": "v1.7.0",
  200. "dist": {
  201. "type": "zip",
  202. "url": "https://mirrors.cloud.tencent.com/repository/composer/clue/stream-filter/v1.7.0/clue-stream-filter-v1.7.0.zip",
  203. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  204. "shasum": ""
  205. },
  206. "require": {
  207. "php": ">=5.3"
  208. },
  209. "require-dev": {
  210. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  211. },
  212. "type": "library",
  213. "autoload": {
  214. "files": [
  215. "src/functions_include.php"
  216. ],
  217. "psr-4": {
  218. "Clue\\StreamFilter\\": "src/"
  219. }
  220. },
  221. "license": [
  222. "MIT"
  223. ],
  224. "authors": [
  225. {
  226. "name": "Christian Lück",
  227. "email": "christian@clue.engineering"
  228. }
  229. ],
  230. "description": "A simple and modern approach to stream filtering in PHP",
  231. "homepage": "https://github.com/clue/stream-filter",
  232. "keywords": [
  233. "bucket brigade",
  234. "callback",
  235. "filter",
  236. "php_user_filter",
  237. "stream",
  238. "stream_filter_append",
  239. "stream_filter_register"
  240. ],
  241. "support": {
  242. "issues": "https://github.com/clue/stream-filter/issues",
  243. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  244. },
  245. "time": "2023-12-20T15:40:13+00:00"
  246. },
  247. {
  248. "name": "doctrine/lexer",
  249. "version": "1.2.1",
  250. "dist": {
  251. "type": "zip",
  252. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  253. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  254. "shasum": ""
  255. },
  256. "require": {
  257. "php": "^7.2 || ^8.0"
  258. },
  259. "require-dev": {
  260. "doctrine/coding-standard": "^6.0",
  261. "phpstan/phpstan": "^0.11.8",
  262. "phpunit/phpunit": "^8.2"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "1.2.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Guilherme Blanco",
  282. "email": "guilhermeblanco@gmail.com"
  283. },
  284. {
  285. "name": "Roman Borschel",
  286. "email": "roman@code-factory.org"
  287. },
  288. {
  289. "name": "Johannes Schmitt",
  290. "email": "schmittjoh@gmail.com"
  291. }
  292. ],
  293. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  294. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  295. "keywords": [
  296. "annotations",
  297. "docblock",
  298. "lexer",
  299. "parser",
  300. "php"
  301. ],
  302. "funding": [
  303. {
  304. "url": "https://www.doctrine-project.org/sponsorship.html",
  305. "type": "custom"
  306. },
  307. {
  308. "url": "https://www.patreon.com/phpdoctrine",
  309. "type": "patreon"
  310. },
  311. {
  312. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  313. "type": "tidelift"
  314. }
  315. ],
  316. "time": "2020-05-25T17:44:05+00:00"
  317. },
  318. {
  319. "name": "egulias/email-validator",
  320. "version": "3.1.2",
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ee0db30118f661fb166bcffbf5d82032df484697",
  324. "reference": "ee0db30118f661fb166bcffbf5d82032df484697",
  325. "shasum": ""
  326. },
  327. "require": {
  328. "doctrine/lexer": "^1.2",
  329. "php": ">=7.2",
  330. "symfony/polyfill-intl-idn": "^1.15"
  331. },
  332. "require-dev": {
  333. "php-coveralls/php-coveralls": "^2.2",
  334. "phpunit/phpunit": "^8.5.8|^9.3.3",
  335. "vimeo/psalm": "^4"
  336. },
  337. "suggest": {
  338. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  339. },
  340. "type": "library",
  341. "extra": {
  342. "branch-alias": {
  343. "dev-master": "3.0.x-dev"
  344. }
  345. },
  346. "autoload": {
  347. "psr-4": {
  348. "Egulias\\EmailValidator\\": "src"
  349. }
  350. },
  351. "notification-url": "https://packagist.org/downloads/",
  352. "license": [
  353. "MIT"
  354. ],
  355. "authors": [
  356. {
  357. "name": "Eduardo Gulias Davis"
  358. }
  359. ],
  360. "description": "A library for validating emails against several RFCs",
  361. "homepage": "https://github.com/egulias/EmailValidator",
  362. "keywords": [
  363. "email",
  364. "emailvalidation",
  365. "emailvalidator",
  366. "validation",
  367. "validator"
  368. ],
  369. "funding": [
  370. {
  371. "url": "https://github.com/egulias",
  372. "type": "github"
  373. }
  374. ],
  375. "time": "2021-10-11T09:18:27+00:00"
  376. },
  377. {
  378. "name": "ezyang/htmlpurifier",
  379. "version": "v4.13.0",
  380. "dist": {
  381. "type": "zip",
  382. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  383. "reference": "08e27c97e4c6ed02f37c5b2b20488046c8d90d75",
  384. "shasum": ""
  385. },
  386. "require": {
  387. "php": ">=5.2"
  388. },
  389. "require-dev": {
  390. "simpletest/simpletest": "dev-master#72de02a7b80c6bb8864ef9bf66d41d2f58f826bd"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-0": {
  395. "HTMLPurifier": "library/"
  396. },
  397. "files": [
  398. "library/HTMLPurifier.composer.php"
  399. ],
  400. "exclude-from-classmap": [
  401. "/library/HTMLPurifier/Language/"
  402. ]
  403. },
  404. "notification-url": "https://packagist.org/downloads/",
  405. "license": [
  406. "LGPL-2.1-or-later"
  407. ],
  408. "authors": [
  409. {
  410. "name": "Edward Z. Yang",
  411. "email": "admin@htmlpurifier.org",
  412. "homepage": "http://ezyang.com"
  413. }
  414. ],
  415. "description": "Standards compliant HTML filter written in PHP",
  416. "homepage": "http://htmlpurifier.org/",
  417. "keywords": [
  418. "html"
  419. ],
  420. "time": "2020-06-29T00:56:53+00:00"
  421. },
  422. {
  423. "name": "godruoyi/php-snowflake",
  424. "version": "1.1.1",
  425. "dist": {
  426. "type": "zip",
  427. "url": "https://api.github.com/repos/godruoyi/php-snowflake/zipball/d8cbe72ed375b45033b7042e3d03340ce4fa479f",
  428. "reference": "d8cbe72ed375b45033b7042e3d03340ce4fa479f",
  429. "shasum": ""
  430. },
  431. "require-dev": {
  432. "phpunit/phpunit": "~7"
  433. },
  434. "type": "library",
  435. "autoload": {
  436. "psr-4": {
  437. "Godruoyi\\Snowflake\\": "src"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "MIT"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Godruoyi",
  447. "email": "g@godruoyi.com"
  448. }
  449. ],
  450. "description": "An ID Generator for PHP based on Snowflake Algorithm (Twitter announced).",
  451. "homepage": "https://github.com/godruoyi/php-snowflake",
  452. "keywords": [
  453. "Unique ID",
  454. "laravel snowflake",
  455. "order id",
  456. "php snowflake",
  457. "php unique id",
  458. "snowflake algorithm",
  459. "unique order id"
  460. ],
  461. "funding": [
  462. {
  463. "url": "https://images.godruoyi.com/wechat.png",
  464. "type": "custom"
  465. },
  466. {
  467. "url": "https://github.com/godruoyi",
  468. "type": "github"
  469. }
  470. ],
  471. "time": "2021-05-25T05:56:30+00:00"
  472. },
  473. {
  474. "name": "maennchen/zipstream-php",
  475. "version": "2.1.0",
  476. "dist": {
  477. "type": "zip",
  478. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/c4c5803cc1f93df3d2448478ef79394a5981cc58",
  479. "reference": "c4c5803cc1f93df3d2448478ef79394a5981cc58",
  480. "shasum": ""
  481. },
  482. "require": {
  483. "myclabs/php-enum": "^1.5",
  484. "php": ">= 7.1",
  485. "psr/http-message": "^1.0",
  486. "symfony/polyfill-mbstring": "^1.0"
  487. },
  488. "require-dev": {
  489. "ext-zip": "*",
  490. "guzzlehttp/guzzle": ">= 6.3",
  491. "mikey179/vfsstream": "^1.6",
  492. "phpunit/phpunit": ">= 7.5"
  493. },
  494. "type": "library",
  495. "autoload": {
  496. "psr-4": {
  497. "ZipStream\\": "src/"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Paul Duncan",
  507. "email": "pabs@pablotron.org"
  508. },
  509. {
  510. "name": "Jonatan Männchen",
  511. "email": "jonatan@maennchen.ch"
  512. },
  513. {
  514. "name": "Jesse Donat",
  515. "email": "donatj@gmail.com"
  516. },
  517. {
  518. "name": "András Kolesár",
  519. "email": "kolesar@kolesar.hu"
  520. }
  521. ],
  522. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  523. "keywords": [
  524. "stream",
  525. "zip"
  526. ],
  527. "funding": [
  528. {
  529. "url": "https://opencollective.com/zipstream",
  530. "type": "open_collective"
  531. }
  532. ],
  533. "time": "2020-05-30T13:11:16+00:00"
  534. },
  535. {
  536. "name": "mailgun/mailgun-php",
  537. "version": "v4.3.5",
  538. "dist": {
  539. "type": "zip",
  540. "url": "https://mirrors.cloud.tencent.com/repository/composer/mailgun/mailgun-php/v4.3.5/mailgun-mailgun-php-v4.3.5.zip",
  541. "reference": "3b1e971a572e55efa3d97b6a3f48c9e3683dcae6",
  542. "shasum": ""
  543. },
  544. "require": {
  545. "php": "^7.4 || ^8.0",
  546. "php-http/client-common": "^2.2.1",
  547. "php-http/discovery": "^1.19",
  548. "php-http/multipart-stream-builder": "^1.1.2",
  549. "psr/http-client": "^1.0",
  550. "webmozart/assert": "^1.9.1"
  551. },
  552. "require-dev": {
  553. "ergebnis/composer-normalize": "^2.43",
  554. "nyholm/nsa": "^1.2.1",
  555. "nyholm/psr7": "^1.3.1",
  556. "phpcompatibility/php-compatibility": "^9.3",
  557. "phpunit/phpunit": "^9.3",
  558. "squizlabs/php_codesniffer": "^3.7",
  559. "symfony/http-client": "^5.4 || ^6.3",
  560. "vimeo/psalm": "^4.0 || ^5.25"
  561. },
  562. "suggest": {
  563. "nyholm/psr7": "PSR-7 message implementation",
  564. "symfony/http-client": "HTTP client"
  565. },
  566. "type": "library",
  567. "extra": {
  568. "branch-alias": {
  569. "dev-master": "3.0-dev"
  570. }
  571. },
  572. "autoload": {
  573. "psr-4": {
  574. "Mailgun\\": "src/"
  575. }
  576. },
  577. "license": [
  578. "MIT"
  579. ],
  580. "authors": [
  581. {
  582. "name": "Travis Swientek",
  583. "email": "travis@mailgunhq.com"
  584. }
  585. ],
  586. "description": "The Mailgun SDK provides methods for all API functions.",
  587. "support": {
  588. "issues": "https://github.com/mailgun/mailgun-php/issues",
  589. "source": "https://github.com/mailgun/mailgun-php/tree/v4.3.5"
  590. },
  591. "time": "2025-04-06T12:36:45+00:00"
  592. },
  593. {
  594. "name": "markbaker/complex",
  595. "version": "3.0.1",
  596. "dist": {
  597. "type": "zip",
  598. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  599. "reference": "ab8bc271e404909db09ff2d5ffa1e538085c0f22",
  600. "shasum": ""
  601. },
  602. "require": {
  603. "php": "^7.2 || ^8.0"
  604. },
  605. "require-dev": {
  606. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  607. "phpcompatibility/php-compatibility": "^9.0",
  608. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  609. "squizlabs/php_codesniffer": "^3.4"
  610. },
  611. "type": "library",
  612. "autoload": {
  613. "psr-4": {
  614. "Complex\\": "classes/src/"
  615. }
  616. },
  617. "notification-url": "https://packagist.org/downloads/",
  618. "license": [
  619. "MIT"
  620. ],
  621. "authors": [
  622. {
  623. "name": "Mark Baker",
  624. "email": "mark@lange.demon.co.uk"
  625. }
  626. ],
  627. "description": "PHP Class for working with complex numbers",
  628. "homepage": "https://github.com/MarkBaker/PHPComplex",
  629. "keywords": [
  630. "complex",
  631. "mathematics"
  632. ],
  633. "time": "2021-06-29T15:32:53+00:00"
  634. },
  635. {
  636. "name": "markbaker/matrix",
  637. "version": "3.0.0",
  638. "dist": {
  639. "type": "zip",
  640. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/c66aefcafb4f6c269510e9ac46b82619a904c576",
  641. "reference": "c66aefcafb4f6c269510e9ac46b82619a904c576",
  642. "shasum": ""
  643. },
  644. "require": {
  645. "php": "^7.1 || ^8.0"
  646. },
  647. "require-dev": {
  648. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  649. "phpcompatibility/php-compatibility": "^9.0",
  650. "phpdocumentor/phpdocumentor": "2.*",
  651. "phploc/phploc": "^4.0",
  652. "phpmd/phpmd": "2.*",
  653. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.3",
  654. "sebastian/phpcpd": "^4.0",
  655. "squizlabs/php_codesniffer": "^3.4"
  656. },
  657. "type": "library",
  658. "autoload": {
  659. "psr-4": {
  660. "Matrix\\": "classes/src/"
  661. }
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT"
  666. ],
  667. "authors": [
  668. {
  669. "name": "Mark Baker",
  670. "email": "mark@demon-angel.eu"
  671. }
  672. ],
  673. "description": "PHP Class for working with matrices",
  674. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  675. "keywords": [
  676. "mathematics",
  677. "matrix",
  678. "vector"
  679. ],
  680. "time": "2021-07-01T19:01:15+00:00"
  681. },
  682. {
  683. "name": "monolog/monolog",
  684. "version": "2.8.0",
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://mirrors.cloud.tencent.com/repository/composer/monolog/monolog/2.8.0/monolog-monolog-2.8.0.zip",
  688. "reference": "720488632c590286b88b80e62aa3d3d551ad4a50",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "php": ">=7.2",
  693. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  694. },
  695. "provide": {
  696. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  697. },
  698. "require-dev": {
  699. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  700. "doctrine/couchdb": "~1.0@dev",
  701. "elasticsearch/elasticsearch": "^7 || ^8",
  702. "ext-json": "*",
  703. "graylog2/gelf-php": "^1.4.2",
  704. "guzzlehttp/guzzle": "^7.4",
  705. "guzzlehttp/psr7": "^2.2",
  706. "mongodb/mongodb": "^1.8",
  707. "php-amqplib/php-amqplib": "~2.4 || ^3",
  708. "phpspec/prophecy": "^1.15",
  709. "phpstan/phpstan": "^0.12.91",
  710. "phpunit/phpunit": "^8.5.14",
  711. "predis/predis": "^1.1 || ^2.0",
  712. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  713. "ruflin/elastica": "^7",
  714. "swiftmailer/swiftmailer": "^5.3|^6.0",
  715. "symfony/mailer": "^5.4 || ^6",
  716. "symfony/mime": "^5.4 || ^6"
  717. },
  718. "suggest": {
  719. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  720. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  721. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  722. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  723. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  724. "ext-mbstring": "Allow to work properly with unicode symbols",
  725. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  726. "ext-openssl": "Required to send log messages using SSL",
  727. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  728. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  729. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  730. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  731. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  732. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  733. },
  734. "type": "library",
  735. "extra": {
  736. "branch-alias": {
  737. "dev-main": "2.x-dev"
  738. }
  739. },
  740. "autoload": {
  741. "psr-4": {
  742. "Monolog\\": "src/Monolog"
  743. }
  744. },
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Jordi Boggiano",
  751. "email": "j.boggiano@seld.be",
  752. "homepage": "https://seld.be"
  753. }
  754. ],
  755. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  756. "homepage": "https://github.com/Seldaek/monolog",
  757. "keywords": [
  758. "log",
  759. "logging",
  760. "psr-3"
  761. ],
  762. "time": "2022-07-24T11:55:47+00:00"
  763. },
  764. {
  765. "name": "myclabs/php-enum",
  766. "version": "1.8.3",
  767. "dist": {
  768. "type": "zip",
  769. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/b942d263c641ddb5190929ff840c68f78713e937",
  770. "reference": "b942d263c641ddb5190929ff840c68f78713e937",
  771. "shasum": ""
  772. },
  773. "require": {
  774. "ext-json": "*",
  775. "php": "^7.3 || ^8.0"
  776. },
  777. "require-dev": {
  778. "phpunit/phpunit": "^9.5",
  779. "squizlabs/php_codesniffer": "1.*",
  780. "vimeo/psalm": "^4.6.2"
  781. },
  782. "type": "library",
  783. "autoload": {
  784. "psr-4": {
  785. "MyCLabs\\Enum\\": "src/"
  786. }
  787. },
  788. "notification-url": "https://packagist.org/downloads/",
  789. "license": [
  790. "MIT"
  791. ],
  792. "authors": [
  793. {
  794. "name": "PHP Enum contributors",
  795. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  796. }
  797. ],
  798. "description": "PHP Enum implementation",
  799. "homepage": "http://github.com/myclabs/php-enum",
  800. "keywords": [
  801. "enum"
  802. ],
  803. "funding": [
  804. {
  805. "url": "https://github.com/mnapoli",
  806. "type": "github"
  807. },
  808. {
  809. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  810. "type": "tidelift"
  811. }
  812. ],
  813. "time": "2021-07-05T08:18:36+00:00"
  814. },
  815. {
  816. "name": "nyholm/psr7",
  817. "version": "1.6.1",
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://mirrors.cloud.tencent.com/repository/composer/nyholm/psr7/1.6.1/nyholm-psr7-1.6.1.zip",
  821. "reference": "e874c8c4286a1e010fb4f385f3a55ac56a05cc93",
  822. "shasum": ""
  823. },
  824. "require": {
  825. "php": ">=7.1",
  826. "php-http/message-factory": "^1.0",
  827. "psr/http-factory": "^1.0",
  828. "psr/http-message": "^1.0"
  829. },
  830. "provide": {
  831. "php-http/message-factory-implementation": "1.0",
  832. "psr/http-factory-implementation": "1.0",
  833. "psr/http-message-implementation": "1.0"
  834. },
  835. "require-dev": {
  836. "http-interop/http-factory-tests": "^0.9",
  837. "php-http/psr7-integration-tests": "^1.0",
  838. "phpunit/phpunit": "^7.5 || 8.5 || 9.4",
  839. "symfony/error-handler": "^4.4"
  840. },
  841. "type": "library",
  842. "extra": {
  843. "branch-alias": {
  844. "dev-master": "1.6-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Nyholm\\Psr7\\": "src/"
  850. }
  851. },
  852. "license": [
  853. "MIT"
  854. ],
  855. "authors": [
  856. {
  857. "name": "Tobias Nyholm",
  858. "email": "tobias.nyholm@gmail.com"
  859. },
  860. {
  861. "name": "Martijn van der Ven",
  862. "email": "martijn@vanderven.se"
  863. }
  864. ],
  865. "description": "A fast PHP7 implementation of PSR-7",
  866. "homepage": "https://tnyholm.se",
  867. "keywords": [
  868. "psr-17",
  869. "psr-7"
  870. ],
  871. "support": {
  872. "issues": "https://github.com/Nyholm/psr7/issues",
  873. "source": "https://github.com/Nyholm/psr7/tree/1.6.1"
  874. },
  875. "time": "2023-04-17T16:03:48+00:00"
  876. },
  877. {
  878. "name": "paragonie/random_compat",
  879. "version": "v9.99.100",
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  883. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  884. "shasum": ""
  885. },
  886. "require": {
  887. "php": ">= 7"
  888. },
  889. "require-dev": {
  890. "phpunit/phpunit": "4.*|5.*",
  891. "vimeo/psalm": "^1"
  892. },
  893. "suggest": {
  894. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  895. },
  896. "type": "library",
  897. "notification-url": "https://packagist.org/downloads/",
  898. "license": [
  899. "MIT"
  900. ],
  901. "authors": [
  902. {
  903. "name": "Paragon Initiative Enterprises",
  904. "email": "security@paragonie.com",
  905. "homepage": "https://paragonie.com"
  906. }
  907. ],
  908. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  909. "keywords": [
  910. "csprng",
  911. "polyfill",
  912. "pseudorandom",
  913. "random"
  914. ],
  915. "time": "2020-10-15T08:29:30+00:00"
  916. },
  917. {
  918. "name": "php-http/client-common",
  919. "version": "2.7.2",
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://mirrors.cloud.tencent.com/repository/composer/php-http/client-common/2.7.2/php-http-client-common-2.7.2.zip",
  923. "reference": "0cfe9858ab9d3b213041b947c881d5b19ceeca46",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "php": "^7.1 || ^8.0",
  928. "php-http/httplug": "^2.0",
  929. "php-http/message": "^1.6",
  930. "psr/http-client": "^1.0",
  931. "psr/http-factory": "^1.0",
  932. "psr/http-message": "^1.0 || ^2.0",
  933. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
  934. "symfony/polyfill-php80": "^1.17"
  935. },
  936. "require-dev": {
  937. "doctrine/instantiator": "^1.1",
  938. "guzzlehttp/psr7": "^1.4",
  939. "nyholm/psr7": "^1.2",
  940. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  941. "phpspec/prophecy": "^1.10.2",
  942. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  943. },
  944. "suggest": {
  945. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  946. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  947. "php-http/cache-plugin": "PSR-6 Cache plugin",
  948. "php-http/logger-plugin": "PSR-3 Logger plugin",
  949. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  950. },
  951. "type": "library",
  952. "autoload": {
  953. "psr-4": {
  954. "Http\\Client\\Common\\": "src/"
  955. }
  956. },
  957. "license": [
  958. "MIT"
  959. ],
  960. "authors": [
  961. {
  962. "name": "Márk Sági-Kazár",
  963. "email": "mark.sagikazar@gmail.com"
  964. }
  965. ],
  966. "description": "Common HTTP Client implementations and tools for HTTPlug",
  967. "homepage": "http://httplug.io",
  968. "keywords": [
  969. "client",
  970. "common",
  971. "http",
  972. "httplug"
  973. ],
  974. "support": {
  975. "issues": "https://github.com/php-http/client-common/issues",
  976. "source": "https://github.com/php-http/client-common/tree/2.7.2"
  977. },
  978. "time": "2024-09-24T06:21:48+00:00"
  979. },
  980. {
  981. "name": "php-http/discovery",
  982. "version": "1.20.0",
  983. "dist": {
  984. "type": "zip",
  985. "url": "https://mirrors.tencent.com/repository/composer/php-http/discovery/1.20.0/php-http-discovery-1.20.0.zip",
  986. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  987. "shasum": ""
  988. },
  989. "require": {
  990. "composer-plugin-api": "^1.0|^2.0",
  991. "php": "^7.1 || ^8.0"
  992. },
  993. "conflict": {
  994. "nyholm/psr7": "<1.0",
  995. "zendframework/zend-diactoros": "*"
  996. },
  997. "provide": {
  998. "php-http/async-client-implementation": "*",
  999. "php-http/client-implementation": "*",
  1000. "psr/http-client-implementation": "*",
  1001. "psr/http-factory-implementation": "*",
  1002. "psr/http-message-implementation": "*"
  1003. },
  1004. "require-dev": {
  1005. "composer/composer": "^1.0.2|^2.0",
  1006. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  1007. "php-http/httplug": "^1.0 || ^2.0",
  1008. "php-http/message-factory": "^1.0",
  1009. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  1010. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  1011. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  1012. },
  1013. "type": "composer-plugin",
  1014. "extra": {
  1015. "class": "Http\\Discovery\\Composer\\Plugin",
  1016. "plugin-optional": true
  1017. },
  1018. "autoload": {
  1019. "psr-4": {
  1020. "Http\\Discovery\\": "src/"
  1021. },
  1022. "exclude-from-classmap": [
  1023. "src/Composer/Plugin.php"
  1024. ]
  1025. },
  1026. "license": [
  1027. "MIT"
  1028. ],
  1029. "authors": [
  1030. {
  1031. "name": "Márk Sági-Kazár",
  1032. "email": "mark.sagikazar@gmail.com"
  1033. }
  1034. ],
  1035. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  1036. "homepage": "http://php-http.org",
  1037. "keywords": [
  1038. "adapter",
  1039. "client",
  1040. "discovery",
  1041. "factory",
  1042. "http",
  1043. "message",
  1044. "psr17",
  1045. "psr7"
  1046. ],
  1047. "support": {
  1048. "issues": "https://github.com/php-http/discovery/issues",
  1049. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  1050. },
  1051. "time": "2024-10-02T11:20:13+00:00"
  1052. },
  1053. {
  1054. "name": "php-http/httplug",
  1055. "version": "2.4.1",
  1056. "dist": {
  1057. "type": "zip",
  1058. "url": "https://mirrors.tencent.com/repository/composer/php-http/httplug/2.4.1/php-http-httplug-2.4.1.zip",
  1059. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  1060. "shasum": ""
  1061. },
  1062. "require": {
  1063. "php": "^7.1 || ^8.0",
  1064. "php-http/promise": "^1.1",
  1065. "psr/http-client": "^1.0",
  1066. "psr/http-message": "^1.0 || ^2.0"
  1067. },
  1068. "require-dev": {
  1069. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  1070. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  1071. },
  1072. "type": "library",
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Http\\Client\\": "src/"
  1076. }
  1077. },
  1078. "license": [
  1079. "MIT"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "Eric GELOEN",
  1084. "email": "geloen.eric@gmail.com"
  1085. },
  1086. {
  1087. "name": "Márk Sági-Kazár",
  1088. "email": "mark.sagikazar@gmail.com",
  1089. "homepage": "https://sagikazarmark.hu"
  1090. }
  1091. ],
  1092. "description": "HTTPlug, the HTTP client abstraction for PHP",
  1093. "homepage": "http://httplug.io",
  1094. "keywords": [
  1095. "client",
  1096. "http"
  1097. ],
  1098. "support": {
  1099. "issues": "https://github.com/php-http/httplug/issues",
  1100. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  1101. },
  1102. "time": "2024-09-23T11:39:58+00:00"
  1103. },
  1104. {
  1105. "name": "php-http/message",
  1106. "version": "1.14.0",
  1107. "dist": {
  1108. "type": "zip",
  1109. "url": "https://mirrors.cloud.tencent.com/repository/composer/php-http/message/1.14.0/php-http-message-1.14.0.zip",
  1110. "reference": "2ccee04a28c3d98eb3f2b85ce1e2fcff70c0e63b",
  1111. "shasum": ""
  1112. },
  1113. "require": {
  1114. "clue/stream-filter": "^1.5",
  1115. "php": "^7.1 || ^8.0",
  1116. "php-http/message-factory": "^1.0.2",
  1117. "psr/http-message": "^1.0 || ^2.0"
  1118. },
  1119. "provide": {
  1120. "php-http/message-factory-implementation": "1.0"
  1121. },
  1122. "require-dev": {
  1123. "ergebnis/composer-normalize": "^2.6",
  1124. "ext-zlib": "*",
  1125. "guzzlehttp/psr7": "^1.0",
  1126. "laminas/laminas-diactoros": "^2.0",
  1127. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  1128. "slim/slim": "^3.0"
  1129. },
  1130. "suggest": {
  1131. "ext-zlib": "Used with compressor/decompressor streams",
  1132. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  1133. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  1134. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "files": [
  1139. "src/filters.php"
  1140. ],
  1141. "psr-4": {
  1142. "Http\\Message\\": "src/"
  1143. }
  1144. },
  1145. "license": [
  1146. "MIT"
  1147. ],
  1148. "authors": [
  1149. {
  1150. "name": "Márk Sági-Kazár",
  1151. "email": "mark.sagikazar@gmail.com"
  1152. }
  1153. ],
  1154. "description": "HTTP Message related tools",
  1155. "homepage": "http://php-http.org",
  1156. "keywords": [
  1157. "http",
  1158. "message",
  1159. "psr-7"
  1160. ],
  1161. "support": {
  1162. "issues": "https://github.com/php-http/message/issues",
  1163. "source": "https://github.com/php-http/message/tree/1.14.0"
  1164. },
  1165. "time": "2023-04-14T14:26:18+00:00"
  1166. },
  1167. {
  1168. "name": "php-http/message-factory",
  1169. "version": "1.1.0",
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://mirrors.cloud.tencent.com/repository/composer/php-http/message-factory/1.1.0/php-http-message-factory-1.1.0.zip",
  1173. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": ">=5.4",
  1178. "psr/http-message": "^1.0 || ^2.0"
  1179. },
  1180. "type": "library",
  1181. "extra": {
  1182. "branch-alias": {
  1183. "dev-master": "1.x-dev"
  1184. }
  1185. },
  1186. "autoload": {
  1187. "psr-4": {
  1188. "Http\\Message\\": "src/"
  1189. }
  1190. },
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Márk Sági-Kazár",
  1197. "email": "mark.sagikazar@gmail.com"
  1198. }
  1199. ],
  1200. "description": "Factory interfaces for PSR-7 HTTP Message",
  1201. "homepage": "http://php-http.org",
  1202. "keywords": [
  1203. "factory",
  1204. "http",
  1205. "message",
  1206. "stream",
  1207. "uri"
  1208. ],
  1209. "support": {
  1210. "issues": "https://github.com/php-http/message-factory/issues",
  1211. "source": "https://github.com/php-http/message-factory/tree/1.1.0"
  1212. },
  1213. "time": "2023-04-14T14:16:17+00:00"
  1214. },
  1215. {
  1216. "name": "php-http/multipart-stream-builder",
  1217. "version": "1.4.2",
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "https://mirrors.cloud.tencent.com/repository/composer/php-http/multipart-stream-builder/1.4.2/php-http-multipart-stream-builder-1.4.2.zip",
  1221. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  1222. "shasum": ""
  1223. },
  1224. "require": {
  1225. "php": "^7.1 || ^8.0",
  1226. "php-http/discovery": "^1.15",
  1227. "psr/http-factory-implementation": "^1.0"
  1228. },
  1229. "require-dev": {
  1230. "nyholm/psr7": "^1.0",
  1231. "php-http/message": "^1.5",
  1232. "php-http/message-factory": "^1.0.2",
  1233. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  1234. },
  1235. "type": "library",
  1236. "autoload": {
  1237. "psr-4": {
  1238. "Http\\Message\\MultipartStream\\": "src/"
  1239. }
  1240. },
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "authors": [
  1245. {
  1246. "name": "Tobias Nyholm",
  1247. "email": "tobias.nyholm@gmail.com"
  1248. }
  1249. ],
  1250. "description": "A builder class that help you create a multipart stream",
  1251. "homepage": "http://php-http.org",
  1252. "keywords": [
  1253. "factory",
  1254. "http",
  1255. "message",
  1256. "multipart stream",
  1257. "stream"
  1258. ],
  1259. "support": {
  1260. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  1261. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  1262. },
  1263. "time": "2024-09-04T13:22:54+00:00"
  1264. },
  1265. {
  1266. "name": "php-http/promise",
  1267. "version": "1.3.1",
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://mirrors.tencent.com/repository/composer/php-http/promise/1.3.1/php-http-promise-1.3.1.zip",
  1271. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "php": "^7.1 || ^8.0"
  1276. },
  1277. "require-dev": {
  1278. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  1279. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  1280. },
  1281. "type": "library",
  1282. "autoload": {
  1283. "psr-4": {
  1284. "Http\\Promise\\": "src/"
  1285. }
  1286. },
  1287. "license": [
  1288. "MIT"
  1289. ],
  1290. "authors": [
  1291. {
  1292. "name": "Joel Wurtz",
  1293. "email": "joel.wurtz@gmail.com"
  1294. },
  1295. {
  1296. "name": "Márk Sági-Kazár",
  1297. "email": "mark.sagikazar@gmail.com"
  1298. }
  1299. ],
  1300. "description": "Promise used for asynchronous HTTP requests",
  1301. "homepage": "http://httplug.io",
  1302. "keywords": [
  1303. "promise"
  1304. ],
  1305. "support": {
  1306. "issues": "https://github.com/php-http/promise/issues",
  1307. "source": "https://github.com/php-http/promise/tree/1.3.1"
  1308. },
  1309. "time": "2024-03-15T13:55:21+00:00"
  1310. },
  1311. {
  1312. "name": "phpoffice/phpspreadsheet",
  1313. "version": "1.20.0",
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/44436f270bb134b4a94670f3d020a85dfa0a3c02",
  1317. "reference": "44436f270bb134b4a94670f3d020a85dfa0a3c02",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "ext-ctype": "*",
  1322. "ext-dom": "*",
  1323. "ext-fileinfo": "*",
  1324. "ext-gd": "*",
  1325. "ext-iconv": "*",
  1326. "ext-libxml": "*",
  1327. "ext-mbstring": "*",
  1328. "ext-simplexml": "*",
  1329. "ext-xml": "*",
  1330. "ext-xmlreader": "*",
  1331. "ext-xmlwriter": "*",
  1332. "ext-zip": "*",
  1333. "ext-zlib": "*",
  1334. "ezyang/htmlpurifier": "^4.13",
  1335. "maennchen/zipstream-php": "^2.1",
  1336. "markbaker/complex": "^3.0",
  1337. "markbaker/matrix": "^3.0",
  1338. "php": "^7.3 || ^8.0",
  1339. "psr/http-client": "^1.0",
  1340. "psr/http-factory": "^1.0",
  1341. "psr/simple-cache": "^1.0"
  1342. },
  1343. "require-dev": {
  1344. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  1345. "dompdf/dompdf": "^1.0",
  1346. "friendsofphp/php-cs-fixer": "^3.2",
  1347. "jpgraph/jpgraph": "^4.0",
  1348. "mpdf/mpdf": "^8.0",
  1349. "phpcompatibility/php-compatibility": "^9.3",
  1350. "phpstan/phpstan": "^1.1",
  1351. "phpstan/phpstan-phpunit": "^1.0",
  1352. "phpunit/phpunit": "^8.5 || ^9.0",
  1353. "squizlabs/php_codesniffer": "^3.6",
  1354. "tecnickcom/tcpdf": "^6.4"
  1355. },
  1356. "suggest": {
  1357. "dompdf/dompdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)",
  1358. "jpgraph/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  1359. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  1360. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer (doesn't yet support PHP8)"
  1361. },
  1362. "type": "library",
  1363. "autoload": {
  1364. "psr-4": {
  1365. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "authors": [
  1373. {
  1374. "name": "Maarten Balliauw",
  1375. "homepage": "https://blog.maartenballiauw.be"
  1376. },
  1377. {
  1378. "name": "Mark Baker",
  1379. "homepage": "https://markbakeruk.net"
  1380. },
  1381. {
  1382. "name": "Franck Lefevre",
  1383. "homepage": "https://rootslabs.net"
  1384. },
  1385. {
  1386. "name": "Erik Tilt"
  1387. },
  1388. {
  1389. "name": "Adrien Crivelli"
  1390. }
  1391. ],
  1392. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  1393. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  1394. "keywords": [
  1395. "OpenXML",
  1396. "excel",
  1397. "gnumeric",
  1398. "ods",
  1399. "php",
  1400. "spreadsheet",
  1401. "xls",
  1402. "xlsx"
  1403. ],
  1404. "time": "2021-11-23T15:23:42+00:00"
  1405. },
  1406. {
  1407. "name": "psr/container",
  1408. "version": "1.1.2",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/php-fig/container.git",
  1412. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  1417. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  1418. "shasum": "",
  1419. "mirrors": [
  1420. {
  1421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1422. "preferred": true
  1423. }
  1424. ]
  1425. },
  1426. "require": {
  1427. "php": ">=7.4.0"
  1428. },
  1429. "type": "library",
  1430. "autoload": {
  1431. "psr-4": {
  1432. "Psr\\Container\\": "src/"
  1433. }
  1434. },
  1435. "notification-url": "https://packagist.org/downloads/",
  1436. "license": [
  1437. "MIT"
  1438. ],
  1439. "authors": [
  1440. {
  1441. "name": "PHP-FIG",
  1442. "homepage": "https://www.php-fig.org/"
  1443. }
  1444. ],
  1445. "description": "Common Container Interface (PHP FIG PSR-11)",
  1446. "homepage": "https://github.com/php-fig/container",
  1447. "keywords": [
  1448. "PSR-11",
  1449. "container",
  1450. "container-interface",
  1451. "container-interop",
  1452. "psr"
  1453. ],
  1454. "time": "2021-11-05T16:50:12+00:00"
  1455. },
  1456. {
  1457. "name": "psr/http-client",
  1458. "version": "1.0.1",
  1459. "dist": {
  1460. "type": "zip",
  1461. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1462. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  1463. "shasum": ""
  1464. },
  1465. "require": {
  1466. "php": "^7.0 || ^8.0",
  1467. "psr/http-message": "^1.0"
  1468. },
  1469. "type": "library",
  1470. "extra": {
  1471. "branch-alias": {
  1472. "dev-master": "1.0.x-dev"
  1473. }
  1474. },
  1475. "autoload": {
  1476. "psr-4": {
  1477. "Psr\\Http\\Client\\": "src/"
  1478. }
  1479. },
  1480. "notification-url": "https://packagist.org/downloads/",
  1481. "license": [
  1482. "MIT"
  1483. ],
  1484. "authors": [
  1485. {
  1486. "name": "PHP-FIG",
  1487. "homepage": "http://www.php-fig.org/"
  1488. }
  1489. ],
  1490. "description": "Common interface for HTTP clients",
  1491. "homepage": "https://github.com/php-fig/http-client",
  1492. "keywords": [
  1493. "http",
  1494. "http-client",
  1495. "psr",
  1496. "psr-18"
  1497. ],
  1498. "time": "2020-06-29T06:28:15+00:00"
  1499. },
  1500. {
  1501. "name": "psr/http-factory",
  1502. "version": "1.0.1",
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1506. "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "php": ">=7.0.0",
  1511. "psr/http-message": "^1.0"
  1512. },
  1513. "type": "library",
  1514. "extra": {
  1515. "branch-alias": {
  1516. "dev-master": "1.0.x-dev"
  1517. }
  1518. },
  1519. "autoload": {
  1520. "psr-4": {
  1521. "Psr\\Http\\Message\\": "src/"
  1522. }
  1523. },
  1524. "notification-url": "https://packagist.org/downloads/",
  1525. "license": [
  1526. "MIT"
  1527. ],
  1528. "authors": [
  1529. {
  1530. "name": "PHP-FIG",
  1531. "homepage": "http://www.php-fig.org/"
  1532. }
  1533. ],
  1534. "description": "Common interfaces for PSR-7 HTTP message factories",
  1535. "keywords": [
  1536. "factory",
  1537. "http",
  1538. "message",
  1539. "psr",
  1540. "psr-17",
  1541. "psr-7",
  1542. "request",
  1543. "response"
  1544. ],
  1545. "time": "2019-04-30T12:38:16+00:00"
  1546. },
  1547. {
  1548. "name": "psr/http-message",
  1549. "version": "1.0.1",
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  1553. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": ">=5.3.0"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "1.0.x-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Psr\\Http\\Message\\": "src/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "PHP-FIG",
  1577. "homepage": "http://www.php-fig.org/"
  1578. }
  1579. ],
  1580. "description": "Common interface for HTTP messages",
  1581. "homepage": "https://github.com/php-fig/http-message",
  1582. "keywords": [
  1583. "http",
  1584. "http-message",
  1585. "psr",
  1586. "psr-7",
  1587. "request",
  1588. "response"
  1589. ],
  1590. "time": "2016-08-06T14:39:51+00:00"
  1591. },
  1592. {
  1593. "name": "psr/log",
  1594. "version": "1.1.4",
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/log/1.1.4/psr-log-1.1.4.zip",
  1598. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  1599. "shasum": ""
  1600. },
  1601. "require": {
  1602. "php": ">=5.3.0"
  1603. },
  1604. "type": "library",
  1605. "extra": {
  1606. "branch-alias": {
  1607. "dev-master": "1.1.x-dev"
  1608. }
  1609. },
  1610. "autoload": {
  1611. "psr-4": {
  1612. "Psr\\Log\\": "Psr/Log/"
  1613. }
  1614. },
  1615. "license": [
  1616. "MIT"
  1617. ],
  1618. "authors": [
  1619. {
  1620. "name": "PHP-FIG",
  1621. "homepage": "https://www.php-fig.org/"
  1622. }
  1623. ],
  1624. "description": "Common interface for logging libraries",
  1625. "homepage": "https://github.com/php-fig/log",
  1626. "keywords": [
  1627. "log",
  1628. "psr",
  1629. "psr-3"
  1630. ],
  1631. "time": "2021-05-03T11:20:27+00:00"
  1632. },
  1633. {
  1634. "name": "psr/simple-cache",
  1635. "version": "1.0.1",
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1639. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  1640. "shasum": ""
  1641. },
  1642. "require": {
  1643. "php": ">=5.3.0"
  1644. },
  1645. "type": "library",
  1646. "extra": {
  1647. "branch-alias": {
  1648. "dev-master": "1.0.x-dev"
  1649. }
  1650. },
  1651. "autoload": {
  1652. "psr-4": {
  1653. "Psr\\SimpleCache\\": "src/"
  1654. }
  1655. },
  1656. "notification-url": "https://packagist.org/downloads/",
  1657. "license": [
  1658. "MIT"
  1659. ],
  1660. "authors": [
  1661. {
  1662. "name": "PHP-FIG",
  1663. "homepage": "http://www.php-fig.org/"
  1664. }
  1665. ],
  1666. "description": "Common interfaces for simple caching",
  1667. "keywords": [
  1668. "cache",
  1669. "caching",
  1670. "psr",
  1671. "psr-16",
  1672. "simple-cache"
  1673. ],
  1674. "time": "2017-10-23T01:57:42+00:00"
  1675. },
  1676. {
  1677. "name": "smladeoye/yii2-paystack",
  1678. "version": "v1.0.0",
  1679. "dist": {
  1680. "type": "zip",
  1681. "url": "https://mirrors.cloud.tencent.com/repository/composer/smladeoye/yii2-paystack/v1.0.0/smladeoye-yii2-paystack-v1.0.0.zip",
  1682. "reference": "93b4bb340fcfa783fd722fdbb36277f84c7acf61",
  1683. "shasum": ""
  1684. },
  1685. "require": {
  1686. "yiisoft/yii2": ">2.0.1"
  1687. },
  1688. "type": "yii2-extension",
  1689. "autoload": {
  1690. "psr-4": {
  1691. "smladeoye\\": ""
  1692. }
  1693. },
  1694. "license": [
  1695. "MIT"
  1696. ],
  1697. "authors": [
  1698. {
  1699. "name": "smladeoye",
  1700. "email": "smladeoye@gmail.com"
  1701. }
  1702. ],
  1703. "description": "Yii 2 Paystack Payment extension (Component and widget)",
  1704. "keywords": [
  1705. "Yii2 Extension",
  1706. "component",
  1707. "payment",
  1708. "paystack",
  1709. "paystack widget",
  1710. "smladeoye",
  1711. "widget",
  1712. "yii2"
  1713. ],
  1714. "time": "2017-02-28T15:11:38+00:00"
  1715. },
  1716. {
  1717. "name": "sunmoon/yii2-phpspreadsheet",
  1718. "version": "1.2.0",
  1719. "dist": {
  1720. "type": "zip",
  1721. "url": "https://api.github.com/repos/arieslee/yii2-phpspreadsheet/zipball/51fc4d0183eb81e654b3360ac18e631fc4b89c09",
  1722. "reference": "51fc4d0183eb81e654b3360ac18e631fc4b89c09",
  1723. "shasum": ""
  1724. },
  1725. "require": {
  1726. "phpoffice/phpspreadsheet": "*",
  1727. "yiisoft/yii2": "^2.0.15"
  1728. },
  1729. "type": "library",
  1730. "autoload": {
  1731. "psr-4": {
  1732. "sunmoon\\phpspreadsheet\\": "src"
  1733. }
  1734. },
  1735. "notification-url": "https://packagist.org/downloads/",
  1736. "license": [
  1737. "MIT"
  1738. ],
  1739. "authors": [
  1740. {
  1741. "name": "Sunmoon",
  1742. "email": "forphp@qq.com",
  1743. "homepage": "https://blog.iw3c.com",
  1744. "role": "Developer"
  1745. }
  1746. ],
  1747. "description": "Yii2处理Excel文件, 修改自moonlandsoft/yii2-phpexcel。",
  1748. "homepage": "https://github.com/arieslee/yii2-phpspreadsheet",
  1749. "time": "2019-02-18T03:02:43+00:00"
  1750. },
  1751. {
  1752. "name": "swiftmailer/swiftmailer",
  1753. "version": "v6.3.0",
  1754. "dist": {
  1755. "type": "zip",
  1756. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1757. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  1758. "shasum": ""
  1759. },
  1760. "require": {
  1761. "egulias/email-validator": "^2.0|^3.1",
  1762. "php": ">=7.0.0",
  1763. "symfony/polyfill-iconv": "^1.0",
  1764. "symfony/polyfill-intl-idn": "^1.10",
  1765. "symfony/polyfill-mbstring": "^1.0"
  1766. },
  1767. "require-dev": {
  1768. "mockery/mockery": "^1.0",
  1769. "symfony/phpunit-bridge": "^4.4|^5.4"
  1770. },
  1771. "suggest": {
  1772. "ext-intl": "Needed to support internationalized email addresses"
  1773. },
  1774. "type": "library",
  1775. "extra": {
  1776. "branch-alias": {
  1777. "dev-master": "6.2-dev"
  1778. }
  1779. },
  1780. "autoload": {
  1781. "files": [
  1782. "lib/swift_required.php"
  1783. ]
  1784. },
  1785. "notification-url": "https://packagist.org/downloads/",
  1786. "license": [
  1787. "MIT"
  1788. ],
  1789. "authors": [
  1790. {
  1791. "name": "Chris Corbyn"
  1792. },
  1793. {
  1794. "name": "Fabien Potencier",
  1795. "email": "fabien@symfony.com"
  1796. }
  1797. ],
  1798. "description": "Swiftmailer, free feature-rich PHP mailer",
  1799. "homepage": "https://swiftmailer.symfony.com",
  1800. "keywords": [
  1801. "email",
  1802. "mail",
  1803. "mailer"
  1804. ],
  1805. "funding": [
  1806. {
  1807. "url": "https://github.com/fabpot",
  1808. "type": "github"
  1809. },
  1810. {
  1811. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  1812. "type": "tidelift"
  1813. }
  1814. ],
  1815. "time": "2021-10-18T15:26:12+00:00"
  1816. },
  1817. {
  1818. "name": "symfony/deprecation-contracts",
  1819. "version": "v2.5.0",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://github.com/symfony/deprecation-contracts.git",
  1823. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1828. "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
  1829. "shasum": "",
  1830. "mirrors": [
  1831. {
  1832. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1833. "preferred": true
  1834. }
  1835. ]
  1836. },
  1837. "require": {
  1838. "php": ">=7.1"
  1839. },
  1840. "type": "library",
  1841. "extra": {
  1842. "branch-alias": {
  1843. "dev-main": "2.5-dev"
  1844. },
  1845. "thanks": {
  1846. "name": "symfony/contracts",
  1847. "url": "https://github.com/symfony/contracts"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "files": [
  1852. "function.php"
  1853. ]
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "MIT"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "Nicolas Grekas",
  1862. "email": "p@tchwork.com"
  1863. },
  1864. {
  1865. "name": "Symfony Community",
  1866. "homepage": "https://symfony.com/contributors"
  1867. }
  1868. ],
  1869. "description": "A generic function and convention to trigger deprecation notices",
  1870. "homepage": "https://symfony.com",
  1871. "funding": [
  1872. {
  1873. "url": "https://symfony.com/sponsor",
  1874. "type": "custom"
  1875. },
  1876. {
  1877. "url": "https://github.com/fabpot",
  1878. "type": "github"
  1879. },
  1880. {
  1881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1882. "type": "tidelift"
  1883. }
  1884. ],
  1885. "time": "2021-07-12T14:48:14+00:00"
  1886. },
  1887. {
  1888. "name": "symfony/http-client",
  1889. "version": "v5.4.49",
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-client/v5.4.49/symfony-http-client-v5.4.49.zip",
  1893. "reference": "d77d8e212cde7b5c4a64142bf431522f19487c28",
  1894. "shasum": ""
  1895. },
  1896. "require": {
  1897. "php": ">=7.2.5",
  1898. "psr/log": "^1|^2|^3",
  1899. "symfony/deprecation-contracts": "^2.1|^3",
  1900. "symfony/http-client-contracts": "^2.5.4",
  1901. "symfony/polyfill-php73": "^1.11",
  1902. "symfony/polyfill-php80": "^1.16",
  1903. "symfony/service-contracts": "^1.0|^2|^3"
  1904. },
  1905. "provide": {
  1906. "php-http/async-client-implementation": "*",
  1907. "php-http/client-implementation": "*",
  1908. "psr/http-client-implementation": "1.0",
  1909. "symfony/http-client-implementation": "2.4"
  1910. },
  1911. "require-dev": {
  1912. "amphp/amp": "^2.5",
  1913. "amphp/http-client": "^4.2.1",
  1914. "amphp/http-tunnel": "^1.0",
  1915. "amphp/socket": "^1.1",
  1916. "guzzlehttp/promises": "^1.4|^2.0",
  1917. "nyholm/psr7": "^1.0",
  1918. "php-http/httplug": "^1.0|^2.0",
  1919. "php-http/message-factory": "^1.0",
  1920. "psr/http-client": "^1.0",
  1921. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  1922. "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0",
  1923. "symfony/process": "^4.4|^5.0|^6.0",
  1924. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  1925. },
  1926. "type": "library",
  1927. "autoload": {
  1928. "psr-4": {
  1929. "Symfony\\Component\\HttpClient\\": ""
  1930. },
  1931. "exclude-from-classmap": [
  1932. "/Tests/"
  1933. ]
  1934. },
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "authors": [
  1939. {
  1940. "name": "Nicolas Grekas",
  1941. "email": "p@tchwork.com"
  1942. },
  1943. {
  1944. "name": "Symfony Community",
  1945. "homepage": "https://symfony.com/contributors"
  1946. }
  1947. ],
  1948. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  1949. "homepage": "https://symfony.com",
  1950. "keywords": [
  1951. "http"
  1952. ],
  1953. "support": {
  1954. "source": "https://github.com/symfony/http-client/tree/v5.4.49"
  1955. },
  1956. "time": "2024-11-28T08:37:04+00:00"
  1957. },
  1958. {
  1959. "name": "symfony/http-client-contracts",
  1960. "version": "v2.5.5",
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://mirrors.tencent.com/repository/composer/symfony/http-client-contracts/v2.5.5/symfony-http-client-contracts-v2.5.5.zip",
  1964. "reference": "48ef1d0a082885877b664332b9427662065a360c",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "php": ">=7.2.5"
  1969. },
  1970. "suggest": {
  1971. "symfony/http-client-implementation": ""
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "thanks": {
  1976. "url": "https://github.com/symfony/contracts",
  1977. "name": "symfony/contracts"
  1978. },
  1979. "branch-alias": {
  1980. "dev-main": "2.5-dev"
  1981. }
  1982. },
  1983. "autoload": {
  1984. "psr-4": {
  1985. "Symfony\\Contracts\\HttpClient\\": ""
  1986. }
  1987. },
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "authors": [
  1992. {
  1993. "name": "Nicolas Grekas",
  1994. "email": "p@tchwork.com"
  1995. },
  1996. {
  1997. "name": "Symfony Community",
  1998. "homepage": "https://symfony.com/contributors"
  1999. }
  2000. ],
  2001. "description": "Generic abstractions related to HTTP clients",
  2002. "homepage": "https://symfony.com",
  2003. "keywords": [
  2004. "abstractions",
  2005. "contracts",
  2006. "decoupling",
  2007. "interfaces",
  2008. "interoperability",
  2009. "standards"
  2010. ],
  2011. "support": {
  2012. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.5"
  2013. },
  2014. "time": "2024-11-28T08:37:04+00:00"
  2015. },
  2016. {
  2017. "name": "symfony/options-resolver",
  2018. "version": "v5.4.45",
  2019. "dist": {
  2020. "type": "zip",
  2021. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/options-resolver/v5.4.45/symfony-options-resolver-v5.4.45.zip",
  2022. "reference": "74e5b6f0db3e8589e6cfd5efb317a1fc2bb52fb6",
  2023. "shasum": ""
  2024. },
  2025. "require": {
  2026. "php": ">=7.2.5",
  2027. "symfony/deprecation-contracts": "^2.1|^3",
  2028. "symfony/polyfill-php73": "~1.0",
  2029. "symfony/polyfill-php80": "^1.16"
  2030. },
  2031. "type": "library",
  2032. "autoload": {
  2033. "psr-4": {
  2034. "Symfony\\Component\\OptionsResolver\\": ""
  2035. },
  2036. "exclude-from-classmap": [
  2037. "/Tests/"
  2038. ]
  2039. },
  2040. "license": [
  2041. "MIT"
  2042. ],
  2043. "authors": [
  2044. {
  2045. "name": "Fabien Potencier",
  2046. "email": "fabien@symfony.com"
  2047. },
  2048. {
  2049. "name": "Symfony Community",
  2050. "homepage": "https://symfony.com/contributors"
  2051. }
  2052. ],
  2053. "description": "Provides an improved replacement for the array_replace PHP function",
  2054. "homepage": "https://symfony.com",
  2055. "keywords": [
  2056. "config",
  2057. "configuration",
  2058. "options"
  2059. ],
  2060. "support": {
  2061. "source": "https://github.com/symfony/options-resolver/tree/v5.4.45"
  2062. },
  2063. "time": "2024-09-25T14:11:13+00:00"
  2064. },
  2065. {
  2066. "name": "symfony/polyfill-ctype",
  2067. "version": "v1.23.0",
  2068. "source": {
  2069. "type": "git",
  2070. "url": "https://github.com/symfony/polyfill-ctype.git",
  2071. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  2072. },
  2073. "dist": {
  2074. "type": "zip",
  2075. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  2076. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  2077. "shasum": "",
  2078. "mirrors": [
  2079. {
  2080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2081. "preferred": true
  2082. }
  2083. ]
  2084. },
  2085. "require": {
  2086. "php": ">=7.1"
  2087. },
  2088. "suggest": {
  2089. "ext-ctype": "For best performance"
  2090. },
  2091. "type": "library",
  2092. "extra": {
  2093. "branch-alias": {
  2094. "dev-main": "1.23-dev"
  2095. },
  2096. "thanks": {
  2097. "name": "symfony/polyfill",
  2098. "url": "https://github.com/symfony/polyfill"
  2099. }
  2100. },
  2101. "autoload": {
  2102. "psr-4": {
  2103. "Symfony\\Polyfill\\Ctype\\": ""
  2104. },
  2105. "files": [
  2106. "bootstrap.php"
  2107. ]
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Gert de Pagter",
  2116. "email": "BackEndTea@gmail.com"
  2117. },
  2118. {
  2119. "name": "Symfony Community",
  2120. "homepage": "https://symfony.com/contributors"
  2121. }
  2122. ],
  2123. "description": "Symfony polyfill for ctype functions",
  2124. "homepage": "https://symfony.com",
  2125. "keywords": [
  2126. "compatibility",
  2127. "ctype",
  2128. "polyfill",
  2129. "portable"
  2130. ],
  2131. "funding": [
  2132. {
  2133. "url": "https://symfony.com/sponsor",
  2134. "type": "custom"
  2135. },
  2136. {
  2137. "url": "https://github.com/fabpot",
  2138. "type": "github"
  2139. },
  2140. {
  2141. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2142. "type": "tidelift"
  2143. }
  2144. ],
  2145. "time": "2021-02-19T12:13:01+00:00"
  2146. },
  2147. {
  2148. "name": "symfony/polyfill-iconv",
  2149. "version": "v1.23.0",
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  2153. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  2154. "shasum": ""
  2155. },
  2156. "require": {
  2157. "php": ">=7.1"
  2158. },
  2159. "suggest": {
  2160. "ext-iconv": "For best performance"
  2161. },
  2162. "type": "library",
  2163. "extra": {
  2164. "branch-alias": {
  2165. "dev-main": "1.23-dev"
  2166. },
  2167. "thanks": {
  2168. "name": "symfony/polyfill",
  2169. "url": "https://github.com/symfony/polyfill"
  2170. }
  2171. },
  2172. "autoload": {
  2173. "psr-4": {
  2174. "Symfony\\Polyfill\\Iconv\\": ""
  2175. },
  2176. "files": [
  2177. "bootstrap.php"
  2178. ]
  2179. },
  2180. "notification-url": "https://packagist.org/downloads/",
  2181. "license": [
  2182. "MIT"
  2183. ],
  2184. "authors": [
  2185. {
  2186. "name": "Nicolas Grekas",
  2187. "email": "p@tchwork.com"
  2188. },
  2189. {
  2190. "name": "Symfony Community",
  2191. "homepage": "https://symfony.com/contributors"
  2192. }
  2193. ],
  2194. "description": "Symfony polyfill for the Iconv extension",
  2195. "homepage": "https://symfony.com",
  2196. "keywords": [
  2197. "compatibility",
  2198. "iconv",
  2199. "polyfill",
  2200. "portable",
  2201. "shim"
  2202. ],
  2203. "funding": [
  2204. {
  2205. "url": "https://symfony.com/sponsor",
  2206. "type": "custom"
  2207. },
  2208. {
  2209. "url": "https://github.com/fabpot",
  2210. "type": "github"
  2211. },
  2212. {
  2213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2214. "type": "tidelift"
  2215. }
  2216. ],
  2217. "time": "2021-05-27T09:27:20+00:00"
  2218. },
  2219. {
  2220. "name": "symfony/polyfill-intl-idn",
  2221. "version": "v1.23.0",
  2222. "dist": {
  2223. "type": "zip",
  2224. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  2225. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  2226. "shasum": ""
  2227. },
  2228. "require": {
  2229. "php": ">=7.1",
  2230. "symfony/polyfill-intl-normalizer": "^1.10",
  2231. "symfony/polyfill-php72": "^1.10"
  2232. },
  2233. "suggest": {
  2234. "ext-intl": "For best performance"
  2235. },
  2236. "type": "library",
  2237. "extra": {
  2238. "branch-alias": {
  2239. "dev-main": "1.23-dev"
  2240. },
  2241. "thanks": {
  2242. "name": "symfony/polyfill",
  2243. "url": "https://github.com/symfony/polyfill"
  2244. }
  2245. },
  2246. "autoload": {
  2247. "psr-4": {
  2248. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2249. },
  2250. "files": [
  2251. "bootstrap.php"
  2252. ]
  2253. },
  2254. "notification-url": "https://packagist.org/downloads/",
  2255. "license": [
  2256. "MIT"
  2257. ],
  2258. "authors": [
  2259. {
  2260. "name": "Laurent Bassin",
  2261. "email": "laurent@bassin.info"
  2262. },
  2263. {
  2264. "name": "Trevor Rowbotham",
  2265. "email": "trevor.rowbotham@pm.me"
  2266. },
  2267. {
  2268. "name": "Symfony Community",
  2269. "homepage": "https://symfony.com/contributors"
  2270. }
  2271. ],
  2272. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2273. "homepage": "https://symfony.com",
  2274. "keywords": [
  2275. "compatibility",
  2276. "idn",
  2277. "intl",
  2278. "polyfill",
  2279. "portable",
  2280. "shim"
  2281. ],
  2282. "funding": [
  2283. {
  2284. "url": "https://symfony.com/sponsor",
  2285. "type": "custom"
  2286. },
  2287. {
  2288. "url": "https://github.com/fabpot",
  2289. "type": "github"
  2290. },
  2291. {
  2292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2293. "type": "tidelift"
  2294. }
  2295. ],
  2296. "time": "2021-05-27T09:27:20+00:00"
  2297. },
  2298. {
  2299. "name": "symfony/polyfill-intl-normalizer",
  2300. "version": "v1.23.0",
  2301. "dist": {
  2302. "type": "zip",
  2303. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  2304. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  2305. "shasum": ""
  2306. },
  2307. "require": {
  2308. "php": ">=7.1"
  2309. },
  2310. "suggest": {
  2311. "ext-intl": "For best performance"
  2312. },
  2313. "type": "library",
  2314. "extra": {
  2315. "branch-alias": {
  2316. "dev-main": "1.23-dev"
  2317. },
  2318. "thanks": {
  2319. "name": "symfony/polyfill",
  2320. "url": "https://github.com/symfony/polyfill"
  2321. }
  2322. },
  2323. "autoload": {
  2324. "psr-4": {
  2325. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  2326. },
  2327. "files": [
  2328. "bootstrap.php"
  2329. ],
  2330. "classmap": [
  2331. "Resources/stubs"
  2332. ]
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "Nicolas Grekas",
  2341. "email": "p@tchwork.com"
  2342. },
  2343. {
  2344. "name": "Symfony Community",
  2345. "homepage": "https://symfony.com/contributors"
  2346. }
  2347. ],
  2348. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  2349. "homepage": "https://symfony.com",
  2350. "keywords": [
  2351. "compatibility",
  2352. "intl",
  2353. "normalizer",
  2354. "polyfill",
  2355. "portable",
  2356. "shim"
  2357. ],
  2358. "funding": [
  2359. {
  2360. "url": "https://symfony.com/sponsor",
  2361. "type": "custom"
  2362. },
  2363. {
  2364. "url": "https://github.com/fabpot",
  2365. "type": "github"
  2366. },
  2367. {
  2368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2369. "type": "tidelift"
  2370. }
  2371. ],
  2372. "time": "2021-02-19T12:13:01+00:00"
  2373. },
  2374. {
  2375. "name": "symfony/polyfill-mbstring",
  2376. "version": "v1.23.1",
  2377. "dist": {
  2378. "type": "zip",
  2379. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  2380. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  2381. "shasum": ""
  2382. },
  2383. "require": {
  2384. "php": ">=7.1"
  2385. },
  2386. "suggest": {
  2387. "ext-mbstring": "For best performance"
  2388. },
  2389. "type": "library",
  2390. "extra": {
  2391. "branch-alias": {
  2392. "dev-main": "1.23-dev"
  2393. },
  2394. "thanks": {
  2395. "name": "symfony/polyfill",
  2396. "url": "https://github.com/symfony/polyfill"
  2397. }
  2398. },
  2399. "autoload": {
  2400. "psr-4": {
  2401. "Symfony\\Polyfill\\Mbstring\\": ""
  2402. },
  2403. "files": [
  2404. "bootstrap.php"
  2405. ]
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "MIT"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "Nicolas Grekas",
  2414. "email": "p@tchwork.com"
  2415. },
  2416. {
  2417. "name": "Symfony Community",
  2418. "homepage": "https://symfony.com/contributors"
  2419. }
  2420. ],
  2421. "description": "Symfony polyfill for the Mbstring extension",
  2422. "homepage": "https://symfony.com",
  2423. "keywords": [
  2424. "compatibility",
  2425. "mbstring",
  2426. "polyfill",
  2427. "portable",
  2428. "shim"
  2429. ],
  2430. "funding": [
  2431. {
  2432. "url": "https://symfony.com/sponsor",
  2433. "type": "custom"
  2434. },
  2435. {
  2436. "url": "https://github.com/fabpot",
  2437. "type": "github"
  2438. },
  2439. {
  2440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2441. "type": "tidelift"
  2442. }
  2443. ],
  2444. "time": "2021-05-27T12:26:48+00:00"
  2445. },
  2446. {
  2447. "name": "symfony/polyfill-php72",
  2448. "version": "v1.23.0",
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  2452. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  2453. "shasum": ""
  2454. },
  2455. "require": {
  2456. "php": ">=7.1"
  2457. },
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-main": "1.23-dev"
  2462. },
  2463. "thanks": {
  2464. "name": "symfony/polyfill",
  2465. "url": "https://github.com/symfony/polyfill"
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Symfony\\Polyfill\\Php72\\": ""
  2471. },
  2472. "files": [
  2473. "bootstrap.php"
  2474. ]
  2475. },
  2476. "notification-url": "https://packagist.org/downloads/",
  2477. "license": [
  2478. "MIT"
  2479. ],
  2480. "authors": [
  2481. {
  2482. "name": "Nicolas Grekas",
  2483. "email": "p@tchwork.com"
  2484. },
  2485. {
  2486. "name": "Symfony Community",
  2487. "homepage": "https://symfony.com/contributors"
  2488. }
  2489. ],
  2490. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  2491. "homepage": "https://symfony.com",
  2492. "keywords": [
  2493. "compatibility",
  2494. "polyfill",
  2495. "portable",
  2496. "shim"
  2497. ],
  2498. "funding": [
  2499. {
  2500. "url": "https://symfony.com/sponsor",
  2501. "type": "custom"
  2502. },
  2503. {
  2504. "url": "https://github.com/fabpot",
  2505. "type": "github"
  2506. },
  2507. {
  2508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2509. "type": "tidelift"
  2510. }
  2511. ],
  2512. "time": "2021-05-27T09:17:38+00:00"
  2513. },
  2514. {
  2515. "name": "symfony/polyfill-php73",
  2516. "version": "v1.23.0",
  2517. "source": {
  2518. "type": "git",
  2519. "url": "https://github.com/symfony/polyfill-php73.git",
  2520. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  2521. },
  2522. "dist": {
  2523. "type": "zip",
  2524. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  2525. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  2526. "shasum": "",
  2527. "mirrors": [
  2528. {
  2529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2530. "preferred": true
  2531. }
  2532. ]
  2533. },
  2534. "require": {
  2535. "php": ">=7.1"
  2536. },
  2537. "type": "library",
  2538. "extra": {
  2539. "branch-alias": {
  2540. "dev-main": "1.23-dev"
  2541. },
  2542. "thanks": {
  2543. "name": "symfony/polyfill",
  2544. "url": "https://github.com/symfony/polyfill"
  2545. }
  2546. },
  2547. "autoload": {
  2548. "psr-4": {
  2549. "Symfony\\Polyfill\\Php73\\": ""
  2550. },
  2551. "files": [
  2552. "bootstrap.php"
  2553. ],
  2554. "classmap": [
  2555. "Resources/stubs"
  2556. ]
  2557. },
  2558. "notification-url": "https://packagist.org/downloads/",
  2559. "license": [
  2560. "MIT"
  2561. ],
  2562. "authors": [
  2563. {
  2564. "name": "Nicolas Grekas",
  2565. "email": "p@tchwork.com"
  2566. },
  2567. {
  2568. "name": "Symfony Community",
  2569. "homepage": "https://symfony.com/contributors"
  2570. }
  2571. ],
  2572. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  2573. "homepage": "https://symfony.com",
  2574. "keywords": [
  2575. "compatibility",
  2576. "polyfill",
  2577. "portable",
  2578. "shim"
  2579. ],
  2580. "funding": [
  2581. {
  2582. "url": "https://symfony.com/sponsor",
  2583. "type": "custom"
  2584. },
  2585. {
  2586. "url": "https://github.com/fabpot",
  2587. "type": "github"
  2588. },
  2589. {
  2590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2591. "type": "tidelift"
  2592. }
  2593. ],
  2594. "time": "2021-02-19T12:13:01+00:00"
  2595. },
  2596. {
  2597. "name": "symfony/polyfill-php80",
  2598. "version": "v1.23.1",
  2599. "source": {
  2600. "type": "git",
  2601. "url": "https://github.com/symfony/polyfill-php80.git",
  2602. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  2603. },
  2604. "dist": {
  2605. "type": "zip",
  2606. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  2607. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  2608. "shasum": "",
  2609. "mirrors": [
  2610. {
  2611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2612. "preferred": true
  2613. }
  2614. ]
  2615. },
  2616. "require": {
  2617. "php": ">=7.1"
  2618. },
  2619. "type": "library",
  2620. "extra": {
  2621. "branch-alias": {
  2622. "dev-main": "1.23-dev"
  2623. },
  2624. "thanks": {
  2625. "name": "symfony/polyfill",
  2626. "url": "https://github.com/symfony/polyfill"
  2627. }
  2628. },
  2629. "autoload": {
  2630. "psr-4": {
  2631. "Symfony\\Polyfill\\Php80\\": ""
  2632. },
  2633. "files": [
  2634. "bootstrap.php"
  2635. ],
  2636. "classmap": [
  2637. "Resources/stubs"
  2638. ]
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "authors": [
  2645. {
  2646. "name": "Ion Bazan",
  2647. "email": "ion.bazan@gmail.com"
  2648. },
  2649. {
  2650. "name": "Nicolas Grekas",
  2651. "email": "p@tchwork.com"
  2652. },
  2653. {
  2654. "name": "Symfony Community",
  2655. "homepage": "https://symfony.com/contributors"
  2656. }
  2657. ],
  2658. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  2659. "homepage": "https://symfony.com",
  2660. "keywords": [
  2661. "compatibility",
  2662. "polyfill",
  2663. "portable",
  2664. "shim"
  2665. ],
  2666. "funding": [
  2667. {
  2668. "url": "https://symfony.com/sponsor",
  2669. "type": "custom"
  2670. },
  2671. {
  2672. "url": "https://github.com/fabpot",
  2673. "type": "github"
  2674. },
  2675. {
  2676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2677. "type": "tidelift"
  2678. }
  2679. ],
  2680. "time": "2021-07-28T13:41:28+00:00"
  2681. },
  2682. {
  2683. "name": "symfony/service-contracts",
  2684. "version": "v2.5.0",
  2685. "source": {
  2686. "type": "git",
  2687. "url": "https://github.com/symfony/service-contracts.git",
  2688. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
  2689. },
  2690. "dist": {
  2691. "type": "zip",
  2692. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  2693. "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
  2694. "shasum": "",
  2695. "mirrors": [
  2696. {
  2697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2698. "preferred": true
  2699. }
  2700. ]
  2701. },
  2702. "require": {
  2703. "php": ">=7.2.5",
  2704. "psr/container": "^1.1",
  2705. "symfony/deprecation-contracts": "^2.1"
  2706. },
  2707. "conflict": {
  2708. "ext-psr": "<1.1|>=2"
  2709. },
  2710. "suggest": {
  2711. "symfony/service-implementation": ""
  2712. },
  2713. "type": "library",
  2714. "extra": {
  2715. "branch-alias": {
  2716. "dev-main": "2.5-dev"
  2717. },
  2718. "thanks": {
  2719. "name": "symfony/contracts",
  2720. "url": "https://github.com/symfony/contracts"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "Symfony\\Contracts\\Service\\": ""
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "MIT"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Nicolas Grekas",
  2735. "email": "p@tchwork.com"
  2736. },
  2737. {
  2738. "name": "Symfony Community",
  2739. "homepage": "https://symfony.com/contributors"
  2740. }
  2741. ],
  2742. "description": "Generic abstractions related to writing services",
  2743. "homepage": "https://symfony.com",
  2744. "keywords": [
  2745. "abstractions",
  2746. "contracts",
  2747. "decoupling",
  2748. "interfaces",
  2749. "interoperability",
  2750. "standards"
  2751. ],
  2752. "funding": [
  2753. {
  2754. "url": "https://symfony.com/sponsor",
  2755. "type": "custom"
  2756. },
  2757. {
  2758. "url": "https://github.com/fabpot",
  2759. "type": "github"
  2760. },
  2761. {
  2762. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2763. "type": "tidelift"
  2764. }
  2765. ],
  2766. "time": "2021-11-04T16:48:04+00:00"
  2767. },
  2768. {
  2769. "name": "tecnickcom/tcpdf",
  2770. "version": "6.6.2",
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://mirrors.cloud.tencent.com/repository/composer/tecnickcom/tcpdf/6.6.2/tecnickcom-tcpdf-6.6.2.zip",
  2774. "reference": "e3cffc9bcbc76e89e167e9eb0bbda0cab7518459",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "php": ">=5.3.0"
  2779. },
  2780. "type": "library",
  2781. "autoload": {
  2782. "classmap": [
  2783. "config",
  2784. "include",
  2785. "tcpdf.php",
  2786. "tcpdf_parser.php",
  2787. "tcpdf_import.php",
  2788. "tcpdf_barcodes_1d.php",
  2789. "tcpdf_barcodes_2d.php",
  2790. "include/tcpdf_colors.php",
  2791. "include/tcpdf_filters.php",
  2792. "include/tcpdf_font_data.php",
  2793. "include/tcpdf_fonts.php",
  2794. "include/tcpdf_images.php",
  2795. "include/tcpdf_static.php",
  2796. "include/barcodes/datamatrix.php",
  2797. "include/barcodes/pdf417.php",
  2798. "include/barcodes/qrcode.php"
  2799. ]
  2800. },
  2801. "license": [
  2802. "LGPL-3.0-only"
  2803. ],
  2804. "authors": [
  2805. {
  2806. "name": "Nicola Asuni",
  2807. "email": "info@tecnick.com",
  2808. "role": "lead"
  2809. }
  2810. ],
  2811. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  2812. "homepage": "http://www.tcpdf.org/",
  2813. "keywords": [
  2814. "PDFD32000-2008",
  2815. "TCPDF",
  2816. "barcodes",
  2817. "datamatrix",
  2818. "pdf",
  2819. "pdf417",
  2820. "qrcode"
  2821. ],
  2822. "time": "2022-12-17T10:28:59+00:00"
  2823. },
  2824. {
  2825. "name": "webmozart/assert",
  2826. "version": "1.10.0",
  2827. "source": {
  2828. "type": "git",
  2829. "url": "https://github.com/webmozarts/assert.git",
  2830. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  2831. },
  2832. "dist": {
  2833. "type": "zip",
  2834. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  2835. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  2836. "shasum": "",
  2837. "mirrors": [
  2838. {
  2839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2840. "preferred": true
  2841. }
  2842. ]
  2843. },
  2844. "require": {
  2845. "php": "^7.2 || ^8.0",
  2846. "symfony/polyfill-ctype": "^1.8"
  2847. },
  2848. "conflict": {
  2849. "phpstan/phpstan": "<0.12.20",
  2850. "vimeo/psalm": "<4.6.1 || 4.6.2"
  2851. },
  2852. "require-dev": {
  2853. "phpunit/phpunit": "^8.5.13"
  2854. },
  2855. "type": "library",
  2856. "extra": {
  2857. "branch-alias": {
  2858. "dev-master": "1.10-dev"
  2859. }
  2860. },
  2861. "autoload": {
  2862. "psr-4": {
  2863. "Webmozart\\Assert\\": "src/"
  2864. }
  2865. },
  2866. "notification-url": "https://packagist.org/downloads/",
  2867. "license": [
  2868. "MIT"
  2869. ],
  2870. "authors": [
  2871. {
  2872. "name": "Bernhard Schussek",
  2873. "email": "bschussek@gmail.com"
  2874. }
  2875. ],
  2876. "description": "Assertions to validate method input/output with nice error messages.",
  2877. "keywords": [
  2878. "assert",
  2879. "check",
  2880. "validate"
  2881. ],
  2882. "time": "2021-03-09T10:59:23+00:00"
  2883. },
  2884. {
  2885. "name": "yiisoft/yii2",
  2886. "version": "2.0.43",
  2887. "dist": {
  2888. "type": "zip",
  2889. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/f370955faa3067d9b27879aaf14b0978a805cd59",
  2890. "reference": "f370955faa3067d9b27879aaf14b0978a805cd59",
  2891. "shasum": ""
  2892. },
  2893. "require": {
  2894. "bower-asset/inputmask": "~3.2.2 | ~3.3.5",
  2895. "bower-asset/jquery": "3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  2896. "bower-asset/punycode": "1.3.*",
  2897. "bower-asset/yii2-pjax": "~2.0.1",
  2898. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  2899. "ext-ctype": "*",
  2900. "ext-mbstring": "*",
  2901. "ezyang/htmlpurifier": "~4.6",
  2902. "lib-pcre": "*",
  2903. "paragonie/random_compat": ">=1",
  2904. "php": ">=5.4.0",
  2905. "yiisoft/yii2-composer": "~2.0.4"
  2906. },
  2907. "bin": [
  2908. "yii"
  2909. ],
  2910. "type": "library",
  2911. "extra": {
  2912. "branch-alias": {
  2913. "dev-master": "2.0.x-dev"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "psr-4": {
  2918. "yii\\": ""
  2919. }
  2920. },
  2921. "notification-url": "https://packagist.org/downloads/",
  2922. "license": [
  2923. "BSD-3-Clause"
  2924. ],
  2925. "authors": [
  2926. {
  2927. "name": "Qiang Xue",
  2928. "email": "qiang.xue@gmail.com",
  2929. "homepage": "https://www.yiiframework.com/",
  2930. "role": "Founder and project lead"
  2931. },
  2932. {
  2933. "name": "Alexander Makarov",
  2934. "email": "sam@rmcreative.ru",
  2935. "homepage": "https://rmcreative.ru/",
  2936. "role": "Core framework development"
  2937. },
  2938. {
  2939. "name": "Maurizio Domba",
  2940. "homepage": "http://mdomba.info/",
  2941. "role": "Core framework development"
  2942. },
  2943. {
  2944. "name": "Carsten Brandt",
  2945. "email": "mail@cebe.cc",
  2946. "homepage": "https://cebe.cc/",
  2947. "role": "Core framework development"
  2948. },
  2949. {
  2950. "name": "Timur Ruziev",
  2951. "email": "resurtm@gmail.com",
  2952. "homepage": "http://resurtm.com/",
  2953. "role": "Core framework development"
  2954. },
  2955. {
  2956. "name": "Paul Klimov",
  2957. "email": "klimov.paul@gmail.com",
  2958. "role": "Core framework development"
  2959. },
  2960. {
  2961. "name": "Dmitry Naumenko",
  2962. "email": "d.naumenko.a@gmail.com",
  2963. "role": "Core framework development"
  2964. },
  2965. {
  2966. "name": "Boudewijn Vahrmeijer",
  2967. "email": "info@dynasource.eu",
  2968. "homepage": "http://dynasource.eu",
  2969. "role": "Core framework development"
  2970. }
  2971. ],
  2972. "description": "Yii PHP Framework Version 2",
  2973. "homepage": "https://www.yiiframework.com/",
  2974. "keywords": [
  2975. "framework",
  2976. "yii2"
  2977. ],
  2978. "funding": [
  2979. {
  2980. "url": "https://github.com/yiisoft",
  2981. "type": "github"
  2982. },
  2983. {
  2984. "url": "https://opencollective.com/yiisoft",
  2985. "type": "open_collective"
  2986. },
  2987. {
  2988. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  2989. "type": "tidelift"
  2990. }
  2991. ],
  2992. "time": "2021-08-09T17:38:43+00:00"
  2993. },
  2994. {
  2995. "name": "yiisoft/yii2-bootstrap",
  2996. "version": "2.0.11",
  2997. "dist": {
  2998. "type": "zip",
  2999. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap/zipball/83d144f4089adaa7064ad60dc4c1436daa2eb30e",
  3000. "reference": "83d144f4089adaa7064ad60dc4c1436daa2eb30e",
  3001. "shasum": ""
  3002. },
  3003. "require": {
  3004. "bower-asset/bootstrap": "3.4.* | 3.3.* | 3.2.* | 3.1.*",
  3005. "yiisoft/yii2": "~2.0.6"
  3006. },
  3007. "require-dev": {
  3008. "cweagans/composer-patches": "^1.7",
  3009. "phpunit/phpunit": "4.8.34"
  3010. },
  3011. "type": "yii2-extension",
  3012. "extra": {
  3013. "branch-alias": {
  3014. "dev-master": "2.0.x-dev"
  3015. },
  3016. "patches": {
  3017. "phpunit/phpunit-mock-objects": {
  3018. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  3019. },
  3020. "phpunit/phpunit": {
  3021. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  3022. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  3023. }
  3024. }
  3025. },
  3026. "autoload": {
  3027. "psr-4": {
  3028. "yii\\bootstrap\\": "src"
  3029. }
  3030. },
  3031. "notification-url": "https://packagist.org/downloads/",
  3032. "license": [
  3033. "BSD-3-Clause"
  3034. ],
  3035. "authors": [
  3036. {
  3037. "name": "Qiang Xue",
  3038. "email": "qiang.xue@gmail.com",
  3039. "homepage": "http://www.yiiframework.com/"
  3040. },
  3041. {
  3042. "name": "Alexander Makarov",
  3043. "email": "sam@rmcreative.ru",
  3044. "homepage": "http://rmcreative.ru/"
  3045. },
  3046. {
  3047. "name": "Antonio Ramirez",
  3048. "email": "amigo.cobos@gmail.com"
  3049. },
  3050. {
  3051. "name": "Paul Klimov",
  3052. "email": "klimov.paul@gmail.com"
  3053. }
  3054. ],
  3055. "description": "The Twitter Bootstrap extension for the Yii framework",
  3056. "keywords": [
  3057. "bootstrap",
  3058. "yii2"
  3059. ],
  3060. "funding": [
  3061. {
  3062. "url": "https://github.com/yiisoft",
  3063. "type": "github"
  3064. },
  3065. {
  3066. "url": "https://opencollective.com/yiisoft",
  3067. "type": "open_collective"
  3068. },
  3069. {
  3070. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-bootstrap",
  3071. "type": "tidelift"
  3072. }
  3073. ],
  3074. "time": "2021-08-09T20:54:06+00:00"
  3075. },
  3076. {
  3077. "name": "yiisoft/yii2-composer",
  3078. "version": "2.0.10",
  3079. "dist": {
  3080. "type": "zip",
  3081. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/94bb3f66e779e2774f8776d6e1bdeab402940510",
  3082. "reference": "94bb3f66e779e2774f8776d6e1bdeab402940510",
  3083. "shasum": ""
  3084. },
  3085. "require": {
  3086. "composer-plugin-api": "^1.0 | ^2.0"
  3087. },
  3088. "require-dev": {
  3089. "composer/composer": "^1.0 | ^2.0@dev",
  3090. "phpunit/phpunit": "<7"
  3091. },
  3092. "type": "composer-plugin",
  3093. "extra": {
  3094. "class": "yii\\composer\\Plugin",
  3095. "branch-alias": {
  3096. "dev-master": "2.0.x-dev"
  3097. }
  3098. },
  3099. "autoload": {
  3100. "psr-4": {
  3101. "yii\\composer\\": ""
  3102. }
  3103. },
  3104. "notification-url": "https://packagist.org/downloads/",
  3105. "license": [
  3106. "BSD-3-Clause"
  3107. ],
  3108. "authors": [
  3109. {
  3110. "name": "Qiang Xue",
  3111. "email": "qiang.xue@gmail.com"
  3112. },
  3113. {
  3114. "name": "Carsten Brandt",
  3115. "email": "mail@cebe.cc"
  3116. }
  3117. ],
  3118. "description": "The composer plugin for Yii extension installer",
  3119. "keywords": [
  3120. "composer",
  3121. "extension installer",
  3122. "yii2"
  3123. ],
  3124. "funding": [
  3125. {
  3126. "url": "https://github.com/yiisoft",
  3127. "type": "github"
  3128. },
  3129. {
  3130. "url": "https://opencollective.com/yiisoft",
  3131. "type": "open_collective"
  3132. },
  3133. {
  3134. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  3135. "type": "tidelift"
  3136. }
  3137. ],
  3138. "time": "2020-06-24T00:04:01+00:00"
  3139. },
  3140. {
  3141. "name": "yiisoft/yii2-httpclient",
  3142. "version": "2.0.14",
  3143. "dist": {
  3144. "type": "zip",
  3145. "url": "https://api.github.com/repos/yiisoft/yii2-httpclient/zipball/50d670d2e1a30a354c27aeebf806a2db16954836",
  3146. "reference": "50d670d2e1a30a354c27aeebf806a2db16954836",
  3147. "shasum": ""
  3148. },
  3149. "require": {
  3150. "paragonie/random_compat": ">=1",
  3151. "yiisoft/yii2": "~2.0.13"
  3152. },
  3153. "require-dev": {
  3154. "cweagans/composer-patches": "^1.7",
  3155. "phpunit/phpunit": "4.8.34"
  3156. },
  3157. "type": "yii2-extension",
  3158. "extra": {
  3159. "branch-alias": {
  3160. "dev-master": "2.0.x-dev"
  3161. },
  3162. "composer-exit-on-patch-failure": true,
  3163. "patches": {
  3164. "phpunit/phpunit-mock-objects": {
  3165. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  3166. },
  3167. "phpunit/phpunit": {
  3168. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  3169. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  3170. }
  3171. }
  3172. },
  3173. "autoload": {
  3174. "psr-4": {
  3175. "yii\\httpclient\\": "src"
  3176. }
  3177. },
  3178. "notification-url": "https://packagist.org/downloads/",
  3179. "license": [
  3180. "BSD-3-Clause"
  3181. ],
  3182. "authors": [
  3183. {
  3184. "name": "Paul Klimov",
  3185. "email": "klimov.paul@gmail.com"
  3186. }
  3187. ],
  3188. "description": "HTTP client extension for the Yii framework",
  3189. "keywords": [
  3190. "curl",
  3191. "http",
  3192. "httpclient",
  3193. "yii2"
  3194. ],
  3195. "funding": [
  3196. {
  3197. "url": "https://github.com/yiisoft",
  3198. "type": "github"
  3199. },
  3200. {
  3201. "url": "https://opencollective.com/yiisoft",
  3202. "type": "open_collective"
  3203. },
  3204. {
  3205. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-httpclient",
  3206. "type": "tidelift"
  3207. }
  3208. ],
  3209. "time": "2021-08-09T21:10:49+00:00"
  3210. },
  3211. {
  3212. "name": "yiisoft/yii2-mongodb",
  3213. "version": "2.1.12",
  3214. "dist": {
  3215. "type": "zip",
  3216. "url": "https://api.github.com/repos/yiisoft/yii2-mongodb/zipball/4a74369a2b233f2def02579766e1eceadb8964be",
  3217. "reference": "4a74369a2b233f2def02579766e1eceadb8964be",
  3218. "shasum": ""
  3219. },
  3220. "require": {
  3221. "ext-mongodb": ">=1.0.0",
  3222. "paragonie/random_compat": ">=1",
  3223. "yiisoft/yii2": "~2.0.39"
  3224. },
  3225. "require-dev": {
  3226. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  3227. },
  3228. "type": "yii2-extension",
  3229. "extra": {
  3230. "branch-alias": {
  3231. "dev-master": "2.1.x-dev"
  3232. }
  3233. },
  3234. "autoload": {
  3235. "psr-4": {
  3236. "yii\\mongodb\\": "src"
  3237. }
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "BSD-3-Clause"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "Paul Klimov",
  3246. "email": "klimov.paul@gmail.com"
  3247. }
  3248. ],
  3249. "description": "MongoDB extension for the Yii framework",
  3250. "keywords": [
  3251. "GridFS",
  3252. "active-record",
  3253. "mongo",
  3254. "mongodb",
  3255. "yii2"
  3256. ],
  3257. "funding": [
  3258. {
  3259. "url": "https://github.com/yiisoft",
  3260. "type": "github"
  3261. },
  3262. {
  3263. "url": "https://opencollective.com/yiisoft",
  3264. "type": "open_collective"
  3265. },
  3266. {
  3267. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-mongodb",
  3268. "type": "tidelift"
  3269. }
  3270. ],
  3271. "time": "2021-08-09T21:15:42+00:00"
  3272. },
  3273. {
  3274. "name": "yiisoft/yii2-redis",
  3275. "version": "2.0.16",
  3276. "dist": {
  3277. "type": "zip",
  3278. "url": "https://api.github.com/repos/yiisoft/yii2-redis/zipball/1b9efe97d8add594256b51089fbf7a56f31e3c9c",
  3279. "reference": "1b9efe97d8add594256b51089fbf7a56f31e3c9c",
  3280. "shasum": ""
  3281. },
  3282. "require": {
  3283. "ext-openssl": "*",
  3284. "yiisoft/yii2": "~2.0.39"
  3285. },
  3286. "require-dev": {
  3287. "phpunit/phpunit": "<7",
  3288. "yiisoft/yii2-dev": "~2.0.39"
  3289. },
  3290. "type": "yii2-extension",
  3291. "extra": {
  3292. "branch-alias": {
  3293. "dev-master": "2.0.x-dev"
  3294. }
  3295. },
  3296. "autoload": {
  3297. "psr-4": {
  3298. "yii\\redis\\": "src"
  3299. }
  3300. },
  3301. "notification-url": "https://packagist.org/downloads/",
  3302. "license": [
  3303. "BSD-3-Clause"
  3304. ],
  3305. "authors": [
  3306. {
  3307. "name": "Carsten Brandt",
  3308. "email": "mail@cebe.cc"
  3309. }
  3310. ],
  3311. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  3312. "keywords": [
  3313. "active-record",
  3314. "cache",
  3315. "redis",
  3316. "session",
  3317. "yii2"
  3318. ],
  3319. "funding": [
  3320. {
  3321. "url": "https://github.com/yiisoft",
  3322. "type": "github"
  3323. },
  3324. {
  3325. "url": "https://opencollective.com/yiisoft",
  3326. "type": "open_collective"
  3327. },
  3328. {
  3329. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-redis",
  3330. "type": "tidelift"
  3331. }
  3332. ],
  3333. "time": "2021-10-04T11:28:17+00:00"
  3334. },
  3335. {
  3336. "name": "yiisoft/yii2-swiftmailer",
  3337. "version": "2.1.2",
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/09659a55959f9e64b8178d842b64a9ffae42b994",
  3341. "reference": "09659a55959f9e64b8178d842b64a9ffae42b994",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "swiftmailer/swiftmailer": "~6.0",
  3346. "yiisoft/yii2": ">=2.0.4"
  3347. },
  3348. "type": "yii2-extension",
  3349. "extra": {
  3350. "branch-alias": {
  3351. "dev-master": "2.1.x-dev"
  3352. }
  3353. },
  3354. "autoload": {
  3355. "psr-4": {
  3356. "yii\\swiftmailer\\": "src"
  3357. }
  3358. },
  3359. "notification-url": "https://packagist.org/downloads/",
  3360. "license": [
  3361. "BSD-3-Clause"
  3362. ],
  3363. "authors": [
  3364. {
  3365. "name": "Paul Klimov",
  3366. "email": "klimov.paul@gmail.com"
  3367. }
  3368. ],
  3369. "description": "The SwiftMailer integration for the Yii framework",
  3370. "keywords": [
  3371. "email",
  3372. "mail",
  3373. "mailer",
  3374. "swift",
  3375. "swiftmailer",
  3376. "yii2"
  3377. ],
  3378. "time": "2018-09-23T22:00:47+00:00"
  3379. }
  3380. ],
  3381. "packages-dev": [
  3382. {
  3383. "name": "behat/gherkin",
  3384. "version": "v4.9.0",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/Behat/Gherkin.git",
  3388. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
  3393. "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
  3394. "shasum": "",
  3395. "mirrors": [
  3396. {
  3397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3398. "preferred": true
  3399. }
  3400. ]
  3401. },
  3402. "require": {
  3403. "php": "~7.2|~8.0"
  3404. },
  3405. "require-dev": {
  3406. "cucumber/cucumber": "dev-gherkin-22.0.0",
  3407. "phpunit/phpunit": "~8|~9",
  3408. "symfony/yaml": "~3|~4|~5"
  3409. },
  3410. "suggest": {
  3411. "symfony/yaml": "If you want to parse features, represented in YAML files"
  3412. },
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "4.x-dev"
  3417. }
  3418. },
  3419. "autoload": {
  3420. "psr-0": {
  3421. "Behat\\Gherkin": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Konstantin Kudryashov",
  3431. "email": "ever.zet@gmail.com",
  3432. "homepage": "http://everzet.com"
  3433. }
  3434. ],
  3435. "description": "Gherkin DSL parser for PHP",
  3436. "homepage": "http://behat.org/",
  3437. "keywords": [
  3438. "BDD",
  3439. "Behat",
  3440. "Cucumber",
  3441. "DSL",
  3442. "gherkin",
  3443. "parser"
  3444. ],
  3445. "time": "2021-10-12T13:05:09+00:00"
  3446. },
  3447. {
  3448. "name": "bower-asset/typeahead.js",
  3449. "version": "v0.11.1",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "git@github.com:twitter/typeahead.js.git",
  3453. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/twitter/typeahead.js/zipball/588440f66559714280628a4f9799f0c4eb880a4a",
  3458. "reference": "588440f66559714280628a4f9799f0c4eb880a4a"
  3459. },
  3460. "require": {
  3461. "bower-asset/jquery": ">=1.7"
  3462. },
  3463. "type": "bower-asset"
  3464. },
  3465. {
  3466. "name": "codeception/base",
  3467. "version": "2.5.6",
  3468. "source": {
  3469. "type": "git",
  3470. "url": "https://github.com/Codeception/base.git",
  3471. "reference": "aace5bab5593c93d8473b620f70754135a1eb4f0"
  3472. },
  3473. "dist": {
  3474. "type": "zip",
  3475. "url": "https://api.github.com/repos/Codeception/base/zipball/aace5bab5593c93d8473b620f70754135a1eb4f0",
  3476. "reference": "aace5bab5593c93d8473b620f70754135a1eb4f0",
  3477. "shasum": "",
  3478. "mirrors": [
  3479. {
  3480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3481. "preferred": true
  3482. }
  3483. ]
  3484. },
  3485. "require": {
  3486. "behat/gherkin": "^4.4.0",
  3487. "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
  3488. "codeception/stub": "^2.0",
  3489. "ext-curl": "*",
  3490. "ext-json": "*",
  3491. "ext-mbstring": "*",
  3492. "guzzlehttp/psr7": "~1.0",
  3493. "php": ">=5.6.0 <8.0",
  3494. "symfony/browser-kit": ">=2.7 <5.0",
  3495. "symfony/console": ">=2.7 <5.0",
  3496. "symfony/css-selector": ">=2.7 <5.0",
  3497. "symfony/dom-crawler": ">=2.7 <5.0",
  3498. "symfony/event-dispatcher": ">=2.7 <5.0",
  3499. "symfony/finder": ">=2.7 <5.0",
  3500. "symfony/yaml": ">=2.7 <5.0"
  3501. },
  3502. "require-dev": {
  3503. "codeception/specify": "~0.3",
  3504. "facebook/graph-sdk": "~5.3",
  3505. "flow/jsonpath": "~0.2",
  3506. "monolog/monolog": "~1.8",
  3507. "pda/pheanstalk": "~3.0",
  3508. "php-amqplib/php-amqplib": "~2.4",
  3509. "predis/predis": "^1.0",
  3510. "squizlabs/php_codesniffer": "~2.0",
  3511. "symfony/process": ">=2.7 <5.0",
  3512. "vlucas/phpdotenv": "^3.0"
  3513. },
  3514. "suggest": {
  3515. "aws/aws-sdk-php": "For using AWS Auth in REST module and Queue module",
  3516. "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests",
  3517. "codeception/specify": "BDD-style code blocks",
  3518. "codeception/verify": "BDD-style assertions",
  3519. "flow/jsonpath": "For using JSONPath in REST module",
  3520. "league/factory-muffin": "For DataFactory module",
  3521. "league/factory-muffin-faker": "For Faker support in DataFactory module",
  3522. "phpseclib/phpseclib": "for SFTP option in FTP Module",
  3523. "stecman/symfony-console-completion": "For BASH autocompletion",
  3524. "symfony/phpunit-bridge": "For phpunit-bridge support"
  3525. },
  3526. "bin": [
  3527. "codecept"
  3528. ],
  3529. "type": "library",
  3530. "extra": {
  3531. "branch-alias": []
  3532. },
  3533. "autoload": {
  3534. "psr-4": {
  3535. "Codeception\\": "src/Codeception",
  3536. "Codeception\\Extension\\": "ext"
  3537. }
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Michael Bodnarchuk",
  3546. "email": "davert@mail.ua",
  3547. "homepage": "http://codegyre.com"
  3548. }
  3549. ],
  3550. "description": "BDD-style testing framework",
  3551. "homepage": "http://codeception.com/",
  3552. "keywords": [
  3553. "BDD",
  3554. "TDD",
  3555. "acceptance testing",
  3556. "functional testing",
  3557. "unit testing"
  3558. ],
  3559. "abandoned": true,
  3560. "time": "2019-04-24T11:36:34+00:00"
  3561. },
  3562. {
  3563. "name": "codeception/phpunit-wrapper",
  3564. "version": "7.8.2",
  3565. "source": {
  3566. "type": "git",
  3567. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  3568. "reference": "cafed18048826790c527843f9b85e8cc79b866f1"
  3569. },
  3570. "dist": {
  3571. "type": "zip",
  3572. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/cafed18048826790c527843f9b85e8cc79b866f1",
  3573. "reference": "cafed18048826790c527843f9b85e8cc79b866f1",
  3574. "shasum": "",
  3575. "mirrors": [
  3576. {
  3577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3578. "preferred": true
  3579. }
  3580. ]
  3581. },
  3582. "require": {
  3583. "phpunit/php-code-coverage": "^6.0",
  3584. "phpunit/phpunit": "7.5.*",
  3585. "sebastian/comparator": "^3.0",
  3586. "sebastian/diff": "^3.0"
  3587. },
  3588. "require-dev": {
  3589. "codeception/specify": "*",
  3590. "vlucas/phpdotenv": "^3.0"
  3591. },
  3592. "type": "library",
  3593. "autoload": {
  3594. "psr-4": {
  3595. "Codeception\\PHPUnit\\": "src/"
  3596. }
  3597. },
  3598. "notification-url": "https://packagist.org/downloads/",
  3599. "license": [
  3600. "MIT"
  3601. ],
  3602. "authors": [
  3603. {
  3604. "name": "Davert",
  3605. "email": "davert.php@resend.cc"
  3606. }
  3607. ],
  3608. "description": "PHPUnit classes used by Codeception",
  3609. "time": "2020-12-28T14:00:26+00:00"
  3610. },
  3611. {
  3612. "name": "codeception/stub",
  3613. "version": "2.1.0",
  3614. "source": {
  3615. "type": "git",
  3616. "url": "https://github.com/Codeception/Stub.git",
  3617. "reference": "853657f988942f7afb69becf3fd0059f192c705a"
  3618. },
  3619. "dist": {
  3620. "type": "zip",
  3621. "url": "https://api.github.com/repos/Codeception/Stub/zipball/853657f988942f7afb69becf3fd0059f192c705a",
  3622. "reference": "853657f988942f7afb69becf3fd0059f192c705a",
  3623. "shasum": "",
  3624. "mirrors": [
  3625. {
  3626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3627. "preferred": true
  3628. }
  3629. ]
  3630. },
  3631. "require": {
  3632. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3"
  3633. },
  3634. "type": "library",
  3635. "autoload": {
  3636. "psr-4": {
  3637. "Codeception\\": "src/"
  3638. }
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "MIT"
  3643. ],
  3644. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  3645. "time": "2019-03-02T15:35:10+00:00"
  3646. },
  3647. {
  3648. "name": "codeception/verify",
  3649. "version": "0.3.3",
  3650. "source": {
  3651. "type": "git",
  3652. "url": "https://github.com/Codeception/Verify.git",
  3653. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c"
  3654. },
  3655. "dist": {
  3656. "type": "zip",
  3657. "url": "https://api.github.com/repos/Codeception/Verify/zipball/5d649dda453cd814dadc4bb053060cd2c6bb4b4c",
  3658. "reference": "5d649dda453cd814dadc4bb053060cd2c6bb4b4c",
  3659. "shasum": "",
  3660. "mirrors": [
  3661. {
  3662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3663. "preferred": true
  3664. }
  3665. ]
  3666. },
  3667. "require-dev": {
  3668. "phpunit/phpunit": "~4.0"
  3669. },
  3670. "type": "library",
  3671. "autoload": {
  3672. "files": [
  3673. "src/Codeception/function.php"
  3674. ]
  3675. },
  3676. "notification-url": "https://packagist.org/downloads/",
  3677. "license": [
  3678. "MIT"
  3679. ],
  3680. "authors": [
  3681. {
  3682. "name": "Michael Bodnarchuk",
  3683. "email": "davert.php@mailican.com"
  3684. }
  3685. ],
  3686. "description": "BDD assertion library for PHPUnit",
  3687. "time": "2017-01-09T10:58:51+00:00"
  3688. },
  3689. {
  3690. "name": "doctrine/instantiator",
  3691. "version": "1.4.0",
  3692. "source": {
  3693. "type": "git",
  3694. "url": "https://github.com/doctrine/instantiator.git",
  3695. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  3696. },
  3697. "dist": {
  3698. "type": "zip",
  3699. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  3700. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  3701. "shasum": "",
  3702. "mirrors": [
  3703. {
  3704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3705. "preferred": true
  3706. }
  3707. ]
  3708. },
  3709. "require": {
  3710. "php": "^7.1 || ^8.0"
  3711. },
  3712. "require-dev": {
  3713. "doctrine/coding-standard": "^8.0",
  3714. "ext-pdo": "*",
  3715. "ext-phar": "*",
  3716. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  3717. "phpstan/phpstan": "^0.12",
  3718. "phpstan/phpstan-phpunit": "^0.12",
  3719. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3720. },
  3721. "type": "library",
  3722. "autoload": {
  3723. "psr-4": {
  3724. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  3725. }
  3726. },
  3727. "notification-url": "https://packagist.org/downloads/",
  3728. "license": [
  3729. "MIT"
  3730. ],
  3731. "authors": [
  3732. {
  3733. "name": "Marco Pivetta",
  3734. "email": "ocramius@gmail.com",
  3735. "homepage": "https://ocramius.github.io/"
  3736. }
  3737. ],
  3738. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  3739. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  3740. "keywords": [
  3741. "constructor",
  3742. "instantiate"
  3743. ],
  3744. "funding": [
  3745. {
  3746. "url": "https://www.doctrine-project.org/sponsorship.html",
  3747. "type": "custom"
  3748. },
  3749. {
  3750. "url": "https://www.patreon.com/phpdoctrine",
  3751. "type": "patreon"
  3752. },
  3753. {
  3754. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  3755. "type": "tidelift"
  3756. }
  3757. ],
  3758. "time": "2020-11-10T18:47:58+00:00"
  3759. },
  3760. {
  3761. "name": "fakerphp/faker",
  3762. "version": "v1.17.0",
  3763. "source": {
  3764. "type": "git",
  3765. "url": "https://github.com/FakerPHP/Faker.git",
  3766. "reference": "b85e9d44eae8c52cca7aa0939483611f7232b669"
  3767. },
  3768. "dist": {
  3769. "type": "zip",
  3770. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/b85e9d44eae8c52cca7aa0939483611f7232b669",
  3771. "reference": "b85e9d44eae8c52cca7aa0939483611f7232b669",
  3772. "shasum": "",
  3773. "mirrors": [
  3774. {
  3775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3776. "preferred": true
  3777. }
  3778. ]
  3779. },
  3780. "require": {
  3781. "php": "^7.1 || ^8.0",
  3782. "psr/container": "^1.0 || ^2.0",
  3783. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  3784. },
  3785. "conflict": {
  3786. "fzaninotto/faker": "*"
  3787. },
  3788. "require-dev": {
  3789. "bamarni/composer-bin-plugin": "^1.4.1",
  3790. "ext-intl": "*",
  3791. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  3792. },
  3793. "suggest": {
  3794. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  3795. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  3796. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  3797. "ext-mbstring": "Required for multibyte Unicode string functionality."
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-main": "v1.17-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Faker\\": "src/Faker/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "François Zaninotto"
  3817. }
  3818. ],
  3819. "description": "Faker is a PHP library that generates fake data for you.",
  3820. "keywords": [
  3821. "data",
  3822. "faker",
  3823. "fixtures"
  3824. ],
  3825. "time": "2021-12-05T17:14:47+00:00"
  3826. },
  3827. {
  3828. "name": "guzzlehttp/psr7",
  3829. "version": "1.8.3",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/guzzle/psr7.git",
  3833. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/guzzle/psr7/zipball/1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  3838. "reference": "1afdd860a2566ed3c2b0b4a3de6e23434a79ec85",
  3839. "shasum": "",
  3840. "mirrors": [
  3841. {
  3842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3843. "preferred": true
  3844. }
  3845. ]
  3846. },
  3847. "require": {
  3848. "php": ">=5.4.0",
  3849. "psr/http-message": "~1.0",
  3850. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  3851. },
  3852. "provide": {
  3853. "psr/http-message-implementation": "1.0"
  3854. },
  3855. "require-dev": {
  3856. "ext-zlib": "*",
  3857. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  3858. },
  3859. "suggest": {
  3860. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  3861. },
  3862. "type": "library",
  3863. "extra": {
  3864. "branch-alias": {
  3865. "dev-master": "1.7-dev"
  3866. }
  3867. },
  3868. "autoload": {
  3869. "psr-4": {
  3870. "GuzzleHttp\\Psr7\\": "src/"
  3871. },
  3872. "files": [
  3873. "src/functions_include.php"
  3874. ]
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "MIT"
  3879. ],
  3880. "authors": [
  3881. {
  3882. "name": "Graham Campbell",
  3883. "email": "hello@gjcampbell.co.uk",
  3884. "homepage": "https://github.com/GrahamCampbell"
  3885. },
  3886. {
  3887. "name": "Michael Dowling",
  3888. "email": "mtdowling@gmail.com",
  3889. "homepage": "https://github.com/mtdowling"
  3890. },
  3891. {
  3892. "name": "George Mponos",
  3893. "email": "gmponos@gmail.com",
  3894. "homepage": "https://github.com/gmponos"
  3895. },
  3896. {
  3897. "name": "Tobias Nyholm",
  3898. "email": "tobias.nyholm@gmail.com",
  3899. "homepage": "https://github.com/Nyholm"
  3900. },
  3901. {
  3902. "name": "Márk Sági-Kazár",
  3903. "email": "mark.sagikazar@gmail.com",
  3904. "homepage": "https://github.com/sagikazarmark"
  3905. },
  3906. {
  3907. "name": "Tobias Schultze",
  3908. "email": "webmaster@tubo-world.de",
  3909. "homepage": "https://github.com/Tobion"
  3910. }
  3911. ],
  3912. "description": "PSR-7 message implementation that also provides common utility methods",
  3913. "keywords": [
  3914. "http",
  3915. "message",
  3916. "psr-7",
  3917. "request",
  3918. "response",
  3919. "stream",
  3920. "uri",
  3921. "url"
  3922. ],
  3923. "funding": [
  3924. {
  3925. "url": "https://github.com/GrahamCampbell",
  3926. "type": "github"
  3927. },
  3928. {
  3929. "url": "https://github.com/Nyholm",
  3930. "type": "github"
  3931. },
  3932. {
  3933. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  3934. "type": "tidelift"
  3935. }
  3936. ],
  3937. "time": "2021-10-05T13:56:00+00:00"
  3938. },
  3939. {
  3940. "name": "myclabs/deep-copy",
  3941. "version": "1.10.2",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/myclabs/DeepCopy.git",
  3945. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  3950. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  3951. "shasum": "",
  3952. "mirrors": [
  3953. {
  3954. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3955. "preferred": true
  3956. }
  3957. ]
  3958. },
  3959. "require": {
  3960. "php": "^7.1 || ^8.0"
  3961. },
  3962. "replace": {
  3963. "myclabs/deep-copy": "self.version"
  3964. },
  3965. "require-dev": {
  3966. "doctrine/collections": "^1.0",
  3967. "doctrine/common": "^2.6",
  3968. "phpunit/phpunit": "^7.1"
  3969. },
  3970. "type": "library",
  3971. "autoload": {
  3972. "psr-4": {
  3973. "DeepCopy\\": "src/DeepCopy/"
  3974. },
  3975. "files": [
  3976. "src/DeepCopy/deep_copy.php"
  3977. ]
  3978. },
  3979. "notification-url": "https://packagist.org/downloads/",
  3980. "license": [
  3981. "MIT"
  3982. ],
  3983. "description": "Create deep copies (clones) of your objects",
  3984. "keywords": [
  3985. "clone",
  3986. "copy",
  3987. "duplicate",
  3988. "object",
  3989. "object graph"
  3990. ],
  3991. "funding": [
  3992. {
  3993. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  3994. "type": "tidelift"
  3995. }
  3996. ],
  3997. "time": "2020-11-13T09:40:50+00:00"
  3998. },
  3999. {
  4000. "name": "phar-io/manifest",
  4001. "version": "1.0.3",
  4002. "source": {
  4003. "type": "git",
  4004. "url": "https://github.com/phar-io/manifest.git",
  4005. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
  4006. },
  4007. "dist": {
  4008. "type": "zip",
  4009. "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4010. "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
  4011. "shasum": "",
  4012. "mirrors": [
  4013. {
  4014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4015. "preferred": true
  4016. }
  4017. ]
  4018. },
  4019. "require": {
  4020. "ext-dom": "*",
  4021. "ext-phar": "*",
  4022. "phar-io/version": "^2.0",
  4023. "php": "^5.6 || ^7.0"
  4024. },
  4025. "type": "library",
  4026. "extra": {
  4027. "branch-alias": {
  4028. "dev-master": "1.0.x-dev"
  4029. }
  4030. },
  4031. "autoload": {
  4032. "classmap": [
  4033. "src/"
  4034. ]
  4035. },
  4036. "notification-url": "https://packagist.org/downloads/",
  4037. "license": [
  4038. "BSD-3-Clause"
  4039. ],
  4040. "authors": [
  4041. {
  4042. "name": "Arne Blankerts",
  4043. "email": "arne@blankerts.de",
  4044. "role": "Developer"
  4045. },
  4046. {
  4047. "name": "Sebastian Heuer",
  4048. "email": "sebastian@phpeople.de",
  4049. "role": "Developer"
  4050. },
  4051. {
  4052. "name": "Sebastian Bergmann",
  4053. "email": "sebastian@phpunit.de",
  4054. "role": "Developer"
  4055. }
  4056. ],
  4057. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4058. "time": "2018-07-08T19:23:20+00:00"
  4059. },
  4060. {
  4061. "name": "phar-io/version",
  4062. "version": "2.0.1",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/phar-io/version.git",
  4066. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4071. "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
  4072. "shasum": "",
  4073. "mirrors": [
  4074. {
  4075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4076. "preferred": true
  4077. }
  4078. ]
  4079. },
  4080. "require": {
  4081. "php": "^5.6 || ^7.0"
  4082. },
  4083. "type": "library",
  4084. "autoload": {
  4085. "classmap": [
  4086. "src/"
  4087. ]
  4088. },
  4089. "notification-url": "https://packagist.org/downloads/",
  4090. "license": [
  4091. "BSD-3-Clause"
  4092. ],
  4093. "authors": [
  4094. {
  4095. "name": "Arne Blankerts",
  4096. "email": "arne@blankerts.de",
  4097. "role": "Developer"
  4098. },
  4099. {
  4100. "name": "Sebastian Heuer",
  4101. "email": "sebastian@phpeople.de",
  4102. "role": "Developer"
  4103. },
  4104. {
  4105. "name": "Sebastian Bergmann",
  4106. "email": "sebastian@phpunit.de",
  4107. "role": "Developer"
  4108. }
  4109. ],
  4110. "description": "Library for handling version information and constraints",
  4111. "time": "2018-07-08T19:19:57+00:00"
  4112. },
  4113. {
  4114. "name": "phpdocumentor/reflection-common",
  4115. "version": "2.2.0",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4119. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4124. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4125. "shasum": "",
  4126. "mirrors": [
  4127. {
  4128. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4129. "preferred": true
  4130. }
  4131. ]
  4132. },
  4133. "require": {
  4134. "php": "^7.2 || ^8.0"
  4135. },
  4136. "type": "library",
  4137. "extra": {
  4138. "branch-alias": {
  4139. "dev-2.x": "2.x-dev"
  4140. }
  4141. },
  4142. "autoload": {
  4143. "psr-4": {
  4144. "phpDocumentor\\Reflection\\": "src/"
  4145. }
  4146. },
  4147. "notification-url": "https://packagist.org/downloads/",
  4148. "license": [
  4149. "MIT"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Jaap van Otterdijk",
  4154. "email": "opensource@ijaap.nl"
  4155. }
  4156. ],
  4157. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4158. "homepage": "http://www.phpdoc.org",
  4159. "keywords": [
  4160. "FQSEN",
  4161. "phpDocumentor",
  4162. "phpdoc",
  4163. "reflection",
  4164. "static analysis"
  4165. ],
  4166. "time": "2020-06-27T09:03:43+00:00"
  4167. },
  4168. {
  4169. "name": "phpdocumentor/reflection-docblock",
  4170. "version": "5.3.0",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4174. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  4179. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  4180. "shasum": "",
  4181. "mirrors": [
  4182. {
  4183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4184. "preferred": true
  4185. }
  4186. ]
  4187. },
  4188. "require": {
  4189. "ext-filter": "*",
  4190. "php": "^7.2 || ^8.0",
  4191. "phpdocumentor/reflection-common": "^2.2",
  4192. "phpdocumentor/type-resolver": "^1.3",
  4193. "webmozart/assert": "^1.9.1"
  4194. },
  4195. "require-dev": {
  4196. "mockery/mockery": "~1.3.2",
  4197. "psalm/phar": "^4.8"
  4198. },
  4199. "type": "library",
  4200. "extra": {
  4201. "branch-alias": {
  4202. "dev-master": "5.x-dev"
  4203. }
  4204. },
  4205. "autoload": {
  4206. "psr-4": {
  4207. "phpDocumentor\\Reflection\\": "src"
  4208. }
  4209. },
  4210. "notification-url": "https://packagist.org/downloads/",
  4211. "license": [
  4212. "MIT"
  4213. ],
  4214. "authors": [
  4215. {
  4216. "name": "Mike van Riel",
  4217. "email": "me@mikevanriel.com"
  4218. },
  4219. {
  4220. "name": "Jaap van Otterdijk",
  4221. "email": "account@ijaap.nl"
  4222. }
  4223. ],
  4224. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4225. "time": "2021-10-19T17:43:47+00:00"
  4226. },
  4227. {
  4228. "name": "phpdocumentor/type-resolver",
  4229. "version": "1.5.1",
  4230. "source": {
  4231. "type": "git",
  4232. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4233. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
  4234. },
  4235. "dist": {
  4236. "type": "zip",
  4237. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  4238. "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
  4239. "shasum": "",
  4240. "mirrors": [
  4241. {
  4242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4243. "preferred": true
  4244. }
  4245. ]
  4246. },
  4247. "require": {
  4248. "php": "^7.2 || ^8.0",
  4249. "phpdocumentor/reflection-common": "^2.0"
  4250. },
  4251. "require-dev": {
  4252. "ext-tokenizer": "*",
  4253. "psalm/phar": "^4.8"
  4254. },
  4255. "type": "library",
  4256. "extra": {
  4257. "branch-alias": {
  4258. "dev-1.x": "1.x-dev"
  4259. }
  4260. },
  4261. "autoload": {
  4262. "psr-4": {
  4263. "phpDocumentor\\Reflection\\": "src"
  4264. }
  4265. },
  4266. "notification-url": "https://packagist.org/downloads/",
  4267. "license": [
  4268. "MIT"
  4269. ],
  4270. "authors": [
  4271. {
  4272. "name": "Mike van Riel",
  4273. "email": "me@mikevanriel.com"
  4274. }
  4275. ],
  4276. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4277. "time": "2021-10-02T14:08:47+00:00"
  4278. },
  4279. {
  4280. "name": "phpspec/php-diff",
  4281. "version": "v1.1.3",
  4282. "source": {
  4283. "type": "git",
  4284. "url": "https://github.com/phpspec/php-diff.git",
  4285. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9"
  4286. },
  4287. "dist": {
  4288. "type": "zip",
  4289. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  4290. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  4291. "shasum": "",
  4292. "mirrors": [
  4293. {
  4294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4295. "preferred": true
  4296. }
  4297. ]
  4298. },
  4299. "type": "library",
  4300. "extra": {
  4301. "branch-alias": {
  4302. "dev-master": "1.0.x-dev"
  4303. }
  4304. },
  4305. "autoload": {
  4306. "psr-0": {
  4307. "Diff": "lib/"
  4308. }
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "BSD-3-Clause"
  4313. ],
  4314. "authors": [
  4315. {
  4316. "name": "Chris Boulton",
  4317. "homepage": "http://github.com/chrisboulton"
  4318. }
  4319. ],
  4320. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  4321. "time": "2020-09-18T13:47:07+00:00"
  4322. },
  4323. {
  4324. "name": "phpspec/prophecy",
  4325. "version": "v1.15.0",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/phpspec/prophecy.git",
  4329. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  4334. "reference": "bbcd7380b0ebf3961ee21409db7b38bc31d69a13",
  4335. "shasum": "",
  4336. "mirrors": [
  4337. {
  4338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4339. "preferred": true
  4340. }
  4341. ]
  4342. },
  4343. "require": {
  4344. "doctrine/instantiator": "^1.2",
  4345. "php": "^7.2 || ~8.0, <8.2",
  4346. "phpdocumentor/reflection-docblock": "^5.2",
  4347. "sebastian/comparator": "^3.0 || ^4.0",
  4348. "sebastian/recursion-context": "^3.0 || ^4.0"
  4349. },
  4350. "require-dev": {
  4351. "phpspec/phpspec": "^6.0 || ^7.0",
  4352. "phpunit/phpunit": "^8.0 || ^9.0"
  4353. },
  4354. "type": "library",
  4355. "extra": {
  4356. "branch-alias": {
  4357. "dev-master": "1.x-dev"
  4358. }
  4359. },
  4360. "autoload": {
  4361. "psr-4": {
  4362. "Prophecy\\": "src/Prophecy"
  4363. }
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "MIT"
  4368. ],
  4369. "authors": [
  4370. {
  4371. "name": "Konstantin Kudryashov",
  4372. "email": "ever.zet@gmail.com",
  4373. "homepage": "http://everzet.com"
  4374. },
  4375. {
  4376. "name": "Marcello Duarte",
  4377. "email": "marcello.duarte@gmail.com"
  4378. }
  4379. ],
  4380. "description": "Highly opinionated mocking framework for PHP 5.3+",
  4381. "homepage": "https://github.com/phpspec/prophecy",
  4382. "keywords": [
  4383. "Double",
  4384. "Dummy",
  4385. "fake",
  4386. "mock",
  4387. "spy",
  4388. "stub"
  4389. ],
  4390. "time": "2021-12-08T12:19:24+00:00"
  4391. },
  4392. {
  4393. "name": "phpunit/php-code-coverage",
  4394. "version": "6.1.4",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4398. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4403. "reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
  4404. "shasum": "",
  4405. "mirrors": [
  4406. {
  4407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4408. "preferred": true
  4409. }
  4410. ]
  4411. },
  4412. "require": {
  4413. "ext-dom": "*",
  4414. "ext-xmlwriter": "*",
  4415. "php": "^7.1",
  4416. "phpunit/php-file-iterator": "^2.0",
  4417. "phpunit/php-text-template": "^1.2.1",
  4418. "phpunit/php-token-stream": "^3.0",
  4419. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  4420. "sebastian/environment": "^3.1 || ^4.0",
  4421. "sebastian/version": "^2.0.1",
  4422. "theseer/tokenizer": "^1.1"
  4423. },
  4424. "require-dev": {
  4425. "phpunit/phpunit": "^7.0"
  4426. },
  4427. "suggest": {
  4428. "ext-xdebug": "^2.6.0"
  4429. },
  4430. "type": "library",
  4431. "extra": {
  4432. "branch-alias": {
  4433. "dev-master": "6.1-dev"
  4434. }
  4435. },
  4436. "autoload": {
  4437. "classmap": [
  4438. "src/"
  4439. ]
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "BSD-3-Clause"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "Sebastian Bergmann",
  4448. "email": "sebastian@phpunit.de",
  4449. "role": "lead"
  4450. }
  4451. ],
  4452. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4453. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4454. "keywords": [
  4455. "coverage",
  4456. "testing",
  4457. "xunit"
  4458. ],
  4459. "time": "2018-10-31T16:06:48+00:00"
  4460. },
  4461. {
  4462. "name": "phpunit/php-file-iterator",
  4463. "version": "2.0.5",
  4464. "source": {
  4465. "type": "git",
  4466. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4467. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5"
  4468. },
  4469. "dist": {
  4470. "type": "zip",
  4471. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  4472. "reference": "42c5ba5220e6904cbfe8b1a1bda7c0cfdc8c12f5",
  4473. "shasum": "",
  4474. "mirrors": [
  4475. {
  4476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4477. "preferred": true
  4478. }
  4479. ]
  4480. },
  4481. "require": {
  4482. "php": ">=7.1"
  4483. },
  4484. "require-dev": {
  4485. "phpunit/phpunit": "^8.5"
  4486. },
  4487. "type": "library",
  4488. "extra": {
  4489. "branch-alias": {
  4490. "dev-master": "2.0.x-dev"
  4491. }
  4492. },
  4493. "autoload": {
  4494. "classmap": [
  4495. "src/"
  4496. ]
  4497. },
  4498. "notification-url": "https://packagist.org/downloads/",
  4499. "license": [
  4500. "BSD-3-Clause"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "Sebastian Bergmann",
  4505. "email": "sebastian@phpunit.de",
  4506. "role": "lead"
  4507. }
  4508. ],
  4509. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4510. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4511. "keywords": [
  4512. "filesystem",
  4513. "iterator"
  4514. ],
  4515. "funding": [
  4516. {
  4517. "url": "https://github.com/sebastianbergmann",
  4518. "type": "github"
  4519. }
  4520. ],
  4521. "time": "2021-12-02T12:42:26+00:00"
  4522. },
  4523. {
  4524. "name": "phpunit/php-text-template",
  4525. "version": "1.2.1",
  4526. "source": {
  4527. "type": "git",
  4528. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4529. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4530. },
  4531. "dist": {
  4532. "type": "zip",
  4533. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4534. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4535. "shasum": "",
  4536. "mirrors": [
  4537. {
  4538. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4539. "preferred": true
  4540. }
  4541. ]
  4542. },
  4543. "require": {
  4544. "php": ">=5.3.3"
  4545. },
  4546. "type": "library",
  4547. "autoload": {
  4548. "classmap": [
  4549. "src/"
  4550. ]
  4551. },
  4552. "notification-url": "https://packagist.org/downloads/",
  4553. "license": [
  4554. "BSD-3-Clause"
  4555. ],
  4556. "authors": [
  4557. {
  4558. "name": "Sebastian Bergmann",
  4559. "email": "sebastian@phpunit.de",
  4560. "role": "lead"
  4561. }
  4562. ],
  4563. "description": "Simple template engine.",
  4564. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4565. "keywords": [
  4566. "template"
  4567. ],
  4568. "time": "2015-06-21T13:50:34+00:00"
  4569. },
  4570. {
  4571. "name": "phpunit/php-timer",
  4572. "version": "2.1.3",
  4573. "source": {
  4574. "type": "git",
  4575. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4576. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  4577. },
  4578. "dist": {
  4579. "type": "zip",
  4580. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  4581. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  4582. "shasum": "",
  4583. "mirrors": [
  4584. {
  4585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4586. "preferred": true
  4587. }
  4588. ]
  4589. },
  4590. "require": {
  4591. "php": ">=7.1"
  4592. },
  4593. "require-dev": {
  4594. "phpunit/phpunit": "^8.5"
  4595. },
  4596. "type": "library",
  4597. "extra": {
  4598. "branch-alias": {
  4599. "dev-master": "2.1-dev"
  4600. }
  4601. },
  4602. "autoload": {
  4603. "classmap": [
  4604. "src/"
  4605. ]
  4606. },
  4607. "notification-url": "https://packagist.org/downloads/",
  4608. "license": [
  4609. "BSD-3-Clause"
  4610. ],
  4611. "authors": [
  4612. {
  4613. "name": "Sebastian Bergmann",
  4614. "email": "sebastian@phpunit.de",
  4615. "role": "lead"
  4616. }
  4617. ],
  4618. "description": "Utility class for timing",
  4619. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4620. "keywords": [
  4621. "timer"
  4622. ],
  4623. "funding": [
  4624. {
  4625. "url": "https://github.com/sebastianbergmann",
  4626. "type": "github"
  4627. }
  4628. ],
  4629. "time": "2020-11-30T08:20:02+00:00"
  4630. },
  4631. {
  4632. "name": "phpunit/php-token-stream",
  4633. "version": "3.1.3",
  4634. "source": {
  4635. "type": "git",
  4636. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4637. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768"
  4638. },
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9c1da83261628cb24b6a6df371b6e312b3954768",
  4642. "reference": "9c1da83261628cb24b6a6df371b6e312b3954768",
  4643. "shasum": "",
  4644. "mirrors": [
  4645. {
  4646. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4647. "preferred": true
  4648. }
  4649. ]
  4650. },
  4651. "require": {
  4652. "ext-tokenizer": "*",
  4653. "php": ">=7.1"
  4654. },
  4655. "require-dev": {
  4656. "phpunit/phpunit": "^7.0"
  4657. },
  4658. "type": "library",
  4659. "extra": {
  4660. "branch-alias": {
  4661. "dev-master": "3.1-dev"
  4662. }
  4663. },
  4664. "autoload": {
  4665. "classmap": [
  4666. "src/"
  4667. ]
  4668. },
  4669. "notification-url": "https://packagist.org/downloads/",
  4670. "license": [
  4671. "BSD-3-Clause"
  4672. ],
  4673. "authors": [
  4674. {
  4675. "name": "Sebastian Bergmann",
  4676. "email": "sebastian@phpunit.de"
  4677. }
  4678. ],
  4679. "description": "Wrapper around PHP's tokenizer extension.",
  4680. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  4681. "keywords": [
  4682. "tokenizer"
  4683. ],
  4684. "funding": [
  4685. {
  4686. "url": "https://github.com/sebastianbergmann",
  4687. "type": "github"
  4688. }
  4689. ],
  4690. "abandoned": true,
  4691. "time": "2021-07-26T12:15:06+00:00"
  4692. },
  4693. {
  4694. "name": "phpunit/phpunit",
  4695. "version": "7.5.20",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://github.com/sebastianbergmann/phpunit.git",
  4699. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/9467db479d1b0487c99733bb1e7944d32deded2c",
  4704. "reference": "9467db479d1b0487c99733bb1e7944d32deded2c",
  4705. "shasum": "",
  4706. "mirrors": [
  4707. {
  4708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4709. "preferred": true
  4710. }
  4711. ]
  4712. },
  4713. "require": {
  4714. "doctrine/instantiator": "^1.1",
  4715. "ext-dom": "*",
  4716. "ext-json": "*",
  4717. "ext-libxml": "*",
  4718. "ext-mbstring": "*",
  4719. "ext-xml": "*",
  4720. "myclabs/deep-copy": "^1.7",
  4721. "phar-io/manifest": "^1.0.2",
  4722. "phar-io/version": "^2.0",
  4723. "php": "^7.1",
  4724. "phpspec/prophecy": "^1.7",
  4725. "phpunit/php-code-coverage": "^6.0.7",
  4726. "phpunit/php-file-iterator": "^2.0.1",
  4727. "phpunit/php-text-template": "^1.2.1",
  4728. "phpunit/php-timer": "^2.1",
  4729. "sebastian/comparator": "^3.0",
  4730. "sebastian/diff": "^3.0",
  4731. "sebastian/environment": "^4.0",
  4732. "sebastian/exporter": "^3.1",
  4733. "sebastian/global-state": "^2.0",
  4734. "sebastian/object-enumerator": "^3.0.3",
  4735. "sebastian/resource-operations": "^2.0",
  4736. "sebastian/version": "^2.0.1"
  4737. },
  4738. "conflict": {
  4739. "phpunit/phpunit-mock-objects": "*"
  4740. },
  4741. "require-dev": {
  4742. "ext-pdo": "*"
  4743. },
  4744. "suggest": {
  4745. "ext-soap": "*",
  4746. "ext-xdebug": "*",
  4747. "phpunit/php-invoker": "^2.0"
  4748. },
  4749. "bin": [
  4750. "phpunit"
  4751. ],
  4752. "type": "library",
  4753. "extra": {
  4754. "branch-alias": {
  4755. "dev-master": "7.5-dev"
  4756. }
  4757. },
  4758. "autoload": {
  4759. "classmap": [
  4760. "src/"
  4761. ]
  4762. },
  4763. "notification-url": "https://packagist.org/downloads/",
  4764. "license": [
  4765. "BSD-3-Clause"
  4766. ],
  4767. "authors": [
  4768. {
  4769. "name": "Sebastian Bergmann",
  4770. "email": "sebastian@phpunit.de",
  4771. "role": "lead"
  4772. }
  4773. ],
  4774. "description": "The PHP Unit Testing framework.",
  4775. "homepage": "https://phpunit.de/",
  4776. "keywords": [
  4777. "phpunit",
  4778. "testing",
  4779. "xunit"
  4780. ],
  4781. "time": "2020-01-08T08:45:45+00:00"
  4782. },
  4783. {
  4784. "name": "ralouphie/getallheaders",
  4785. "version": "3.0.3",
  4786. "source": {
  4787. "type": "git",
  4788. "url": "https://github.com/ralouphie/getallheaders.git",
  4789. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4790. },
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4794. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4795. "shasum": "",
  4796. "mirrors": [
  4797. {
  4798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4799. "preferred": true
  4800. }
  4801. ]
  4802. },
  4803. "require": {
  4804. "php": ">=5.6"
  4805. },
  4806. "require-dev": {
  4807. "php-coveralls/php-coveralls": "^2.1",
  4808. "phpunit/phpunit": "^5 || ^6.5"
  4809. },
  4810. "type": "library",
  4811. "autoload": {
  4812. "files": [
  4813. "src/getallheaders.php"
  4814. ]
  4815. },
  4816. "notification-url": "https://packagist.org/downloads/",
  4817. "license": [
  4818. "MIT"
  4819. ],
  4820. "authors": [
  4821. {
  4822. "name": "Ralph Khattar",
  4823. "email": "ralph.khattar@gmail.com"
  4824. }
  4825. ],
  4826. "description": "A polyfill for getallheaders.",
  4827. "time": "2019-03-08T08:55:37+00:00"
  4828. },
  4829. {
  4830. "name": "sebastian/code-unit-reverse-lookup",
  4831. "version": "1.0.2",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4835. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  4836. },
  4837. "dist": {
  4838. "type": "zip",
  4839. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  4840. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  4841. "shasum": "",
  4842. "mirrors": [
  4843. {
  4844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4845. "preferred": true
  4846. }
  4847. ]
  4848. },
  4849. "require": {
  4850. "php": ">=5.6"
  4851. },
  4852. "require-dev": {
  4853. "phpunit/phpunit": "^8.5"
  4854. },
  4855. "type": "library",
  4856. "extra": {
  4857. "branch-alias": {
  4858. "dev-master": "1.0.x-dev"
  4859. }
  4860. },
  4861. "autoload": {
  4862. "classmap": [
  4863. "src/"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "BSD-3-Clause"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Sebastian Bergmann",
  4873. "email": "sebastian@phpunit.de"
  4874. }
  4875. ],
  4876. "description": "Looks up which function or method a line of code belongs to",
  4877. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4878. "funding": [
  4879. {
  4880. "url": "https://github.com/sebastianbergmann",
  4881. "type": "github"
  4882. }
  4883. ],
  4884. "time": "2020-11-30T08:15:22+00:00"
  4885. },
  4886. {
  4887. "name": "sebastian/comparator",
  4888. "version": "3.0.3",
  4889. "source": {
  4890. "type": "git",
  4891. "url": "https://github.com/sebastianbergmann/comparator.git",
  4892. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  4893. },
  4894. "dist": {
  4895. "type": "zip",
  4896. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  4897. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  4898. "shasum": "",
  4899. "mirrors": [
  4900. {
  4901. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4902. "preferred": true
  4903. }
  4904. ]
  4905. },
  4906. "require": {
  4907. "php": ">=7.1",
  4908. "sebastian/diff": "^3.0",
  4909. "sebastian/exporter": "^3.1"
  4910. },
  4911. "require-dev": {
  4912. "phpunit/phpunit": "^8.5"
  4913. },
  4914. "type": "library",
  4915. "extra": {
  4916. "branch-alias": {
  4917. "dev-master": "3.0-dev"
  4918. }
  4919. },
  4920. "autoload": {
  4921. "classmap": [
  4922. "src/"
  4923. ]
  4924. },
  4925. "notification-url": "https://packagist.org/downloads/",
  4926. "license": [
  4927. "BSD-3-Clause"
  4928. ],
  4929. "authors": [
  4930. {
  4931. "name": "Sebastian Bergmann",
  4932. "email": "sebastian@phpunit.de"
  4933. },
  4934. {
  4935. "name": "Jeff Welch",
  4936. "email": "whatthejeff@gmail.com"
  4937. },
  4938. {
  4939. "name": "Volker Dusch",
  4940. "email": "github@wallbash.com"
  4941. },
  4942. {
  4943. "name": "Bernhard Schussek",
  4944. "email": "bschussek@2bepublished.at"
  4945. }
  4946. ],
  4947. "description": "Provides the functionality to compare PHP values for equality",
  4948. "homepage": "https://github.com/sebastianbergmann/comparator",
  4949. "keywords": [
  4950. "comparator",
  4951. "compare",
  4952. "equality"
  4953. ],
  4954. "funding": [
  4955. {
  4956. "url": "https://github.com/sebastianbergmann",
  4957. "type": "github"
  4958. }
  4959. ],
  4960. "time": "2020-11-30T08:04:30+00:00"
  4961. },
  4962. {
  4963. "name": "sebastian/diff",
  4964. "version": "3.0.3",
  4965. "source": {
  4966. "type": "git",
  4967. "url": "https://github.com/sebastianbergmann/diff.git",
  4968. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  4969. },
  4970. "dist": {
  4971. "type": "zip",
  4972. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  4973. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  4974. "shasum": "",
  4975. "mirrors": [
  4976. {
  4977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4978. "preferred": true
  4979. }
  4980. ]
  4981. },
  4982. "require": {
  4983. "php": ">=7.1"
  4984. },
  4985. "require-dev": {
  4986. "phpunit/phpunit": "^7.5 || ^8.0",
  4987. "symfony/process": "^2 || ^3.3 || ^4"
  4988. },
  4989. "type": "library",
  4990. "extra": {
  4991. "branch-alias": {
  4992. "dev-master": "3.0-dev"
  4993. }
  4994. },
  4995. "autoload": {
  4996. "classmap": [
  4997. "src/"
  4998. ]
  4999. },
  5000. "notification-url": "https://packagist.org/downloads/",
  5001. "license": [
  5002. "BSD-3-Clause"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "Sebastian Bergmann",
  5007. "email": "sebastian@phpunit.de"
  5008. },
  5009. {
  5010. "name": "Kore Nordmann",
  5011. "email": "mail@kore-nordmann.de"
  5012. }
  5013. ],
  5014. "description": "Diff implementation",
  5015. "homepage": "https://github.com/sebastianbergmann/diff",
  5016. "keywords": [
  5017. "diff",
  5018. "udiff",
  5019. "unidiff",
  5020. "unified diff"
  5021. ],
  5022. "funding": [
  5023. {
  5024. "url": "https://github.com/sebastianbergmann",
  5025. "type": "github"
  5026. }
  5027. ],
  5028. "time": "2020-11-30T07:59:04+00:00"
  5029. },
  5030. {
  5031. "name": "sebastian/environment",
  5032. "version": "4.2.4",
  5033. "source": {
  5034. "type": "git",
  5035. "url": "https://github.com/sebastianbergmann/environment.git",
  5036. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  5037. },
  5038. "dist": {
  5039. "type": "zip",
  5040. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  5041. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  5042. "shasum": "",
  5043. "mirrors": [
  5044. {
  5045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5046. "preferred": true
  5047. }
  5048. ]
  5049. },
  5050. "require": {
  5051. "php": ">=7.1"
  5052. },
  5053. "require-dev": {
  5054. "phpunit/phpunit": "^7.5"
  5055. },
  5056. "suggest": {
  5057. "ext-posix": "*"
  5058. },
  5059. "type": "library",
  5060. "extra": {
  5061. "branch-alias": {
  5062. "dev-master": "4.2-dev"
  5063. }
  5064. },
  5065. "autoload": {
  5066. "classmap": [
  5067. "src/"
  5068. ]
  5069. },
  5070. "notification-url": "https://packagist.org/downloads/",
  5071. "license": [
  5072. "BSD-3-Clause"
  5073. ],
  5074. "authors": [
  5075. {
  5076. "name": "Sebastian Bergmann",
  5077. "email": "sebastian@phpunit.de"
  5078. }
  5079. ],
  5080. "description": "Provides functionality to handle HHVM/PHP environments",
  5081. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5082. "keywords": [
  5083. "Xdebug",
  5084. "environment",
  5085. "hhvm"
  5086. ],
  5087. "funding": [
  5088. {
  5089. "url": "https://github.com/sebastianbergmann",
  5090. "type": "github"
  5091. }
  5092. ],
  5093. "time": "2020-11-30T07:53:42+00:00"
  5094. },
  5095. {
  5096. "name": "sebastian/exporter",
  5097. "version": "3.1.4",
  5098. "source": {
  5099. "type": "git",
  5100. "url": "https://github.com/sebastianbergmann/exporter.git",
  5101. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db"
  5102. },
  5103. "dist": {
  5104. "type": "zip",
  5105. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  5106. "reference": "0c32ea2e40dbf59de29f3b49bf375176ce7dd8db",
  5107. "shasum": "",
  5108. "mirrors": [
  5109. {
  5110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5111. "preferred": true
  5112. }
  5113. ]
  5114. },
  5115. "require": {
  5116. "php": ">=7.0",
  5117. "sebastian/recursion-context": "^3.0"
  5118. },
  5119. "require-dev": {
  5120. "ext-mbstring": "*",
  5121. "phpunit/phpunit": "^8.5"
  5122. },
  5123. "type": "library",
  5124. "extra": {
  5125. "branch-alias": {
  5126. "dev-master": "3.1.x-dev"
  5127. }
  5128. },
  5129. "autoload": {
  5130. "classmap": [
  5131. "src/"
  5132. ]
  5133. },
  5134. "notification-url": "https://packagist.org/downloads/",
  5135. "license": [
  5136. "BSD-3-Clause"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Sebastian Bergmann",
  5141. "email": "sebastian@phpunit.de"
  5142. },
  5143. {
  5144. "name": "Jeff Welch",
  5145. "email": "whatthejeff@gmail.com"
  5146. },
  5147. {
  5148. "name": "Volker Dusch",
  5149. "email": "github@wallbash.com"
  5150. },
  5151. {
  5152. "name": "Adam Harvey",
  5153. "email": "aharvey@php.net"
  5154. },
  5155. {
  5156. "name": "Bernhard Schussek",
  5157. "email": "bschussek@gmail.com"
  5158. }
  5159. ],
  5160. "description": "Provides the functionality to export PHP variables for visualization",
  5161. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5162. "keywords": [
  5163. "export",
  5164. "exporter"
  5165. ],
  5166. "funding": [
  5167. {
  5168. "url": "https://github.com/sebastianbergmann",
  5169. "type": "github"
  5170. }
  5171. ],
  5172. "time": "2021-11-11T13:51:24+00:00"
  5173. },
  5174. {
  5175. "name": "sebastian/global-state",
  5176. "version": "2.0.0",
  5177. "source": {
  5178. "type": "git",
  5179. "url": "https://github.com/sebastianbergmann/global-state.git",
  5180. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  5181. },
  5182. "dist": {
  5183. "type": "zip",
  5184. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  5185. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  5186. "shasum": "",
  5187. "mirrors": [
  5188. {
  5189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5190. "preferred": true
  5191. }
  5192. ]
  5193. },
  5194. "require": {
  5195. "php": "^7.0"
  5196. },
  5197. "require-dev": {
  5198. "phpunit/phpunit": "^6.0"
  5199. },
  5200. "suggest": {
  5201. "ext-uopz": "*"
  5202. },
  5203. "type": "library",
  5204. "extra": {
  5205. "branch-alias": {
  5206. "dev-master": "2.0-dev"
  5207. }
  5208. },
  5209. "autoload": {
  5210. "classmap": [
  5211. "src/"
  5212. ]
  5213. },
  5214. "notification-url": "https://packagist.org/downloads/",
  5215. "license": [
  5216. "BSD-3-Clause"
  5217. ],
  5218. "authors": [
  5219. {
  5220. "name": "Sebastian Bergmann",
  5221. "email": "sebastian@phpunit.de"
  5222. }
  5223. ],
  5224. "description": "Snapshotting of global state",
  5225. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5226. "keywords": [
  5227. "global state"
  5228. ],
  5229. "time": "2017-04-27T15:39:26+00:00"
  5230. },
  5231. {
  5232. "name": "sebastian/object-enumerator",
  5233. "version": "3.0.4",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5237. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  5242. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  5243. "shasum": "",
  5244. "mirrors": [
  5245. {
  5246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5247. "preferred": true
  5248. }
  5249. ]
  5250. },
  5251. "require": {
  5252. "php": ">=7.0",
  5253. "sebastian/object-reflector": "^1.1.1",
  5254. "sebastian/recursion-context": "^3.0"
  5255. },
  5256. "require-dev": {
  5257. "phpunit/phpunit": "^6.0"
  5258. },
  5259. "type": "library",
  5260. "extra": {
  5261. "branch-alias": {
  5262. "dev-master": "3.0.x-dev"
  5263. }
  5264. },
  5265. "autoload": {
  5266. "classmap": [
  5267. "src/"
  5268. ]
  5269. },
  5270. "notification-url": "https://packagist.org/downloads/",
  5271. "license": [
  5272. "BSD-3-Clause"
  5273. ],
  5274. "authors": [
  5275. {
  5276. "name": "Sebastian Bergmann",
  5277. "email": "sebastian@phpunit.de"
  5278. }
  5279. ],
  5280. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5281. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5282. "funding": [
  5283. {
  5284. "url": "https://github.com/sebastianbergmann",
  5285. "type": "github"
  5286. }
  5287. ],
  5288. "time": "2020-11-30T07:40:27+00:00"
  5289. },
  5290. {
  5291. "name": "sebastian/object-reflector",
  5292. "version": "1.1.2",
  5293. "source": {
  5294. "type": "git",
  5295. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5296. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  5297. },
  5298. "dist": {
  5299. "type": "zip",
  5300. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  5301. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  5302. "shasum": "",
  5303. "mirrors": [
  5304. {
  5305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5306. "preferred": true
  5307. }
  5308. ]
  5309. },
  5310. "require": {
  5311. "php": ">=7.0"
  5312. },
  5313. "require-dev": {
  5314. "phpunit/phpunit": "^6.0"
  5315. },
  5316. "type": "library",
  5317. "extra": {
  5318. "branch-alias": {
  5319. "dev-master": "1.1-dev"
  5320. }
  5321. },
  5322. "autoload": {
  5323. "classmap": [
  5324. "src/"
  5325. ]
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "BSD-3-Clause"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Sebastian Bergmann",
  5334. "email": "sebastian@phpunit.de"
  5335. }
  5336. ],
  5337. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5338. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5339. "funding": [
  5340. {
  5341. "url": "https://github.com/sebastianbergmann",
  5342. "type": "github"
  5343. }
  5344. ],
  5345. "time": "2020-11-30T07:37:18+00:00"
  5346. },
  5347. {
  5348. "name": "sebastian/recursion-context",
  5349. "version": "3.0.1",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5353. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  5358. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  5359. "shasum": "",
  5360. "mirrors": [
  5361. {
  5362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5363. "preferred": true
  5364. }
  5365. ]
  5366. },
  5367. "require": {
  5368. "php": ">=7.0"
  5369. },
  5370. "require-dev": {
  5371. "phpunit/phpunit": "^6.0"
  5372. },
  5373. "type": "library",
  5374. "extra": {
  5375. "branch-alias": {
  5376. "dev-master": "3.0.x-dev"
  5377. }
  5378. },
  5379. "autoload": {
  5380. "classmap": [
  5381. "src/"
  5382. ]
  5383. },
  5384. "notification-url": "https://packagist.org/downloads/",
  5385. "license": [
  5386. "BSD-3-Clause"
  5387. ],
  5388. "authors": [
  5389. {
  5390. "name": "Sebastian Bergmann",
  5391. "email": "sebastian@phpunit.de"
  5392. },
  5393. {
  5394. "name": "Jeff Welch",
  5395. "email": "whatthejeff@gmail.com"
  5396. },
  5397. {
  5398. "name": "Adam Harvey",
  5399. "email": "aharvey@php.net"
  5400. }
  5401. ],
  5402. "description": "Provides functionality to recursively process PHP variables",
  5403. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5404. "funding": [
  5405. {
  5406. "url": "https://github.com/sebastianbergmann",
  5407. "type": "github"
  5408. }
  5409. ],
  5410. "time": "2020-11-30T07:34:24+00:00"
  5411. },
  5412. {
  5413. "name": "sebastian/resource-operations",
  5414. "version": "2.0.2",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5418. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  5423. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  5424. "shasum": "",
  5425. "mirrors": [
  5426. {
  5427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5428. "preferred": true
  5429. }
  5430. ]
  5431. },
  5432. "require": {
  5433. "php": ">=7.1"
  5434. },
  5435. "type": "library",
  5436. "extra": {
  5437. "branch-alias": {
  5438. "dev-master": "2.0-dev"
  5439. }
  5440. },
  5441. "autoload": {
  5442. "classmap": [
  5443. "src/"
  5444. ]
  5445. },
  5446. "notification-url": "https://packagist.org/downloads/",
  5447. "license": [
  5448. "BSD-3-Clause"
  5449. ],
  5450. "authors": [
  5451. {
  5452. "name": "Sebastian Bergmann",
  5453. "email": "sebastian@phpunit.de"
  5454. }
  5455. ],
  5456. "description": "Provides a list of PHP built-in functions that operate on resources",
  5457. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5458. "funding": [
  5459. {
  5460. "url": "https://github.com/sebastianbergmann",
  5461. "type": "github"
  5462. }
  5463. ],
  5464. "time": "2020-11-30T07:30:19+00:00"
  5465. },
  5466. {
  5467. "name": "sebastian/version",
  5468. "version": "2.0.1",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://github.com/sebastianbergmann/version.git",
  5472. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5477. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5478. "shasum": "",
  5479. "mirrors": [
  5480. {
  5481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5482. "preferred": true
  5483. }
  5484. ]
  5485. },
  5486. "require": {
  5487. "php": ">=5.6"
  5488. },
  5489. "type": "library",
  5490. "extra": {
  5491. "branch-alias": {
  5492. "dev-master": "2.0.x-dev"
  5493. }
  5494. },
  5495. "autoload": {
  5496. "classmap": [
  5497. "src/"
  5498. ]
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "BSD-3-Clause"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "Sebastian Bergmann",
  5507. "email": "sebastian@phpunit.de",
  5508. "role": "lead"
  5509. }
  5510. ],
  5511. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5512. "homepage": "https://github.com/sebastianbergmann/version",
  5513. "time": "2016-10-03T07:35:21+00:00"
  5514. },
  5515. {
  5516. "name": "symfony/browser-kit",
  5517. "version": "v4.4.27",
  5518. "source": {
  5519. "type": "git",
  5520. "url": "https://github.com/symfony/browser-kit.git",
  5521. "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b"
  5522. },
  5523. "dist": {
  5524. "type": "zip",
  5525. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/9629d1524d8ced5a4ec3e94abdbd638b4ec8319b",
  5526. "reference": "9629d1524d8ced5a4ec3e94abdbd638b4ec8319b",
  5527. "shasum": "",
  5528. "mirrors": [
  5529. {
  5530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5531. "preferred": true
  5532. }
  5533. ]
  5534. },
  5535. "require": {
  5536. "php": ">=7.1.3",
  5537. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  5538. "symfony/polyfill-php80": "^1.16"
  5539. },
  5540. "require-dev": {
  5541. "symfony/css-selector": "^3.4|^4.0|^5.0",
  5542. "symfony/http-client": "^4.3|^5.0",
  5543. "symfony/mime": "^4.3|^5.0",
  5544. "symfony/process": "^3.4|^4.0|^5.0"
  5545. },
  5546. "suggest": {
  5547. "symfony/process": ""
  5548. },
  5549. "type": "library",
  5550. "autoload": {
  5551. "psr-4": {
  5552. "Symfony\\Component\\BrowserKit\\": ""
  5553. },
  5554. "exclude-from-classmap": [
  5555. "/Tests/"
  5556. ]
  5557. },
  5558. "notification-url": "https://packagist.org/downloads/",
  5559. "license": [
  5560. "MIT"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "Fabien Potencier",
  5565. "email": "fabien@symfony.com"
  5566. },
  5567. {
  5568. "name": "Symfony Community",
  5569. "homepage": "https://symfony.com/contributors"
  5570. }
  5571. ],
  5572. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  5573. "homepage": "https://symfony.com",
  5574. "funding": [
  5575. {
  5576. "url": "https://symfony.com/sponsor",
  5577. "type": "custom"
  5578. },
  5579. {
  5580. "url": "https://github.com/fabpot",
  5581. "type": "github"
  5582. },
  5583. {
  5584. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5585. "type": "tidelift"
  5586. }
  5587. ],
  5588. "time": "2021-07-21T12:19:41+00:00"
  5589. },
  5590. {
  5591. "name": "symfony/console",
  5592. "version": "v4.4.34",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://github.com/symfony/console.git",
  5596. "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://api.github.com/repos/symfony/console/zipball/329b3a75cc6b16d435ba1b1a41df54a53382a3f0",
  5601. "reference": "329b3a75cc6b16d435ba1b1a41df54a53382a3f0",
  5602. "shasum": "",
  5603. "mirrors": [
  5604. {
  5605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5606. "preferred": true
  5607. }
  5608. ]
  5609. },
  5610. "require": {
  5611. "php": ">=7.1.3",
  5612. "symfony/polyfill-mbstring": "~1.0",
  5613. "symfony/polyfill-php73": "^1.8",
  5614. "symfony/polyfill-php80": "^1.16",
  5615. "symfony/service-contracts": "^1.1|^2"
  5616. },
  5617. "conflict": {
  5618. "psr/log": ">=3",
  5619. "symfony/dependency-injection": "<3.4",
  5620. "symfony/event-dispatcher": "<4.3|>=5",
  5621. "symfony/lock": "<4.4",
  5622. "symfony/process": "<3.3"
  5623. },
  5624. "provide": {
  5625. "psr/log-implementation": "1.0|2.0"
  5626. },
  5627. "require-dev": {
  5628. "psr/log": "^1|^2",
  5629. "symfony/config": "^3.4|^4.0|^5.0",
  5630. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5631. "symfony/event-dispatcher": "^4.3",
  5632. "symfony/lock": "^4.4|^5.0",
  5633. "symfony/process": "^3.4|^4.0|^5.0",
  5634. "symfony/var-dumper": "^4.3|^5.0"
  5635. },
  5636. "suggest": {
  5637. "psr/log": "For using the console logger",
  5638. "symfony/event-dispatcher": "",
  5639. "symfony/lock": "",
  5640. "symfony/process": ""
  5641. },
  5642. "type": "library",
  5643. "autoload": {
  5644. "psr-4": {
  5645. "Symfony\\Component\\Console\\": ""
  5646. },
  5647. "exclude-from-classmap": [
  5648. "/Tests/"
  5649. ]
  5650. },
  5651. "notification-url": "https://packagist.org/downloads/",
  5652. "license": [
  5653. "MIT"
  5654. ],
  5655. "authors": [
  5656. {
  5657. "name": "Fabien Potencier",
  5658. "email": "fabien@symfony.com"
  5659. },
  5660. {
  5661. "name": "Symfony Community",
  5662. "homepage": "https://symfony.com/contributors"
  5663. }
  5664. ],
  5665. "description": "Eases the creation of beautiful and testable command line interfaces",
  5666. "homepage": "https://symfony.com",
  5667. "funding": [
  5668. {
  5669. "url": "https://symfony.com/sponsor",
  5670. "type": "custom"
  5671. },
  5672. {
  5673. "url": "https://github.com/fabpot",
  5674. "type": "github"
  5675. },
  5676. {
  5677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5678. "type": "tidelift"
  5679. }
  5680. ],
  5681. "time": "2021-11-04T12:23:33+00:00"
  5682. },
  5683. {
  5684. "name": "symfony/css-selector",
  5685. "version": "v4.4.27",
  5686. "source": {
  5687. "type": "git",
  5688. "url": "https://github.com/symfony/css-selector.git",
  5689. "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6"
  5690. },
  5691. "dist": {
  5692. "type": "zip",
  5693. "url": "https://api.github.com/repos/symfony/css-selector/zipball/5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6",
  5694. "reference": "5194f18bd80d106f11efa8f7cd0fbdcc3af96ce6",
  5695. "shasum": "",
  5696. "mirrors": [
  5697. {
  5698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5699. "preferred": true
  5700. }
  5701. ]
  5702. },
  5703. "require": {
  5704. "php": ">=7.1.3",
  5705. "symfony/polyfill-php80": "^1.16"
  5706. },
  5707. "type": "library",
  5708. "autoload": {
  5709. "psr-4": {
  5710. "Symfony\\Component\\CssSelector\\": ""
  5711. },
  5712. "exclude-from-classmap": [
  5713. "/Tests/"
  5714. ]
  5715. },
  5716. "notification-url": "https://packagist.org/downloads/",
  5717. "license": [
  5718. "MIT"
  5719. ],
  5720. "authors": [
  5721. {
  5722. "name": "Fabien Potencier",
  5723. "email": "fabien@symfony.com"
  5724. },
  5725. {
  5726. "name": "Jean-François Simon",
  5727. "email": "jeanfrancois.simon@sensiolabs.com"
  5728. },
  5729. {
  5730. "name": "Symfony Community",
  5731. "homepage": "https://symfony.com/contributors"
  5732. }
  5733. ],
  5734. "description": "Converts CSS selectors to XPath expressions",
  5735. "homepage": "https://symfony.com",
  5736. "funding": [
  5737. {
  5738. "url": "https://symfony.com/sponsor",
  5739. "type": "custom"
  5740. },
  5741. {
  5742. "url": "https://github.com/fabpot",
  5743. "type": "github"
  5744. },
  5745. {
  5746. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5747. "type": "tidelift"
  5748. }
  5749. ],
  5750. "time": "2021-07-21T12:19:41+00:00"
  5751. },
  5752. {
  5753. "name": "symfony/dom-crawler",
  5754. "version": "v4.4.30",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/symfony/dom-crawler.git",
  5758. "reference": "4632ae3567746c7e915c33c67a2fb6ab746090c4"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4632ae3567746c7e915c33c67a2fb6ab746090c4",
  5763. "reference": "4632ae3567746c7e915c33c67a2fb6ab746090c4",
  5764. "shasum": "",
  5765. "mirrors": [
  5766. {
  5767. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5768. "preferred": true
  5769. }
  5770. ]
  5771. },
  5772. "require": {
  5773. "php": ">=7.1.3",
  5774. "symfony/polyfill-ctype": "~1.8",
  5775. "symfony/polyfill-mbstring": "~1.0",
  5776. "symfony/polyfill-php80": "^1.16"
  5777. },
  5778. "conflict": {
  5779. "masterminds/html5": "<2.6"
  5780. },
  5781. "require-dev": {
  5782. "masterminds/html5": "^2.6",
  5783. "symfony/css-selector": "^3.4|^4.0|^5.0"
  5784. },
  5785. "suggest": {
  5786. "symfony/css-selector": ""
  5787. },
  5788. "type": "library",
  5789. "autoload": {
  5790. "psr-4": {
  5791. "Symfony\\Component\\DomCrawler\\": ""
  5792. },
  5793. "exclude-from-classmap": [
  5794. "/Tests/"
  5795. ]
  5796. },
  5797. "notification-url": "https://packagist.org/downloads/",
  5798. "license": [
  5799. "MIT"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "Fabien Potencier",
  5804. "email": "fabien@symfony.com"
  5805. },
  5806. {
  5807. "name": "Symfony Community",
  5808. "homepage": "https://symfony.com/contributors"
  5809. }
  5810. ],
  5811. "description": "Eases DOM navigation for HTML and XML documents",
  5812. "homepage": "https://symfony.com",
  5813. "funding": [
  5814. {
  5815. "url": "https://symfony.com/sponsor",
  5816. "type": "custom"
  5817. },
  5818. {
  5819. "url": "https://github.com/fabpot",
  5820. "type": "github"
  5821. },
  5822. {
  5823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5824. "type": "tidelift"
  5825. }
  5826. ],
  5827. "time": "2021-08-28T15:40:01+00:00"
  5828. },
  5829. {
  5830. "name": "symfony/event-dispatcher",
  5831. "version": "v4.4.34",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/symfony/event-dispatcher.git",
  5835. "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8",
  5840. "reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8",
  5841. "shasum": "",
  5842. "mirrors": [
  5843. {
  5844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5845. "preferred": true
  5846. }
  5847. ]
  5848. },
  5849. "require": {
  5850. "php": ">=7.1.3",
  5851. "symfony/event-dispatcher-contracts": "^1.1",
  5852. "symfony/polyfill-php80": "^1.16"
  5853. },
  5854. "conflict": {
  5855. "symfony/dependency-injection": "<3.4"
  5856. },
  5857. "provide": {
  5858. "psr/event-dispatcher-implementation": "1.0",
  5859. "symfony/event-dispatcher-implementation": "1.1"
  5860. },
  5861. "require-dev": {
  5862. "psr/log": "^1|^2|^3",
  5863. "symfony/config": "^3.4|^4.0|^5.0",
  5864. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5865. "symfony/error-handler": "~3.4|~4.4",
  5866. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5867. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5868. "symfony/service-contracts": "^1.1|^2",
  5869. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5870. },
  5871. "suggest": {
  5872. "symfony/dependency-injection": "",
  5873. "symfony/http-kernel": ""
  5874. },
  5875. "type": "library",
  5876. "autoload": {
  5877. "psr-4": {
  5878. "Symfony\\Component\\EventDispatcher\\": ""
  5879. },
  5880. "exclude-from-classmap": [
  5881. "/Tests/"
  5882. ]
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "MIT"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "Fabien Potencier",
  5891. "email": "fabien@symfony.com"
  5892. },
  5893. {
  5894. "name": "Symfony Community",
  5895. "homepage": "https://symfony.com/contributors"
  5896. }
  5897. ],
  5898. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5899. "homepage": "https://symfony.com",
  5900. "funding": [
  5901. {
  5902. "url": "https://symfony.com/sponsor",
  5903. "type": "custom"
  5904. },
  5905. {
  5906. "url": "https://github.com/fabpot",
  5907. "type": "github"
  5908. },
  5909. {
  5910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5911. "type": "tidelift"
  5912. }
  5913. ],
  5914. "time": "2021-11-15T14:42:25+00:00"
  5915. },
  5916. {
  5917. "name": "symfony/event-dispatcher-contracts",
  5918. "version": "v1.1.11",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5922. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c"
  5923. },
  5924. "dist": {
  5925. "type": "zip",
  5926. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  5927. "reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c",
  5928. "shasum": "",
  5929. "mirrors": [
  5930. {
  5931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5932. "preferred": true
  5933. }
  5934. ]
  5935. },
  5936. "require": {
  5937. "php": ">=7.1.3"
  5938. },
  5939. "suggest": {
  5940. "psr/event-dispatcher": "",
  5941. "symfony/event-dispatcher-implementation": ""
  5942. },
  5943. "type": "library",
  5944. "extra": {
  5945. "branch-alias": {
  5946. "dev-main": "1.1-dev"
  5947. },
  5948. "thanks": {
  5949. "name": "symfony/contracts",
  5950. "url": "https://github.com/symfony/contracts"
  5951. }
  5952. },
  5953. "autoload": {
  5954. "psr-4": {
  5955. "Symfony\\Contracts\\EventDispatcher\\": ""
  5956. }
  5957. },
  5958. "notification-url": "https://packagist.org/downloads/",
  5959. "license": [
  5960. "MIT"
  5961. ],
  5962. "authors": [
  5963. {
  5964. "name": "Nicolas Grekas",
  5965. "email": "p@tchwork.com"
  5966. },
  5967. {
  5968. "name": "Symfony Community",
  5969. "homepage": "https://symfony.com/contributors"
  5970. }
  5971. ],
  5972. "description": "Generic abstractions related to dispatching event",
  5973. "homepage": "https://symfony.com",
  5974. "keywords": [
  5975. "abstractions",
  5976. "contracts",
  5977. "decoupling",
  5978. "interfaces",
  5979. "interoperability",
  5980. "standards"
  5981. ],
  5982. "funding": [
  5983. {
  5984. "url": "https://symfony.com/sponsor",
  5985. "type": "custom"
  5986. },
  5987. {
  5988. "url": "https://github.com/fabpot",
  5989. "type": "github"
  5990. },
  5991. {
  5992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5993. "type": "tidelift"
  5994. }
  5995. ],
  5996. "time": "2021-03-23T15:25:38+00:00"
  5997. },
  5998. {
  5999. "name": "symfony/finder",
  6000. "version": "v4.4.30",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/symfony/finder.git",
  6004. "reference": "70362f1e112280d75b30087c7598b837c1b468b6"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/symfony/finder/zipball/70362f1e112280d75b30087c7598b837c1b468b6",
  6009. "reference": "70362f1e112280d75b30087c7598b837c1b468b6",
  6010. "shasum": "",
  6011. "mirrors": [
  6012. {
  6013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6014. "preferred": true
  6015. }
  6016. ]
  6017. },
  6018. "require": {
  6019. "php": ">=7.1.3",
  6020. "symfony/polyfill-php80": "^1.16"
  6021. },
  6022. "type": "library",
  6023. "autoload": {
  6024. "psr-4": {
  6025. "Symfony\\Component\\Finder\\": ""
  6026. },
  6027. "exclude-from-classmap": [
  6028. "/Tests/"
  6029. ]
  6030. },
  6031. "notification-url": "https://packagist.org/downloads/",
  6032. "license": [
  6033. "MIT"
  6034. ],
  6035. "authors": [
  6036. {
  6037. "name": "Fabien Potencier",
  6038. "email": "fabien@symfony.com"
  6039. },
  6040. {
  6041. "name": "Symfony Community",
  6042. "homepage": "https://symfony.com/contributors"
  6043. }
  6044. ],
  6045. "description": "Finds files and directories via an intuitive fluent interface",
  6046. "homepage": "https://symfony.com",
  6047. "funding": [
  6048. {
  6049. "url": "https://symfony.com/sponsor",
  6050. "type": "custom"
  6051. },
  6052. {
  6053. "url": "https://github.com/fabpot",
  6054. "type": "github"
  6055. },
  6056. {
  6057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6058. "type": "tidelift"
  6059. }
  6060. ],
  6061. "time": "2021-08-04T20:31:23+00:00"
  6062. },
  6063. {
  6064. "name": "symfony/yaml",
  6065. "version": "v4.4.34",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/symfony/yaml.git",
  6069. "reference": "2c309e258adeb9970229042be39b360d34986fad"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/symfony/yaml/zipball/2c309e258adeb9970229042be39b360d34986fad",
  6074. "reference": "2c309e258adeb9970229042be39b360d34986fad",
  6075. "shasum": "",
  6076. "mirrors": [
  6077. {
  6078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6079. "preferred": true
  6080. }
  6081. ]
  6082. },
  6083. "require": {
  6084. "php": ">=7.1.3",
  6085. "symfony/polyfill-ctype": "~1.8"
  6086. },
  6087. "conflict": {
  6088. "symfony/console": "<3.4"
  6089. },
  6090. "require-dev": {
  6091. "symfony/console": "^3.4|^4.0|^5.0"
  6092. },
  6093. "suggest": {
  6094. "symfony/console": "For validating YAML files using the lint command"
  6095. },
  6096. "type": "library",
  6097. "autoload": {
  6098. "psr-4": {
  6099. "Symfony\\Component\\Yaml\\": ""
  6100. },
  6101. "exclude-from-classmap": [
  6102. "/Tests/"
  6103. ]
  6104. },
  6105. "notification-url": "https://packagist.org/downloads/",
  6106. "license": [
  6107. "MIT"
  6108. ],
  6109. "authors": [
  6110. {
  6111. "name": "Fabien Potencier",
  6112. "email": "fabien@symfony.com"
  6113. },
  6114. {
  6115. "name": "Symfony Community",
  6116. "homepage": "https://symfony.com/contributors"
  6117. }
  6118. ],
  6119. "description": "Loads and dumps YAML files",
  6120. "homepage": "https://symfony.com",
  6121. "funding": [
  6122. {
  6123. "url": "https://symfony.com/sponsor",
  6124. "type": "custom"
  6125. },
  6126. {
  6127. "url": "https://github.com/fabpot",
  6128. "type": "github"
  6129. },
  6130. {
  6131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6132. "type": "tidelift"
  6133. }
  6134. ],
  6135. "time": "2021-11-18T18:49:23+00:00"
  6136. },
  6137. {
  6138. "name": "theseer/tokenizer",
  6139. "version": "1.2.1",
  6140. "source": {
  6141. "type": "git",
  6142. "url": "https://github.com/theseer/tokenizer.git",
  6143. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  6144. },
  6145. "dist": {
  6146. "type": "zip",
  6147. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  6148. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  6149. "shasum": "",
  6150. "mirrors": [
  6151. {
  6152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6153. "preferred": true
  6154. }
  6155. ]
  6156. },
  6157. "require": {
  6158. "ext-dom": "*",
  6159. "ext-tokenizer": "*",
  6160. "ext-xmlwriter": "*",
  6161. "php": "^7.2 || ^8.0"
  6162. },
  6163. "type": "library",
  6164. "autoload": {
  6165. "classmap": [
  6166. "src/"
  6167. ]
  6168. },
  6169. "notification-url": "https://packagist.org/downloads/",
  6170. "license": [
  6171. "BSD-3-Clause"
  6172. ],
  6173. "authors": [
  6174. {
  6175. "name": "Arne Blankerts",
  6176. "email": "arne@blankerts.de",
  6177. "role": "Developer"
  6178. }
  6179. ],
  6180. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  6181. "funding": [
  6182. {
  6183. "url": "https://github.com/theseer",
  6184. "type": "github"
  6185. }
  6186. ],
  6187. "time": "2021-07-28T10:34:58+00:00"
  6188. },
  6189. {
  6190. "name": "yiisoft/yii2-debug",
  6191. "version": "2.0.14",
  6192. "source": {
  6193. "type": "git",
  6194. "url": "https://github.com/yiisoft/yii2-debug.git",
  6195. "reference": "dc5a4a8529de1a41dbb037dbabf1f3f93002f21d"
  6196. },
  6197. "dist": {
  6198. "type": "zip",
  6199. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/dc5a4a8529de1a41dbb037dbabf1f3f93002f21d",
  6200. "reference": "dc5a4a8529de1a41dbb037dbabf1f3f93002f21d",
  6201. "shasum": "",
  6202. "mirrors": [
  6203. {
  6204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6205. "preferred": true
  6206. }
  6207. ]
  6208. },
  6209. "require": {
  6210. "yiisoft/yii2": "~2.0.13",
  6211. "yiisoft/yii2-bootstrap": "~2.0.0"
  6212. },
  6213. "type": "yii2-extension",
  6214. "extra": {
  6215. "branch-alias": {
  6216. "dev-master": "2.0.x-dev"
  6217. }
  6218. },
  6219. "autoload": {
  6220. "psr-4": {
  6221. "yii\\debug\\": "src"
  6222. }
  6223. },
  6224. "notification-url": "https://packagist.org/downloads/",
  6225. "license": [
  6226. "BSD-3-Clause"
  6227. ],
  6228. "authors": [
  6229. {
  6230. "name": "Qiang Xue",
  6231. "email": "qiang.xue@gmail.com"
  6232. }
  6233. ],
  6234. "description": "The debugger extension for the Yii framework",
  6235. "keywords": [
  6236. "debug",
  6237. "debugger",
  6238. "yii2"
  6239. ],
  6240. "time": "2018-09-23T21:41:04+00:00"
  6241. },
  6242. {
  6243. "name": "yiisoft/yii2-faker",
  6244. "version": "2.0.5",
  6245. "source": {
  6246. "type": "git",
  6247. "url": "https://github.com/yiisoft/yii2-faker.git",
  6248. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d"
  6249. },
  6250. "dist": {
  6251. "type": "zip",
  6252. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  6253. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  6254. "shasum": "",
  6255. "mirrors": [
  6256. {
  6257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6258. "preferred": true
  6259. }
  6260. ]
  6261. },
  6262. "require": {
  6263. "fakerphp/faker": "~1.9|~1.10",
  6264. "yiisoft/yii2": "~2.0.0"
  6265. },
  6266. "require-dev": {
  6267. "cweagans/composer-patches": "^1.7",
  6268. "phpunit/phpunit": "4.8.34"
  6269. },
  6270. "type": "yii2-extension",
  6271. "extra": {
  6272. "branch-alias": {
  6273. "dev-master": "2.0.x-dev"
  6274. },
  6275. "composer-exit-on-patch-failure": true,
  6276. "patches": {
  6277. "phpunit/phpunit-mock-objects": {
  6278. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  6279. },
  6280. "phpunit/phpunit": {
  6281. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  6282. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  6283. }
  6284. }
  6285. },
  6286. "autoload": {
  6287. "psr-4": {
  6288. "yii\\faker\\": "src"
  6289. }
  6290. },
  6291. "notification-url": "https://packagist.org/downloads/",
  6292. "license": [
  6293. "BSD-3-Clause"
  6294. ],
  6295. "authors": [
  6296. {
  6297. "name": "Mark Jebri",
  6298. "email": "mark.github@yandex.ru"
  6299. }
  6300. ],
  6301. "description": "Fixture generator. The Faker integration for the Yii framework.",
  6302. "keywords": [
  6303. "Fixture",
  6304. "faker",
  6305. "yii2"
  6306. ],
  6307. "funding": [
  6308. {
  6309. "url": "https://github.com/yiisoft",
  6310. "type": "github"
  6311. },
  6312. {
  6313. "url": "https://opencollective.com/yiisoft",
  6314. "type": "open_collective"
  6315. },
  6316. {
  6317. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-faker",
  6318. "type": "tidelift"
  6319. }
  6320. ],
  6321. "time": "2020-11-10T12:27:35+00:00"
  6322. },
  6323. {
  6324. "name": "yiisoft/yii2-gii",
  6325. "version": "2.0.8",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/yiisoft/yii2-gii.git",
  6329. "reference": "c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1",
  6334. "reference": "c02adc552bcf3a0ef6f3694a9dcbf209f4885ab1",
  6335. "shasum": "",
  6336. "mirrors": [
  6337. {
  6338. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6339. "preferred": true
  6340. }
  6341. ]
  6342. },
  6343. "require": {
  6344. "bower-asset/typeahead.js": "0.10.* | ~0.11.0",
  6345. "phpspec/php-diff": ">=1.0.2",
  6346. "yiisoft/yii2": "~2.0.14",
  6347. "yiisoft/yii2-bootstrap": "~2.0.0"
  6348. },
  6349. "type": "yii2-extension",
  6350. "extra": {
  6351. "branch-alias": {
  6352. "dev-master": "2.0.x-dev"
  6353. }
  6354. },
  6355. "autoload": {
  6356. "psr-4": {
  6357. "yii\\gii\\": "src"
  6358. }
  6359. },
  6360. "notification-url": "https://packagist.org/downloads/",
  6361. "license": [
  6362. "BSD-3-Clause"
  6363. ],
  6364. "authors": [
  6365. {
  6366. "name": "Qiang Xue",
  6367. "email": "qiang.xue@gmail.com"
  6368. }
  6369. ],
  6370. "description": "The Gii extension for the Yii framework",
  6371. "keywords": [
  6372. "code generator",
  6373. "gii",
  6374. "yii2"
  6375. ],
  6376. "time": "2018-12-08T10:07:49+00:00"
  6377. }
  6378. ],
  6379. "aliases": [],
  6380. "minimum-stability": "stable",
  6381. "stability-flags": {},
  6382. "prefer-stable": false,
  6383. "prefer-lowest": false,
  6384. "platform": {
  6385. "php": ">=7.2.0",
  6386. "ext-pdo": "*",
  6387. "ext-json": "*",
  6388. "ext-curl": "*"
  6389. },
  6390. "platform-dev": {},
  6391. "plugin-api-version": "2.6.0"
  6392. }