composer.lock 228 KB

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