composer.lock 229 KB

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