composer.lock 225 KB

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