composer.lock 261 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367
  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": "1a0cfb78275fbdcb1744fc79f1d5fb66",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.11.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/brick/math.git",
  15. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  20. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.0"
  25. },
  26. "require-dev": {
  27. "php-coveralls/php-coveralls": "^2.2",
  28. "phpunit/phpunit": "^9.0",
  29. "vimeo/psalm": "5.0.0"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "psr-4": {
  34. "Brick\\Math\\": "src/"
  35. }
  36. },
  37. "notification-url": "https://packagist.org/downloads/",
  38. "license": [
  39. "MIT"
  40. ],
  41. "description": "Arbitrary-precision arithmetic library",
  42. "keywords": [
  43. "Arbitrary-precision",
  44. "BigInteger",
  45. "BigRational",
  46. "arithmetic",
  47. "bigdecimal",
  48. "bignum",
  49. "brick",
  50. "math"
  51. ],
  52. "support": {
  53. "issues": "https://github.com/brick/math/issues",
  54. "source": "https://github.com/brick/math/tree/0.11.0"
  55. },
  56. "funding": [
  57. {
  58. "url": "https://github.com/BenMorel",
  59. "type": "github"
  60. }
  61. ],
  62. "time": "2023-01-15T23:15:59+00:00"
  63. },
  64. {
  65. "name": "ramsey/collection",
  66. "version": "1.2.2",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/ramsey/collection.git",
  70. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/ramsey/collection/zipball/cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  75. "reference": "cccc74ee5e328031b15640b51056ee8d3bb66c0a",
  76. "shasum": ""
  77. },
  78. "require": {
  79. "php": "^7.3 || ^8",
  80. "symfony/polyfill-php81": "^1.23"
  81. },
  82. "require-dev": {
  83. "captainhook/captainhook": "^5.3",
  84. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  85. "ergebnis/composer-normalize": "^2.6",
  86. "fakerphp/faker": "^1.5",
  87. "hamcrest/hamcrest-php": "^2",
  88. "jangregor/phpstan-prophecy": "^0.8",
  89. "mockery/mockery": "^1.3",
  90. "phpspec/prophecy-phpunit": "^2.0",
  91. "phpstan/extension-installer": "^1",
  92. "phpstan/phpstan": "^0.12.32",
  93. "phpstan/phpstan-mockery": "^0.12.5",
  94. "phpstan/phpstan-phpunit": "^0.12.11",
  95. "phpunit/phpunit": "^8.5 || ^9",
  96. "psy/psysh": "^0.10.4",
  97. "slevomat/coding-standard": "^6.3",
  98. "squizlabs/php_codesniffer": "^3.5",
  99. "vimeo/psalm": "^4.4"
  100. },
  101. "type": "library",
  102. "autoload": {
  103. "psr-4": {
  104. "Ramsey\\Collection\\": "src/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Ben Ramsey",
  114. "email": "ben@benramsey.com",
  115. "homepage": "https://benramsey.com"
  116. }
  117. ],
  118. "description": "A PHP library for representing and manipulating collections.",
  119. "keywords": [
  120. "array",
  121. "collection",
  122. "hash",
  123. "map",
  124. "queue",
  125. "set"
  126. ],
  127. "support": {
  128. "issues": "https://github.com/ramsey/collection/issues",
  129. "source": "https://github.com/ramsey/collection/tree/1.2.2"
  130. },
  131. "funding": [
  132. {
  133. "url": "https://github.com/ramsey",
  134. "type": "github"
  135. },
  136. {
  137. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  138. "type": "tidelift"
  139. }
  140. ],
  141. "time": "2021-10-10T03:01:02+00:00"
  142. },
  143. {
  144. "name": "symfony/polyfill-php81",
  145. "version": "v1.26.0",
  146. "source": {
  147. "type": "git",
  148. "url": "https://github.com/symfony/polyfill-php81.git",
  149. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
  150. },
  151. "dist": {
  152. "type": "zip",
  153. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  154. "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
  155. "shasum": ""
  156. },
  157. "require": {
  158. "php": ">=7.1"
  159. },
  160. "type": "library",
  161. "extra": {
  162. "branch-alias": {
  163. "dev-main": "1.26-dev"
  164. },
  165. "thanks": {
  166. "name": "symfony/polyfill",
  167. "url": "https://github.com/symfony/polyfill"
  168. }
  169. },
  170. "autoload": {
  171. "files": [
  172. "bootstrap.php"
  173. ],
  174. "psr-4": {
  175. "Symfony\\Polyfill\\Php81\\": ""
  176. },
  177. "classmap": [
  178. "Resources/stubs"
  179. ]
  180. },
  181. "notification-url": "https://packagist.org/downloads/",
  182. "license": [
  183. "MIT"
  184. ],
  185. "authors": [
  186. {
  187. "name": "Nicolas Grekas",
  188. "email": "p@tchwork.com"
  189. },
  190. {
  191. "name": "Symfony Community",
  192. "homepage": "https://symfony.com/contributors"
  193. }
  194. ],
  195. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  196. "homepage": "https://symfony.com",
  197. "keywords": [
  198. "compatibility",
  199. "polyfill",
  200. "portable",
  201. "shim"
  202. ],
  203. "support": {
  204. "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
  205. },
  206. "funding": [
  207. {
  208. "url": "https://symfony.com/sponsor",
  209. "type": "custom"
  210. },
  211. {
  212. "url": "https://github.com/fabpot",
  213. "type": "github"
  214. },
  215. {
  216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  217. "type": "tidelift"
  218. }
  219. ],
  220. "time": "2022-05-24T11:49:31+00:00"
  221. }
  222. ],
  223. "packages-dev": [
  224. {
  225. "name": "amphp/amp",
  226. "version": "v2.6.2",
  227. "source": {
  228. "type": "git",
  229. "url": "https://github.com/amphp/amp.git",
  230. "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
  231. },
  232. "dist": {
  233. "type": "zip",
  234. "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
  235. "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
  236. "shasum": ""
  237. },
  238. "require": {
  239. "php": ">=7.1"
  240. },
  241. "require-dev": {
  242. "amphp/php-cs-fixer-config": "dev-master",
  243. "amphp/phpunit-util": "^1",
  244. "ext-json": "*",
  245. "jetbrains/phpstorm-stubs": "^2019.3",
  246. "phpunit/phpunit": "^7 | ^8 | ^9",
  247. "psalm/phar": "^3.11@dev",
  248. "react/promise": "^2"
  249. },
  250. "type": "library",
  251. "extra": {
  252. "branch-alias": {
  253. "dev-master": "2.x-dev"
  254. }
  255. },
  256. "autoload": {
  257. "files": [
  258. "lib/functions.php",
  259. "lib/Internal/functions.php"
  260. ],
  261. "psr-4": {
  262. "Amp\\": "lib"
  263. }
  264. },
  265. "notification-url": "https://packagist.org/downloads/",
  266. "license": [
  267. "MIT"
  268. ],
  269. "authors": [
  270. {
  271. "name": "Daniel Lowrey",
  272. "email": "rdlowrey@php.net"
  273. },
  274. {
  275. "name": "Aaron Piotrowski",
  276. "email": "aaron@trowski.com"
  277. },
  278. {
  279. "name": "Bob Weinand",
  280. "email": "bobwei9@hotmail.com"
  281. },
  282. {
  283. "name": "Niklas Keller",
  284. "email": "me@kelunik.com"
  285. }
  286. ],
  287. "description": "A non-blocking concurrency framework for PHP applications.",
  288. "homepage": "https://amphp.org/amp",
  289. "keywords": [
  290. "async",
  291. "asynchronous",
  292. "awaitable",
  293. "concurrency",
  294. "event",
  295. "event-loop",
  296. "future",
  297. "non-blocking",
  298. "promise"
  299. ],
  300. "support": {
  301. "irc": "irc://irc.freenode.org/amphp",
  302. "issues": "https://github.com/amphp/amp/issues",
  303. "source": "https://github.com/amphp/amp/tree/v2.6.2"
  304. },
  305. "funding": [
  306. {
  307. "url": "https://github.com/amphp",
  308. "type": "github"
  309. }
  310. ],
  311. "time": "2022-02-20T17:52:18+00:00"
  312. },
  313. {
  314. "name": "amphp/byte-stream",
  315. "version": "v1.8.1",
  316. "source": {
  317. "type": "git",
  318. "url": "https://github.com/amphp/byte-stream.git",
  319. "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd"
  320. },
  321. "dist": {
  322. "type": "zip",
  323. "url": "https://api.github.com/repos/amphp/byte-stream/zipball/acbd8002b3536485c997c4e019206b3f10ca15bd",
  324. "reference": "acbd8002b3536485c997c4e019206b3f10ca15bd",
  325. "shasum": ""
  326. },
  327. "require": {
  328. "amphp/amp": "^2",
  329. "php": ">=7.1"
  330. },
  331. "require-dev": {
  332. "amphp/php-cs-fixer-config": "dev-master",
  333. "amphp/phpunit-util": "^1.4",
  334. "friendsofphp/php-cs-fixer": "^2.3",
  335. "jetbrains/phpstorm-stubs": "^2019.3",
  336. "phpunit/phpunit": "^6 || ^7 || ^8",
  337. "psalm/phar": "^3.11.4"
  338. },
  339. "type": "library",
  340. "extra": {
  341. "branch-alias": {
  342. "dev-master": "1.x-dev"
  343. }
  344. },
  345. "autoload": {
  346. "files": [
  347. "lib/functions.php"
  348. ],
  349. "psr-4": {
  350. "Amp\\ByteStream\\": "lib"
  351. }
  352. },
  353. "notification-url": "https://packagist.org/downloads/",
  354. "license": [
  355. "MIT"
  356. ],
  357. "authors": [
  358. {
  359. "name": "Aaron Piotrowski",
  360. "email": "aaron@trowski.com"
  361. },
  362. {
  363. "name": "Niklas Keller",
  364. "email": "me@kelunik.com"
  365. }
  366. ],
  367. "description": "A stream abstraction to make working with non-blocking I/O simple.",
  368. "homepage": "http://amphp.org/byte-stream",
  369. "keywords": [
  370. "amp",
  371. "amphp",
  372. "async",
  373. "io",
  374. "non-blocking",
  375. "stream"
  376. ],
  377. "support": {
  378. "irc": "irc://irc.freenode.org/amphp",
  379. "issues": "https://github.com/amphp/byte-stream/issues",
  380. "source": "https://github.com/amphp/byte-stream/tree/v1.8.1"
  381. },
  382. "funding": [
  383. {
  384. "url": "https://github.com/amphp",
  385. "type": "github"
  386. }
  387. ],
  388. "time": "2021-03-30T17:13:30+00:00"
  389. },
  390. {
  391. "name": "captainhook/captainhook",
  392. "version": "5.10.11",
  393. "source": {
  394. "type": "git",
  395. "url": "https://github.com/captainhookphp/captainhook.git",
  396. "reference": "377ea566c5fb91e2fbec6ad0aadf21eb88e18cee"
  397. },
  398. "dist": {
  399. "type": "zip",
  400. "url": "https://api.github.com/repos/captainhookphp/captainhook/zipball/377ea566c5fb91e2fbec6ad0aadf21eb88e18cee",
  401. "reference": "377ea566c5fb91e2fbec6ad0aadf21eb88e18cee",
  402. "shasum": ""
  403. },
  404. "require": {
  405. "ext-json": "*",
  406. "ext-spl": "*",
  407. "ext-xml": "*",
  408. "php": ">=7.2",
  409. "sebastianfeldmann/camino": "^0.9.2",
  410. "sebastianfeldmann/cli": "^3.3",
  411. "sebastianfeldmann/git": "^3.8.1",
  412. "symfony/console": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  413. "symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  414. "symfony/process": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  415. },
  416. "replace": {
  417. "sebastianfeldmann/captainhook": "*"
  418. },
  419. "require-dev": {
  420. "composer/composer": "~1 || ^2.0",
  421. "mikey179/vfsstream": "~1"
  422. },
  423. "bin": [
  424. "bin/captainhook"
  425. ],
  426. "type": "library",
  427. "extra": {
  428. "branch-alias": {
  429. "dev-main": "6.0.x-dev"
  430. },
  431. "captainhook": {
  432. "config": "captainhook.json"
  433. }
  434. },
  435. "autoload": {
  436. "psr-4": {
  437. "CaptainHook\\App\\": "src/"
  438. }
  439. },
  440. "notification-url": "https://packagist.org/downloads/",
  441. "license": [
  442. "MIT"
  443. ],
  444. "authors": [
  445. {
  446. "name": "Sebastian Feldmann",
  447. "email": "sf@sebastian-feldmann.info"
  448. }
  449. ],
  450. "description": "PHP git hook manager",
  451. "homepage": "https://github.com/captainhookphp/captainhook",
  452. "keywords": [
  453. "commit-msg",
  454. "git",
  455. "hooks",
  456. "post-merge",
  457. "pre-commit",
  458. "pre-push",
  459. "prepare-commit-msg"
  460. ],
  461. "support": {
  462. "issues": "https://github.com/captainhookphp/captainhook/issues",
  463. "source": "https://github.com/captainhookphp/captainhook/tree/5.10.11"
  464. },
  465. "funding": [
  466. {
  467. "url": "https://github.com/sponsors/sebastianfeldmann",
  468. "type": "github"
  469. }
  470. ],
  471. "time": "2022-07-26T20:11:41+00:00"
  472. },
  473. {
  474. "name": "captainhook/plugin-composer",
  475. "version": "5.3.3",
  476. "source": {
  477. "type": "git",
  478. "url": "https://github.com/captainhookphp/plugin-composer.git",
  479. "reference": "0a802aaf7742ef22b5cbccd586d99e16d9d23a39"
  480. },
  481. "dist": {
  482. "type": "zip",
  483. "url": "https://api.github.com/repos/captainhookphp/plugin-composer/zipball/0a802aaf7742ef22b5cbccd586d99e16d9d23a39",
  484. "reference": "0a802aaf7742ef22b5cbccd586d99e16d9d23a39",
  485. "shasum": ""
  486. },
  487. "require": {
  488. "captainhook/captainhook": "^5.0",
  489. "composer-plugin-api": "^1.1|^2.0",
  490. "php": ">=7.1"
  491. },
  492. "require-dev": {
  493. "composer/composer": "*"
  494. },
  495. "type": "composer-plugin",
  496. "extra": {
  497. "class": "CaptainHook\\Plugin\\Composer\\ComposerPlugin",
  498. "branch-alias": {
  499. "dev-fluffy_hedgehog": "5.0.x-dev"
  500. }
  501. },
  502. "autoload": {
  503. "psr-4": {
  504. "CaptainHook\\Plugin\\Composer\\": "src"
  505. }
  506. },
  507. "notification-url": "https://packagist.org/downloads/",
  508. "license": [
  509. "MIT"
  510. ],
  511. "authors": [
  512. {
  513. "name": "Andreas Heigl",
  514. "email": "andreas@heigl.org"
  515. },
  516. {
  517. "name": "Sebastian Feldmann",
  518. "email": "sf@sebastian-feldmann.info"
  519. }
  520. ],
  521. "description": "Composer-Plugin handling your git-hooks",
  522. "support": {
  523. "issues": "https://github.com/captainhookphp/plugin-composer/issues",
  524. "source": "https://github.com/captainhookphp/plugin-composer/tree/5.3.3"
  525. },
  526. "time": "2022-01-28T04:35:22+00:00"
  527. },
  528. {
  529. "name": "composer/ca-bundle",
  530. "version": "1.3.3",
  531. "source": {
  532. "type": "git",
  533. "url": "https://github.com/composer/ca-bundle.git",
  534. "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c"
  535. },
  536. "dist": {
  537. "type": "zip",
  538. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/30897edbfb15e784fe55587b4f73ceefd3c4d98c",
  539. "reference": "30897edbfb15e784fe55587b4f73ceefd3c4d98c",
  540. "shasum": ""
  541. },
  542. "require": {
  543. "ext-openssl": "*",
  544. "ext-pcre": "*",
  545. "php": "^5.3.2 || ^7.0 || ^8.0"
  546. },
  547. "require-dev": {
  548. "phpstan/phpstan": "^0.12.55",
  549. "psr/log": "^1.0",
  550. "symfony/phpunit-bridge": "^4.2 || ^5",
  551. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  552. },
  553. "type": "library",
  554. "extra": {
  555. "branch-alias": {
  556. "dev-main": "1.x-dev"
  557. }
  558. },
  559. "autoload": {
  560. "psr-4": {
  561. "Composer\\CaBundle\\": "src"
  562. }
  563. },
  564. "notification-url": "https://packagist.org/downloads/",
  565. "license": [
  566. "MIT"
  567. ],
  568. "authors": [
  569. {
  570. "name": "Jordi Boggiano",
  571. "email": "j.boggiano@seld.be",
  572. "homepage": "http://seld.be"
  573. }
  574. ],
  575. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  576. "keywords": [
  577. "cabundle",
  578. "cacert",
  579. "certificate",
  580. "ssl",
  581. "tls"
  582. ],
  583. "support": {
  584. "irc": "irc://irc.freenode.org/composer",
  585. "issues": "https://github.com/composer/ca-bundle/issues",
  586. "source": "https://github.com/composer/ca-bundle/tree/1.3.3"
  587. },
  588. "funding": [
  589. {
  590. "url": "https://packagist.com",
  591. "type": "custom"
  592. },
  593. {
  594. "url": "https://github.com/composer",
  595. "type": "github"
  596. },
  597. {
  598. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  599. "type": "tidelift"
  600. }
  601. ],
  602. "time": "2022-07-20T07:14:26+00:00"
  603. },
  604. {
  605. "name": "composer/class-map-generator",
  606. "version": "1.0.0",
  607. "source": {
  608. "type": "git",
  609. "url": "https://github.com/composer/class-map-generator.git",
  610. "reference": "1e1cb2b791facb2dfe32932a7718cf2571187513"
  611. },
  612. "dist": {
  613. "type": "zip",
  614. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/1e1cb2b791facb2dfe32932a7718cf2571187513",
  615. "reference": "1e1cb2b791facb2dfe32932a7718cf2571187513",
  616. "shasum": ""
  617. },
  618. "require": {
  619. "composer/pcre": "^2 || ^3",
  620. "php": "^7.2 || ^8.0",
  621. "symfony/finder": "^4.4 || ^5.3 || ^6"
  622. },
  623. "require-dev": {
  624. "phpstan/phpstan": "^1.6",
  625. "phpstan/phpstan-deprecation-rules": "^1",
  626. "phpstan/phpstan-phpunit": "^1",
  627. "phpstan/phpstan-strict-rules": "^1.1",
  628. "symfony/filesystem": "^5.4 || ^6",
  629. "symfony/phpunit-bridge": "^5"
  630. },
  631. "type": "library",
  632. "extra": {
  633. "branch-alias": {
  634. "dev-main": "1.x-dev"
  635. }
  636. },
  637. "autoload": {
  638. "psr-4": {
  639. "Composer\\ClassMapGenerator\\": "src"
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Jordi Boggiano",
  649. "email": "j.boggiano@seld.be",
  650. "homepage": "https://seld.be"
  651. }
  652. ],
  653. "description": "Utilities to scan PHP code and generate class maps.",
  654. "keywords": [
  655. "classmap"
  656. ],
  657. "support": {
  658. "issues": "https://github.com/composer/class-map-generator/issues",
  659. "source": "https://github.com/composer/class-map-generator/tree/1.0.0"
  660. },
  661. "funding": [
  662. {
  663. "url": "https://packagist.com",
  664. "type": "custom"
  665. },
  666. {
  667. "url": "https://github.com/composer",
  668. "type": "github"
  669. },
  670. {
  671. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  672. "type": "tidelift"
  673. }
  674. ],
  675. "time": "2022-06-19T11:31:27+00:00"
  676. },
  677. {
  678. "name": "composer/composer",
  679. "version": "2.4.1",
  680. "source": {
  681. "type": "git",
  682. "url": "https://github.com/composer/composer.git",
  683. "reference": "777d542e3af65f8e7a66a4d98ce7a697da339414"
  684. },
  685. "dist": {
  686. "type": "zip",
  687. "url": "https://api.github.com/repos/composer/composer/zipball/777d542e3af65f8e7a66a4d98ce7a697da339414",
  688. "reference": "777d542e3af65f8e7a66a4d98ce7a697da339414",
  689. "shasum": ""
  690. },
  691. "require": {
  692. "composer/ca-bundle": "^1.0",
  693. "composer/class-map-generator": "^1.0",
  694. "composer/metadata-minifier": "^1.0",
  695. "composer/pcre": "^2 || ^3",
  696. "composer/semver": "^3.0",
  697. "composer/spdx-licenses": "^1.5.7",
  698. "composer/xdebug-handler": "^2.0.2 || ^3.0.3",
  699. "justinrainbow/json-schema": "^5.2.11",
  700. "php": "^7.2.5 || ^8.0",
  701. "psr/log": "^1.0 || ^2.0 || ^3.0",
  702. "react/promise": "^2.8",
  703. "seld/jsonlint": "^1.4",
  704. "seld/phar-utils": "^1.2",
  705. "seld/signal-handler": "^2.0",
  706. "symfony/console": "^5.4.11 || ^6.0.11",
  707. "symfony/filesystem": "^5.4 || ^6.0",
  708. "symfony/finder": "^5.4 || ^6.0",
  709. "symfony/polyfill-php73": "^1.24",
  710. "symfony/polyfill-php80": "^1.24",
  711. "symfony/process": "^5.4 || ^6.0"
  712. },
  713. "require-dev": {
  714. "phpstan/phpstan": "^1.4.1",
  715. "phpstan/phpstan-deprecation-rules": "^1",
  716. "phpstan/phpstan-phpunit": "^1.0",
  717. "phpstan/phpstan-strict-rules": "^1",
  718. "phpstan/phpstan-symfony": "^1.1",
  719. "symfony/phpunit-bridge": "^6.0"
  720. },
  721. "suggest": {
  722. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  723. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  724. "ext-zlib": "Allow gzip compression of HTTP requests"
  725. },
  726. "bin": [
  727. "bin/composer"
  728. ],
  729. "type": "library",
  730. "extra": {
  731. "branch-alias": {
  732. "dev-main": "2.4-dev"
  733. },
  734. "phpstan": {
  735. "includes": [
  736. "phpstan/rules.neon"
  737. ]
  738. }
  739. },
  740. "autoload": {
  741. "psr-4": {
  742. "Composer\\": "src/Composer"
  743. }
  744. },
  745. "notification-url": "https://packagist.org/downloads/",
  746. "license": [
  747. "MIT"
  748. ],
  749. "authors": [
  750. {
  751. "name": "Nils Adermann",
  752. "email": "naderman@naderman.de",
  753. "homepage": "https://www.naderman.de"
  754. },
  755. {
  756. "name": "Jordi Boggiano",
  757. "email": "j.boggiano@seld.be",
  758. "homepage": "https://seld.be"
  759. }
  760. ],
  761. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  762. "homepage": "https://getcomposer.org/",
  763. "keywords": [
  764. "autoload",
  765. "dependency",
  766. "package"
  767. ],
  768. "support": {
  769. "irc": "ircs://irc.libera.chat:6697/composer",
  770. "issues": "https://github.com/composer/composer/issues",
  771. "source": "https://github.com/composer/composer/tree/2.4.1"
  772. },
  773. "funding": [
  774. {
  775. "url": "https://packagist.com",
  776. "type": "custom"
  777. },
  778. {
  779. "url": "https://github.com/composer",
  780. "type": "github"
  781. },
  782. {
  783. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  784. "type": "tidelift"
  785. }
  786. ],
  787. "time": "2022-08-20T09:44:50+00:00"
  788. },
  789. {
  790. "name": "composer/metadata-minifier",
  791. "version": "1.0.0",
  792. "source": {
  793. "type": "git",
  794. "url": "https://github.com/composer/metadata-minifier.git",
  795. "reference": "c549d23829536f0d0e984aaabbf02af91f443207"
  796. },
  797. "dist": {
  798. "type": "zip",
  799. "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207",
  800. "reference": "c549d23829536f0d0e984aaabbf02af91f443207",
  801. "shasum": ""
  802. },
  803. "require": {
  804. "php": "^5.3.2 || ^7.0 || ^8.0"
  805. },
  806. "require-dev": {
  807. "composer/composer": "^2",
  808. "phpstan/phpstan": "^0.12.55",
  809. "symfony/phpunit-bridge": "^4.2 || ^5"
  810. },
  811. "type": "library",
  812. "extra": {
  813. "branch-alias": {
  814. "dev-main": "1.x-dev"
  815. }
  816. },
  817. "autoload": {
  818. "psr-4": {
  819. "Composer\\MetadataMinifier\\": "src"
  820. }
  821. },
  822. "notification-url": "https://packagist.org/downloads/",
  823. "license": [
  824. "MIT"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Jordi Boggiano",
  829. "email": "j.boggiano@seld.be",
  830. "homepage": "http://seld.be"
  831. }
  832. ],
  833. "description": "Small utility library that handles metadata minification and expansion.",
  834. "keywords": [
  835. "composer",
  836. "compression"
  837. ],
  838. "support": {
  839. "issues": "https://github.com/composer/metadata-minifier/issues",
  840. "source": "https://github.com/composer/metadata-minifier/tree/1.0.0"
  841. },
  842. "funding": [
  843. {
  844. "url": "https://packagist.com",
  845. "type": "custom"
  846. },
  847. {
  848. "url": "https://github.com/composer",
  849. "type": "github"
  850. },
  851. {
  852. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  853. "type": "tidelift"
  854. }
  855. ],
  856. "time": "2021-04-07T13:37:33+00:00"
  857. },
  858. {
  859. "name": "composer/package-versions-deprecated",
  860. "version": "1.11.99.5",
  861. "source": {
  862. "type": "git",
  863. "url": "https://github.com/composer/package-versions-deprecated.git",
  864. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d"
  865. },
  866. "dist": {
  867. "type": "zip",
  868. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b4f54f74ef3453349c24a845d22392cd31e65f1d",
  869. "reference": "b4f54f74ef3453349c24a845d22392cd31e65f1d",
  870. "shasum": ""
  871. },
  872. "require": {
  873. "composer-plugin-api": "^1.1.0 || ^2.0",
  874. "php": "^7 || ^8"
  875. },
  876. "replace": {
  877. "ocramius/package-versions": "1.11.99"
  878. },
  879. "require-dev": {
  880. "composer/composer": "^1.9.3 || ^2.0@dev",
  881. "ext-zip": "^1.13",
  882. "phpunit/phpunit": "^6.5 || ^7"
  883. },
  884. "type": "composer-plugin",
  885. "extra": {
  886. "class": "PackageVersions\\Installer",
  887. "branch-alias": {
  888. "dev-master": "1.x-dev"
  889. }
  890. },
  891. "autoload": {
  892. "psr-4": {
  893. "PackageVersions\\": "src/PackageVersions"
  894. }
  895. },
  896. "notification-url": "https://packagist.org/downloads/",
  897. "license": [
  898. "MIT"
  899. ],
  900. "authors": [
  901. {
  902. "name": "Marco Pivetta",
  903. "email": "ocramius@gmail.com"
  904. },
  905. {
  906. "name": "Jordi Boggiano",
  907. "email": "j.boggiano@seld.be"
  908. }
  909. ],
  910. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  911. "support": {
  912. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  913. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.5"
  914. },
  915. "funding": [
  916. {
  917. "url": "https://packagist.com",
  918. "type": "custom"
  919. },
  920. {
  921. "url": "https://github.com/composer",
  922. "type": "github"
  923. },
  924. {
  925. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  926. "type": "tidelift"
  927. }
  928. ],
  929. "time": "2022-01-17T14:14:24+00:00"
  930. },
  931. {
  932. "name": "composer/pcre",
  933. "version": "3.0.0",
  934. "source": {
  935. "type": "git",
  936. "url": "https://github.com/composer/pcre.git",
  937. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
  938. },
  939. "dist": {
  940. "type": "zip",
  941. "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  942. "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
  943. "shasum": ""
  944. },
  945. "require": {
  946. "php": "^7.4 || ^8.0"
  947. },
  948. "require-dev": {
  949. "phpstan/phpstan": "^1.3",
  950. "phpstan/phpstan-strict-rules": "^1.1",
  951. "symfony/phpunit-bridge": "^5"
  952. },
  953. "type": "library",
  954. "extra": {
  955. "branch-alias": {
  956. "dev-main": "3.x-dev"
  957. }
  958. },
  959. "autoload": {
  960. "psr-4": {
  961. "Composer\\Pcre\\": "src"
  962. }
  963. },
  964. "notification-url": "https://packagist.org/downloads/",
  965. "license": [
  966. "MIT"
  967. ],
  968. "authors": [
  969. {
  970. "name": "Jordi Boggiano",
  971. "email": "j.boggiano@seld.be",
  972. "homepage": "http://seld.be"
  973. }
  974. ],
  975. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  976. "keywords": [
  977. "PCRE",
  978. "preg",
  979. "regex",
  980. "regular expression"
  981. ],
  982. "support": {
  983. "issues": "https://github.com/composer/pcre/issues",
  984. "source": "https://github.com/composer/pcre/tree/3.0.0"
  985. },
  986. "funding": [
  987. {
  988. "url": "https://packagist.com",
  989. "type": "custom"
  990. },
  991. {
  992. "url": "https://github.com/composer",
  993. "type": "github"
  994. },
  995. {
  996. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  997. "type": "tidelift"
  998. }
  999. ],
  1000. "time": "2022-02-25T20:21:48+00:00"
  1001. },
  1002. {
  1003. "name": "composer/semver",
  1004. "version": "3.3.2",
  1005. "source": {
  1006. "type": "git",
  1007. "url": "https://github.com/composer/semver.git",
  1008. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  1009. },
  1010. "dist": {
  1011. "type": "zip",
  1012. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  1013. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  1014. "shasum": ""
  1015. },
  1016. "require": {
  1017. "php": "^5.3.2 || ^7.0 || ^8.0"
  1018. },
  1019. "require-dev": {
  1020. "phpstan/phpstan": "^1.4",
  1021. "symfony/phpunit-bridge": "^4.2 || ^5"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "branch-alias": {
  1026. "dev-main": "3.x-dev"
  1027. }
  1028. },
  1029. "autoload": {
  1030. "psr-4": {
  1031. "Composer\\Semver\\": "src"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "authors": [
  1039. {
  1040. "name": "Nils Adermann",
  1041. "email": "naderman@naderman.de",
  1042. "homepage": "http://www.naderman.de"
  1043. },
  1044. {
  1045. "name": "Jordi Boggiano",
  1046. "email": "j.boggiano@seld.be",
  1047. "homepage": "http://seld.be"
  1048. },
  1049. {
  1050. "name": "Rob Bast",
  1051. "email": "rob.bast@gmail.com",
  1052. "homepage": "http://robbast.nl"
  1053. }
  1054. ],
  1055. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1056. "keywords": [
  1057. "semantic",
  1058. "semver",
  1059. "validation",
  1060. "versioning"
  1061. ],
  1062. "support": {
  1063. "irc": "irc://irc.freenode.org/composer",
  1064. "issues": "https://github.com/composer/semver/issues",
  1065. "source": "https://github.com/composer/semver/tree/3.3.2"
  1066. },
  1067. "funding": [
  1068. {
  1069. "url": "https://packagist.com",
  1070. "type": "custom"
  1071. },
  1072. {
  1073. "url": "https://github.com/composer",
  1074. "type": "github"
  1075. },
  1076. {
  1077. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1078. "type": "tidelift"
  1079. }
  1080. ],
  1081. "time": "2022-04-01T19:23:25+00:00"
  1082. },
  1083. {
  1084. "name": "composer/spdx-licenses",
  1085. "version": "1.5.7",
  1086. "source": {
  1087. "type": "git",
  1088. "url": "https://github.com/composer/spdx-licenses.git",
  1089. "reference": "c848241796da2abf65837d51dce1fae55a960149"
  1090. },
  1091. "dist": {
  1092. "type": "zip",
  1093. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/c848241796da2abf65837d51dce1fae55a960149",
  1094. "reference": "c848241796da2abf65837d51dce1fae55a960149",
  1095. "shasum": ""
  1096. },
  1097. "require": {
  1098. "php": "^5.3.2 || ^7.0 || ^8.0"
  1099. },
  1100. "require-dev": {
  1101. "phpstan/phpstan": "^0.12.55",
  1102. "symfony/phpunit-bridge": "^4.2 || ^5"
  1103. },
  1104. "type": "library",
  1105. "extra": {
  1106. "branch-alias": {
  1107. "dev-main": "1.x-dev"
  1108. }
  1109. },
  1110. "autoload": {
  1111. "psr-4": {
  1112. "Composer\\Spdx\\": "src"
  1113. }
  1114. },
  1115. "notification-url": "https://packagist.org/downloads/",
  1116. "license": [
  1117. "MIT"
  1118. ],
  1119. "authors": [
  1120. {
  1121. "name": "Nils Adermann",
  1122. "email": "naderman@naderman.de",
  1123. "homepage": "http://www.naderman.de"
  1124. },
  1125. {
  1126. "name": "Jordi Boggiano",
  1127. "email": "j.boggiano@seld.be",
  1128. "homepage": "http://seld.be"
  1129. },
  1130. {
  1131. "name": "Rob Bast",
  1132. "email": "rob.bast@gmail.com",
  1133. "homepage": "http://robbast.nl"
  1134. }
  1135. ],
  1136. "description": "SPDX licenses list and validation library.",
  1137. "keywords": [
  1138. "license",
  1139. "spdx",
  1140. "validator"
  1141. ],
  1142. "support": {
  1143. "irc": "irc://irc.freenode.org/composer",
  1144. "issues": "https://github.com/composer/spdx-licenses/issues",
  1145. "source": "https://github.com/composer/spdx-licenses/tree/1.5.7"
  1146. },
  1147. "funding": [
  1148. {
  1149. "url": "https://packagist.com",
  1150. "type": "custom"
  1151. },
  1152. {
  1153. "url": "https://github.com/composer",
  1154. "type": "github"
  1155. },
  1156. {
  1157. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1158. "type": "tidelift"
  1159. }
  1160. ],
  1161. "time": "2022-05-23T07:37:50+00:00"
  1162. },
  1163. {
  1164. "name": "composer/xdebug-handler",
  1165. "version": "3.0.3",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/composer/xdebug-handler.git",
  1169. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  1174. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "composer/pcre": "^1 || ^2 || ^3",
  1179. "php": "^7.2.5 || ^8.0",
  1180. "psr/log": "^1 || ^2 || ^3"
  1181. },
  1182. "require-dev": {
  1183. "phpstan/phpstan": "^1.0",
  1184. "phpstan/phpstan-strict-rules": "^1.1",
  1185. "symfony/phpunit-bridge": "^6.0"
  1186. },
  1187. "type": "library",
  1188. "autoload": {
  1189. "psr-4": {
  1190. "Composer\\XdebugHandler\\": "src"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "John Stevenson",
  1200. "email": "john-stevenson@blueyonder.co.uk"
  1201. }
  1202. ],
  1203. "description": "Restarts a process without Xdebug.",
  1204. "keywords": [
  1205. "Xdebug",
  1206. "performance"
  1207. ],
  1208. "support": {
  1209. "irc": "irc://irc.freenode.org/composer",
  1210. "issues": "https://github.com/composer/xdebug-handler/issues",
  1211. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  1212. },
  1213. "funding": [
  1214. {
  1215. "url": "https://packagist.com",
  1216. "type": "custom"
  1217. },
  1218. {
  1219. "url": "https://github.com/composer",
  1220. "type": "github"
  1221. },
  1222. {
  1223. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1224. "type": "tidelift"
  1225. }
  1226. ],
  1227. "time": "2022-02-25T21:32:43+00:00"
  1228. },
  1229. {
  1230. "name": "dealerdirect/phpcodesniffer-composer-installer",
  1231. "version": "v0.7.2",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
  1235. "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
  1240. "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "composer-plugin-api": "^1.0 || ^2.0",
  1245. "php": ">=5.3",
  1246. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  1247. },
  1248. "require-dev": {
  1249. "composer/composer": "*",
  1250. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  1251. "phpcompatibility/php-compatibility": "^9.0"
  1252. },
  1253. "type": "composer-plugin",
  1254. "extra": {
  1255. "class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  1256. },
  1257. "autoload": {
  1258. "psr-4": {
  1259. "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  1260. }
  1261. },
  1262. "notification-url": "https://packagist.org/downloads/",
  1263. "license": [
  1264. "MIT"
  1265. ],
  1266. "authors": [
  1267. {
  1268. "name": "Franck Nijhof",
  1269. "email": "franck.nijhof@dealerdirect.com",
  1270. "homepage": "http://www.frenck.nl",
  1271. "role": "Developer / IT Manager"
  1272. },
  1273. {
  1274. "name": "Contributors",
  1275. "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors"
  1276. }
  1277. ],
  1278. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  1279. "homepage": "http://www.dealerdirect.com",
  1280. "keywords": [
  1281. "PHPCodeSniffer",
  1282. "PHP_CodeSniffer",
  1283. "code quality",
  1284. "codesniffer",
  1285. "composer",
  1286. "installer",
  1287. "phpcbf",
  1288. "phpcs",
  1289. "plugin",
  1290. "qa",
  1291. "quality",
  1292. "standard",
  1293. "standards",
  1294. "style guide",
  1295. "stylecheck",
  1296. "tests"
  1297. ],
  1298. "support": {
  1299. "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
  1300. "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
  1301. },
  1302. "time": "2022-02-04T12:51:07+00:00"
  1303. },
  1304. {
  1305. "name": "dnoegel/php-xdg-base-dir",
  1306. "version": "v0.1.1",
  1307. "source": {
  1308. "type": "git",
  1309. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1310. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1311. },
  1312. "dist": {
  1313. "type": "zip",
  1314. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1315. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1316. "shasum": ""
  1317. },
  1318. "require": {
  1319. "php": ">=5.3.2"
  1320. },
  1321. "require-dev": {
  1322. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1323. },
  1324. "type": "library",
  1325. "autoload": {
  1326. "psr-4": {
  1327. "XdgBaseDir\\": "src/"
  1328. }
  1329. },
  1330. "notification-url": "https://packagist.org/downloads/",
  1331. "license": [
  1332. "MIT"
  1333. ],
  1334. "description": "implementation of xdg base directory specification for php",
  1335. "support": {
  1336. "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
  1337. "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
  1338. },
  1339. "time": "2019-12-04T15:06:13+00:00"
  1340. },
  1341. {
  1342. "name": "doctrine/annotations",
  1343. "version": "1.13.3",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/doctrine/annotations.git",
  1347. "reference": "648b0343343565c4a056bfc8392201385e8d89f0"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/doctrine/annotations/zipball/648b0343343565c4a056bfc8392201385e8d89f0",
  1352. "reference": "648b0343343565c4a056bfc8392201385e8d89f0",
  1353. "shasum": ""
  1354. },
  1355. "require": {
  1356. "doctrine/lexer": "1.*",
  1357. "ext-tokenizer": "*",
  1358. "php": "^7.1 || ^8.0",
  1359. "psr/cache": "^1 || ^2 || ^3"
  1360. },
  1361. "require-dev": {
  1362. "doctrine/cache": "^1.11 || ^2.0",
  1363. "doctrine/coding-standard": "^6.0 || ^8.1",
  1364. "phpstan/phpstan": "^1.4.10 || ^1.8.0",
  1365. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  1366. "symfony/cache": "^4.4 || ^5.2",
  1367. "vimeo/psalm": "^4.10"
  1368. },
  1369. "type": "library",
  1370. "autoload": {
  1371. "psr-4": {
  1372. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1373. }
  1374. },
  1375. "notification-url": "https://packagist.org/downloads/",
  1376. "license": [
  1377. "MIT"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Guilherme Blanco",
  1382. "email": "guilhermeblanco@gmail.com"
  1383. },
  1384. {
  1385. "name": "Roman Borschel",
  1386. "email": "roman@code-factory.org"
  1387. },
  1388. {
  1389. "name": "Benjamin Eberlei",
  1390. "email": "kontakt@beberlei.de"
  1391. },
  1392. {
  1393. "name": "Jonathan Wage",
  1394. "email": "jonwage@gmail.com"
  1395. },
  1396. {
  1397. "name": "Johannes Schmitt",
  1398. "email": "schmittjoh@gmail.com"
  1399. }
  1400. ],
  1401. "description": "Docblock Annotations Parser",
  1402. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1403. "keywords": [
  1404. "annotations",
  1405. "docblock",
  1406. "parser"
  1407. ],
  1408. "support": {
  1409. "issues": "https://github.com/doctrine/annotations/issues",
  1410. "source": "https://github.com/doctrine/annotations/tree/1.13.3"
  1411. },
  1412. "time": "2022-07-02T10:48:51+00:00"
  1413. },
  1414. {
  1415. "name": "doctrine/instantiator",
  1416. "version": "1.4.1",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/doctrine/instantiator.git",
  1420. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
  1425. "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
  1426. "shasum": ""
  1427. },
  1428. "require": {
  1429. "php": "^7.1 || ^8.0"
  1430. },
  1431. "require-dev": {
  1432. "doctrine/coding-standard": "^9",
  1433. "ext-pdo": "*",
  1434. "ext-phar": "*",
  1435. "phpbench/phpbench": "^0.16 || ^1",
  1436. "phpstan/phpstan": "^1.4",
  1437. "phpstan/phpstan-phpunit": "^1",
  1438. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1439. "vimeo/psalm": "^4.22"
  1440. },
  1441. "type": "library",
  1442. "autoload": {
  1443. "psr-4": {
  1444. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  1445. }
  1446. },
  1447. "notification-url": "https://packagist.org/downloads/",
  1448. "license": [
  1449. "MIT"
  1450. ],
  1451. "authors": [
  1452. {
  1453. "name": "Marco Pivetta",
  1454. "email": "ocramius@gmail.com",
  1455. "homepage": "https://ocramius.github.io/"
  1456. }
  1457. ],
  1458. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  1459. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  1460. "keywords": [
  1461. "constructor",
  1462. "instantiate"
  1463. ],
  1464. "support": {
  1465. "issues": "https://github.com/doctrine/instantiator/issues",
  1466. "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
  1467. },
  1468. "funding": [
  1469. {
  1470. "url": "https://www.doctrine-project.org/sponsorship.html",
  1471. "type": "custom"
  1472. },
  1473. {
  1474. "url": "https://www.patreon.com/phpdoctrine",
  1475. "type": "patreon"
  1476. },
  1477. {
  1478. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  1479. "type": "tidelift"
  1480. }
  1481. ],
  1482. "time": "2022-03-03T08:28:38+00:00"
  1483. },
  1484. {
  1485. "name": "doctrine/lexer",
  1486. "version": "1.2.3",
  1487. "source": {
  1488. "type": "git",
  1489. "url": "https://github.com/doctrine/lexer.git",
  1490. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1491. },
  1492. "dist": {
  1493. "type": "zip",
  1494. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1495. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1496. "shasum": ""
  1497. },
  1498. "require": {
  1499. "php": "^7.1 || ^8.0"
  1500. },
  1501. "require-dev": {
  1502. "doctrine/coding-standard": "^9.0",
  1503. "phpstan/phpstan": "^1.3",
  1504. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1505. "vimeo/psalm": "^4.11"
  1506. },
  1507. "type": "library",
  1508. "autoload": {
  1509. "psr-4": {
  1510. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1511. }
  1512. },
  1513. "notification-url": "https://packagist.org/downloads/",
  1514. "license": [
  1515. "MIT"
  1516. ],
  1517. "authors": [
  1518. {
  1519. "name": "Guilherme Blanco",
  1520. "email": "guilhermeblanco@gmail.com"
  1521. },
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Johannes Schmitt",
  1528. "email": "schmittjoh@gmail.com"
  1529. }
  1530. ],
  1531. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1532. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1533. "keywords": [
  1534. "annotations",
  1535. "docblock",
  1536. "lexer",
  1537. "parser",
  1538. "php"
  1539. ],
  1540. "support": {
  1541. "issues": "https://github.com/doctrine/lexer/issues",
  1542. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1543. },
  1544. "funding": [
  1545. {
  1546. "url": "https://www.doctrine-project.org/sponsorship.html",
  1547. "type": "custom"
  1548. },
  1549. {
  1550. "url": "https://www.patreon.com/phpdoctrine",
  1551. "type": "patreon"
  1552. },
  1553. {
  1554. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1555. "type": "tidelift"
  1556. }
  1557. ],
  1558. "time": "2022-02-28T11:07:21+00:00"
  1559. },
  1560. {
  1561. "name": "ergebnis/composer-normalize",
  1562. "version": "2.28.3",
  1563. "source": {
  1564. "type": "git",
  1565. "url": "https://github.com/ergebnis/composer-normalize.git",
  1566. "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c"
  1567. },
  1568. "dist": {
  1569. "type": "zip",
  1570. "url": "https://api.github.com/repos/ergebnis/composer-normalize/zipball/ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
  1571. "reference": "ec75a2bf751f6fec165e9ea0262655b8ca397e5c",
  1572. "shasum": ""
  1573. },
  1574. "require": {
  1575. "composer-plugin-api": "^2.0.0",
  1576. "ergebnis/json-normalizer": "~2.1.0",
  1577. "ergebnis/json-printer": "^3.2.0",
  1578. "justinrainbow/json-schema": "^5.2.12",
  1579. "localheinz/diff": "^1.1.1",
  1580. "php": "^7.4 || ^8.0"
  1581. },
  1582. "require-dev": {
  1583. "composer/composer": "^2.3.9",
  1584. "ergebnis/license": "^1.2.0",
  1585. "ergebnis/php-cs-fixer-config": "^4.4.0",
  1586. "fakerphp/faker": "^1.19.0",
  1587. "phpunit/phpunit": "^9.5.21",
  1588. "psalm/plugin-phpunit": "~0.17.0",
  1589. "symfony/filesystem": "^5.4.9",
  1590. "vimeo/psalm": "^4.24.0"
  1591. },
  1592. "type": "composer-plugin",
  1593. "extra": {
  1594. "class": "Ergebnis\\Composer\\Normalize\\NormalizePlugin",
  1595. "composer-normalize": {
  1596. "indent-size": 2,
  1597. "indent-style": "space"
  1598. }
  1599. },
  1600. "autoload": {
  1601. "psr-4": {
  1602. "Ergebnis\\Composer\\Normalize\\": "src/"
  1603. }
  1604. },
  1605. "notification-url": "https://packagist.org/downloads/",
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Andreas Möller",
  1612. "email": "am@localheinz.com"
  1613. }
  1614. ],
  1615. "description": "Provides a composer plugin for normalizing composer.json.",
  1616. "homepage": "https://github.com/ergebnis/composer-normalize",
  1617. "keywords": [
  1618. "composer",
  1619. "normalize",
  1620. "normalizer",
  1621. "plugin"
  1622. ],
  1623. "support": {
  1624. "issues": "https://github.com/ergebnis/composer-normalize/issues",
  1625. "source": "https://github.com/ergebnis/composer-normalize"
  1626. },
  1627. "time": "2022-07-05T16:09:10+00:00"
  1628. },
  1629. {
  1630. "name": "ergebnis/json-normalizer",
  1631. "version": "2.1.0",
  1632. "source": {
  1633. "type": "git",
  1634. "url": "https://github.com/ergebnis/json-normalizer.git",
  1635. "reference": "2039eb11131a243b9204bf51219baa08935e6b1d"
  1636. },
  1637. "dist": {
  1638. "type": "zip",
  1639. "url": "https://api.github.com/repos/ergebnis/json-normalizer/zipball/2039eb11131a243b9204bf51219baa08935e6b1d",
  1640. "reference": "2039eb11131a243b9204bf51219baa08935e6b1d",
  1641. "shasum": ""
  1642. },
  1643. "require": {
  1644. "ergebnis/json-printer": "^3.2.0",
  1645. "ergebnis/json-schema-validator": "^2.0.0",
  1646. "ext-json": "*",
  1647. "justinrainbow/json-schema": "^5.2.11",
  1648. "php": "^7.4 || ^8.0"
  1649. },
  1650. "require-dev": {
  1651. "ergebnis/data-provider": "^1.0.0",
  1652. "ergebnis/license": "^1.2.0",
  1653. "ergebnis/php-cs-fixer-config": "^3.4.0",
  1654. "fakerphp/faker": "^1.17.0",
  1655. "infection/infection": "~0.25.5",
  1656. "phpunit/phpunit": "^9.5.11",
  1657. "psalm/plugin-phpunit": "~0.16.1",
  1658. "vimeo/psalm": "^4.17.0"
  1659. },
  1660. "type": "library",
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Ergebnis\\Json\\Normalizer\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Andreas Möller",
  1673. "email": "am@localheinz.com"
  1674. }
  1675. ],
  1676. "description": "Provides generic and vendor-specific normalizers for normalizing JSON documents.",
  1677. "homepage": "https://github.com/ergebnis/json-normalizer",
  1678. "keywords": [
  1679. "json",
  1680. "normalizer"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/ergebnis/json-normalizer/issues",
  1684. "source": "https://github.com/ergebnis/json-normalizer"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://github.com/localheinz",
  1689. "type": "github"
  1690. }
  1691. ],
  1692. "time": "2022-01-04T11:19:55+00:00"
  1693. },
  1694. {
  1695. "name": "ergebnis/json-printer",
  1696. "version": "3.2.0",
  1697. "source": {
  1698. "type": "git",
  1699. "url": "https://github.com/ergebnis/json-printer.git",
  1700. "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005"
  1701. },
  1702. "dist": {
  1703. "type": "zip",
  1704. "url": "https://api.github.com/repos/ergebnis/json-printer/zipball/651cab2b7604a6b338d0d16749f5ea0851a68005",
  1705. "reference": "651cab2b7604a6b338d0d16749f5ea0851a68005",
  1706. "shasum": ""
  1707. },
  1708. "require": {
  1709. "ext-json": "*",
  1710. "ext-mbstring": "*",
  1711. "php": "^7.4 || ^8.0"
  1712. },
  1713. "require-dev": {
  1714. "ergebnis/license": "^1.1.0",
  1715. "ergebnis/php-cs-fixer-config": "^3.4.0",
  1716. "fakerphp/faker": "^1.17.0",
  1717. "infection/infection": "~0.25.5",
  1718. "phpunit/phpunit": "^9.5.11",
  1719. "psalm/plugin-phpunit": "~0.16.1",
  1720. "vimeo/psalm": "^4.16.1"
  1721. },
  1722. "type": "library",
  1723. "autoload": {
  1724. "psr-4": {
  1725. "Ergebnis\\Json\\Printer\\": "src/"
  1726. }
  1727. },
  1728. "notification-url": "https://packagist.org/downloads/",
  1729. "license": [
  1730. "MIT"
  1731. ],
  1732. "authors": [
  1733. {
  1734. "name": "Andreas Möller",
  1735. "email": "am@localheinz.com"
  1736. }
  1737. ],
  1738. "description": "Provides a JSON printer, allowing for flexible indentation.",
  1739. "homepage": "https://github.com/ergebnis/json-printer",
  1740. "keywords": [
  1741. "formatter",
  1742. "json",
  1743. "printer"
  1744. ],
  1745. "support": {
  1746. "issues": "https://github.com/ergebnis/json-printer/issues",
  1747. "source": "https://github.com/ergebnis/json-printer"
  1748. },
  1749. "funding": [
  1750. {
  1751. "url": "https://github.com/localheinz",
  1752. "type": "github"
  1753. }
  1754. ],
  1755. "time": "2021-12-27T12:39:13+00:00"
  1756. },
  1757. {
  1758. "name": "ergebnis/json-schema-validator",
  1759. "version": "2.0.0",
  1760. "source": {
  1761. "type": "git",
  1762. "url": "https://github.com/ergebnis/json-schema-validator.git",
  1763. "reference": "dacd8a47c1cc2c426ec71e952da3609ebe901fac"
  1764. },
  1765. "dist": {
  1766. "type": "zip",
  1767. "url": "https://api.github.com/repos/ergebnis/json-schema-validator/zipball/dacd8a47c1cc2c426ec71e952da3609ebe901fac",
  1768. "reference": "dacd8a47c1cc2c426ec71e952da3609ebe901fac",
  1769. "shasum": ""
  1770. },
  1771. "require": {
  1772. "ext-json": "*",
  1773. "justinrainbow/json-schema": "^5.2.10",
  1774. "php": "^7.4 || ^8.0"
  1775. },
  1776. "require-dev": {
  1777. "ergebnis/composer-normalize": "^2.18.0",
  1778. "ergebnis/data-provider": "^1.0.0",
  1779. "ergebnis/license": "^1.1.0",
  1780. "ergebnis/php-cs-fixer-config": "~3.4.0",
  1781. "fakerphp/faker": "^1.17.0",
  1782. "infection/infection": "~0.25.3",
  1783. "phpunit/phpunit": "~9.5.10",
  1784. "psalm/plugin-phpunit": "~0.16.1",
  1785. "vimeo/psalm": "^4.15.0"
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "composer-normalize": {
  1790. "indent-size": 2,
  1791. "indent-style": "space"
  1792. }
  1793. },
  1794. "autoload": {
  1795. "psr-4": {
  1796. "Ergebnis\\Json\\SchemaValidator\\": "src/"
  1797. }
  1798. },
  1799. "notification-url": "https://packagist.org/downloads/",
  1800. "license": [
  1801. "MIT"
  1802. ],
  1803. "authors": [
  1804. {
  1805. "name": "Andreas Möller",
  1806. "email": "am@localheinz.com"
  1807. }
  1808. ],
  1809. "description": "Provides a JSON schema validator, building on top of justinrainbow/json-schema.",
  1810. "homepage": "https://github.com/ergebnis/json-schema-validator",
  1811. "keywords": [
  1812. "json",
  1813. "schema",
  1814. "validator"
  1815. ],
  1816. "support": {
  1817. "issues": "https://github.com/ergebnis/json-schema-validator/issues",
  1818. "source": "https://github.com/ergebnis/json-schema-validator"
  1819. },
  1820. "funding": [
  1821. {
  1822. "url": "https://github.com/localheinz",
  1823. "type": "github"
  1824. }
  1825. ],
  1826. "time": "2021-12-13T16:54:56+00:00"
  1827. },
  1828. {
  1829. "name": "felixfbecker/advanced-json-rpc",
  1830. "version": "v3.2.1",
  1831. "source": {
  1832. "type": "git",
  1833. "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
  1834. "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
  1835. },
  1836. "dist": {
  1837. "type": "zip",
  1838. "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
  1839. "reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
  1840. "shasum": ""
  1841. },
  1842. "require": {
  1843. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  1844. "php": "^7.1 || ^8.0",
  1845. "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
  1846. },
  1847. "require-dev": {
  1848. "phpunit/phpunit": "^7.0 || ^8.0"
  1849. },
  1850. "type": "library",
  1851. "autoload": {
  1852. "psr-4": {
  1853. "AdvancedJsonRpc\\": "lib/"
  1854. }
  1855. },
  1856. "notification-url": "https://packagist.org/downloads/",
  1857. "license": [
  1858. "ISC"
  1859. ],
  1860. "authors": [
  1861. {
  1862. "name": "Felix Becker",
  1863. "email": "felix.b@outlook.com"
  1864. }
  1865. ],
  1866. "description": "A more advanced JSONRPC implementation",
  1867. "support": {
  1868. "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
  1869. "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
  1870. },
  1871. "time": "2021-06-11T22:34:44+00:00"
  1872. },
  1873. {
  1874. "name": "felixfbecker/language-server-protocol",
  1875. "version": "v1.5.2",
  1876. "source": {
  1877. "type": "git",
  1878. "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
  1879. "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
  1880. },
  1881. "dist": {
  1882. "type": "zip",
  1883. "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
  1884. "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
  1885. "shasum": ""
  1886. },
  1887. "require": {
  1888. "php": ">=7.1"
  1889. },
  1890. "require-dev": {
  1891. "phpstan/phpstan": "*",
  1892. "squizlabs/php_codesniffer": "^3.1",
  1893. "vimeo/psalm": "^4.0"
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "1.x-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "LanguageServerProtocol\\": "src/"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "ISC"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Felix Becker",
  1913. "email": "felix.b@outlook.com"
  1914. }
  1915. ],
  1916. "description": "PHP classes for the Language Server Protocol",
  1917. "keywords": [
  1918. "language",
  1919. "microsoft",
  1920. "php",
  1921. "server"
  1922. ],
  1923. "support": {
  1924. "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
  1925. "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
  1926. },
  1927. "time": "2022-03-02T22:36:06+00:00"
  1928. },
  1929. {
  1930. "name": "hamcrest/hamcrest-php",
  1931. "version": "v2.0.1",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/hamcrest/hamcrest-php.git",
  1935. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  1940. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "php": "^5.3|^7.0|^8.0"
  1945. },
  1946. "replace": {
  1947. "cordoval/hamcrest-php": "*",
  1948. "davedevelopment/hamcrest-php": "*",
  1949. "kodova/hamcrest-php": "*"
  1950. },
  1951. "require-dev": {
  1952. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  1953. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  1954. },
  1955. "type": "library",
  1956. "extra": {
  1957. "branch-alias": {
  1958. "dev-master": "2.1-dev"
  1959. }
  1960. },
  1961. "autoload": {
  1962. "classmap": [
  1963. "hamcrest"
  1964. ]
  1965. },
  1966. "notification-url": "https://packagist.org/downloads/",
  1967. "license": [
  1968. "BSD-3-Clause"
  1969. ],
  1970. "description": "This is the PHP port of Hamcrest Matchers",
  1971. "keywords": [
  1972. "test"
  1973. ],
  1974. "support": {
  1975. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  1976. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  1977. },
  1978. "time": "2020-07-09T08:09:16+00:00"
  1979. },
  1980. {
  1981. "name": "ircmaxell/security-lib",
  1982. "version": "v1.1.0",
  1983. "source": {
  1984. "type": "git",
  1985. "url": "https://github.com/ircmaxell/SecurityLib.git",
  1986. "reference": "f3db6de12c20c9bcd1aa3db4353a1bbe0e44e1b5"
  1987. },
  1988. "dist": {
  1989. "type": "zip",
  1990. "url": "https://api.github.com/repos/ircmaxell/SecurityLib/zipball/f3db6de12c20c9bcd1aa3db4353a1bbe0e44e1b5",
  1991. "reference": "f3db6de12c20c9bcd1aa3db4353a1bbe0e44e1b5",
  1992. "shasum": ""
  1993. },
  1994. "require": {
  1995. "php": ">=5.3.2"
  1996. },
  1997. "require-dev": {
  1998. "mikey179/vfsstream": "1.1.*"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "branch-alias": {
  2003. "dev-master": "1.0.x-dev"
  2004. }
  2005. },
  2006. "autoload": {
  2007. "psr-0": {
  2008. "SecurityLib": "lib"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "MIT"
  2014. ],
  2015. "authors": [
  2016. {
  2017. "name": "Anthony Ferrara",
  2018. "email": "ircmaxell@ircmaxell.com",
  2019. "homepage": "http://blog.ircmaxell.com"
  2020. }
  2021. ],
  2022. "description": "A Base Security Library",
  2023. "homepage": "https://github.com/ircmaxell/SecurityLib",
  2024. "support": {
  2025. "issues": "https://github.com/ircmaxell/SecurityLib/issues",
  2026. "source": "https://github.com/ircmaxell/SecurityLib/tree/master"
  2027. },
  2028. "time": "2015-03-20T14:31:23+00:00"
  2029. },
  2030. {
  2031. "name": "justinrainbow/json-schema",
  2032. "version": "5.2.12",
  2033. "source": {
  2034. "type": "git",
  2035. "url": "https://github.com/justinrainbow/json-schema.git",
  2036. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  2037. },
  2038. "dist": {
  2039. "type": "zip",
  2040. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  2041. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  2042. "shasum": ""
  2043. },
  2044. "require": {
  2045. "php": ">=5.3.3"
  2046. },
  2047. "require-dev": {
  2048. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  2049. "json-schema/json-schema-test-suite": "1.2.0",
  2050. "phpunit/phpunit": "^4.8.35"
  2051. },
  2052. "bin": [
  2053. "bin/validate-json"
  2054. ],
  2055. "type": "library",
  2056. "extra": {
  2057. "branch-alias": {
  2058. "dev-master": "5.0.x-dev"
  2059. }
  2060. },
  2061. "autoload": {
  2062. "psr-4": {
  2063. "JsonSchema\\": "src/JsonSchema/"
  2064. }
  2065. },
  2066. "notification-url": "https://packagist.org/downloads/",
  2067. "license": [
  2068. "MIT"
  2069. ],
  2070. "authors": [
  2071. {
  2072. "name": "Bruno Prieto Reis",
  2073. "email": "bruno.p.reis@gmail.com"
  2074. },
  2075. {
  2076. "name": "Justin Rainbow",
  2077. "email": "justin.rainbow@gmail.com"
  2078. },
  2079. {
  2080. "name": "Igor Wiedler",
  2081. "email": "igor@wiedler.ch"
  2082. },
  2083. {
  2084. "name": "Robert Schönthal",
  2085. "email": "seroscho@googlemail.com"
  2086. }
  2087. ],
  2088. "description": "A library to validate a json schema.",
  2089. "homepage": "https://github.com/justinrainbow/json-schema",
  2090. "keywords": [
  2091. "json",
  2092. "schema"
  2093. ],
  2094. "support": {
  2095. "issues": "https://github.com/justinrainbow/json-schema/issues",
  2096. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  2097. },
  2098. "time": "2022-04-13T08:02:27+00:00"
  2099. },
  2100. {
  2101. "name": "localheinz/diff",
  2102. "version": "1.1.1",
  2103. "source": {
  2104. "type": "git",
  2105. "url": "https://github.com/localheinz/diff.git",
  2106. "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c"
  2107. },
  2108. "dist": {
  2109. "type": "zip",
  2110. "url": "https://api.github.com/repos/localheinz/diff/zipball/851bb20ea8358c86f677f5f111c4ab031b1c764c",
  2111. "reference": "851bb20ea8358c86f677f5f111c4ab031b1c764c",
  2112. "shasum": ""
  2113. },
  2114. "require": {
  2115. "php": "^7.1 || ^8.0"
  2116. },
  2117. "require-dev": {
  2118. "phpunit/phpunit": "^7.5 || ^8.0",
  2119. "symfony/process": "^4.2 || ^5"
  2120. },
  2121. "type": "library",
  2122. "autoload": {
  2123. "classmap": [
  2124. "src/"
  2125. ]
  2126. },
  2127. "notification-url": "https://packagist.org/downloads/",
  2128. "license": [
  2129. "BSD-3-Clause"
  2130. ],
  2131. "authors": [
  2132. {
  2133. "name": "Sebastian Bergmann",
  2134. "email": "sebastian@phpunit.de"
  2135. },
  2136. {
  2137. "name": "Kore Nordmann",
  2138. "email": "mail@kore-nordmann.de"
  2139. }
  2140. ],
  2141. "description": "Fork of sebastian/diff for use with ergebnis/composer-normalize",
  2142. "homepage": "https://github.com/localheinz/diff",
  2143. "keywords": [
  2144. "diff",
  2145. "udiff",
  2146. "unidiff",
  2147. "unified diff"
  2148. ],
  2149. "support": {
  2150. "source": "https://github.com/localheinz/diff/tree/main"
  2151. },
  2152. "funding": [
  2153. {
  2154. "url": "https://github.com/sebastianbergmann",
  2155. "type": "github"
  2156. }
  2157. ],
  2158. "time": "2020-07-06T04:49:32+00:00"
  2159. },
  2160. {
  2161. "name": "mockery/mockery",
  2162. "version": "1.5.1",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/mockery/mockery.git",
  2166. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/mockery/mockery/zipball/e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  2171. "reference": "e92dcc83d5a51851baf5f5591d32cb2b16e3684e",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "hamcrest/hamcrest-php": "^2.0.1",
  2176. "lib-pcre": ">=7.0",
  2177. "php": "^7.3 || ^8.0"
  2178. },
  2179. "conflict": {
  2180. "phpunit/phpunit": "<8.0"
  2181. },
  2182. "require-dev": {
  2183. "phpunit/phpunit": "^8.5 || ^9.3"
  2184. },
  2185. "type": "library",
  2186. "extra": {
  2187. "branch-alias": {
  2188. "dev-master": "1.4.x-dev"
  2189. }
  2190. },
  2191. "autoload": {
  2192. "psr-0": {
  2193. "Mockery": "library/"
  2194. }
  2195. },
  2196. "notification-url": "https://packagist.org/downloads/",
  2197. "license": [
  2198. "BSD-3-Clause"
  2199. ],
  2200. "authors": [
  2201. {
  2202. "name": "Pádraic Brady",
  2203. "email": "padraic.brady@gmail.com",
  2204. "homepage": "http://blog.astrumfutura.com"
  2205. },
  2206. {
  2207. "name": "Dave Marshall",
  2208. "email": "dave.marshall@atstsolutions.co.uk",
  2209. "homepage": "http://davedevelopment.co.uk"
  2210. }
  2211. ],
  2212. "description": "Mockery is a simple yet flexible PHP mock object framework",
  2213. "homepage": "https://github.com/mockery/mockery",
  2214. "keywords": [
  2215. "BDD",
  2216. "TDD",
  2217. "library",
  2218. "mock",
  2219. "mock objects",
  2220. "mockery",
  2221. "stub",
  2222. "test",
  2223. "test double",
  2224. "testing"
  2225. ],
  2226. "support": {
  2227. "issues": "https://github.com/mockery/mockery/issues",
  2228. "source": "https://github.com/mockery/mockery/tree/1.5.1"
  2229. },
  2230. "time": "2022-09-07T15:32:08+00:00"
  2231. },
  2232. {
  2233. "name": "myclabs/deep-copy",
  2234. "version": "1.11.0",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/myclabs/DeepCopy.git",
  2238. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
  2243. "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "php": "^7.1 || ^8.0"
  2248. },
  2249. "conflict": {
  2250. "doctrine/collections": "<1.6.8",
  2251. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  2252. },
  2253. "require-dev": {
  2254. "doctrine/collections": "^1.6.8",
  2255. "doctrine/common": "^2.13.3 || ^3.2.2",
  2256. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  2257. },
  2258. "type": "library",
  2259. "autoload": {
  2260. "files": [
  2261. "src/DeepCopy/deep_copy.php"
  2262. ],
  2263. "psr-4": {
  2264. "DeepCopy\\": "src/DeepCopy/"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "MIT"
  2270. ],
  2271. "description": "Create deep copies (clones) of your objects",
  2272. "keywords": [
  2273. "clone",
  2274. "copy",
  2275. "duplicate",
  2276. "object",
  2277. "object graph"
  2278. ],
  2279. "support": {
  2280. "issues": "https://github.com/myclabs/DeepCopy/issues",
  2281. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
  2282. },
  2283. "funding": [
  2284. {
  2285. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  2286. "type": "tidelift"
  2287. }
  2288. ],
  2289. "time": "2022-03-03T13:19:32+00:00"
  2290. },
  2291. {
  2292. "name": "netresearch/jsonmapper",
  2293. "version": "v4.0.0",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://github.com/cweiske/jsonmapper.git",
  2297. "reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d",
  2302. "reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d",
  2303. "shasum": ""
  2304. },
  2305. "require": {
  2306. "ext-json": "*",
  2307. "ext-pcre": "*",
  2308. "ext-reflection": "*",
  2309. "ext-spl": "*",
  2310. "php": ">=7.1"
  2311. },
  2312. "require-dev": {
  2313. "phpunit/phpunit": "~7.5 || ~8.0 || ~9.0",
  2314. "squizlabs/php_codesniffer": "~3.5"
  2315. },
  2316. "type": "library",
  2317. "autoload": {
  2318. "psr-0": {
  2319. "JsonMapper": "src/"
  2320. }
  2321. },
  2322. "notification-url": "https://packagist.org/downloads/",
  2323. "license": [
  2324. "OSL-3.0"
  2325. ],
  2326. "authors": [
  2327. {
  2328. "name": "Christian Weiske",
  2329. "email": "cweiske@cweiske.de",
  2330. "homepage": "http://github.com/cweiske/jsonmapper/",
  2331. "role": "Developer"
  2332. }
  2333. ],
  2334. "description": "Map nested JSON structures onto PHP classes",
  2335. "support": {
  2336. "email": "cweiske@cweiske.de",
  2337. "issues": "https://github.com/cweiske/jsonmapper/issues",
  2338. "source": "https://github.com/cweiske/jsonmapper/tree/v4.0.0"
  2339. },
  2340. "time": "2020-12-01T19:48:11+00:00"
  2341. },
  2342. {
  2343. "name": "nikic/php-parser",
  2344. "version": "v4.15.1",
  2345. "source": {
  2346. "type": "git",
  2347. "url": "https://github.com/nikic/PHP-Parser.git",
  2348. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900"
  2349. },
  2350. "dist": {
  2351. "type": "zip",
  2352. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  2353. "reference": "0ef6c55a3f47f89d7a374e6f835197a0b5fcf900",
  2354. "shasum": ""
  2355. },
  2356. "require": {
  2357. "ext-tokenizer": "*",
  2358. "php": ">=7.0"
  2359. },
  2360. "require-dev": {
  2361. "ircmaxell/php-yacc": "^0.0.7",
  2362. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  2363. },
  2364. "bin": [
  2365. "bin/php-parse"
  2366. ],
  2367. "type": "library",
  2368. "extra": {
  2369. "branch-alias": {
  2370. "dev-master": "4.9-dev"
  2371. }
  2372. },
  2373. "autoload": {
  2374. "psr-4": {
  2375. "PhpParser\\": "lib/PhpParser"
  2376. }
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "BSD-3-Clause"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Nikita Popov"
  2385. }
  2386. ],
  2387. "description": "A PHP parser written in PHP",
  2388. "keywords": [
  2389. "parser",
  2390. "php"
  2391. ],
  2392. "support": {
  2393. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2394. "source": "https://github.com/nikic/PHP-Parser/tree/v4.15.1"
  2395. },
  2396. "time": "2022-09-04T07:30:47+00:00"
  2397. },
  2398. {
  2399. "name": "openlss/lib-array2xml",
  2400. "version": "1.0.0",
  2401. "source": {
  2402. "type": "git",
  2403. "url": "https://github.com/nullivex/lib-array2xml.git",
  2404. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90"
  2405. },
  2406. "dist": {
  2407. "type": "zip",
  2408. "url": "https://api.github.com/repos/nullivex/lib-array2xml/zipball/a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2409. "reference": "a91f18a8dfc69ffabe5f9b068bc39bb202c81d90",
  2410. "shasum": ""
  2411. },
  2412. "require": {
  2413. "php": ">=5.3.2"
  2414. },
  2415. "type": "library",
  2416. "autoload": {
  2417. "psr-0": {
  2418. "LSS": ""
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "Apache-2.0"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Bryan Tong",
  2428. "email": "bryan@nullivex.com",
  2429. "homepage": "https://www.nullivex.com"
  2430. },
  2431. {
  2432. "name": "Tony Butler",
  2433. "email": "spudz76@gmail.com",
  2434. "homepage": "https://www.nullivex.com"
  2435. }
  2436. ],
  2437. "description": "Array2XML conversion library credit to lalit.org",
  2438. "homepage": "https://www.nullivex.com",
  2439. "keywords": [
  2440. "array",
  2441. "array conversion",
  2442. "xml",
  2443. "xml conversion"
  2444. ],
  2445. "support": {
  2446. "issues": "https://github.com/nullivex/lib-array2xml/issues",
  2447. "source": "https://github.com/nullivex/lib-array2xml/tree/master"
  2448. },
  2449. "time": "2019-03-29T20:06:56+00:00"
  2450. },
  2451. {
  2452. "name": "paragonie/random-lib",
  2453. "version": "v2.0.1",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://github.com/paragonie/RandomLib.git",
  2457. "reference": "f0ca6a2859b22f7caea9c343e63ffb3ce9b2ffa7"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://api.github.com/repos/paragonie/RandomLib/zipball/f0ca6a2859b22f7caea9c343e63ffb3ce9b2ffa7",
  2462. "reference": "f0ca6a2859b22f7caea9c343e63ffb3ce9b2ffa7",
  2463. "shasum": ""
  2464. },
  2465. "require": {
  2466. "ircmaxell/security-lib": "^1.1",
  2467. "paragonie/random_compat": "^2",
  2468. "paragonie/sodium_compat": "^1.3",
  2469. "php": ">=5.3.2"
  2470. },
  2471. "require-dev": {
  2472. "friendsofphp/php-cs-fixer": "^1.11",
  2473. "mikey179/vfsstream": "^1.6",
  2474. "phpunit/phpunit": "^4.8 || >=5.0.0 <5.4"
  2475. },
  2476. "type": "library",
  2477. "extra": {
  2478. "branch-alias": {
  2479. "dev-master": "2.1.x-dev"
  2480. }
  2481. },
  2482. "autoload": {
  2483. "psr-0": {
  2484. "RandomLib": "lib"
  2485. }
  2486. },
  2487. "notification-url": "https://packagist.org/downloads/",
  2488. "license": [
  2489. "MIT"
  2490. ],
  2491. "authors": [
  2492. {
  2493. "name": "Paragon Initiative Enterprises",
  2494. "email": "security@paragonie.com",
  2495. "homepage": "https://paragonie.com"
  2496. },
  2497. {
  2498. "name": "Anthony Ferrara",
  2499. "email": "ircmaxell@ircmaxell.com",
  2500. "homepage": "http://blog.ircmaxell.com"
  2501. }
  2502. ],
  2503. "description": "A Library For Generating Secure Random Numbers",
  2504. "homepage": "https://github.com/ircmaxell/RandomLib",
  2505. "keywords": [
  2506. "cryptography",
  2507. "random",
  2508. "random-numbers",
  2509. "random-strings"
  2510. ],
  2511. "support": {
  2512. "source": "https://github.com/paragonie/RandomLib/tree/v2.0.1"
  2513. },
  2514. "time": "2019-12-23T23:03:52+00:00"
  2515. },
  2516. {
  2517. "name": "paragonie/random_compat",
  2518. "version": "v2.0.21",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://github.com/paragonie/random_compat.git",
  2522. "reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
  2527. "reference": "96c132c7f2f7bc3230723b66e89f8f150b29d5ae",
  2528. "shasum": ""
  2529. },
  2530. "require": {
  2531. "php": ">=5.2.0"
  2532. },
  2533. "require-dev": {
  2534. "phpunit/phpunit": "*"
  2535. },
  2536. "suggest": {
  2537. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  2538. },
  2539. "type": "library",
  2540. "autoload": {
  2541. "files": [
  2542. "lib/random.php"
  2543. ]
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Paragon Initiative Enterprises",
  2552. "email": "security@paragonie.com",
  2553. "homepage": "https://paragonie.com"
  2554. }
  2555. ],
  2556. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  2557. "keywords": [
  2558. "csprng",
  2559. "polyfill",
  2560. "pseudorandom",
  2561. "random"
  2562. ],
  2563. "support": {
  2564. "email": "info@paragonie.com",
  2565. "issues": "https://github.com/paragonie/random_compat/issues",
  2566. "source": "https://github.com/paragonie/random_compat"
  2567. },
  2568. "time": "2022-02-16T17:07:03+00:00"
  2569. },
  2570. {
  2571. "name": "paragonie/sodium_compat",
  2572. "version": "v1.18.0",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/paragonie/sodium_compat.git",
  2576. "reference": "906e0b925895d3a5941eda25f371fbafb3cbc22f"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/906e0b925895d3a5941eda25f371fbafb3cbc22f",
  2581. "reference": "906e0b925895d3a5941eda25f371fbafb3cbc22f",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "paragonie/random_compat": ">=1",
  2586. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8"
  2587. },
  2588. "require-dev": {
  2589. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  2590. },
  2591. "suggest": {
  2592. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  2593. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  2594. },
  2595. "type": "library",
  2596. "autoload": {
  2597. "files": [
  2598. "autoload.php"
  2599. ]
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "ISC"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Paragon Initiative Enterprises",
  2608. "email": "security@paragonie.com"
  2609. },
  2610. {
  2611. "name": "Frank Denis",
  2612. "email": "jedisct1@pureftpd.org"
  2613. }
  2614. ],
  2615. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  2616. "keywords": [
  2617. "Authentication",
  2618. "BLAKE2b",
  2619. "ChaCha20",
  2620. "ChaCha20-Poly1305",
  2621. "Chapoly",
  2622. "Curve25519",
  2623. "Ed25519",
  2624. "EdDSA",
  2625. "Edwards-curve Digital Signature Algorithm",
  2626. "Elliptic Curve Diffie-Hellman",
  2627. "Poly1305",
  2628. "Pure-PHP cryptography",
  2629. "RFC 7748",
  2630. "RFC 8032",
  2631. "Salpoly",
  2632. "Salsa20",
  2633. "X25519",
  2634. "XChaCha20-Poly1305",
  2635. "XSalsa20-Poly1305",
  2636. "Xchacha20",
  2637. "Xsalsa20",
  2638. "aead",
  2639. "cryptography",
  2640. "ecdh",
  2641. "elliptic curve",
  2642. "elliptic curve cryptography",
  2643. "encryption",
  2644. "libsodium",
  2645. "php",
  2646. "public-key cryptography",
  2647. "secret-key cryptography",
  2648. "side-channel resistant"
  2649. ],
  2650. "support": {
  2651. "issues": "https://github.com/paragonie/sodium_compat/issues",
  2652. "source": "https://github.com/paragonie/sodium_compat/tree/v1.18.0"
  2653. },
  2654. "time": "2022-09-13T20:54:27+00:00"
  2655. },
  2656. {
  2657. "name": "phar-io/manifest",
  2658. "version": "2.0.3",
  2659. "source": {
  2660. "type": "git",
  2661. "url": "https://github.com/phar-io/manifest.git",
  2662. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  2663. },
  2664. "dist": {
  2665. "type": "zip",
  2666. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  2667. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  2668. "shasum": ""
  2669. },
  2670. "require": {
  2671. "ext-dom": "*",
  2672. "ext-phar": "*",
  2673. "ext-xmlwriter": "*",
  2674. "phar-io/version": "^3.0.1",
  2675. "php": "^7.2 || ^8.0"
  2676. },
  2677. "type": "library",
  2678. "extra": {
  2679. "branch-alias": {
  2680. "dev-master": "2.0.x-dev"
  2681. }
  2682. },
  2683. "autoload": {
  2684. "classmap": [
  2685. "src/"
  2686. ]
  2687. },
  2688. "notification-url": "https://packagist.org/downloads/",
  2689. "license": [
  2690. "BSD-3-Clause"
  2691. ],
  2692. "authors": [
  2693. {
  2694. "name": "Arne Blankerts",
  2695. "email": "arne@blankerts.de",
  2696. "role": "Developer"
  2697. },
  2698. {
  2699. "name": "Sebastian Heuer",
  2700. "email": "sebastian@phpeople.de",
  2701. "role": "Developer"
  2702. },
  2703. {
  2704. "name": "Sebastian Bergmann",
  2705. "email": "sebastian@phpunit.de",
  2706. "role": "Developer"
  2707. }
  2708. ],
  2709. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  2710. "support": {
  2711. "issues": "https://github.com/phar-io/manifest/issues",
  2712. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  2713. },
  2714. "time": "2021-07-20T11:28:43+00:00"
  2715. },
  2716. {
  2717. "name": "phar-io/version",
  2718. "version": "3.2.1",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/phar-io/version.git",
  2722. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  2727. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  2728. "shasum": ""
  2729. },
  2730. "require": {
  2731. "php": "^7.2 || ^8.0"
  2732. },
  2733. "type": "library",
  2734. "autoload": {
  2735. "classmap": [
  2736. "src/"
  2737. ]
  2738. },
  2739. "notification-url": "https://packagist.org/downloads/",
  2740. "license": [
  2741. "BSD-3-Clause"
  2742. ],
  2743. "authors": [
  2744. {
  2745. "name": "Arne Blankerts",
  2746. "email": "arne@blankerts.de",
  2747. "role": "Developer"
  2748. },
  2749. {
  2750. "name": "Sebastian Heuer",
  2751. "email": "sebastian@phpeople.de",
  2752. "role": "Developer"
  2753. },
  2754. {
  2755. "name": "Sebastian Bergmann",
  2756. "email": "sebastian@phpunit.de",
  2757. "role": "Developer"
  2758. }
  2759. ],
  2760. "description": "Library for handling version information and constraints",
  2761. "support": {
  2762. "issues": "https://github.com/phar-io/version/issues",
  2763. "source": "https://github.com/phar-io/version/tree/3.2.1"
  2764. },
  2765. "time": "2022-02-21T01:04:05+00:00"
  2766. },
  2767. {
  2768. "name": "php-mock/php-mock",
  2769. "version": "2.3.1",
  2770. "source": {
  2771. "type": "git",
  2772. "url": "https://github.com/php-mock/php-mock.git",
  2773. "reference": "9a55bd8ba40e6da2e97a866121d2c69dedd4952b"
  2774. },
  2775. "dist": {
  2776. "type": "zip",
  2777. "url": "https://api.github.com/repos/php-mock/php-mock/zipball/9a55bd8ba40e6da2e97a866121d2c69dedd4952b",
  2778. "reference": "9a55bd8ba40e6da2e97a866121d2c69dedd4952b",
  2779. "shasum": ""
  2780. },
  2781. "require": {
  2782. "php": "^5.6 || ^7.0 || ^8.0",
  2783. "phpunit/php-text-template": "^1 || ^2"
  2784. },
  2785. "replace": {
  2786. "malkusch/php-mock": "*"
  2787. },
  2788. "require-dev": {
  2789. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0 || ^9.0",
  2790. "squizlabs/php_codesniffer": "^3.5"
  2791. },
  2792. "suggest": {
  2793. "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock."
  2794. },
  2795. "type": "library",
  2796. "autoload": {
  2797. "files": [
  2798. "autoload.php"
  2799. ],
  2800. "psr-4": {
  2801. "phpmock\\": [
  2802. "classes/",
  2803. "tests/"
  2804. ]
  2805. }
  2806. },
  2807. "notification-url": "https://packagist.org/downloads/",
  2808. "license": [
  2809. "WTFPL"
  2810. ],
  2811. "authors": [
  2812. {
  2813. "name": "Markus Malkusch",
  2814. "email": "markus@malkusch.de",
  2815. "homepage": "http://markus.malkusch.de",
  2816. "role": "Developer"
  2817. }
  2818. ],
  2819. "description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.",
  2820. "homepage": "https://github.com/php-mock/php-mock",
  2821. "keywords": [
  2822. "BDD",
  2823. "TDD",
  2824. "function",
  2825. "mock",
  2826. "stub",
  2827. "test",
  2828. "test double"
  2829. ],
  2830. "support": {
  2831. "issues": "https://github.com/php-mock/php-mock/issues",
  2832. "source": "https://github.com/php-mock/php-mock/tree/2.3.1"
  2833. },
  2834. "funding": [
  2835. {
  2836. "url": "https://github.com/michalbundyra",
  2837. "type": "github"
  2838. }
  2839. ],
  2840. "time": "2022-02-07T18:57:52+00:00"
  2841. },
  2842. {
  2843. "name": "php-mock/php-mock-integration",
  2844. "version": "2.1.0",
  2845. "source": {
  2846. "type": "git",
  2847. "url": "https://github.com/php-mock/php-mock-integration.git",
  2848. "reference": "003d585841e435958a02e9b986953907b8b7609b"
  2849. },
  2850. "dist": {
  2851. "type": "zip",
  2852. "url": "https://api.github.com/repos/php-mock/php-mock-integration/zipball/003d585841e435958a02e9b986953907b8b7609b",
  2853. "reference": "003d585841e435958a02e9b986953907b8b7609b",
  2854. "shasum": ""
  2855. },
  2856. "require": {
  2857. "php": ">=5.6",
  2858. "php-mock/php-mock": "^2.2",
  2859. "phpunit/php-text-template": "^1 || ^2"
  2860. },
  2861. "require-dev": {
  2862. "phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9"
  2863. },
  2864. "type": "library",
  2865. "autoload": {
  2866. "psr-4": {
  2867. "phpmock\\integration\\": "classes/"
  2868. }
  2869. },
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "WTFPL"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Markus Malkusch",
  2877. "email": "markus@malkusch.de",
  2878. "homepage": "http://markus.malkusch.de",
  2879. "role": "Developer"
  2880. }
  2881. ],
  2882. "description": "Integration package for PHP-Mock",
  2883. "homepage": "https://github.com/php-mock/php-mock-integration",
  2884. "keywords": [
  2885. "BDD",
  2886. "TDD",
  2887. "function",
  2888. "mock",
  2889. "stub",
  2890. "test",
  2891. "test double"
  2892. ],
  2893. "support": {
  2894. "issues": "https://github.com/php-mock/php-mock-integration/issues",
  2895. "source": "https://github.com/php-mock/php-mock-integration/tree/2.1.0"
  2896. },
  2897. "time": "2020-02-08T14:40:25+00:00"
  2898. },
  2899. {
  2900. "name": "php-mock/php-mock-mockery",
  2901. "version": "1.3.0",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/php-mock/php-mock-mockery.git",
  2905. "reference": "d6d3df9d9232f1623f1ca3cfdaacd53415593825"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/php-mock/php-mock-mockery/zipball/d6d3df9d9232f1623f1ca3cfdaacd53415593825",
  2910. "reference": "d6d3df9d9232f1623f1ca3cfdaacd53415593825",
  2911. "shasum": ""
  2912. },
  2913. "require": {
  2914. "mockery/mockery": "^1",
  2915. "php": ">=5.6",
  2916. "php-mock/php-mock-integration": "^2"
  2917. },
  2918. "require-dev": {
  2919. "phpunit/phpunit": "^4|^5"
  2920. },
  2921. "type": "library",
  2922. "autoload": {
  2923. "psr-4": {
  2924. "phpmock\\mockery\\": "classes/"
  2925. }
  2926. },
  2927. "notification-url": "https://packagist.org/downloads/",
  2928. "license": [
  2929. "WTFPL"
  2930. ],
  2931. "authors": [
  2932. {
  2933. "name": "Markus Malkusch",
  2934. "email": "markus@malkusch.de",
  2935. "homepage": "http://markus.malkusch.de",
  2936. "role": "Developer"
  2937. }
  2938. ],
  2939. "description": "Mock built-in PHP functions (e.g. time()) with Mockery. This package relies on PHP's namespace fallback policy. No further extension is needed.",
  2940. "homepage": "https://github.com/php-mock/php-mock-mockery",
  2941. "keywords": [
  2942. "BDD",
  2943. "TDD",
  2944. "function",
  2945. "mock",
  2946. "mockery",
  2947. "stub",
  2948. "test",
  2949. "test double"
  2950. ],
  2951. "support": {
  2952. "issues": "https://github.com/php-mock/php-mock-mockery/issues",
  2953. "source": "https://github.com/php-mock/php-mock-mockery/tree/1.3.0"
  2954. },
  2955. "time": "2018-03-27T07:00:25+00:00"
  2956. },
  2957. {
  2958. "name": "php-parallel-lint/php-parallel-lint",
  2959. "version": "v1.3.2",
  2960. "source": {
  2961. "type": "git",
  2962. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  2963. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
  2964. },
  2965. "dist": {
  2966. "type": "zip",
  2967. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  2968. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  2969. "shasum": ""
  2970. },
  2971. "require": {
  2972. "ext-json": "*",
  2973. "php": ">=5.3.0"
  2974. },
  2975. "replace": {
  2976. "grogy/php-parallel-lint": "*",
  2977. "jakub-onderka/php-parallel-lint": "*"
  2978. },
  2979. "require-dev": {
  2980. "nette/tester": "^1.3 || ^2.0",
  2981. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  2982. "squizlabs/php_codesniffer": "^3.6"
  2983. },
  2984. "suggest": {
  2985. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  2986. },
  2987. "bin": [
  2988. "parallel-lint"
  2989. ],
  2990. "type": "library",
  2991. "autoload": {
  2992. "classmap": [
  2993. "./src/"
  2994. ]
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "BSD-2-Clause"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "Jakub Onderka",
  3003. "email": "ahoj@jakubonderka.cz"
  3004. }
  3005. ],
  3006. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  3007. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  3008. "support": {
  3009. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  3010. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
  3011. },
  3012. "time": "2022-02-21T12:50:22+00:00"
  3013. },
  3014. {
  3015. "name": "phpbench/container",
  3016. "version": "2.2.1",
  3017. "source": {
  3018. "type": "git",
  3019. "url": "https://github.com/phpbench/container.git",
  3020. "reference": "6d555ff7174fca13f9b1ec0b4a089ed41d0ab392"
  3021. },
  3022. "dist": {
  3023. "type": "zip",
  3024. "url": "https://api.github.com/repos/phpbench/container/zipball/6d555ff7174fca13f9b1ec0b4a089ed41d0ab392",
  3025. "reference": "6d555ff7174fca13f9b1ec0b4a089ed41d0ab392",
  3026. "shasum": ""
  3027. },
  3028. "require": {
  3029. "psr/container": "^1.0|^2.0",
  3030. "symfony/options-resolver": "^4.2 || ^5.0 || ^6.0"
  3031. },
  3032. "require-dev": {
  3033. "friendsofphp/php-cs-fixer": "^2.16",
  3034. "phpstan/phpstan": "^0.12.52",
  3035. "phpunit/phpunit": "^8"
  3036. },
  3037. "type": "library",
  3038. "extra": {
  3039. "branch-alias": {
  3040. "dev-master": "2.x-dev"
  3041. }
  3042. },
  3043. "autoload": {
  3044. "psr-4": {
  3045. "PhpBench\\DependencyInjection\\": "lib/"
  3046. }
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "MIT"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "Daniel Leech",
  3055. "email": "daniel@dantleech.com"
  3056. }
  3057. ],
  3058. "description": "Simple, configurable, service container.",
  3059. "support": {
  3060. "issues": "https://github.com/phpbench/container/issues",
  3061. "source": "https://github.com/phpbench/container/tree/2.2.1"
  3062. },
  3063. "time": "2022-01-25T10:17:35+00:00"
  3064. },
  3065. {
  3066. "name": "phpbench/dom",
  3067. "version": "0.3.2",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/phpbench/dom.git",
  3071. "reference": "b013b717832ddbaadf2a40984b04bc66af9a7110"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/phpbench/dom/zipball/b013b717832ddbaadf2a40984b04bc66af9a7110",
  3076. "reference": "b013b717832ddbaadf2a40984b04bc66af9a7110",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "ext-dom": "*",
  3081. "php": "^7.2||^8.0"
  3082. },
  3083. "require-dev": {
  3084. "friendsofphp/php-cs-fixer": "^2.18",
  3085. "phpstan/phpstan": "^0.12.83",
  3086. "phpunit/phpunit": "^8.0||^9.0"
  3087. },
  3088. "type": "library",
  3089. "extra": {
  3090. "branch-alias": {
  3091. "dev-master": "1.0-dev"
  3092. }
  3093. },
  3094. "autoload": {
  3095. "psr-4": {
  3096. "PhpBench\\Dom\\": "lib/"
  3097. }
  3098. },
  3099. "notification-url": "https://packagist.org/downloads/",
  3100. "license": [
  3101. "MIT"
  3102. ],
  3103. "authors": [
  3104. {
  3105. "name": "Daniel Leech",
  3106. "email": "daniel@dantleech.com"
  3107. }
  3108. ],
  3109. "description": "DOM wrapper to simplify working with the PHP DOM implementation",
  3110. "support": {
  3111. "issues": "https://github.com/phpbench/dom/issues",
  3112. "source": "https://github.com/phpbench/dom/tree/0.3.2"
  3113. },
  3114. "time": "2021-09-24T15:26:07+00:00"
  3115. },
  3116. {
  3117. "name": "phpbench/phpbench",
  3118. "version": "1.2.6",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/phpbench/phpbench.git",
  3122. "reference": "c30fac992e72b505a1f131790583647f4d3255c3"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/phpbench/phpbench/zipball/c30fac992e72b505a1f131790583647f4d3255c3",
  3127. "reference": "c30fac992e72b505a1f131790583647f4d3255c3",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "doctrine/annotations": "^1.13",
  3132. "ext-dom": "*",
  3133. "ext-json": "*",
  3134. "ext-pcre": "*",
  3135. "ext-reflection": "*",
  3136. "ext-spl": "*",
  3137. "ext-tokenizer": "*",
  3138. "php": "^7.3 || ^8.0",
  3139. "phpbench/container": "^2.1",
  3140. "phpbench/dom": "~0.3.1",
  3141. "psr/log": "^1.1 || ^2.0 || ^3.0",
  3142. "seld/jsonlint": "^1.1",
  3143. "symfony/console": "^4.2 || ^5.0 || ^6.0",
  3144. "symfony/filesystem": "^4.2 || ^5.0 || ^6.0",
  3145. "symfony/finder": "^4.2 || ^5.0 || ^6.0",
  3146. "symfony/options-resolver": "^4.2 || ^5.0 || ^6.0",
  3147. "symfony/process": "^4.2 || ^5.0 || ^6.0",
  3148. "webmozart/path-util": "^2.3"
  3149. },
  3150. "require-dev": {
  3151. "dantleech/invoke": "^2.0",
  3152. "friendsofphp/php-cs-fixer": "^3.0",
  3153. "jangregor/phpstan-prophecy": "^0.8.1",
  3154. "phpspec/prophecy": "^1.12",
  3155. "phpstan/phpstan": "^0.12.7",
  3156. "phpunit/phpunit": "^8.5.8 || ^9.0",
  3157. "symfony/error-handler": "^5.2 || ^6.0",
  3158. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0"
  3159. },
  3160. "suggest": {
  3161. "ext-xdebug": "For Xdebug profiling extension."
  3162. },
  3163. "bin": [
  3164. "bin/phpbench"
  3165. ],
  3166. "type": "library",
  3167. "extra": {
  3168. "branch-alias": {
  3169. "dev-master": "1.2-dev"
  3170. }
  3171. },
  3172. "autoload": {
  3173. "files": [
  3174. "lib/Report/Func/functions.php"
  3175. ],
  3176. "psr-4": {
  3177. "PhpBench\\": "lib/",
  3178. "PhpBench\\Extensions\\XDebug\\": "extensions/xdebug/lib/"
  3179. }
  3180. },
  3181. "notification-url": "https://packagist.org/downloads/",
  3182. "license": [
  3183. "MIT"
  3184. ],
  3185. "authors": [
  3186. {
  3187. "name": "Daniel Leech",
  3188. "email": "daniel@dantleech.com"
  3189. }
  3190. ],
  3191. "description": "PHP Benchmarking Framework",
  3192. "support": {
  3193. "issues": "https://github.com/phpbench/phpbench/issues",
  3194. "source": "https://github.com/phpbench/phpbench/tree/1.2.6"
  3195. },
  3196. "funding": [
  3197. {
  3198. "url": "https://github.com/dantleech",
  3199. "type": "github"
  3200. }
  3201. ],
  3202. "time": "2022-07-19T19:52:39+00:00"
  3203. },
  3204. {
  3205. "name": "phpdocumentor/reflection-common",
  3206. "version": "2.2.0",
  3207. "source": {
  3208. "type": "git",
  3209. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3210. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3211. },
  3212. "dist": {
  3213. "type": "zip",
  3214. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3215. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3216. "shasum": ""
  3217. },
  3218. "require": {
  3219. "php": "^7.2 || ^8.0"
  3220. },
  3221. "type": "library",
  3222. "extra": {
  3223. "branch-alias": {
  3224. "dev-2.x": "2.x-dev"
  3225. }
  3226. },
  3227. "autoload": {
  3228. "psr-4": {
  3229. "phpDocumentor\\Reflection\\": "src/"
  3230. }
  3231. },
  3232. "notification-url": "https://packagist.org/downloads/",
  3233. "license": [
  3234. "MIT"
  3235. ],
  3236. "authors": [
  3237. {
  3238. "name": "Jaap van Otterdijk",
  3239. "email": "opensource@ijaap.nl"
  3240. }
  3241. ],
  3242. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3243. "homepage": "http://www.phpdoc.org",
  3244. "keywords": [
  3245. "FQSEN",
  3246. "phpDocumentor",
  3247. "phpdoc",
  3248. "reflection",
  3249. "static analysis"
  3250. ],
  3251. "support": {
  3252. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3253. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3254. },
  3255. "time": "2020-06-27T09:03:43+00:00"
  3256. },
  3257. {
  3258. "name": "phpdocumentor/reflection-docblock",
  3259. "version": "5.3.0",
  3260. "source": {
  3261. "type": "git",
  3262. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3263. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
  3264. },
  3265. "dist": {
  3266. "type": "zip",
  3267. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
  3268. "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
  3269. "shasum": ""
  3270. },
  3271. "require": {
  3272. "ext-filter": "*",
  3273. "php": "^7.2 || ^8.0",
  3274. "phpdocumentor/reflection-common": "^2.2",
  3275. "phpdocumentor/type-resolver": "^1.3",
  3276. "webmozart/assert": "^1.9.1"
  3277. },
  3278. "require-dev": {
  3279. "mockery/mockery": "~1.3.2",
  3280. "psalm/phar": "^4.8"
  3281. },
  3282. "type": "library",
  3283. "extra": {
  3284. "branch-alias": {
  3285. "dev-master": "5.x-dev"
  3286. }
  3287. },
  3288. "autoload": {
  3289. "psr-4": {
  3290. "phpDocumentor\\Reflection\\": "src"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "authors": [
  3298. {
  3299. "name": "Mike van Riel",
  3300. "email": "me@mikevanriel.com"
  3301. },
  3302. {
  3303. "name": "Jaap van Otterdijk",
  3304. "email": "account@ijaap.nl"
  3305. }
  3306. ],
  3307. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3308. "support": {
  3309. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3310. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
  3311. },
  3312. "time": "2021-10-19T17:43:47+00:00"
  3313. },
  3314. {
  3315. "name": "phpdocumentor/type-resolver",
  3316. "version": "1.6.1",
  3317. "source": {
  3318. "type": "git",
  3319. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3320. "reference": "77a32518733312af16a44300404e945338981de3"
  3321. },
  3322. "dist": {
  3323. "type": "zip",
  3324. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  3325. "reference": "77a32518733312af16a44300404e945338981de3",
  3326. "shasum": ""
  3327. },
  3328. "require": {
  3329. "php": "^7.2 || ^8.0",
  3330. "phpdocumentor/reflection-common": "^2.0"
  3331. },
  3332. "require-dev": {
  3333. "ext-tokenizer": "*",
  3334. "psalm/phar": "^4.8"
  3335. },
  3336. "type": "library",
  3337. "extra": {
  3338. "branch-alias": {
  3339. "dev-1.x": "1.x-dev"
  3340. }
  3341. },
  3342. "autoload": {
  3343. "psr-4": {
  3344. "phpDocumentor\\Reflection\\": "src"
  3345. }
  3346. },
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "Mike van Riel",
  3354. "email": "me@mikevanriel.com"
  3355. }
  3356. ],
  3357. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3358. "support": {
  3359. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3360. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  3361. },
  3362. "time": "2022-03-15T21:29:03+00:00"
  3363. },
  3364. {
  3365. "name": "phpstan/extension-installer",
  3366. "version": "1.1.0",
  3367. "source": {
  3368. "type": "git",
  3369. "url": "https://github.com/phpstan/extension-installer.git",
  3370. "reference": "66c7adc9dfa38b6b5838a9fb728b68a7d8348051"
  3371. },
  3372. "dist": {
  3373. "type": "zip",
  3374. "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/66c7adc9dfa38b6b5838a9fb728b68a7d8348051",
  3375. "reference": "66c7adc9dfa38b6b5838a9fb728b68a7d8348051",
  3376. "shasum": ""
  3377. },
  3378. "require": {
  3379. "composer-plugin-api": "^1.1 || ^2.0",
  3380. "php": "^7.1 || ^8.0",
  3381. "phpstan/phpstan": ">=0.11.6"
  3382. },
  3383. "require-dev": {
  3384. "composer/composer": "^1.8",
  3385. "phing/phing": "^2.16.3",
  3386. "php-parallel-lint/php-parallel-lint": "^1.2.0",
  3387. "phpstan/phpstan-strict-rules": "^0.11 || ^0.12"
  3388. },
  3389. "type": "composer-plugin",
  3390. "extra": {
  3391. "class": "PHPStan\\ExtensionInstaller\\Plugin"
  3392. },
  3393. "autoload": {
  3394. "psr-4": {
  3395. "PHPStan\\ExtensionInstaller\\": "src/"
  3396. }
  3397. },
  3398. "notification-url": "https://packagist.org/downloads/",
  3399. "license": [
  3400. "MIT"
  3401. ],
  3402. "description": "Composer plugin for automatic installation of PHPStan extensions",
  3403. "support": {
  3404. "issues": "https://github.com/phpstan/extension-installer/issues",
  3405. "source": "https://github.com/phpstan/extension-installer/tree/1.1.0"
  3406. },
  3407. "time": "2020-12-13T13:06:13+00:00"
  3408. },
  3409. {
  3410. "name": "phpstan/phpdoc-parser",
  3411. "version": "1.7.0",
  3412. "source": {
  3413. "type": "git",
  3414. "url": "https://github.com/phpstan/phpdoc-parser.git",
  3415. "reference": "367a8d9d5f7da2a0136422d27ce8840583926955"
  3416. },
  3417. "dist": {
  3418. "type": "zip",
  3419. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/367a8d9d5f7da2a0136422d27ce8840583926955",
  3420. "reference": "367a8d9d5f7da2a0136422d27ce8840583926955",
  3421. "shasum": ""
  3422. },
  3423. "require": {
  3424. "php": "^7.2 || ^8.0"
  3425. },
  3426. "require-dev": {
  3427. "php-parallel-lint/php-parallel-lint": "^1.2",
  3428. "phpstan/extension-installer": "^1.0",
  3429. "phpstan/phpstan": "^1.5",
  3430. "phpstan/phpstan-phpunit": "^1.1",
  3431. "phpstan/phpstan-strict-rules": "^1.0",
  3432. "phpunit/phpunit": "^9.5",
  3433. "symfony/process": "^5.2"
  3434. },
  3435. "type": "library",
  3436. "autoload": {
  3437. "psr-4": {
  3438. "PHPStan\\PhpDocParser\\": [
  3439. "src/"
  3440. ]
  3441. }
  3442. },
  3443. "notification-url": "https://packagist.org/downloads/",
  3444. "license": [
  3445. "MIT"
  3446. ],
  3447. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  3448. "support": {
  3449. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  3450. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.7.0"
  3451. },
  3452. "time": "2022-08-09T12:23:23+00:00"
  3453. },
  3454. {
  3455. "name": "phpstan/phpstan",
  3456. "version": "1.8.5",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/phpstan/phpstan.git",
  3460. "reference": "f6598a5ff12ca4499a836815e08b4d77a2ddeb20"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/f6598a5ff12ca4499a836815e08b4d77a2ddeb20",
  3465. "reference": "f6598a5ff12ca4499a836815e08b4d77a2ddeb20",
  3466. "shasum": ""
  3467. },
  3468. "require": {
  3469. "php": "^7.2|^8.0"
  3470. },
  3471. "conflict": {
  3472. "phpstan/phpstan-shim": "*"
  3473. },
  3474. "bin": [
  3475. "phpstan",
  3476. "phpstan.phar"
  3477. ],
  3478. "type": "library",
  3479. "autoload": {
  3480. "files": [
  3481. "bootstrap.php"
  3482. ]
  3483. },
  3484. "notification-url": "https://packagist.org/downloads/",
  3485. "license": [
  3486. "MIT"
  3487. ],
  3488. "description": "PHPStan - PHP Static Analysis Tool",
  3489. "keywords": [
  3490. "dev",
  3491. "static analysis"
  3492. ],
  3493. "support": {
  3494. "issues": "https://github.com/phpstan/phpstan/issues",
  3495. "source": "https://github.com/phpstan/phpstan/tree/1.8.5"
  3496. },
  3497. "funding": [
  3498. {
  3499. "url": "https://github.com/ondrejmirtes",
  3500. "type": "github"
  3501. },
  3502. {
  3503. "url": "https://github.com/phpstan",
  3504. "type": "github"
  3505. },
  3506. {
  3507. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  3508. "type": "tidelift"
  3509. }
  3510. ],
  3511. "time": "2022-09-07T16:05:32+00:00"
  3512. },
  3513. {
  3514. "name": "phpstan/phpstan-mockery",
  3515. "version": "1.1.0",
  3516. "source": {
  3517. "type": "git",
  3518. "url": "https://github.com/phpstan/phpstan-mockery.git",
  3519. "reference": "245b17ccd00f04be3c6b9fc6645f63793b37b2ea"
  3520. },
  3521. "dist": {
  3522. "type": "zip",
  3523. "url": "https://api.github.com/repos/phpstan/phpstan-mockery/zipball/245b17ccd00f04be3c6b9fc6645f63793b37b2ea",
  3524. "reference": "245b17ccd00f04be3c6b9fc6645f63793b37b2ea",
  3525. "shasum": ""
  3526. },
  3527. "require": {
  3528. "php": "^7.2 || ^8.0",
  3529. "phpstan/phpstan": "^1.5.0"
  3530. },
  3531. "require-dev": {
  3532. "mockery/mockery": "^1.2.4",
  3533. "nikic/php-parser": "^4.13.0",
  3534. "php-parallel-lint/php-parallel-lint": "^1.2",
  3535. "phpstan/phpstan-phpunit": "^1.0",
  3536. "phpstan/phpstan-strict-rules": "^1.0",
  3537. "phpunit/phpunit": "^9.5"
  3538. },
  3539. "type": "phpstan-extension",
  3540. "extra": {
  3541. "phpstan": {
  3542. "includes": [
  3543. "extension.neon"
  3544. ]
  3545. }
  3546. },
  3547. "autoload": {
  3548. "psr-4": {
  3549. "PHPStan\\": "src/"
  3550. }
  3551. },
  3552. "notification-url": "https://packagist.org/downloads/",
  3553. "license": [
  3554. "MIT"
  3555. ],
  3556. "description": "PHPStan Mockery extension",
  3557. "support": {
  3558. "issues": "https://github.com/phpstan/phpstan-mockery/issues",
  3559. "source": "https://github.com/phpstan/phpstan-mockery/tree/1.1.0"
  3560. },
  3561. "time": "2022-05-09T13:12:35+00:00"
  3562. },
  3563. {
  3564. "name": "phpstan/phpstan-phpunit",
  3565. "version": "1.1.1",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://github.com/phpstan/phpstan-phpunit.git",
  3569. "reference": "4a3c437c09075736285d1cabb5c75bf27ed0bc84"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/4a3c437c09075736285d1cabb5c75bf27ed0bc84",
  3574. "reference": "4a3c437c09075736285d1cabb5c75bf27ed0bc84",
  3575. "shasum": ""
  3576. },
  3577. "require": {
  3578. "php": "^7.2 || ^8.0",
  3579. "phpstan/phpstan": "^1.5.0"
  3580. },
  3581. "conflict": {
  3582. "phpunit/phpunit": "<7.0"
  3583. },
  3584. "require-dev": {
  3585. "nikic/php-parser": "^4.13.0",
  3586. "php-parallel-lint/php-parallel-lint": "^1.2",
  3587. "phpstan/phpstan-strict-rules": "^1.0",
  3588. "phpunit/phpunit": "^9.5"
  3589. },
  3590. "type": "phpstan-extension",
  3591. "extra": {
  3592. "phpstan": {
  3593. "includes": [
  3594. "extension.neon",
  3595. "rules.neon"
  3596. ]
  3597. }
  3598. },
  3599. "autoload": {
  3600. "psr-4": {
  3601. "PHPStan\\": "src/"
  3602. }
  3603. },
  3604. "notification-url": "https://packagist.org/downloads/",
  3605. "license": [
  3606. "MIT"
  3607. ],
  3608. "description": "PHPUnit extensions and rules for PHPStan",
  3609. "support": {
  3610. "issues": "https://github.com/phpstan/phpstan-phpunit/issues",
  3611. "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.1.1"
  3612. },
  3613. "time": "2022-04-20T15:24:25+00:00"
  3614. },
  3615. {
  3616. "name": "phpunit/php-code-coverage",
  3617. "version": "9.2.17",
  3618. "source": {
  3619. "type": "git",
  3620. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  3621. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8"
  3622. },
  3623. "dist": {
  3624. "type": "zip",
  3625. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aa94dc41e8661fe90c7316849907cba3007b10d8",
  3626. "reference": "aa94dc41e8661fe90c7316849907cba3007b10d8",
  3627. "shasum": ""
  3628. },
  3629. "require": {
  3630. "ext-dom": "*",
  3631. "ext-libxml": "*",
  3632. "ext-xmlwriter": "*",
  3633. "nikic/php-parser": "^4.14",
  3634. "php": ">=7.3",
  3635. "phpunit/php-file-iterator": "^3.0.3",
  3636. "phpunit/php-text-template": "^2.0.2",
  3637. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  3638. "sebastian/complexity": "^2.0",
  3639. "sebastian/environment": "^5.1.2",
  3640. "sebastian/lines-of-code": "^1.0.3",
  3641. "sebastian/version": "^3.0.1",
  3642. "theseer/tokenizer": "^1.2.0"
  3643. },
  3644. "require-dev": {
  3645. "phpunit/phpunit": "^9.3"
  3646. },
  3647. "suggest": {
  3648. "ext-pcov": "*",
  3649. "ext-xdebug": "*"
  3650. },
  3651. "type": "library",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-master": "9.2-dev"
  3655. }
  3656. },
  3657. "autoload": {
  3658. "classmap": [
  3659. "src/"
  3660. ]
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "BSD-3-Clause"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "Sebastian Bergmann",
  3669. "email": "sebastian@phpunit.de",
  3670. "role": "lead"
  3671. }
  3672. ],
  3673. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  3674. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  3675. "keywords": [
  3676. "coverage",
  3677. "testing",
  3678. "xunit"
  3679. ],
  3680. "support": {
  3681. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  3682. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.17"
  3683. },
  3684. "funding": [
  3685. {
  3686. "url": "https://github.com/sebastianbergmann",
  3687. "type": "github"
  3688. }
  3689. ],
  3690. "time": "2022-08-30T12:24:04+00:00"
  3691. },
  3692. {
  3693. "name": "phpunit/php-file-iterator",
  3694. "version": "3.0.6",
  3695. "source": {
  3696. "type": "git",
  3697. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  3698. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  3699. },
  3700. "dist": {
  3701. "type": "zip",
  3702. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  3703. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  3704. "shasum": ""
  3705. },
  3706. "require": {
  3707. "php": ">=7.3"
  3708. },
  3709. "require-dev": {
  3710. "phpunit/phpunit": "^9.3"
  3711. },
  3712. "type": "library",
  3713. "extra": {
  3714. "branch-alias": {
  3715. "dev-master": "3.0-dev"
  3716. }
  3717. },
  3718. "autoload": {
  3719. "classmap": [
  3720. "src/"
  3721. ]
  3722. },
  3723. "notification-url": "https://packagist.org/downloads/",
  3724. "license": [
  3725. "BSD-3-Clause"
  3726. ],
  3727. "authors": [
  3728. {
  3729. "name": "Sebastian Bergmann",
  3730. "email": "sebastian@phpunit.de",
  3731. "role": "lead"
  3732. }
  3733. ],
  3734. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  3735. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  3736. "keywords": [
  3737. "filesystem",
  3738. "iterator"
  3739. ],
  3740. "support": {
  3741. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  3742. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  3743. },
  3744. "funding": [
  3745. {
  3746. "url": "https://github.com/sebastianbergmann",
  3747. "type": "github"
  3748. }
  3749. ],
  3750. "time": "2021-12-02T12:48:52+00:00"
  3751. },
  3752. {
  3753. "name": "phpunit/php-invoker",
  3754. "version": "3.1.1",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  3758. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  3763. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  3764. "shasum": ""
  3765. },
  3766. "require": {
  3767. "php": ">=7.3"
  3768. },
  3769. "require-dev": {
  3770. "ext-pcntl": "*",
  3771. "phpunit/phpunit": "^9.3"
  3772. },
  3773. "suggest": {
  3774. "ext-pcntl": "*"
  3775. },
  3776. "type": "library",
  3777. "extra": {
  3778. "branch-alias": {
  3779. "dev-master": "3.1-dev"
  3780. }
  3781. },
  3782. "autoload": {
  3783. "classmap": [
  3784. "src/"
  3785. ]
  3786. },
  3787. "notification-url": "https://packagist.org/downloads/",
  3788. "license": [
  3789. "BSD-3-Clause"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Sebastian Bergmann",
  3794. "email": "sebastian@phpunit.de",
  3795. "role": "lead"
  3796. }
  3797. ],
  3798. "description": "Invoke callables with a timeout",
  3799. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  3800. "keywords": [
  3801. "process"
  3802. ],
  3803. "support": {
  3804. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  3805. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  3806. },
  3807. "funding": [
  3808. {
  3809. "url": "https://github.com/sebastianbergmann",
  3810. "type": "github"
  3811. }
  3812. ],
  3813. "time": "2020-09-28T05:58:55+00:00"
  3814. },
  3815. {
  3816. "name": "phpunit/php-text-template",
  3817. "version": "2.0.4",
  3818. "source": {
  3819. "type": "git",
  3820. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  3821. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  3822. },
  3823. "dist": {
  3824. "type": "zip",
  3825. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  3826. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  3827. "shasum": ""
  3828. },
  3829. "require": {
  3830. "php": ">=7.3"
  3831. },
  3832. "require-dev": {
  3833. "phpunit/phpunit": "^9.3"
  3834. },
  3835. "type": "library",
  3836. "extra": {
  3837. "branch-alias": {
  3838. "dev-master": "2.0-dev"
  3839. }
  3840. },
  3841. "autoload": {
  3842. "classmap": [
  3843. "src/"
  3844. ]
  3845. },
  3846. "notification-url": "https://packagist.org/downloads/",
  3847. "license": [
  3848. "BSD-3-Clause"
  3849. ],
  3850. "authors": [
  3851. {
  3852. "name": "Sebastian Bergmann",
  3853. "email": "sebastian@phpunit.de",
  3854. "role": "lead"
  3855. }
  3856. ],
  3857. "description": "Simple template engine.",
  3858. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  3859. "keywords": [
  3860. "template"
  3861. ],
  3862. "support": {
  3863. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  3864. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  3865. },
  3866. "funding": [
  3867. {
  3868. "url": "https://github.com/sebastianbergmann",
  3869. "type": "github"
  3870. }
  3871. ],
  3872. "time": "2020-10-26T05:33:50+00:00"
  3873. },
  3874. {
  3875. "name": "phpunit/php-timer",
  3876. "version": "5.0.3",
  3877. "source": {
  3878. "type": "git",
  3879. "url": "https://github.com/sebastianbergmann/php-timer.git",
  3880. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  3881. },
  3882. "dist": {
  3883. "type": "zip",
  3884. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  3885. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  3886. "shasum": ""
  3887. },
  3888. "require": {
  3889. "php": ">=7.3"
  3890. },
  3891. "require-dev": {
  3892. "phpunit/phpunit": "^9.3"
  3893. },
  3894. "type": "library",
  3895. "extra": {
  3896. "branch-alias": {
  3897. "dev-master": "5.0-dev"
  3898. }
  3899. },
  3900. "autoload": {
  3901. "classmap": [
  3902. "src/"
  3903. ]
  3904. },
  3905. "notification-url": "https://packagist.org/downloads/",
  3906. "license": [
  3907. "BSD-3-Clause"
  3908. ],
  3909. "authors": [
  3910. {
  3911. "name": "Sebastian Bergmann",
  3912. "email": "sebastian@phpunit.de",
  3913. "role": "lead"
  3914. }
  3915. ],
  3916. "description": "Utility class for timing",
  3917. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  3918. "keywords": [
  3919. "timer"
  3920. ],
  3921. "support": {
  3922. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  3923. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  3924. },
  3925. "funding": [
  3926. {
  3927. "url": "https://github.com/sebastianbergmann",
  3928. "type": "github"
  3929. }
  3930. ],
  3931. "time": "2020-10-26T13:16:10+00:00"
  3932. },
  3933. {
  3934. "name": "phpunit/phpunit",
  3935. "version": "9.5.24",
  3936. "source": {
  3937. "type": "git",
  3938. "url": "https://github.com/sebastianbergmann/phpunit.git",
  3939. "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5"
  3940. },
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
  3944. "reference": "d0aa6097bef9fd42458a9b3c49da32c6ce6129c5",
  3945. "shasum": ""
  3946. },
  3947. "require": {
  3948. "doctrine/instantiator": "^1.3.1",
  3949. "ext-dom": "*",
  3950. "ext-json": "*",
  3951. "ext-libxml": "*",
  3952. "ext-mbstring": "*",
  3953. "ext-xml": "*",
  3954. "ext-xmlwriter": "*",
  3955. "myclabs/deep-copy": "^1.10.1",
  3956. "phar-io/manifest": "^2.0.3",
  3957. "phar-io/version": "^3.0.2",
  3958. "php": ">=7.3",
  3959. "phpunit/php-code-coverage": "^9.2.13",
  3960. "phpunit/php-file-iterator": "^3.0.5",
  3961. "phpunit/php-invoker": "^3.1.1",
  3962. "phpunit/php-text-template": "^2.0.3",
  3963. "phpunit/php-timer": "^5.0.2",
  3964. "sebastian/cli-parser": "^1.0.1",
  3965. "sebastian/code-unit": "^1.0.6",
  3966. "sebastian/comparator": "^4.0.5",
  3967. "sebastian/diff": "^4.0.3",
  3968. "sebastian/environment": "^5.1.3",
  3969. "sebastian/exporter": "^4.0.3",
  3970. "sebastian/global-state": "^5.0.1",
  3971. "sebastian/object-enumerator": "^4.0.3",
  3972. "sebastian/resource-operations": "^3.0.3",
  3973. "sebastian/type": "^3.1",
  3974. "sebastian/version": "^3.0.2"
  3975. },
  3976. "suggest": {
  3977. "ext-soap": "*",
  3978. "ext-xdebug": "*"
  3979. },
  3980. "bin": [
  3981. "phpunit"
  3982. ],
  3983. "type": "library",
  3984. "extra": {
  3985. "branch-alias": {
  3986. "dev-master": "9.5-dev"
  3987. }
  3988. },
  3989. "autoload": {
  3990. "files": [
  3991. "src/Framework/Assert/Functions.php"
  3992. ],
  3993. "classmap": [
  3994. "src/"
  3995. ]
  3996. },
  3997. "notification-url": "https://packagist.org/downloads/",
  3998. "license": [
  3999. "BSD-3-Clause"
  4000. ],
  4001. "authors": [
  4002. {
  4003. "name": "Sebastian Bergmann",
  4004. "email": "sebastian@phpunit.de",
  4005. "role": "lead"
  4006. }
  4007. ],
  4008. "description": "The PHP Unit Testing framework.",
  4009. "homepage": "https://phpunit.de/",
  4010. "keywords": [
  4011. "phpunit",
  4012. "testing",
  4013. "xunit"
  4014. ],
  4015. "support": {
  4016. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  4017. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.24"
  4018. },
  4019. "funding": [
  4020. {
  4021. "url": "https://phpunit.de/sponsors.html",
  4022. "type": "custom"
  4023. },
  4024. {
  4025. "url": "https://github.com/sebastianbergmann",
  4026. "type": "github"
  4027. }
  4028. ],
  4029. "time": "2022-08-30T07:42:16+00:00"
  4030. },
  4031. {
  4032. "name": "psr/cache",
  4033. "version": "3.0.0",
  4034. "source": {
  4035. "type": "git",
  4036. "url": "https://github.com/php-fig/cache.git",
  4037. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4038. },
  4039. "dist": {
  4040. "type": "zip",
  4041. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4042. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4043. "shasum": ""
  4044. },
  4045. "require": {
  4046. "php": ">=8.0.0"
  4047. },
  4048. "type": "library",
  4049. "extra": {
  4050. "branch-alias": {
  4051. "dev-master": "1.0.x-dev"
  4052. }
  4053. },
  4054. "autoload": {
  4055. "psr-4": {
  4056. "Psr\\Cache\\": "src/"
  4057. }
  4058. },
  4059. "notification-url": "https://packagist.org/downloads/",
  4060. "license": [
  4061. "MIT"
  4062. ],
  4063. "authors": [
  4064. {
  4065. "name": "PHP-FIG",
  4066. "homepage": "https://www.php-fig.org/"
  4067. }
  4068. ],
  4069. "description": "Common interface for caching libraries",
  4070. "keywords": [
  4071. "cache",
  4072. "psr",
  4073. "psr-6"
  4074. ],
  4075. "support": {
  4076. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4077. },
  4078. "time": "2021-02-03T23:26:27+00:00"
  4079. },
  4080. {
  4081. "name": "psr/container",
  4082. "version": "2.0.2",
  4083. "source": {
  4084. "type": "git",
  4085. "url": "https://github.com/php-fig/container.git",
  4086. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4087. },
  4088. "dist": {
  4089. "type": "zip",
  4090. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4091. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4092. "shasum": ""
  4093. },
  4094. "require": {
  4095. "php": ">=7.4.0"
  4096. },
  4097. "type": "library",
  4098. "extra": {
  4099. "branch-alias": {
  4100. "dev-master": "2.0.x-dev"
  4101. }
  4102. },
  4103. "autoload": {
  4104. "psr-4": {
  4105. "Psr\\Container\\": "src/"
  4106. }
  4107. },
  4108. "notification-url": "https://packagist.org/downloads/",
  4109. "license": [
  4110. "MIT"
  4111. ],
  4112. "authors": [
  4113. {
  4114. "name": "PHP-FIG",
  4115. "homepage": "https://www.php-fig.org/"
  4116. }
  4117. ],
  4118. "description": "Common Container Interface (PHP FIG PSR-11)",
  4119. "homepage": "https://github.com/php-fig/container",
  4120. "keywords": [
  4121. "PSR-11",
  4122. "container",
  4123. "container-interface",
  4124. "container-interop",
  4125. "psr"
  4126. ],
  4127. "support": {
  4128. "issues": "https://github.com/php-fig/container/issues",
  4129. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4130. },
  4131. "time": "2021-11-05T16:47:00+00:00"
  4132. },
  4133. {
  4134. "name": "psr/log",
  4135. "version": "3.0.0",
  4136. "source": {
  4137. "type": "git",
  4138. "url": "https://github.com/php-fig/log.git",
  4139. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4140. },
  4141. "dist": {
  4142. "type": "zip",
  4143. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4144. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4145. "shasum": ""
  4146. },
  4147. "require": {
  4148. "php": ">=8.0.0"
  4149. },
  4150. "type": "library",
  4151. "extra": {
  4152. "branch-alias": {
  4153. "dev-master": "3.x-dev"
  4154. }
  4155. },
  4156. "autoload": {
  4157. "psr-4": {
  4158. "Psr\\Log\\": "src"
  4159. }
  4160. },
  4161. "notification-url": "https://packagist.org/downloads/",
  4162. "license": [
  4163. "MIT"
  4164. ],
  4165. "authors": [
  4166. {
  4167. "name": "PHP-FIG",
  4168. "homepage": "https://www.php-fig.org/"
  4169. }
  4170. ],
  4171. "description": "Common interface for logging libraries",
  4172. "homepage": "https://github.com/php-fig/log",
  4173. "keywords": [
  4174. "log",
  4175. "psr",
  4176. "psr-3"
  4177. ],
  4178. "support": {
  4179. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4180. },
  4181. "time": "2021-07-14T16:46:02+00:00"
  4182. },
  4183. {
  4184. "name": "psy/psysh",
  4185. "version": "v0.11.8",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/bobthecow/psysh.git",
  4189. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/f455acf3645262ae389b10e9beba0c358aa6994e",
  4194. "reference": "f455acf3645262ae389b10e9beba0c358aa6994e",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "ext-json": "*",
  4199. "ext-tokenizer": "*",
  4200. "nikic/php-parser": "^4.0 || ^3.1",
  4201. "php": "^8.0 || ^7.0.8",
  4202. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  4203. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  4204. },
  4205. "conflict": {
  4206. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4207. },
  4208. "require-dev": {
  4209. "bamarni/composer-bin-plugin": "^1.2"
  4210. },
  4211. "suggest": {
  4212. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4213. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4214. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4215. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  4216. },
  4217. "bin": [
  4218. "bin/psysh"
  4219. ],
  4220. "type": "library",
  4221. "extra": {
  4222. "branch-alias": {
  4223. "dev-main": "0.11.x-dev"
  4224. }
  4225. },
  4226. "autoload": {
  4227. "files": [
  4228. "src/functions.php"
  4229. ],
  4230. "psr-4": {
  4231. "Psy\\": "src/"
  4232. }
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "Justin Hileman",
  4241. "email": "justin@justinhileman.info",
  4242. "homepage": "http://justinhileman.com"
  4243. }
  4244. ],
  4245. "description": "An interactive shell for modern PHP.",
  4246. "homepage": "http://psysh.org",
  4247. "keywords": [
  4248. "REPL",
  4249. "console",
  4250. "interactive",
  4251. "shell"
  4252. ],
  4253. "support": {
  4254. "issues": "https://github.com/bobthecow/psysh/issues",
  4255. "source": "https://github.com/bobthecow/psysh/tree/v0.11.8"
  4256. },
  4257. "time": "2022-07-28T14:25:11+00:00"
  4258. },
  4259. {
  4260. "name": "ramsey/composer-repl",
  4261. "version": "1.4.1",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://github.com/ramsey/composer-repl.git",
  4265. "reference": "24553610c07df626c7dfd44ef328b7ae3349366f"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://api.github.com/repos/ramsey/composer-repl/zipball/24553610c07df626c7dfd44ef328b7ae3349366f",
  4270. "reference": "24553610c07df626c7dfd44ef328b7ae3349366f",
  4271. "shasum": ""
  4272. },
  4273. "require": {
  4274. "composer-plugin-api": "^2",
  4275. "php": "^7.4 || ^8",
  4276. "ramsey/composer-repl-lib": "^1.1"
  4277. },
  4278. "require-dev": {
  4279. "captainhook/captainhook": "^5.10",
  4280. "captainhook/plugin-composer": "^5.3",
  4281. "ergebnis/composer-normalize": "^2.25",
  4282. "roave/security-advisories": "dev-latest"
  4283. },
  4284. "type": "composer-plugin",
  4285. "extra": {
  4286. "branch-alias": {
  4287. "dev-main": "1.x-dev"
  4288. },
  4289. "captainhook": {
  4290. "force-install": true
  4291. },
  4292. "class": "Ramsey\\Dev\\Repl\\Composer\\ReplPlugin",
  4293. "ramsey/conventional-commits": {
  4294. "configFile": "conventional-commits.json"
  4295. },
  4296. "ramsey/devtools": {
  4297. "command-prefix": "dev"
  4298. }
  4299. },
  4300. "notification-url": "https://packagist.org/downloads/",
  4301. "license": [
  4302. "MIT"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "Ben Ramsey",
  4307. "email": "ben@benramsey.com",
  4308. "homepage": "https://benramsey.com"
  4309. }
  4310. ],
  4311. "description": "A REPL for PHP built into Composer.",
  4312. "keywords": [
  4313. "REPL",
  4314. "psysh",
  4315. "shell"
  4316. ],
  4317. "support": {
  4318. "issues": "https://github.com/ramsey/composer-repl/issues",
  4319. "source": "https://github.com/ramsey/composer-repl/tree/1.4.1"
  4320. },
  4321. "funding": [
  4322. {
  4323. "url": "https://github.com/ramsey",
  4324. "type": "github"
  4325. }
  4326. ],
  4327. "time": "2022-04-17T02:07:54+00:00"
  4328. },
  4329. {
  4330. "name": "ramsey/composer-repl-lib",
  4331. "version": "1.1.0",
  4332. "source": {
  4333. "type": "git",
  4334. "url": "https://github.com/ramsey/composer-repl-lib.git",
  4335. "reference": "53f7666f1f4b49711741ad22b633671a312a6fdc"
  4336. },
  4337. "dist": {
  4338. "type": "zip",
  4339. "url": "https://api.github.com/repos/ramsey/composer-repl-lib/zipball/53f7666f1f4b49711741ad22b633671a312a6fdc",
  4340. "reference": "53f7666f1f4b49711741ad22b633671a312a6fdc",
  4341. "shasum": ""
  4342. },
  4343. "require": {
  4344. "composer/composer": "^2.1.9",
  4345. "php": "^7.4 || ^8",
  4346. "phpunit/phpunit": "^6 || ^7 || ^8 || ^9",
  4347. "psy/psysh": "^0.11.0",
  4348. "symfony/console": "^4.4.30 || ^5.3.7 || ^6",
  4349. "symfony/process": "^4.4.30 || ^5.3.7 || ^6"
  4350. },
  4351. "require-dev": {
  4352. "captainhook/captainhook": "^5.10",
  4353. "captainhook/plugin-composer": "^5.3",
  4354. "ergebnis/composer-normalize": "^2.25",
  4355. "hamcrest/hamcrest-php": "^2.0",
  4356. "mockery/mockery": "^1.5",
  4357. "php-parallel-lint/php-console-highlighter": "^1.0",
  4358. "php-parallel-lint/php-parallel-lint": "^1.3",
  4359. "phpstan/extension-installer": "^1.1",
  4360. "phpstan/phpstan": "^1.5",
  4361. "phpstan/phpstan-mockery": "^1.0",
  4362. "phpstan/phpstan-phpunit": "^1.1",
  4363. "psalm/plugin-mockery": "^0.9.1",
  4364. "psalm/plugin-phpunit": "^0.16.1",
  4365. "ramsey/coding-standard": "^2.0.3",
  4366. "roave/security-advisories": "dev-latest",
  4367. "vimeo/psalm": "^4.22"
  4368. },
  4369. "bin": [
  4370. "bin/repl"
  4371. ],
  4372. "type": "library",
  4373. "extra": {
  4374. "branch-alias": {
  4375. "dev-main": "1.x-dev"
  4376. },
  4377. "captainhook": {
  4378. "force-install": true
  4379. },
  4380. "ramsey/composer-repl": {
  4381. "includes": [
  4382. "repl.php"
  4383. ]
  4384. },
  4385. "ramsey/conventional-commits": {
  4386. "configFile": "conventional-commits.json"
  4387. }
  4388. },
  4389. "autoload": {
  4390. "psr-4": {
  4391. "Ramsey\\Dev\\Repl\\": "src/"
  4392. }
  4393. },
  4394. "notification-url": "https://packagist.org/downloads/",
  4395. "license": [
  4396. "MIT"
  4397. ],
  4398. "authors": [
  4399. {
  4400. "name": "Ben Ramsey",
  4401. "email": "ben@benramsey.com",
  4402. "homepage": "https://benramsey.com"
  4403. }
  4404. ],
  4405. "description": "The library behind ramsey/composer-repl, allowing for extension of the ramsey/composer-repl Composer plugin and non-plugin use of the repl command.",
  4406. "keywords": [
  4407. "REPL",
  4408. "psysh",
  4409. "shell"
  4410. ],
  4411. "support": {
  4412. "issues": "https://github.com/ramsey/composer-repl-lib/issues",
  4413. "source": "https://github.com/ramsey/composer-repl-lib/tree/1.1.0"
  4414. },
  4415. "funding": [
  4416. {
  4417. "url": "https://github.com/ramsey",
  4418. "type": "github"
  4419. }
  4420. ],
  4421. "time": "2022-04-17T01:54:57+00:00"
  4422. },
  4423. {
  4424. "name": "react/promise",
  4425. "version": "v2.9.0",
  4426. "source": {
  4427. "type": "git",
  4428. "url": "https://github.com/reactphp/promise.git",
  4429. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910"
  4430. },
  4431. "dist": {
  4432. "type": "zip",
  4433. "url": "https://api.github.com/repos/reactphp/promise/zipball/234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  4434. "reference": "234f8fd1023c9158e2314fa9d7d0e6a83db42910",
  4435. "shasum": ""
  4436. },
  4437. "require": {
  4438. "php": ">=5.4.0"
  4439. },
  4440. "require-dev": {
  4441. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  4442. },
  4443. "type": "library",
  4444. "autoload": {
  4445. "files": [
  4446. "src/functions_include.php"
  4447. ],
  4448. "psr-4": {
  4449. "React\\Promise\\": "src/"
  4450. }
  4451. },
  4452. "notification-url": "https://packagist.org/downloads/",
  4453. "license": [
  4454. "MIT"
  4455. ],
  4456. "authors": [
  4457. {
  4458. "name": "Jan Sorgalla",
  4459. "email": "jsorgalla@gmail.com",
  4460. "homepage": "https://sorgalla.com/"
  4461. },
  4462. {
  4463. "name": "Christian Lück",
  4464. "email": "christian@clue.engineering",
  4465. "homepage": "https://clue.engineering/"
  4466. },
  4467. {
  4468. "name": "Cees-Jan Kiewiet",
  4469. "email": "reactphp@ceesjankiewiet.nl",
  4470. "homepage": "https://wyrihaximus.net/"
  4471. },
  4472. {
  4473. "name": "Chris Boden",
  4474. "email": "cboden@gmail.com",
  4475. "homepage": "https://cboden.dev/"
  4476. }
  4477. ],
  4478. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4479. "keywords": [
  4480. "promise",
  4481. "promises"
  4482. ],
  4483. "support": {
  4484. "issues": "https://github.com/reactphp/promise/issues",
  4485. "source": "https://github.com/reactphp/promise/tree/v2.9.0"
  4486. },
  4487. "funding": [
  4488. {
  4489. "url": "https://github.com/WyriHaximus",
  4490. "type": "github"
  4491. },
  4492. {
  4493. "url": "https://github.com/clue",
  4494. "type": "github"
  4495. }
  4496. ],
  4497. "time": "2022-02-11T10:27:51+00:00"
  4498. },
  4499. {
  4500. "name": "sebastian/cli-parser",
  4501. "version": "1.0.1",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  4505. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  4506. },
  4507. "dist": {
  4508. "type": "zip",
  4509. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  4510. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  4511. "shasum": ""
  4512. },
  4513. "require": {
  4514. "php": ">=7.3"
  4515. },
  4516. "require-dev": {
  4517. "phpunit/phpunit": "^9.3"
  4518. },
  4519. "type": "library",
  4520. "extra": {
  4521. "branch-alias": {
  4522. "dev-master": "1.0-dev"
  4523. }
  4524. },
  4525. "autoload": {
  4526. "classmap": [
  4527. "src/"
  4528. ]
  4529. },
  4530. "notification-url": "https://packagist.org/downloads/",
  4531. "license": [
  4532. "BSD-3-Clause"
  4533. ],
  4534. "authors": [
  4535. {
  4536. "name": "Sebastian Bergmann",
  4537. "email": "sebastian@phpunit.de",
  4538. "role": "lead"
  4539. }
  4540. ],
  4541. "description": "Library for parsing CLI options",
  4542. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  4543. "support": {
  4544. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  4545. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  4546. },
  4547. "funding": [
  4548. {
  4549. "url": "https://github.com/sebastianbergmann",
  4550. "type": "github"
  4551. }
  4552. ],
  4553. "time": "2020-09-28T06:08:49+00:00"
  4554. },
  4555. {
  4556. "name": "sebastian/code-unit",
  4557. "version": "1.0.8",
  4558. "source": {
  4559. "type": "git",
  4560. "url": "https://github.com/sebastianbergmann/code-unit.git",
  4561. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  4562. },
  4563. "dist": {
  4564. "type": "zip",
  4565. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4566. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  4567. "shasum": ""
  4568. },
  4569. "require": {
  4570. "php": ">=7.3"
  4571. },
  4572. "require-dev": {
  4573. "phpunit/phpunit": "^9.3"
  4574. },
  4575. "type": "library",
  4576. "extra": {
  4577. "branch-alias": {
  4578. "dev-master": "1.0-dev"
  4579. }
  4580. },
  4581. "autoload": {
  4582. "classmap": [
  4583. "src/"
  4584. ]
  4585. },
  4586. "notification-url": "https://packagist.org/downloads/",
  4587. "license": [
  4588. "BSD-3-Clause"
  4589. ],
  4590. "authors": [
  4591. {
  4592. "name": "Sebastian Bergmann",
  4593. "email": "sebastian@phpunit.de",
  4594. "role": "lead"
  4595. }
  4596. ],
  4597. "description": "Collection of value objects that represent the PHP code units",
  4598. "homepage": "https://github.com/sebastianbergmann/code-unit",
  4599. "support": {
  4600. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  4601. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  4602. },
  4603. "funding": [
  4604. {
  4605. "url": "https://github.com/sebastianbergmann",
  4606. "type": "github"
  4607. }
  4608. ],
  4609. "time": "2020-10-26T13:08:54+00:00"
  4610. },
  4611. {
  4612. "name": "sebastian/code-unit-reverse-lookup",
  4613. "version": "2.0.3",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  4617. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4622. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  4623. "shasum": ""
  4624. },
  4625. "require": {
  4626. "php": ">=7.3"
  4627. },
  4628. "require-dev": {
  4629. "phpunit/phpunit": "^9.3"
  4630. },
  4631. "type": "library",
  4632. "extra": {
  4633. "branch-alias": {
  4634. "dev-master": "2.0-dev"
  4635. }
  4636. },
  4637. "autoload": {
  4638. "classmap": [
  4639. "src/"
  4640. ]
  4641. },
  4642. "notification-url": "https://packagist.org/downloads/",
  4643. "license": [
  4644. "BSD-3-Clause"
  4645. ],
  4646. "authors": [
  4647. {
  4648. "name": "Sebastian Bergmann",
  4649. "email": "sebastian@phpunit.de"
  4650. }
  4651. ],
  4652. "description": "Looks up which function or method a line of code belongs to",
  4653. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  4654. "support": {
  4655. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  4656. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  4657. },
  4658. "funding": [
  4659. {
  4660. "url": "https://github.com/sebastianbergmann",
  4661. "type": "github"
  4662. }
  4663. ],
  4664. "time": "2020-09-28T05:30:19+00:00"
  4665. },
  4666. {
  4667. "name": "sebastian/comparator",
  4668. "version": "4.0.6",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/sebastianbergmann/comparator.git",
  4672. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  4677. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  4678. "shasum": ""
  4679. },
  4680. "require": {
  4681. "php": ">=7.3",
  4682. "sebastian/diff": "^4.0",
  4683. "sebastian/exporter": "^4.0"
  4684. },
  4685. "require-dev": {
  4686. "phpunit/phpunit": "^9.3"
  4687. },
  4688. "type": "library",
  4689. "extra": {
  4690. "branch-alias": {
  4691. "dev-master": "4.0-dev"
  4692. }
  4693. },
  4694. "autoload": {
  4695. "classmap": [
  4696. "src/"
  4697. ]
  4698. },
  4699. "notification-url": "https://packagist.org/downloads/",
  4700. "license": [
  4701. "BSD-3-Clause"
  4702. ],
  4703. "authors": [
  4704. {
  4705. "name": "Sebastian Bergmann",
  4706. "email": "sebastian@phpunit.de"
  4707. },
  4708. {
  4709. "name": "Jeff Welch",
  4710. "email": "whatthejeff@gmail.com"
  4711. },
  4712. {
  4713. "name": "Volker Dusch",
  4714. "email": "github@wallbash.com"
  4715. },
  4716. {
  4717. "name": "Bernhard Schussek",
  4718. "email": "bschussek@2bepublished.at"
  4719. }
  4720. ],
  4721. "description": "Provides the functionality to compare PHP values for equality",
  4722. "homepage": "https://github.com/sebastianbergmann/comparator",
  4723. "keywords": [
  4724. "comparator",
  4725. "compare",
  4726. "equality"
  4727. ],
  4728. "support": {
  4729. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  4730. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  4731. },
  4732. "funding": [
  4733. {
  4734. "url": "https://github.com/sebastianbergmann",
  4735. "type": "github"
  4736. }
  4737. ],
  4738. "time": "2020-10-26T15:49:45+00:00"
  4739. },
  4740. {
  4741. "name": "sebastian/complexity",
  4742. "version": "2.0.2",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/sebastianbergmann/complexity.git",
  4746. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  4751. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  4752. "shasum": ""
  4753. },
  4754. "require": {
  4755. "nikic/php-parser": "^4.7",
  4756. "php": ">=7.3"
  4757. },
  4758. "require-dev": {
  4759. "phpunit/phpunit": "^9.3"
  4760. },
  4761. "type": "library",
  4762. "extra": {
  4763. "branch-alias": {
  4764. "dev-master": "2.0-dev"
  4765. }
  4766. },
  4767. "autoload": {
  4768. "classmap": [
  4769. "src/"
  4770. ]
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "BSD-3-Clause"
  4775. ],
  4776. "authors": [
  4777. {
  4778. "name": "Sebastian Bergmann",
  4779. "email": "sebastian@phpunit.de",
  4780. "role": "lead"
  4781. }
  4782. ],
  4783. "description": "Library for calculating the complexity of PHP code units",
  4784. "homepage": "https://github.com/sebastianbergmann/complexity",
  4785. "support": {
  4786. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  4787. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  4788. },
  4789. "funding": [
  4790. {
  4791. "url": "https://github.com/sebastianbergmann",
  4792. "type": "github"
  4793. }
  4794. ],
  4795. "time": "2020-10-26T15:52:27+00:00"
  4796. },
  4797. {
  4798. "name": "sebastian/diff",
  4799. "version": "4.0.4",
  4800. "source": {
  4801. "type": "git",
  4802. "url": "https://github.com/sebastianbergmann/diff.git",
  4803. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  4804. },
  4805. "dist": {
  4806. "type": "zip",
  4807. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  4808. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  4809. "shasum": ""
  4810. },
  4811. "require": {
  4812. "php": ">=7.3"
  4813. },
  4814. "require-dev": {
  4815. "phpunit/phpunit": "^9.3",
  4816. "symfony/process": "^4.2 || ^5"
  4817. },
  4818. "type": "library",
  4819. "extra": {
  4820. "branch-alias": {
  4821. "dev-master": "4.0-dev"
  4822. }
  4823. },
  4824. "autoload": {
  4825. "classmap": [
  4826. "src/"
  4827. ]
  4828. },
  4829. "notification-url": "https://packagist.org/downloads/",
  4830. "license": [
  4831. "BSD-3-Clause"
  4832. ],
  4833. "authors": [
  4834. {
  4835. "name": "Sebastian Bergmann",
  4836. "email": "sebastian@phpunit.de"
  4837. },
  4838. {
  4839. "name": "Kore Nordmann",
  4840. "email": "mail@kore-nordmann.de"
  4841. }
  4842. ],
  4843. "description": "Diff implementation",
  4844. "homepage": "https://github.com/sebastianbergmann/diff",
  4845. "keywords": [
  4846. "diff",
  4847. "udiff",
  4848. "unidiff",
  4849. "unified diff"
  4850. ],
  4851. "support": {
  4852. "issues": "https://github.com/sebastianbergmann/diff/issues",
  4853. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  4854. },
  4855. "funding": [
  4856. {
  4857. "url": "https://github.com/sebastianbergmann",
  4858. "type": "github"
  4859. }
  4860. ],
  4861. "time": "2020-10-26T13:10:38+00:00"
  4862. },
  4863. {
  4864. "name": "sebastian/environment",
  4865. "version": "5.1.4",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://github.com/sebastianbergmann/environment.git",
  4869. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  4874. "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
  4875. "shasum": ""
  4876. },
  4877. "require": {
  4878. "php": ">=7.3"
  4879. },
  4880. "require-dev": {
  4881. "phpunit/phpunit": "^9.3"
  4882. },
  4883. "suggest": {
  4884. "ext-posix": "*"
  4885. },
  4886. "type": "library",
  4887. "extra": {
  4888. "branch-alias": {
  4889. "dev-master": "5.1-dev"
  4890. }
  4891. },
  4892. "autoload": {
  4893. "classmap": [
  4894. "src/"
  4895. ]
  4896. },
  4897. "notification-url": "https://packagist.org/downloads/",
  4898. "license": [
  4899. "BSD-3-Clause"
  4900. ],
  4901. "authors": [
  4902. {
  4903. "name": "Sebastian Bergmann",
  4904. "email": "sebastian@phpunit.de"
  4905. }
  4906. ],
  4907. "description": "Provides functionality to handle HHVM/PHP environments",
  4908. "homepage": "http://www.github.com/sebastianbergmann/environment",
  4909. "keywords": [
  4910. "Xdebug",
  4911. "environment",
  4912. "hhvm"
  4913. ],
  4914. "support": {
  4915. "issues": "https://github.com/sebastianbergmann/environment/issues",
  4916. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
  4917. },
  4918. "funding": [
  4919. {
  4920. "url": "https://github.com/sebastianbergmann",
  4921. "type": "github"
  4922. }
  4923. ],
  4924. "time": "2022-04-03T09:37:03+00:00"
  4925. },
  4926. {
  4927. "name": "sebastian/exporter",
  4928. "version": "4.0.4",
  4929. "source": {
  4930. "type": "git",
  4931. "url": "https://github.com/sebastianbergmann/exporter.git",
  4932. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
  4933. },
  4934. "dist": {
  4935. "type": "zip",
  4936. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  4937. "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
  4938. "shasum": ""
  4939. },
  4940. "require": {
  4941. "php": ">=7.3",
  4942. "sebastian/recursion-context": "^4.0"
  4943. },
  4944. "require-dev": {
  4945. "ext-mbstring": "*",
  4946. "phpunit/phpunit": "^9.3"
  4947. },
  4948. "type": "library",
  4949. "extra": {
  4950. "branch-alias": {
  4951. "dev-master": "4.0-dev"
  4952. }
  4953. },
  4954. "autoload": {
  4955. "classmap": [
  4956. "src/"
  4957. ]
  4958. },
  4959. "notification-url": "https://packagist.org/downloads/",
  4960. "license": [
  4961. "BSD-3-Clause"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "Sebastian Bergmann",
  4966. "email": "sebastian@phpunit.de"
  4967. },
  4968. {
  4969. "name": "Jeff Welch",
  4970. "email": "whatthejeff@gmail.com"
  4971. },
  4972. {
  4973. "name": "Volker Dusch",
  4974. "email": "github@wallbash.com"
  4975. },
  4976. {
  4977. "name": "Adam Harvey",
  4978. "email": "aharvey@php.net"
  4979. },
  4980. {
  4981. "name": "Bernhard Schussek",
  4982. "email": "bschussek@gmail.com"
  4983. }
  4984. ],
  4985. "description": "Provides the functionality to export PHP variables for visualization",
  4986. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  4987. "keywords": [
  4988. "export",
  4989. "exporter"
  4990. ],
  4991. "support": {
  4992. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  4993. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
  4994. },
  4995. "funding": [
  4996. {
  4997. "url": "https://github.com/sebastianbergmann",
  4998. "type": "github"
  4999. }
  5000. ],
  5001. "time": "2021-11-11T14:18:36+00:00"
  5002. },
  5003. {
  5004. "name": "sebastian/global-state",
  5005. "version": "5.0.5",
  5006. "source": {
  5007. "type": "git",
  5008. "url": "https://github.com/sebastianbergmann/global-state.git",
  5009. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  5010. },
  5011. "dist": {
  5012. "type": "zip",
  5013. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  5014. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  5015. "shasum": ""
  5016. },
  5017. "require": {
  5018. "php": ">=7.3",
  5019. "sebastian/object-reflector": "^2.0",
  5020. "sebastian/recursion-context": "^4.0"
  5021. },
  5022. "require-dev": {
  5023. "ext-dom": "*",
  5024. "phpunit/phpunit": "^9.3"
  5025. },
  5026. "suggest": {
  5027. "ext-uopz": "*"
  5028. },
  5029. "type": "library",
  5030. "extra": {
  5031. "branch-alias": {
  5032. "dev-master": "5.0-dev"
  5033. }
  5034. },
  5035. "autoload": {
  5036. "classmap": [
  5037. "src/"
  5038. ]
  5039. },
  5040. "notification-url": "https://packagist.org/downloads/",
  5041. "license": [
  5042. "BSD-3-Clause"
  5043. ],
  5044. "authors": [
  5045. {
  5046. "name": "Sebastian Bergmann",
  5047. "email": "sebastian@phpunit.de"
  5048. }
  5049. ],
  5050. "description": "Snapshotting of global state",
  5051. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5052. "keywords": [
  5053. "global state"
  5054. ],
  5055. "support": {
  5056. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5057. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  5058. },
  5059. "funding": [
  5060. {
  5061. "url": "https://github.com/sebastianbergmann",
  5062. "type": "github"
  5063. }
  5064. ],
  5065. "time": "2022-02-14T08:28:10+00:00"
  5066. },
  5067. {
  5068. "name": "sebastian/lines-of-code",
  5069. "version": "1.0.3",
  5070. "source": {
  5071. "type": "git",
  5072. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  5073. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  5074. },
  5075. "dist": {
  5076. "type": "zip",
  5077. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5078. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  5079. "shasum": ""
  5080. },
  5081. "require": {
  5082. "nikic/php-parser": "^4.6",
  5083. "php": ">=7.3"
  5084. },
  5085. "require-dev": {
  5086. "phpunit/phpunit": "^9.3"
  5087. },
  5088. "type": "library",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-master": "1.0-dev"
  5092. }
  5093. },
  5094. "autoload": {
  5095. "classmap": [
  5096. "src/"
  5097. ]
  5098. },
  5099. "notification-url": "https://packagist.org/downloads/",
  5100. "license": [
  5101. "BSD-3-Clause"
  5102. ],
  5103. "authors": [
  5104. {
  5105. "name": "Sebastian Bergmann",
  5106. "email": "sebastian@phpunit.de",
  5107. "role": "lead"
  5108. }
  5109. ],
  5110. "description": "Library for counting the lines of code in PHP source code",
  5111. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  5112. "support": {
  5113. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  5114. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  5115. },
  5116. "funding": [
  5117. {
  5118. "url": "https://github.com/sebastianbergmann",
  5119. "type": "github"
  5120. }
  5121. ],
  5122. "time": "2020-11-28T06:42:11+00:00"
  5123. },
  5124. {
  5125. "name": "sebastian/object-enumerator",
  5126. "version": "4.0.4",
  5127. "source": {
  5128. "type": "git",
  5129. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5130. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  5131. },
  5132. "dist": {
  5133. "type": "zip",
  5134. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  5135. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  5136. "shasum": ""
  5137. },
  5138. "require": {
  5139. "php": ">=7.3",
  5140. "sebastian/object-reflector": "^2.0",
  5141. "sebastian/recursion-context": "^4.0"
  5142. },
  5143. "require-dev": {
  5144. "phpunit/phpunit": "^9.3"
  5145. },
  5146. "type": "library",
  5147. "extra": {
  5148. "branch-alias": {
  5149. "dev-master": "4.0-dev"
  5150. }
  5151. },
  5152. "autoload": {
  5153. "classmap": [
  5154. "src/"
  5155. ]
  5156. },
  5157. "notification-url": "https://packagist.org/downloads/",
  5158. "license": [
  5159. "BSD-3-Clause"
  5160. ],
  5161. "authors": [
  5162. {
  5163. "name": "Sebastian Bergmann",
  5164. "email": "sebastian@phpunit.de"
  5165. }
  5166. ],
  5167. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5168. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5169. "support": {
  5170. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5171. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  5172. },
  5173. "funding": [
  5174. {
  5175. "url": "https://github.com/sebastianbergmann",
  5176. "type": "github"
  5177. }
  5178. ],
  5179. "time": "2020-10-26T13:12:34+00:00"
  5180. },
  5181. {
  5182. "name": "sebastian/object-reflector",
  5183. "version": "2.0.4",
  5184. "source": {
  5185. "type": "git",
  5186. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5187. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  5188. },
  5189. "dist": {
  5190. "type": "zip",
  5191. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5192. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  5193. "shasum": ""
  5194. },
  5195. "require": {
  5196. "php": ">=7.3"
  5197. },
  5198. "require-dev": {
  5199. "phpunit/phpunit": "^9.3"
  5200. },
  5201. "type": "library",
  5202. "extra": {
  5203. "branch-alias": {
  5204. "dev-master": "2.0-dev"
  5205. }
  5206. },
  5207. "autoload": {
  5208. "classmap": [
  5209. "src/"
  5210. ]
  5211. },
  5212. "notification-url": "https://packagist.org/downloads/",
  5213. "license": [
  5214. "BSD-3-Clause"
  5215. ],
  5216. "authors": [
  5217. {
  5218. "name": "Sebastian Bergmann",
  5219. "email": "sebastian@phpunit.de"
  5220. }
  5221. ],
  5222. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5223. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5224. "support": {
  5225. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5226. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  5227. },
  5228. "funding": [
  5229. {
  5230. "url": "https://github.com/sebastianbergmann",
  5231. "type": "github"
  5232. }
  5233. ],
  5234. "time": "2020-10-26T13:14:26+00:00"
  5235. },
  5236. {
  5237. "name": "sebastian/recursion-context",
  5238. "version": "4.0.4",
  5239. "source": {
  5240. "type": "git",
  5241. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5242. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  5243. },
  5244. "dist": {
  5245. "type": "zip",
  5246. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  5247. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  5248. "shasum": ""
  5249. },
  5250. "require": {
  5251. "php": ">=7.3"
  5252. },
  5253. "require-dev": {
  5254. "phpunit/phpunit": "^9.3"
  5255. },
  5256. "type": "library",
  5257. "extra": {
  5258. "branch-alias": {
  5259. "dev-master": "4.0-dev"
  5260. }
  5261. },
  5262. "autoload": {
  5263. "classmap": [
  5264. "src/"
  5265. ]
  5266. },
  5267. "notification-url": "https://packagist.org/downloads/",
  5268. "license": [
  5269. "BSD-3-Clause"
  5270. ],
  5271. "authors": [
  5272. {
  5273. "name": "Sebastian Bergmann",
  5274. "email": "sebastian@phpunit.de"
  5275. },
  5276. {
  5277. "name": "Jeff Welch",
  5278. "email": "whatthejeff@gmail.com"
  5279. },
  5280. {
  5281. "name": "Adam Harvey",
  5282. "email": "aharvey@php.net"
  5283. }
  5284. ],
  5285. "description": "Provides functionality to recursively process PHP variables",
  5286. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5287. "support": {
  5288. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5289. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  5290. },
  5291. "funding": [
  5292. {
  5293. "url": "https://github.com/sebastianbergmann",
  5294. "type": "github"
  5295. }
  5296. ],
  5297. "time": "2020-10-26T13:17:30+00:00"
  5298. },
  5299. {
  5300. "name": "sebastian/resource-operations",
  5301. "version": "3.0.3",
  5302. "source": {
  5303. "type": "git",
  5304. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5305. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  5306. },
  5307. "dist": {
  5308. "type": "zip",
  5309. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5310. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  5311. "shasum": ""
  5312. },
  5313. "require": {
  5314. "php": ">=7.3"
  5315. },
  5316. "require-dev": {
  5317. "phpunit/phpunit": "^9.0"
  5318. },
  5319. "type": "library",
  5320. "extra": {
  5321. "branch-alias": {
  5322. "dev-master": "3.0-dev"
  5323. }
  5324. },
  5325. "autoload": {
  5326. "classmap": [
  5327. "src/"
  5328. ]
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "BSD-3-Clause"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Sebastian Bergmann",
  5337. "email": "sebastian@phpunit.de"
  5338. }
  5339. ],
  5340. "description": "Provides a list of PHP built-in functions that operate on resources",
  5341. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5342. "support": {
  5343. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  5344. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  5345. },
  5346. "funding": [
  5347. {
  5348. "url": "https://github.com/sebastianbergmann",
  5349. "type": "github"
  5350. }
  5351. ],
  5352. "time": "2020-09-28T06:45:17+00:00"
  5353. },
  5354. {
  5355. "name": "sebastian/type",
  5356. "version": "3.2.0",
  5357. "source": {
  5358. "type": "git",
  5359. "url": "https://github.com/sebastianbergmann/type.git",
  5360. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e"
  5361. },
  5362. "dist": {
  5363. "type": "zip",
  5364. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  5365. "reference": "fb3fe09c5f0bae6bc27ef3ce933a1e0ed9464b6e",
  5366. "shasum": ""
  5367. },
  5368. "require": {
  5369. "php": ">=7.3"
  5370. },
  5371. "require-dev": {
  5372. "phpunit/phpunit": "^9.5"
  5373. },
  5374. "type": "library",
  5375. "extra": {
  5376. "branch-alias": {
  5377. "dev-master": "3.2-dev"
  5378. }
  5379. },
  5380. "autoload": {
  5381. "classmap": [
  5382. "src/"
  5383. ]
  5384. },
  5385. "notification-url": "https://packagist.org/downloads/",
  5386. "license": [
  5387. "BSD-3-Clause"
  5388. ],
  5389. "authors": [
  5390. {
  5391. "name": "Sebastian Bergmann",
  5392. "email": "sebastian@phpunit.de",
  5393. "role": "lead"
  5394. }
  5395. ],
  5396. "description": "Collection of value objects that represent the types of the PHP type system",
  5397. "homepage": "https://github.com/sebastianbergmann/type",
  5398. "support": {
  5399. "issues": "https://github.com/sebastianbergmann/type/issues",
  5400. "source": "https://github.com/sebastianbergmann/type/tree/3.2.0"
  5401. },
  5402. "funding": [
  5403. {
  5404. "url": "https://github.com/sebastianbergmann",
  5405. "type": "github"
  5406. }
  5407. ],
  5408. "time": "2022-09-12T14:47:03+00:00"
  5409. },
  5410. {
  5411. "name": "sebastian/version",
  5412. "version": "3.0.2",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/sebastianbergmann/version.git",
  5416. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  5421. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  5422. "shasum": ""
  5423. },
  5424. "require": {
  5425. "php": ">=7.3"
  5426. },
  5427. "type": "library",
  5428. "extra": {
  5429. "branch-alias": {
  5430. "dev-master": "3.0-dev"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "classmap": [
  5435. "src/"
  5436. ]
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "BSD-3-Clause"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Sebastian Bergmann",
  5445. "email": "sebastian@phpunit.de",
  5446. "role": "lead"
  5447. }
  5448. ],
  5449. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  5450. "homepage": "https://github.com/sebastianbergmann/version",
  5451. "support": {
  5452. "issues": "https://github.com/sebastianbergmann/version/issues",
  5453. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  5454. },
  5455. "funding": [
  5456. {
  5457. "url": "https://github.com/sebastianbergmann",
  5458. "type": "github"
  5459. }
  5460. ],
  5461. "time": "2020-09-28T06:39:44+00:00"
  5462. },
  5463. {
  5464. "name": "sebastianfeldmann/camino",
  5465. "version": "0.9.5",
  5466. "source": {
  5467. "type": "git",
  5468. "url": "https://github.com/sebastianfeldmann/camino.git",
  5469. "reference": "bf2e4c8b2a029e9eade43666132b61331e3e8184"
  5470. },
  5471. "dist": {
  5472. "type": "zip",
  5473. "url": "https://api.github.com/repos/sebastianfeldmann/camino/zipball/bf2e4c8b2a029e9eade43666132b61331e3e8184",
  5474. "reference": "bf2e4c8b2a029e9eade43666132b61331e3e8184",
  5475. "shasum": ""
  5476. },
  5477. "require": {
  5478. "php": ">=7.1"
  5479. },
  5480. "type": "library",
  5481. "extra": {
  5482. "branch-alias": {
  5483. "dev-master": "1.0.x-dev"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "psr-4": {
  5488. "SebastianFeldmann\\Camino\\": "src/"
  5489. }
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Sebastian Feldmann",
  5498. "email": "sf@sebastian-feldmann.info"
  5499. }
  5500. ],
  5501. "description": "Path management the OO way",
  5502. "homepage": "https://github.com/sebastianfeldmann/camino",
  5503. "keywords": [
  5504. "file system",
  5505. "path"
  5506. ],
  5507. "support": {
  5508. "issues": "https://github.com/sebastianfeldmann/camino/issues",
  5509. "source": "https://github.com/sebastianfeldmann/camino/tree/0.9.5"
  5510. },
  5511. "funding": [
  5512. {
  5513. "url": "https://github.com/sebastianfeldmann",
  5514. "type": "github"
  5515. }
  5516. ],
  5517. "time": "2022-01-03T13:15:10+00:00"
  5518. },
  5519. {
  5520. "name": "sebastianfeldmann/cli",
  5521. "version": "3.4.1",
  5522. "source": {
  5523. "type": "git",
  5524. "url": "https://github.com/sebastianfeldmann/cli.git",
  5525. "reference": "8a932e99e9455981fb32fa6c085492462fe8f8cf"
  5526. },
  5527. "dist": {
  5528. "type": "zip",
  5529. "url": "https://api.github.com/repos/sebastianfeldmann/cli/zipball/8a932e99e9455981fb32fa6c085492462fe8f8cf",
  5530. "reference": "8a932e99e9455981fb32fa6c085492462fe8f8cf",
  5531. "shasum": ""
  5532. },
  5533. "require": {
  5534. "php": ">=7.2"
  5535. },
  5536. "require-dev": {
  5537. "symfony/process": "^4.3 | ^5.0"
  5538. },
  5539. "type": "library",
  5540. "extra": {
  5541. "branch-alias": {
  5542. "dev-master": "3.4.x-dev"
  5543. }
  5544. },
  5545. "autoload": {
  5546. "psr-4": {
  5547. "SebastianFeldmann\\Cli\\": "src/"
  5548. }
  5549. },
  5550. "notification-url": "https://packagist.org/downloads/",
  5551. "license": [
  5552. "MIT"
  5553. ],
  5554. "authors": [
  5555. {
  5556. "name": "Sebastian Feldmann",
  5557. "email": "sf@sebastian-feldmann.info"
  5558. }
  5559. ],
  5560. "description": "PHP cli helper classes",
  5561. "homepage": "https://github.com/sebastianfeldmann/cli",
  5562. "keywords": [
  5563. "cli"
  5564. ],
  5565. "support": {
  5566. "issues": "https://github.com/sebastianfeldmann/cli/issues",
  5567. "source": "https://github.com/sebastianfeldmann/cli/tree/3.4.1"
  5568. },
  5569. "funding": [
  5570. {
  5571. "url": "https://github.com/sebastianfeldmann",
  5572. "type": "github"
  5573. }
  5574. ],
  5575. "time": "2021-12-20T14:59:49+00:00"
  5576. },
  5577. {
  5578. "name": "sebastianfeldmann/git",
  5579. "version": "3.8.4",
  5580. "source": {
  5581. "type": "git",
  5582. "url": "https://github.com/sebastianfeldmann/git.git",
  5583. "reference": "b324b6ba21871709812e34ad278a82c2e1c2965b"
  5584. },
  5585. "dist": {
  5586. "type": "zip",
  5587. "url": "https://api.github.com/repos/sebastianfeldmann/git/zipball/b324b6ba21871709812e34ad278a82c2e1c2965b",
  5588. "reference": "b324b6ba21871709812e34ad278a82c2e1c2965b",
  5589. "shasum": ""
  5590. },
  5591. "require": {
  5592. "ext-json": "*",
  5593. "ext-xml": "*",
  5594. "php": ">=7.2",
  5595. "sebastianfeldmann/cli": "^3.0"
  5596. },
  5597. "require-dev": {
  5598. "mikey179/vfsstream": "^1.6"
  5599. },
  5600. "type": "library",
  5601. "extra": {
  5602. "branch-alias": {
  5603. "dev-master": "4.0.x-dev"
  5604. }
  5605. },
  5606. "autoload": {
  5607. "psr-4": {
  5608. "SebastianFeldmann\\Git\\": "src/"
  5609. }
  5610. },
  5611. "notification-url": "https://packagist.org/downloads/",
  5612. "license": [
  5613. "MIT"
  5614. ],
  5615. "authors": [
  5616. {
  5617. "name": "Sebastian Feldmann",
  5618. "email": "sf@sebastian-feldmann.info"
  5619. }
  5620. ],
  5621. "description": "PHP git wrapper",
  5622. "homepage": "https://github.com/sebastianfeldmann/git",
  5623. "keywords": [
  5624. "git"
  5625. ],
  5626. "support": {
  5627. "issues": "https://github.com/sebastianfeldmann/git/issues",
  5628. "source": "https://github.com/sebastianfeldmann/git/tree/3.8.4"
  5629. },
  5630. "funding": [
  5631. {
  5632. "url": "https://github.com/sebastianfeldmann",
  5633. "type": "github"
  5634. }
  5635. ],
  5636. "time": "2022-08-26T07:03:13+00:00"
  5637. },
  5638. {
  5639. "name": "seld/jsonlint",
  5640. "version": "1.9.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/Seldaek/jsonlint.git",
  5644. "reference": "4211420d25eba80712bff236a98960ef68b866b7"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/4211420d25eba80712bff236a98960ef68b866b7",
  5649. "reference": "4211420d25eba80712bff236a98960ef68b866b7",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": "^5.3 || ^7.0 || ^8.0"
  5654. },
  5655. "require-dev": {
  5656. "phpstan/phpstan": "^1.5",
  5657. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13"
  5658. },
  5659. "bin": [
  5660. "bin/jsonlint"
  5661. ],
  5662. "type": "library",
  5663. "autoload": {
  5664. "psr-4": {
  5665. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  5666. }
  5667. },
  5668. "notification-url": "https://packagist.org/downloads/",
  5669. "license": [
  5670. "MIT"
  5671. ],
  5672. "authors": [
  5673. {
  5674. "name": "Jordi Boggiano",
  5675. "email": "j.boggiano@seld.be",
  5676. "homepage": "http://seld.be"
  5677. }
  5678. ],
  5679. "description": "JSON Linter",
  5680. "keywords": [
  5681. "json",
  5682. "linter",
  5683. "parser",
  5684. "validator"
  5685. ],
  5686. "support": {
  5687. "issues": "https://github.com/Seldaek/jsonlint/issues",
  5688. "source": "https://github.com/Seldaek/jsonlint/tree/1.9.0"
  5689. },
  5690. "funding": [
  5691. {
  5692. "url": "https://github.com/Seldaek",
  5693. "type": "github"
  5694. },
  5695. {
  5696. "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint",
  5697. "type": "tidelift"
  5698. }
  5699. ],
  5700. "time": "2022-04-01T13:37:23+00:00"
  5701. },
  5702. {
  5703. "name": "seld/phar-utils",
  5704. "version": "1.2.1",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/Seldaek/phar-utils.git",
  5708. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  5713. "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "php": ">=5.3"
  5718. },
  5719. "type": "library",
  5720. "extra": {
  5721. "branch-alias": {
  5722. "dev-master": "1.x-dev"
  5723. }
  5724. },
  5725. "autoload": {
  5726. "psr-4": {
  5727. "Seld\\PharUtils\\": "src/"
  5728. }
  5729. },
  5730. "notification-url": "https://packagist.org/downloads/",
  5731. "license": [
  5732. "MIT"
  5733. ],
  5734. "authors": [
  5735. {
  5736. "name": "Jordi Boggiano",
  5737. "email": "j.boggiano@seld.be"
  5738. }
  5739. ],
  5740. "description": "PHAR file format utilities, for when PHP phars you up",
  5741. "keywords": [
  5742. "phar"
  5743. ],
  5744. "support": {
  5745. "issues": "https://github.com/Seldaek/phar-utils/issues",
  5746. "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1"
  5747. },
  5748. "time": "2022-08-31T10:31:18+00:00"
  5749. },
  5750. {
  5751. "name": "seld/signal-handler",
  5752. "version": "2.0.1",
  5753. "source": {
  5754. "type": "git",
  5755. "url": "https://github.com/Seldaek/signal-handler.git",
  5756. "reference": "f69d119511dc0360440cdbdaa71829c149b7be75"
  5757. },
  5758. "dist": {
  5759. "type": "zip",
  5760. "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/f69d119511dc0360440cdbdaa71829c149b7be75",
  5761. "reference": "f69d119511dc0360440cdbdaa71829c149b7be75",
  5762. "shasum": ""
  5763. },
  5764. "require": {
  5765. "php": ">=7.2.0"
  5766. },
  5767. "require-dev": {
  5768. "phpstan/phpstan": "^1",
  5769. "phpstan/phpstan-deprecation-rules": "^1.0",
  5770. "phpstan/phpstan-phpunit": "^1",
  5771. "phpstan/phpstan-strict-rules": "^1.3",
  5772. "phpunit/phpunit": "^7.5.20 || ^8.5.23",
  5773. "psr/log": "^1 || ^2 || ^3"
  5774. },
  5775. "type": "library",
  5776. "extra": {
  5777. "branch-alias": {
  5778. "dev-main": "2.x-dev"
  5779. }
  5780. },
  5781. "autoload": {
  5782. "psr-4": {
  5783. "Seld\\Signal\\": "src/"
  5784. }
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "Jordi Boggiano",
  5793. "email": "j.boggiano@seld.be",
  5794. "homepage": "http://seld.be"
  5795. }
  5796. ],
  5797. "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development",
  5798. "keywords": [
  5799. "posix",
  5800. "sigint",
  5801. "signal",
  5802. "sigterm",
  5803. "unix"
  5804. ],
  5805. "support": {
  5806. "issues": "https://github.com/Seldaek/signal-handler/issues",
  5807. "source": "https://github.com/Seldaek/signal-handler/tree/2.0.1"
  5808. },
  5809. "time": "2022-07-20T18:31:45+00:00"
  5810. },
  5811. {
  5812. "name": "slevomat/coding-standard",
  5813. "version": "8.4.0",
  5814. "source": {
  5815. "type": "git",
  5816. "url": "https://github.com/slevomat/coding-standard.git",
  5817. "reference": "02f27326be19633a1b6ba76745390bbf9a4be0b6"
  5818. },
  5819. "dist": {
  5820. "type": "zip",
  5821. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/02f27326be19633a1b6ba76745390bbf9a4be0b6",
  5822. "reference": "02f27326be19633a1b6ba76745390bbf9a4be0b6",
  5823. "shasum": ""
  5824. },
  5825. "require": {
  5826. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7",
  5827. "php": "^7.2 || ^8.0",
  5828. "phpstan/phpdoc-parser": ">=1.7.0 <1.8.0",
  5829. "squizlabs/php_codesniffer": "^3.7.1"
  5830. },
  5831. "require-dev": {
  5832. "phing/phing": "2.17.4",
  5833. "php-parallel-lint/php-parallel-lint": "1.3.2",
  5834. "phpstan/phpstan": "1.4.10|1.8.2",
  5835. "phpstan/phpstan-deprecation-rules": "1.0.0",
  5836. "phpstan/phpstan-phpunit": "1.0.0|1.1.1",
  5837. "phpstan/phpstan-strict-rules": "1.3.0",
  5838. "phpunit/phpunit": "7.5.20|8.5.21|9.5.21"
  5839. },
  5840. "type": "phpcodesniffer-standard",
  5841. "extra": {
  5842. "branch-alias": {
  5843. "dev-master": "8.x-dev"
  5844. }
  5845. },
  5846. "autoload": {
  5847. "psr-4": {
  5848. "SlevomatCodingStandard\\": "SlevomatCodingStandard"
  5849. }
  5850. },
  5851. "notification-url": "https://packagist.org/downloads/",
  5852. "license": [
  5853. "MIT"
  5854. ],
  5855. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  5856. "support": {
  5857. "issues": "https://github.com/slevomat/coding-standard/issues",
  5858. "source": "https://github.com/slevomat/coding-standard/tree/8.4.0"
  5859. },
  5860. "funding": [
  5861. {
  5862. "url": "https://github.com/kukulich",
  5863. "type": "github"
  5864. },
  5865. {
  5866. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  5867. "type": "tidelift"
  5868. }
  5869. ],
  5870. "time": "2022-08-09T19:03:45+00:00"
  5871. },
  5872. {
  5873. "name": "squizlabs/php_codesniffer",
  5874. "version": "3.7.1",
  5875. "source": {
  5876. "type": "git",
  5877. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  5878. "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619"
  5879. },
  5880. "dist": {
  5881. "type": "zip",
  5882. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/1359e176e9307e906dc3d890bcc9603ff6d90619",
  5883. "reference": "1359e176e9307e906dc3d890bcc9603ff6d90619",
  5884. "shasum": ""
  5885. },
  5886. "require": {
  5887. "ext-simplexml": "*",
  5888. "ext-tokenizer": "*",
  5889. "ext-xmlwriter": "*",
  5890. "php": ">=5.4.0"
  5891. },
  5892. "require-dev": {
  5893. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  5894. },
  5895. "bin": [
  5896. "bin/phpcs",
  5897. "bin/phpcbf"
  5898. ],
  5899. "type": "library",
  5900. "extra": {
  5901. "branch-alias": {
  5902. "dev-master": "3.x-dev"
  5903. }
  5904. },
  5905. "notification-url": "https://packagist.org/downloads/",
  5906. "license": [
  5907. "BSD-3-Clause"
  5908. ],
  5909. "authors": [
  5910. {
  5911. "name": "Greg Sherwood",
  5912. "role": "lead"
  5913. }
  5914. ],
  5915. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  5916. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  5917. "keywords": [
  5918. "phpcs",
  5919. "standards"
  5920. ],
  5921. "support": {
  5922. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  5923. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  5924. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  5925. },
  5926. "time": "2022-06-18T07:21:10+00:00"
  5927. },
  5928. {
  5929. "name": "symfony/console",
  5930. "version": "v6.0.12",
  5931. "source": {
  5932. "type": "git",
  5933. "url": "https://github.com/symfony/console.git",
  5934. "reference": "c5c2e313aa682530167c25077d6bdff36346251e"
  5935. },
  5936. "dist": {
  5937. "type": "zip",
  5938. "url": "https://api.github.com/repos/symfony/console/zipball/c5c2e313aa682530167c25077d6bdff36346251e",
  5939. "reference": "c5c2e313aa682530167c25077d6bdff36346251e",
  5940. "shasum": ""
  5941. },
  5942. "require": {
  5943. "php": ">=8.0.2",
  5944. "symfony/polyfill-mbstring": "~1.0",
  5945. "symfony/service-contracts": "^1.1|^2|^3",
  5946. "symfony/string": "^5.4|^6.0"
  5947. },
  5948. "conflict": {
  5949. "symfony/dependency-injection": "<5.4",
  5950. "symfony/dotenv": "<5.4",
  5951. "symfony/event-dispatcher": "<5.4",
  5952. "symfony/lock": "<5.4",
  5953. "symfony/process": "<5.4"
  5954. },
  5955. "provide": {
  5956. "psr/log-implementation": "1.0|2.0|3.0"
  5957. },
  5958. "require-dev": {
  5959. "psr/log": "^1|^2|^3",
  5960. "symfony/config": "^5.4|^6.0",
  5961. "symfony/dependency-injection": "^5.4|^6.0",
  5962. "symfony/event-dispatcher": "^5.4|^6.0",
  5963. "symfony/lock": "^5.4|^6.0",
  5964. "symfony/process": "^5.4|^6.0",
  5965. "symfony/var-dumper": "^5.4|^6.0"
  5966. },
  5967. "suggest": {
  5968. "psr/log": "For using the console logger",
  5969. "symfony/event-dispatcher": "",
  5970. "symfony/lock": "",
  5971. "symfony/process": ""
  5972. },
  5973. "type": "library",
  5974. "autoload": {
  5975. "psr-4": {
  5976. "Symfony\\Component\\Console\\": ""
  5977. },
  5978. "exclude-from-classmap": [
  5979. "/Tests/"
  5980. ]
  5981. },
  5982. "notification-url": "https://packagist.org/downloads/",
  5983. "license": [
  5984. "MIT"
  5985. ],
  5986. "authors": [
  5987. {
  5988. "name": "Fabien Potencier",
  5989. "email": "fabien@symfony.com"
  5990. },
  5991. {
  5992. "name": "Symfony Community",
  5993. "homepage": "https://symfony.com/contributors"
  5994. }
  5995. ],
  5996. "description": "Eases the creation of beautiful and testable command line interfaces",
  5997. "homepage": "https://symfony.com",
  5998. "keywords": [
  5999. "cli",
  6000. "command line",
  6001. "console",
  6002. "terminal"
  6003. ],
  6004. "support": {
  6005. "source": "https://github.com/symfony/console/tree/v6.0.12"
  6006. },
  6007. "funding": [
  6008. {
  6009. "url": "https://symfony.com/sponsor",
  6010. "type": "custom"
  6011. },
  6012. {
  6013. "url": "https://github.com/fabpot",
  6014. "type": "github"
  6015. },
  6016. {
  6017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6018. "type": "tidelift"
  6019. }
  6020. ],
  6021. "time": "2022-08-23T20:52:30+00:00"
  6022. },
  6023. {
  6024. "name": "symfony/deprecation-contracts",
  6025. "version": "v3.0.2",
  6026. "source": {
  6027. "type": "git",
  6028. "url": "https://github.com/symfony/deprecation-contracts.git",
  6029. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  6030. },
  6031. "dist": {
  6032. "type": "zip",
  6033. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  6034. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  6035. "shasum": ""
  6036. },
  6037. "require": {
  6038. "php": ">=8.0.2"
  6039. },
  6040. "type": "library",
  6041. "extra": {
  6042. "branch-alias": {
  6043. "dev-main": "3.0-dev"
  6044. },
  6045. "thanks": {
  6046. "name": "symfony/contracts",
  6047. "url": "https://github.com/symfony/contracts"
  6048. }
  6049. },
  6050. "autoload": {
  6051. "files": [
  6052. "function.php"
  6053. ]
  6054. },
  6055. "notification-url": "https://packagist.org/downloads/",
  6056. "license": [
  6057. "MIT"
  6058. ],
  6059. "authors": [
  6060. {
  6061. "name": "Nicolas Grekas",
  6062. "email": "p@tchwork.com"
  6063. },
  6064. {
  6065. "name": "Symfony Community",
  6066. "homepage": "https://symfony.com/contributors"
  6067. }
  6068. ],
  6069. "description": "A generic function and convention to trigger deprecation notices",
  6070. "homepage": "https://symfony.com",
  6071. "support": {
  6072. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  6073. },
  6074. "funding": [
  6075. {
  6076. "url": "https://symfony.com/sponsor",
  6077. "type": "custom"
  6078. },
  6079. {
  6080. "url": "https://github.com/fabpot",
  6081. "type": "github"
  6082. },
  6083. {
  6084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6085. "type": "tidelift"
  6086. }
  6087. ],
  6088. "time": "2022-01-02T09:55:41+00:00"
  6089. },
  6090. {
  6091. "name": "symfony/filesystem",
  6092. "version": "v6.0.12",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://github.com/symfony/filesystem.git",
  6096. "reference": "a36b782dc19dce3ab7e47d4b92b13cefb3511da3"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://api.github.com/repos/symfony/filesystem/zipball/a36b782dc19dce3ab7e47d4b92b13cefb3511da3",
  6101. "reference": "a36b782dc19dce3ab7e47d4b92b13cefb3511da3",
  6102. "shasum": ""
  6103. },
  6104. "require": {
  6105. "php": ">=8.0.2",
  6106. "symfony/polyfill-ctype": "~1.8",
  6107. "symfony/polyfill-mbstring": "~1.8"
  6108. },
  6109. "type": "library",
  6110. "autoload": {
  6111. "psr-4": {
  6112. "Symfony\\Component\\Filesystem\\": ""
  6113. },
  6114. "exclude-from-classmap": [
  6115. "/Tests/"
  6116. ]
  6117. },
  6118. "notification-url": "https://packagist.org/downloads/",
  6119. "license": [
  6120. "MIT"
  6121. ],
  6122. "authors": [
  6123. {
  6124. "name": "Fabien Potencier",
  6125. "email": "fabien@symfony.com"
  6126. },
  6127. {
  6128. "name": "Symfony Community",
  6129. "homepage": "https://symfony.com/contributors"
  6130. }
  6131. ],
  6132. "description": "Provides basic utilities for the filesystem",
  6133. "homepage": "https://symfony.com",
  6134. "support": {
  6135. "source": "https://github.com/symfony/filesystem/tree/v6.0.12"
  6136. },
  6137. "funding": [
  6138. {
  6139. "url": "https://symfony.com/sponsor",
  6140. "type": "custom"
  6141. },
  6142. {
  6143. "url": "https://github.com/fabpot",
  6144. "type": "github"
  6145. },
  6146. {
  6147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6148. "type": "tidelift"
  6149. }
  6150. ],
  6151. "time": "2022-08-02T16:01:06+00:00"
  6152. },
  6153. {
  6154. "name": "symfony/finder",
  6155. "version": "v6.0.11",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/symfony/finder.git",
  6159. "reference": "09cb683ba5720385ea6966e5e06be2a34f2568b1"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/symfony/finder/zipball/09cb683ba5720385ea6966e5e06be2a34f2568b1",
  6164. "reference": "09cb683ba5720385ea6966e5e06be2a34f2568b1",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "php": ">=8.0.2"
  6169. },
  6170. "type": "library",
  6171. "autoload": {
  6172. "psr-4": {
  6173. "Symfony\\Component\\Finder\\": ""
  6174. },
  6175. "exclude-from-classmap": [
  6176. "/Tests/"
  6177. ]
  6178. },
  6179. "notification-url": "https://packagist.org/downloads/",
  6180. "license": [
  6181. "MIT"
  6182. ],
  6183. "authors": [
  6184. {
  6185. "name": "Fabien Potencier",
  6186. "email": "fabien@symfony.com"
  6187. },
  6188. {
  6189. "name": "Symfony Community",
  6190. "homepage": "https://symfony.com/contributors"
  6191. }
  6192. ],
  6193. "description": "Finds files and directories via an intuitive fluent interface",
  6194. "homepage": "https://symfony.com",
  6195. "support": {
  6196. "source": "https://github.com/symfony/finder/tree/v6.0.11"
  6197. },
  6198. "funding": [
  6199. {
  6200. "url": "https://symfony.com/sponsor",
  6201. "type": "custom"
  6202. },
  6203. {
  6204. "url": "https://github.com/fabpot",
  6205. "type": "github"
  6206. },
  6207. {
  6208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6209. "type": "tidelift"
  6210. }
  6211. ],
  6212. "time": "2022-07-29T07:39:48+00:00"
  6213. },
  6214. {
  6215. "name": "symfony/options-resolver",
  6216. "version": "v6.0.3",
  6217. "source": {
  6218. "type": "git",
  6219. "url": "https://github.com/symfony/options-resolver.git",
  6220. "reference": "51f7006670febe4cbcbae177cbffe93ff833250d"
  6221. },
  6222. "dist": {
  6223. "type": "zip",
  6224. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/51f7006670febe4cbcbae177cbffe93ff833250d",
  6225. "reference": "51f7006670febe4cbcbae177cbffe93ff833250d",
  6226. "shasum": ""
  6227. },
  6228. "require": {
  6229. "php": ">=8.0.2",
  6230. "symfony/deprecation-contracts": "^2.1|^3"
  6231. },
  6232. "type": "library",
  6233. "autoload": {
  6234. "psr-4": {
  6235. "Symfony\\Component\\OptionsResolver\\": ""
  6236. },
  6237. "exclude-from-classmap": [
  6238. "/Tests/"
  6239. ]
  6240. },
  6241. "notification-url": "https://packagist.org/downloads/",
  6242. "license": [
  6243. "MIT"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "Fabien Potencier",
  6248. "email": "fabien@symfony.com"
  6249. },
  6250. {
  6251. "name": "Symfony Community",
  6252. "homepage": "https://symfony.com/contributors"
  6253. }
  6254. ],
  6255. "description": "Provides an improved replacement for the array_replace PHP function",
  6256. "homepage": "https://symfony.com",
  6257. "keywords": [
  6258. "config",
  6259. "configuration",
  6260. "options"
  6261. ],
  6262. "support": {
  6263. "source": "https://github.com/symfony/options-resolver/tree/v6.0.3"
  6264. },
  6265. "funding": [
  6266. {
  6267. "url": "https://symfony.com/sponsor",
  6268. "type": "custom"
  6269. },
  6270. {
  6271. "url": "https://github.com/fabpot",
  6272. "type": "github"
  6273. },
  6274. {
  6275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6276. "type": "tidelift"
  6277. }
  6278. ],
  6279. "time": "2022-01-02T09:55:41+00:00"
  6280. },
  6281. {
  6282. "name": "symfony/polyfill-ctype",
  6283. "version": "v1.26.0",
  6284. "source": {
  6285. "type": "git",
  6286. "url": "https://github.com/symfony/polyfill-ctype.git",
  6287. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
  6288. },
  6289. "dist": {
  6290. "type": "zip",
  6291. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  6292. "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
  6293. "shasum": ""
  6294. },
  6295. "require": {
  6296. "php": ">=7.1"
  6297. },
  6298. "provide": {
  6299. "ext-ctype": "*"
  6300. },
  6301. "suggest": {
  6302. "ext-ctype": "For best performance"
  6303. },
  6304. "type": "library",
  6305. "extra": {
  6306. "branch-alias": {
  6307. "dev-main": "1.26-dev"
  6308. },
  6309. "thanks": {
  6310. "name": "symfony/polyfill",
  6311. "url": "https://github.com/symfony/polyfill"
  6312. }
  6313. },
  6314. "autoload": {
  6315. "files": [
  6316. "bootstrap.php"
  6317. ],
  6318. "psr-4": {
  6319. "Symfony\\Polyfill\\Ctype\\": ""
  6320. }
  6321. },
  6322. "notification-url": "https://packagist.org/downloads/",
  6323. "license": [
  6324. "MIT"
  6325. ],
  6326. "authors": [
  6327. {
  6328. "name": "Gert de Pagter",
  6329. "email": "BackEndTea@gmail.com"
  6330. },
  6331. {
  6332. "name": "Symfony Community",
  6333. "homepage": "https://symfony.com/contributors"
  6334. }
  6335. ],
  6336. "description": "Symfony polyfill for ctype functions",
  6337. "homepage": "https://symfony.com",
  6338. "keywords": [
  6339. "compatibility",
  6340. "ctype",
  6341. "polyfill",
  6342. "portable"
  6343. ],
  6344. "support": {
  6345. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
  6346. },
  6347. "funding": [
  6348. {
  6349. "url": "https://symfony.com/sponsor",
  6350. "type": "custom"
  6351. },
  6352. {
  6353. "url": "https://github.com/fabpot",
  6354. "type": "github"
  6355. },
  6356. {
  6357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6358. "type": "tidelift"
  6359. }
  6360. ],
  6361. "time": "2022-05-24T11:49:31+00:00"
  6362. },
  6363. {
  6364. "name": "symfony/polyfill-intl-grapheme",
  6365. "version": "v1.26.0",
  6366. "source": {
  6367. "type": "git",
  6368. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6369. "reference": "433d05519ce6990bf3530fba6957499d327395c2"
  6370. },
  6371. "dist": {
  6372. "type": "zip",
  6373. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
  6374. "reference": "433d05519ce6990bf3530fba6957499d327395c2",
  6375. "shasum": ""
  6376. },
  6377. "require": {
  6378. "php": ">=7.1"
  6379. },
  6380. "suggest": {
  6381. "ext-intl": "For best performance"
  6382. },
  6383. "type": "library",
  6384. "extra": {
  6385. "branch-alias": {
  6386. "dev-main": "1.26-dev"
  6387. },
  6388. "thanks": {
  6389. "name": "symfony/polyfill",
  6390. "url": "https://github.com/symfony/polyfill"
  6391. }
  6392. },
  6393. "autoload": {
  6394. "files": [
  6395. "bootstrap.php"
  6396. ],
  6397. "psr-4": {
  6398. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6399. }
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Nicolas Grekas",
  6408. "email": "p@tchwork.com"
  6409. },
  6410. {
  6411. "name": "Symfony Community",
  6412. "homepage": "https://symfony.com/contributors"
  6413. }
  6414. ],
  6415. "description": "Symfony polyfill for intl's grapheme_* functions",
  6416. "homepage": "https://symfony.com",
  6417. "keywords": [
  6418. "compatibility",
  6419. "grapheme",
  6420. "intl",
  6421. "polyfill",
  6422. "portable",
  6423. "shim"
  6424. ],
  6425. "support": {
  6426. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
  6427. },
  6428. "funding": [
  6429. {
  6430. "url": "https://symfony.com/sponsor",
  6431. "type": "custom"
  6432. },
  6433. {
  6434. "url": "https://github.com/fabpot",
  6435. "type": "github"
  6436. },
  6437. {
  6438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6439. "type": "tidelift"
  6440. }
  6441. ],
  6442. "time": "2022-05-24T11:49:31+00:00"
  6443. },
  6444. {
  6445. "name": "symfony/polyfill-intl-normalizer",
  6446. "version": "v1.26.0",
  6447. "source": {
  6448. "type": "git",
  6449. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6450. "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
  6451. },
  6452. "dist": {
  6453. "type": "zip",
  6454. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
  6455. "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
  6456. "shasum": ""
  6457. },
  6458. "require": {
  6459. "php": ">=7.1"
  6460. },
  6461. "suggest": {
  6462. "ext-intl": "For best performance"
  6463. },
  6464. "type": "library",
  6465. "extra": {
  6466. "branch-alias": {
  6467. "dev-main": "1.26-dev"
  6468. },
  6469. "thanks": {
  6470. "name": "symfony/polyfill",
  6471. "url": "https://github.com/symfony/polyfill"
  6472. }
  6473. },
  6474. "autoload": {
  6475. "files": [
  6476. "bootstrap.php"
  6477. ],
  6478. "psr-4": {
  6479. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6480. },
  6481. "classmap": [
  6482. "Resources/stubs"
  6483. ]
  6484. },
  6485. "notification-url": "https://packagist.org/downloads/",
  6486. "license": [
  6487. "MIT"
  6488. ],
  6489. "authors": [
  6490. {
  6491. "name": "Nicolas Grekas",
  6492. "email": "p@tchwork.com"
  6493. },
  6494. {
  6495. "name": "Symfony Community",
  6496. "homepage": "https://symfony.com/contributors"
  6497. }
  6498. ],
  6499. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6500. "homepage": "https://symfony.com",
  6501. "keywords": [
  6502. "compatibility",
  6503. "intl",
  6504. "normalizer",
  6505. "polyfill",
  6506. "portable",
  6507. "shim"
  6508. ],
  6509. "support": {
  6510. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
  6511. },
  6512. "funding": [
  6513. {
  6514. "url": "https://symfony.com/sponsor",
  6515. "type": "custom"
  6516. },
  6517. {
  6518. "url": "https://github.com/fabpot",
  6519. "type": "github"
  6520. },
  6521. {
  6522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6523. "type": "tidelift"
  6524. }
  6525. ],
  6526. "time": "2022-05-24T11:49:31+00:00"
  6527. },
  6528. {
  6529. "name": "symfony/polyfill-mbstring",
  6530. "version": "v1.26.0",
  6531. "source": {
  6532. "type": "git",
  6533. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6534. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
  6535. },
  6536. "dist": {
  6537. "type": "zip",
  6538. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  6539. "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
  6540. "shasum": ""
  6541. },
  6542. "require": {
  6543. "php": ">=7.1"
  6544. },
  6545. "provide": {
  6546. "ext-mbstring": "*"
  6547. },
  6548. "suggest": {
  6549. "ext-mbstring": "For best performance"
  6550. },
  6551. "type": "library",
  6552. "extra": {
  6553. "branch-alias": {
  6554. "dev-main": "1.26-dev"
  6555. },
  6556. "thanks": {
  6557. "name": "symfony/polyfill",
  6558. "url": "https://github.com/symfony/polyfill"
  6559. }
  6560. },
  6561. "autoload": {
  6562. "files": [
  6563. "bootstrap.php"
  6564. ],
  6565. "psr-4": {
  6566. "Symfony\\Polyfill\\Mbstring\\": ""
  6567. }
  6568. },
  6569. "notification-url": "https://packagist.org/downloads/",
  6570. "license": [
  6571. "MIT"
  6572. ],
  6573. "authors": [
  6574. {
  6575. "name": "Nicolas Grekas",
  6576. "email": "p@tchwork.com"
  6577. },
  6578. {
  6579. "name": "Symfony Community",
  6580. "homepage": "https://symfony.com/contributors"
  6581. }
  6582. ],
  6583. "description": "Symfony polyfill for the Mbstring extension",
  6584. "homepage": "https://symfony.com",
  6585. "keywords": [
  6586. "compatibility",
  6587. "mbstring",
  6588. "polyfill",
  6589. "portable",
  6590. "shim"
  6591. ],
  6592. "support": {
  6593. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
  6594. },
  6595. "funding": [
  6596. {
  6597. "url": "https://symfony.com/sponsor",
  6598. "type": "custom"
  6599. },
  6600. {
  6601. "url": "https://github.com/fabpot",
  6602. "type": "github"
  6603. },
  6604. {
  6605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6606. "type": "tidelift"
  6607. }
  6608. ],
  6609. "time": "2022-05-24T11:49:31+00:00"
  6610. },
  6611. {
  6612. "name": "symfony/polyfill-php73",
  6613. "version": "v1.26.0",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://github.com/symfony/polyfill-php73.git",
  6617. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6622. "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
  6623. "shasum": ""
  6624. },
  6625. "require": {
  6626. "php": ">=7.1"
  6627. },
  6628. "type": "library",
  6629. "extra": {
  6630. "branch-alias": {
  6631. "dev-main": "1.26-dev"
  6632. },
  6633. "thanks": {
  6634. "name": "symfony/polyfill",
  6635. "url": "https://github.com/symfony/polyfill"
  6636. }
  6637. },
  6638. "autoload": {
  6639. "files": [
  6640. "bootstrap.php"
  6641. ],
  6642. "psr-4": {
  6643. "Symfony\\Polyfill\\Php73\\": ""
  6644. },
  6645. "classmap": [
  6646. "Resources/stubs"
  6647. ]
  6648. },
  6649. "notification-url": "https://packagist.org/downloads/",
  6650. "license": [
  6651. "MIT"
  6652. ],
  6653. "authors": [
  6654. {
  6655. "name": "Nicolas Grekas",
  6656. "email": "p@tchwork.com"
  6657. },
  6658. {
  6659. "name": "Symfony Community",
  6660. "homepage": "https://symfony.com/contributors"
  6661. }
  6662. ],
  6663. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6664. "homepage": "https://symfony.com",
  6665. "keywords": [
  6666. "compatibility",
  6667. "polyfill",
  6668. "portable",
  6669. "shim"
  6670. ],
  6671. "support": {
  6672. "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
  6673. },
  6674. "funding": [
  6675. {
  6676. "url": "https://symfony.com/sponsor",
  6677. "type": "custom"
  6678. },
  6679. {
  6680. "url": "https://github.com/fabpot",
  6681. "type": "github"
  6682. },
  6683. {
  6684. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6685. "type": "tidelift"
  6686. }
  6687. ],
  6688. "time": "2022-05-24T11:49:31+00:00"
  6689. },
  6690. {
  6691. "name": "symfony/polyfill-php80",
  6692. "version": "v1.26.0",
  6693. "source": {
  6694. "type": "git",
  6695. "url": "https://github.com/symfony/polyfill-php80.git",
  6696. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
  6697. },
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  6701. "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
  6702. "shasum": ""
  6703. },
  6704. "require": {
  6705. "php": ">=7.1"
  6706. },
  6707. "type": "library",
  6708. "extra": {
  6709. "branch-alias": {
  6710. "dev-main": "1.26-dev"
  6711. },
  6712. "thanks": {
  6713. "name": "symfony/polyfill",
  6714. "url": "https://github.com/symfony/polyfill"
  6715. }
  6716. },
  6717. "autoload": {
  6718. "files": [
  6719. "bootstrap.php"
  6720. ],
  6721. "psr-4": {
  6722. "Symfony\\Polyfill\\Php80\\": ""
  6723. },
  6724. "classmap": [
  6725. "Resources/stubs"
  6726. ]
  6727. },
  6728. "notification-url": "https://packagist.org/downloads/",
  6729. "license": [
  6730. "MIT"
  6731. ],
  6732. "authors": [
  6733. {
  6734. "name": "Ion Bazan",
  6735. "email": "ion.bazan@gmail.com"
  6736. },
  6737. {
  6738. "name": "Nicolas Grekas",
  6739. "email": "p@tchwork.com"
  6740. },
  6741. {
  6742. "name": "Symfony Community",
  6743. "homepage": "https://symfony.com/contributors"
  6744. }
  6745. ],
  6746. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6747. "homepage": "https://symfony.com",
  6748. "keywords": [
  6749. "compatibility",
  6750. "polyfill",
  6751. "portable",
  6752. "shim"
  6753. ],
  6754. "support": {
  6755. "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
  6756. },
  6757. "funding": [
  6758. {
  6759. "url": "https://symfony.com/sponsor",
  6760. "type": "custom"
  6761. },
  6762. {
  6763. "url": "https://github.com/fabpot",
  6764. "type": "github"
  6765. },
  6766. {
  6767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6768. "type": "tidelift"
  6769. }
  6770. ],
  6771. "time": "2022-05-10T07:21:04+00:00"
  6772. },
  6773. {
  6774. "name": "symfony/process",
  6775. "version": "v6.0.11",
  6776. "source": {
  6777. "type": "git",
  6778. "url": "https://github.com/symfony/process.git",
  6779. "reference": "44270a08ccb664143dede554ff1c00aaa2247a43"
  6780. },
  6781. "dist": {
  6782. "type": "zip",
  6783. "url": "https://api.github.com/repos/symfony/process/zipball/44270a08ccb664143dede554ff1c00aaa2247a43",
  6784. "reference": "44270a08ccb664143dede554ff1c00aaa2247a43",
  6785. "shasum": ""
  6786. },
  6787. "require": {
  6788. "php": ">=8.0.2"
  6789. },
  6790. "type": "library",
  6791. "autoload": {
  6792. "psr-4": {
  6793. "Symfony\\Component\\Process\\": ""
  6794. },
  6795. "exclude-from-classmap": [
  6796. "/Tests/"
  6797. ]
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Fabien Potencier",
  6806. "email": "fabien@symfony.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Executes commands in sub-processes",
  6814. "homepage": "https://symfony.com",
  6815. "support": {
  6816. "source": "https://github.com/symfony/process/tree/v6.0.11"
  6817. },
  6818. "funding": [
  6819. {
  6820. "url": "https://symfony.com/sponsor",
  6821. "type": "custom"
  6822. },
  6823. {
  6824. "url": "https://github.com/fabpot",
  6825. "type": "github"
  6826. },
  6827. {
  6828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6829. "type": "tidelift"
  6830. }
  6831. ],
  6832. "time": "2022-06-27T17:10:44+00:00"
  6833. },
  6834. {
  6835. "name": "symfony/service-contracts",
  6836. "version": "v3.0.2",
  6837. "source": {
  6838. "type": "git",
  6839. "url": "https://github.com/symfony/service-contracts.git",
  6840. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66"
  6841. },
  6842. "dist": {
  6843. "type": "zip",
  6844. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6845. "reference": "d78d39c1599bd1188b8e26bb341da52c3c6d8a66",
  6846. "shasum": ""
  6847. },
  6848. "require": {
  6849. "php": ">=8.0.2",
  6850. "psr/container": "^2.0"
  6851. },
  6852. "conflict": {
  6853. "ext-psr": "<1.1|>=2"
  6854. },
  6855. "suggest": {
  6856. "symfony/service-implementation": ""
  6857. },
  6858. "type": "library",
  6859. "extra": {
  6860. "branch-alias": {
  6861. "dev-main": "3.0-dev"
  6862. },
  6863. "thanks": {
  6864. "name": "symfony/contracts",
  6865. "url": "https://github.com/symfony/contracts"
  6866. }
  6867. },
  6868. "autoload": {
  6869. "psr-4": {
  6870. "Symfony\\Contracts\\Service\\": ""
  6871. }
  6872. },
  6873. "notification-url": "https://packagist.org/downloads/",
  6874. "license": [
  6875. "MIT"
  6876. ],
  6877. "authors": [
  6878. {
  6879. "name": "Nicolas Grekas",
  6880. "email": "p@tchwork.com"
  6881. },
  6882. {
  6883. "name": "Symfony Community",
  6884. "homepage": "https://symfony.com/contributors"
  6885. }
  6886. ],
  6887. "description": "Generic abstractions related to writing services",
  6888. "homepage": "https://symfony.com",
  6889. "keywords": [
  6890. "abstractions",
  6891. "contracts",
  6892. "decoupling",
  6893. "interfaces",
  6894. "interoperability",
  6895. "standards"
  6896. ],
  6897. "support": {
  6898. "source": "https://github.com/symfony/service-contracts/tree/v3.0.2"
  6899. },
  6900. "funding": [
  6901. {
  6902. "url": "https://symfony.com/sponsor",
  6903. "type": "custom"
  6904. },
  6905. {
  6906. "url": "https://github.com/fabpot",
  6907. "type": "github"
  6908. },
  6909. {
  6910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6911. "type": "tidelift"
  6912. }
  6913. ],
  6914. "time": "2022-05-30T19:17:58+00:00"
  6915. },
  6916. {
  6917. "name": "symfony/string",
  6918. "version": "v6.0.12",
  6919. "source": {
  6920. "type": "git",
  6921. "url": "https://github.com/symfony/string.git",
  6922. "reference": "3a975ba1a1508ad97df45f4590f55b7cc4c1a0a0"
  6923. },
  6924. "dist": {
  6925. "type": "zip",
  6926. "url": "https://api.github.com/repos/symfony/string/zipball/3a975ba1a1508ad97df45f4590f55b7cc4c1a0a0",
  6927. "reference": "3a975ba1a1508ad97df45f4590f55b7cc4c1a0a0",
  6928. "shasum": ""
  6929. },
  6930. "require": {
  6931. "php": ">=8.0.2",
  6932. "symfony/polyfill-ctype": "~1.8",
  6933. "symfony/polyfill-intl-grapheme": "~1.0",
  6934. "symfony/polyfill-intl-normalizer": "~1.0",
  6935. "symfony/polyfill-mbstring": "~1.0"
  6936. },
  6937. "conflict": {
  6938. "symfony/translation-contracts": "<2.0"
  6939. },
  6940. "require-dev": {
  6941. "symfony/error-handler": "^5.4|^6.0",
  6942. "symfony/http-client": "^5.4|^6.0",
  6943. "symfony/translation-contracts": "^2.0|^3.0",
  6944. "symfony/var-exporter": "^5.4|^6.0"
  6945. },
  6946. "type": "library",
  6947. "autoload": {
  6948. "files": [
  6949. "Resources/functions.php"
  6950. ],
  6951. "psr-4": {
  6952. "Symfony\\Component\\String\\": ""
  6953. },
  6954. "exclude-from-classmap": [
  6955. "/Tests/"
  6956. ]
  6957. },
  6958. "notification-url": "https://packagist.org/downloads/",
  6959. "license": [
  6960. "MIT"
  6961. ],
  6962. "authors": [
  6963. {
  6964. "name": "Nicolas Grekas",
  6965. "email": "p@tchwork.com"
  6966. },
  6967. {
  6968. "name": "Symfony Community",
  6969. "homepage": "https://symfony.com/contributors"
  6970. }
  6971. ],
  6972. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6973. "homepage": "https://symfony.com",
  6974. "keywords": [
  6975. "grapheme",
  6976. "i18n",
  6977. "string",
  6978. "unicode",
  6979. "utf-8",
  6980. "utf8"
  6981. ],
  6982. "support": {
  6983. "source": "https://github.com/symfony/string/tree/v6.0.12"
  6984. },
  6985. "funding": [
  6986. {
  6987. "url": "https://symfony.com/sponsor",
  6988. "type": "custom"
  6989. },
  6990. {
  6991. "url": "https://github.com/fabpot",
  6992. "type": "github"
  6993. },
  6994. {
  6995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6996. "type": "tidelift"
  6997. }
  6998. ],
  6999. "time": "2022-08-12T18:05:20+00:00"
  7000. },
  7001. {
  7002. "name": "symfony/var-dumper",
  7003. "version": "v6.0.11",
  7004. "source": {
  7005. "type": "git",
  7006. "url": "https://github.com/symfony/var-dumper.git",
  7007. "reference": "2672bdc01c1971e3d8879ce153ec4c3621be5f07"
  7008. },
  7009. "dist": {
  7010. "type": "zip",
  7011. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/2672bdc01c1971e3d8879ce153ec4c3621be5f07",
  7012. "reference": "2672bdc01c1971e3d8879ce153ec4c3621be5f07",
  7013. "shasum": ""
  7014. },
  7015. "require": {
  7016. "php": ">=8.0.2",
  7017. "symfony/polyfill-mbstring": "~1.0"
  7018. },
  7019. "conflict": {
  7020. "phpunit/phpunit": "<5.4.3",
  7021. "symfony/console": "<5.4"
  7022. },
  7023. "require-dev": {
  7024. "ext-iconv": "*",
  7025. "symfony/console": "^5.4|^6.0",
  7026. "symfony/process": "^5.4|^6.0",
  7027. "symfony/uid": "^5.4|^6.0",
  7028. "twig/twig": "^2.13|^3.0.4"
  7029. },
  7030. "suggest": {
  7031. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7032. "ext-intl": "To show region name in time zone dump",
  7033. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7034. },
  7035. "bin": [
  7036. "Resources/bin/var-dump-server"
  7037. ],
  7038. "type": "library",
  7039. "autoload": {
  7040. "files": [
  7041. "Resources/functions/dump.php"
  7042. ],
  7043. "psr-4": {
  7044. "Symfony\\Component\\VarDumper\\": ""
  7045. },
  7046. "exclude-from-classmap": [
  7047. "/Tests/"
  7048. ]
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "authors": [
  7055. {
  7056. "name": "Nicolas Grekas",
  7057. "email": "p@tchwork.com"
  7058. },
  7059. {
  7060. "name": "Symfony Community",
  7061. "homepage": "https://symfony.com/contributors"
  7062. }
  7063. ],
  7064. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7065. "homepage": "https://symfony.com",
  7066. "keywords": [
  7067. "debug",
  7068. "dump"
  7069. ],
  7070. "support": {
  7071. "source": "https://github.com/symfony/var-dumper/tree/v6.0.11"
  7072. },
  7073. "funding": [
  7074. {
  7075. "url": "https://symfony.com/sponsor",
  7076. "type": "custom"
  7077. },
  7078. {
  7079. "url": "https://github.com/fabpot",
  7080. "type": "github"
  7081. },
  7082. {
  7083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7084. "type": "tidelift"
  7085. }
  7086. ],
  7087. "time": "2022-07-20T13:45:53+00:00"
  7088. },
  7089. {
  7090. "name": "theseer/tokenizer",
  7091. "version": "1.2.1",
  7092. "source": {
  7093. "type": "git",
  7094. "url": "https://github.com/theseer/tokenizer.git",
  7095. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7096. },
  7097. "dist": {
  7098. "type": "zip",
  7099. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7100. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7101. "shasum": ""
  7102. },
  7103. "require": {
  7104. "ext-dom": "*",
  7105. "ext-tokenizer": "*",
  7106. "ext-xmlwriter": "*",
  7107. "php": "^7.2 || ^8.0"
  7108. },
  7109. "type": "library",
  7110. "autoload": {
  7111. "classmap": [
  7112. "src/"
  7113. ]
  7114. },
  7115. "notification-url": "https://packagist.org/downloads/",
  7116. "license": [
  7117. "BSD-3-Clause"
  7118. ],
  7119. "authors": [
  7120. {
  7121. "name": "Arne Blankerts",
  7122. "email": "arne@blankerts.de",
  7123. "role": "Developer"
  7124. }
  7125. ],
  7126. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7127. "support": {
  7128. "issues": "https://github.com/theseer/tokenizer/issues",
  7129. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7130. },
  7131. "funding": [
  7132. {
  7133. "url": "https://github.com/theseer",
  7134. "type": "github"
  7135. }
  7136. ],
  7137. "time": "2021-07-28T10:34:58+00:00"
  7138. },
  7139. {
  7140. "name": "vimeo/psalm",
  7141. "version": "4.27.0",
  7142. "source": {
  7143. "type": "git",
  7144. "url": "https://github.com/vimeo/psalm.git",
  7145. "reference": "faf106e717c37b8c81721845dba9de3d8deed8ff"
  7146. },
  7147. "dist": {
  7148. "type": "zip",
  7149. "url": "https://api.github.com/repos/vimeo/psalm/zipball/faf106e717c37b8c81721845dba9de3d8deed8ff",
  7150. "reference": "faf106e717c37b8c81721845dba9de3d8deed8ff",
  7151. "shasum": ""
  7152. },
  7153. "require": {
  7154. "amphp/amp": "^2.4.2",
  7155. "amphp/byte-stream": "^1.5",
  7156. "composer/package-versions-deprecated": "^1.8.0",
  7157. "composer/semver": "^1.4 || ^2.0 || ^3.0",
  7158. "composer/xdebug-handler": "^1.1 || ^2.0 || ^3.0",
  7159. "dnoegel/php-xdg-base-dir": "^0.1.1",
  7160. "ext-ctype": "*",
  7161. "ext-dom": "*",
  7162. "ext-json": "*",
  7163. "ext-libxml": "*",
  7164. "ext-mbstring": "*",
  7165. "ext-simplexml": "*",
  7166. "ext-tokenizer": "*",
  7167. "felixfbecker/advanced-json-rpc": "^3.0.3",
  7168. "felixfbecker/language-server-protocol": "^1.5",
  7169. "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
  7170. "nikic/php-parser": "^4.13",
  7171. "openlss/lib-array2xml": "^1.0",
  7172. "php": "^7.1|^8",
  7173. "sebastian/diff": "^3.0 || ^4.0",
  7174. "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0",
  7175. "symfony/polyfill-php80": "^1.25",
  7176. "webmozart/path-util": "^2.3"
  7177. },
  7178. "provide": {
  7179. "psalm/psalm": "self.version"
  7180. },
  7181. "require-dev": {
  7182. "bamarni/composer-bin-plugin": "^1.2",
  7183. "brianium/paratest": "^4.0||^6.0",
  7184. "ext-curl": "*",
  7185. "php-parallel-lint/php-parallel-lint": "^1.2",
  7186. "phpdocumentor/reflection-docblock": "^5",
  7187. "phpmyadmin/sql-parser": "5.1.0||dev-master",
  7188. "phpspec/prophecy": ">=1.9.0",
  7189. "phpunit/phpunit": "^9.0",
  7190. "psalm/plugin-phpunit": "^0.16",
  7191. "slevomat/coding-standard": "^7.0",
  7192. "squizlabs/php_codesniffer": "^3.5",
  7193. "symfony/process": "^4.3 || ^5.0 || ^6.0",
  7194. "weirdan/prophecy-shim": "^1.0 || ^2.0"
  7195. },
  7196. "suggest": {
  7197. "ext-curl": "In order to send data to shepherd",
  7198. "ext-igbinary": "^2.0.5 is required, used to serialize caching data"
  7199. },
  7200. "bin": [
  7201. "psalm",
  7202. "psalm-language-server",
  7203. "psalm-plugin",
  7204. "psalm-refactor",
  7205. "psalter"
  7206. ],
  7207. "type": "library",
  7208. "extra": {
  7209. "branch-alias": {
  7210. "dev-master": "4.x-dev",
  7211. "dev-3.x": "3.x-dev",
  7212. "dev-2.x": "2.x-dev",
  7213. "dev-1.x": "1.x-dev"
  7214. }
  7215. },
  7216. "autoload": {
  7217. "files": [
  7218. "src/functions.php",
  7219. "src/spl_object_id.php"
  7220. ],
  7221. "psr-4": {
  7222. "Psalm\\": "src/Psalm/"
  7223. }
  7224. },
  7225. "notification-url": "https://packagist.org/downloads/",
  7226. "license": [
  7227. "MIT"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "Matthew Brown"
  7232. }
  7233. ],
  7234. "description": "A static analysis tool for finding errors in PHP applications",
  7235. "keywords": [
  7236. "code",
  7237. "inspection",
  7238. "php"
  7239. ],
  7240. "support": {
  7241. "issues": "https://github.com/vimeo/psalm/issues",
  7242. "source": "https://github.com/vimeo/psalm/tree/4.27.0"
  7243. },
  7244. "time": "2022-08-31T13:47:09+00:00"
  7245. },
  7246. {
  7247. "name": "webmozart/assert",
  7248. "version": "1.11.0",
  7249. "source": {
  7250. "type": "git",
  7251. "url": "https://github.com/webmozarts/assert.git",
  7252. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7253. },
  7254. "dist": {
  7255. "type": "zip",
  7256. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7257. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7258. "shasum": ""
  7259. },
  7260. "require": {
  7261. "ext-ctype": "*",
  7262. "php": "^7.2 || ^8.0"
  7263. },
  7264. "conflict": {
  7265. "phpstan/phpstan": "<0.12.20",
  7266. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7267. },
  7268. "require-dev": {
  7269. "phpunit/phpunit": "^8.5.13"
  7270. },
  7271. "type": "library",
  7272. "extra": {
  7273. "branch-alias": {
  7274. "dev-master": "1.10-dev"
  7275. }
  7276. },
  7277. "autoload": {
  7278. "psr-4": {
  7279. "Webmozart\\Assert\\": "src/"
  7280. }
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "license": [
  7284. "MIT"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "Bernhard Schussek",
  7289. "email": "bschussek@gmail.com"
  7290. }
  7291. ],
  7292. "description": "Assertions to validate method input/output with nice error messages.",
  7293. "keywords": [
  7294. "assert",
  7295. "check",
  7296. "validate"
  7297. ],
  7298. "support": {
  7299. "issues": "https://github.com/webmozarts/assert/issues",
  7300. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7301. },
  7302. "time": "2022-06-03T18:03:27+00:00"
  7303. },
  7304. {
  7305. "name": "webmozart/path-util",
  7306. "version": "2.3.0",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/webmozart/path-util.git",
  7310. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  7315. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "php": ">=5.3.3",
  7320. "webmozart/assert": "~1.0"
  7321. },
  7322. "require-dev": {
  7323. "phpunit/phpunit": "^4.6",
  7324. "sebastian/version": "^1.0.1"
  7325. },
  7326. "type": "library",
  7327. "extra": {
  7328. "branch-alias": {
  7329. "dev-master": "2.3-dev"
  7330. }
  7331. },
  7332. "autoload": {
  7333. "psr-4": {
  7334. "Webmozart\\PathUtil\\": "src/"
  7335. }
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "license": [
  7339. "MIT"
  7340. ],
  7341. "authors": [
  7342. {
  7343. "name": "Bernhard Schussek",
  7344. "email": "bschussek@gmail.com"
  7345. }
  7346. ],
  7347. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  7348. "support": {
  7349. "issues": "https://github.com/webmozart/path-util/issues",
  7350. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  7351. },
  7352. "abandoned": "symfony/filesystem",
  7353. "time": "2015-12-17T08:42:14+00:00"
  7354. }
  7355. ],
  7356. "aliases": [],
  7357. "minimum-stability": "dev",
  7358. "stability-flags": [],
  7359. "prefer-stable": true,
  7360. "prefer-lowest": false,
  7361. "platform": {
  7362. "php": "^8.0",
  7363. "ext-json": "*"
  7364. },
  7365. "platform-dev": [],
  7366. "plugin-api-version": "2.3.0"
  7367. }