composer.lock 226 KB

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