composer.lock 226 KB

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