composer.lock 230 KB

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