composer.lock 232 KB

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