composer.lock 416 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578
  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": "9092399791e0168d53586b646fb13c3b",
  8. "packages": [
  9. {
  10. "name": "alchemy/zippy",
  11. "version": "0.4.9",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/alchemy-fr/Zippy.git",
  15. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/alchemy-fr/Zippy/zipball/59fbeefb9a249122867ef25e53addfcce31850d7",
  20. "reference": "59fbeefb9a249122867ef25e53addfcce31850d7",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "doctrine/collections": "~1.0",
  25. "php": ">=5.5",
  26. "symfony/filesystem": "^2.0.5 || ^3.0 || ^4.0",
  27. "symfony/polyfill-mbstring": "^1.3",
  28. "symfony/process": "^2.1 || ^3.0 || ^4.0"
  29. },
  30. "require-dev": {
  31. "ext-zip": "*",
  32. "guzzle/guzzle": "~3.0",
  33. "guzzlehttp/guzzle": "^6.0",
  34. "phpunit/phpunit": "^4.0 || ^5.0",
  35. "symfony/finder": "^2.0.5 || ^3.0 || ^4.0"
  36. },
  37. "suggest": {
  38. "ext-zip": "To use the ZipExtensionAdapter",
  39. "guzzle/guzzle": "To use the GuzzleTeleporter with Guzzle 3",
  40. "guzzlehttp/guzzle": "To use the GuzzleTeleporter with Guzzle 6"
  41. },
  42. "type": "library",
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "0.4.x-dev"
  46. }
  47. },
  48. "autoload": {
  49. "psr-4": {
  50. "Alchemy\\Zippy\\": "src/"
  51. }
  52. },
  53. "notification-url": "https://packagist.org/downloads/",
  54. "license": [
  55. "MIT"
  56. ],
  57. "authors": [
  58. {
  59. "name": "Alchemy",
  60. "email": "dev.team@alchemy.fr",
  61. "homepage": "http://www.alchemy.fr/"
  62. }
  63. ],
  64. "description": "Zippy, the archive manager companion",
  65. "keywords": [
  66. "bzip",
  67. "compression",
  68. "tar",
  69. "zip"
  70. ],
  71. "time": "2018-02-22T13:58:36+00:00"
  72. },
  73. {
  74. "name": "asm89/stack-cors",
  75. "version": "1.2.0",
  76. "source": {
  77. "type": "git",
  78. "url": "https://github.com/asm89/stack-cors.git",
  79. "reference": "c163e2b614550aedcf71165db2473d936abbced6"
  80. },
  81. "dist": {
  82. "type": "zip",
  83. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/c163e2b614550aedcf71165db2473d936abbced6",
  84. "reference": "c163e2b614550aedcf71165db2473d936abbced6",
  85. "shasum": ""
  86. },
  87. "require": {
  88. "php": ">=5.5.9",
  89. "symfony/http-foundation": "~2.7|~3.0|~4.0",
  90. "symfony/http-kernel": "~2.7|~3.0|~4.0"
  91. },
  92. "require-dev": {
  93. "phpunit/phpunit": "^5.0 || ^4.8.10",
  94. "squizlabs/php_codesniffer": "^2.3"
  95. },
  96. "type": "library",
  97. "extra": {
  98. "branch-alias": {
  99. "dev-master": "1.2-dev"
  100. }
  101. },
  102. "autoload": {
  103. "psr-4": {
  104. "Asm89\\Stack\\": "src/Asm89/Stack/"
  105. }
  106. },
  107. "notification-url": "https://packagist.org/downloads/",
  108. "license": [
  109. "MIT"
  110. ],
  111. "authors": [
  112. {
  113. "name": "Alexander",
  114. "email": "iam.asm89@gmail.com"
  115. }
  116. ],
  117. "description": "Cross-origin resource sharing library and stack middleware",
  118. "homepage": "https://github.com/asm89/stack-cors",
  119. "keywords": [
  120. "cors",
  121. "stack"
  122. ],
  123. "time": "2017-12-20T14:37:45+00:00"
  124. },
  125. {
  126. "name": "behat/mink",
  127. "version": "dev-master",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/minkphp/Mink.git",
  131. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/minkphp/Mink/zipball/a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  136. "reference": "a534fe7dac9525e8e10ca68e737c3d7e5058ec83",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3.1",
  141. "symfony/css-selector": "^2.7|^3.0|^4.0"
  142. },
  143. "require-dev": {
  144. "symfony/phpunit-bridge": "^4.2"
  145. },
  146. "suggest": {
  147. "behat/mink-browserkit-driver": "extremely fast headless driver for Symfony\\Kernel-based apps (Sf2, Silex)",
  148. "behat/mink-goutte-driver": "fast headless driver for any app without JS emulation",
  149. "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)",
  150. "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)",
  151. "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-master": "1.7.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "Behat\\Mink\\": "src/"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "Konstantin Kudryashov",
  171. "email": "ever.zet@gmail.com",
  172. "homepage": "http://everzet.com"
  173. }
  174. ],
  175. "description": "Browser controller/emulator abstraction for PHP",
  176. "homepage": "http://mink.behat.org/",
  177. "keywords": [
  178. "browser",
  179. "testing",
  180. "web"
  181. ],
  182. "time": "2019-07-15T12:45:29+00:00"
  183. },
  184. {
  185. "name": "behat/mink-browserkit-driver",
  186. "version": "1.3.3",
  187. "source": {
  188. "type": "git",
  189. "url": "https://github.com/minkphp/MinkBrowserKitDriver.git",
  190. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb"
  191. },
  192. "dist": {
  193. "type": "zip",
  194. "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  195. "reference": "1b9a7ce903cfdaaec5fb32bfdbb26118343662eb",
  196. "shasum": ""
  197. },
  198. "require": {
  199. "behat/mink": "^1.7.1@dev",
  200. "php": ">=5.3.6",
  201. "symfony/browser-kit": "~2.3|~3.0|~4.0",
  202. "symfony/dom-crawler": "~2.3|~3.0|~4.0"
  203. },
  204. "require-dev": {
  205. "mink/driver-testsuite": "dev-master",
  206. "symfony/http-kernel": "~2.3|~3.0|~4.0"
  207. },
  208. "type": "mink-driver",
  209. "extra": {
  210. "branch-alias": {
  211. "dev-master": "1.3.x-dev"
  212. }
  213. },
  214. "autoload": {
  215. "psr-4": {
  216. "Behat\\Mink\\Driver\\": "src/"
  217. }
  218. },
  219. "notification-url": "https://packagist.org/downloads/",
  220. "license": [
  221. "MIT"
  222. ],
  223. "authors": [
  224. {
  225. "name": "Konstantin Kudryashov",
  226. "email": "ever.zet@gmail.com",
  227. "homepage": "http://everzet.com"
  228. }
  229. ],
  230. "description": "Symfony2 BrowserKit driver for Mink framework",
  231. "homepage": "http://mink.behat.org/",
  232. "keywords": [
  233. "Mink",
  234. "Symfony2",
  235. "browser",
  236. "testing"
  237. ],
  238. "time": "2018-05-02T09:25:31+00:00"
  239. },
  240. {
  241. "name": "behat/mink-goutte-driver",
  242. "version": "v1.2.1",
  243. "source": {
  244. "type": "git",
  245. "url": "https://github.com/minkphp/MinkGoutteDriver.git",
  246. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca"
  247. },
  248. "dist": {
  249. "type": "zip",
  250. "url": "https://api.github.com/repos/minkphp/MinkGoutteDriver/zipball/8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  251. "reference": "8b9ad6d2d95bc70b840d15323365f52fcdaea6ca",
  252. "shasum": ""
  253. },
  254. "require": {
  255. "behat/mink": "~1.6@dev",
  256. "behat/mink-browserkit-driver": "~1.2@dev",
  257. "fabpot/goutte": "~1.0.4|~2.0|~3.1",
  258. "php": ">=5.3.1"
  259. },
  260. "require-dev": {
  261. "symfony/phpunit-bridge": "~2.7|~3.0"
  262. },
  263. "type": "mink-driver",
  264. "extra": {
  265. "branch-alias": {
  266. "dev-master": "1.2.x-dev"
  267. }
  268. },
  269. "autoload": {
  270. "psr-4": {
  271. "Behat\\Mink\\Driver\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Konstantin Kudryashov",
  281. "email": "ever.zet@gmail.com",
  282. "homepage": "http://everzet.com"
  283. }
  284. ],
  285. "description": "Goutte driver for Mink framework",
  286. "homepage": "http://mink.behat.org/",
  287. "keywords": [
  288. "browser",
  289. "goutte",
  290. "headless",
  291. "testing"
  292. ],
  293. "time": "2016-03-05T09:04:22+00:00"
  294. },
  295. {
  296. "name": "behat/mink-selenium2-driver",
  297. "version": "dev-master",
  298. "source": {
  299. "type": "git",
  300. "url": "https://github.com/minkphp/MinkSelenium2Driver.git",
  301. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a"
  302. },
  303. "dist": {
  304. "type": "zip",
  305. "url": "https://api.github.com/repos/minkphp/MinkSelenium2Driver/zipball/8684ee4e634db7abda9039ea53545f86fc1e105a",
  306. "reference": "8684ee4e634db7abda9039ea53545f86fc1e105a",
  307. "shasum": ""
  308. },
  309. "require": {
  310. "behat/mink": "~1.7@dev",
  311. "instaclick/php-webdriver": "~1.1",
  312. "php": ">=5.4"
  313. },
  314. "require-dev": {
  315. "mink/driver-testsuite": "dev-master"
  316. },
  317. "type": "mink-driver",
  318. "extra": {
  319. "branch-alias": {
  320. "dev-master": "1.3.x-dev"
  321. }
  322. },
  323. "autoload": {
  324. "psr-4": {
  325. "Behat\\Mink\\Driver\\": "src/"
  326. }
  327. },
  328. "notification-url": "https://packagist.org/downloads/",
  329. "license": [
  330. "MIT"
  331. ],
  332. "authors": [
  333. {
  334. "name": "Konstantin Kudryashov",
  335. "email": "ever.zet@gmail.com",
  336. "homepage": "http://everzet.com"
  337. },
  338. {
  339. "name": "Pete Otaqui",
  340. "email": "pete@otaqui.com",
  341. "homepage": "https://github.com/pete-otaqui"
  342. }
  343. ],
  344. "description": "Selenium2 (WebDriver) driver for Mink framework",
  345. "homepage": "http://mink.behat.org/",
  346. "keywords": [
  347. "ajax",
  348. "browser",
  349. "javascript",
  350. "selenium",
  351. "testing",
  352. "webdriver"
  353. ],
  354. "time": "2018-10-10T12:39:06+00:00"
  355. },
  356. {
  357. "name": "brumann/polyfill-unserialize",
  358. "version": "v1.0.4",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/dbrumann/polyfill-unserialize.git",
  362. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/dbrumann/polyfill-unserialize/zipball/8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  367. "reference": "8ed1cd343ddc134a7ef649aca0aa0fe2a1b45008",
  368. "shasum": ""
  369. },
  370. "require": {
  371. "php": "^5.3|^7.0"
  372. },
  373. "type": "library",
  374. "autoload": {
  375. "psr-4": {
  376. "Brumann\\Polyfill\\": "src/"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "authors": [
  384. {
  385. "name": "Denis Brumann",
  386. "email": "denis.brumann@sensiolabs.de"
  387. }
  388. ],
  389. "description": "Backports unserialize options introduced in PHP 7.0 to older PHP versions.",
  390. "time": "2019-07-14T23:16:24+00:00"
  391. },
  392. {
  393. "name": "chi-teck/drupal-code-generator",
  394. "version": "1.30.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  398. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  403. "reference": "c59c31ee6d8eefe76a5d367feef902e259c90c7b",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "ext-json": "*",
  408. "php": ">=5.5.9",
  409. "symfony/console": "^3.4 || ^4.0",
  410. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  411. "twig/twig": "^1.38.2 || ^2.10"
  412. },
  413. "bin": [
  414. "bin/dcg"
  415. ],
  416. "type": "library",
  417. "extra": {
  418. "branch-alias": {
  419. "dev-master": "1.x-dev"
  420. }
  421. },
  422. "autoload": {
  423. "files": [
  424. "src/bootstrap.php"
  425. ],
  426. "psr-4": {
  427. "DrupalCodeGenerator\\": "src"
  428. }
  429. },
  430. "notification-url": "https://packagist.org/downloads/",
  431. "license": [
  432. "GPL-2.0-or-later"
  433. ],
  434. "description": "Drupal code generator",
  435. "time": "2019-10-27T14:27:26+00:00"
  436. },
  437. {
  438. "name": "composer/installers",
  439. "version": "v1.7.0",
  440. "source": {
  441. "type": "git",
  442. "url": "https://github.com/composer/installers.git",
  443. "reference": "141b272484481432cda342727a427dc1e206bfa0"
  444. },
  445. "dist": {
  446. "type": "zip",
  447. "url": "https://api.github.com/repos/composer/installers/zipball/141b272484481432cda342727a427dc1e206bfa0",
  448. "reference": "141b272484481432cda342727a427dc1e206bfa0",
  449. "shasum": ""
  450. },
  451. "require": {
  452. "composer-plugin-api": "^1.0"
  453. },
  454. "replace": {
  455. "roundcube/plugin-installer": "*",
  456. "shama/baton": "*"
  457. },
  458. "require-dev": {
  459. "composer/composer": "1.0.*@dev",
  460. "phpunit/phpunit": "^4.8.36"
  461. },
  462. "type": "composer-plugin",
  463. "extra": {
  464. "class": "Composer\\Installers\\Plugin",
  465. "branch-alias": {
  466. "dev-master": "1.0-dev"
  467. }
  468. },
  469. "autoload": {
  470. "psr-4": {
  471. "Composer\\Installers\\": "src/Composer/Installers"
  472. }
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "MIT"
  477. ],
  478. "authors": [
  479. {
  480. "name": "Kyle Robinson Young",
  481. "email": "kyle@dontkry.com",
  482. "homepage": "https://github.com/shama"
  483. }
  484. ],
  485. "description": "A multi-framework Composer library installer",
  486. "homepage": "https://composer.github.io/installers/",
  487. "keywords": [
  488. "Craft",
  489. "Dolibarr",
  490. "Eliasis",
  491. "Hurad",
  492. "ImageCMS",
  493. "Kanboard",
  494. "Lan Management System",
  495. "MODX Evo",
  496. "Mautic",
  497. "Maya",
  498. "OXID",
  499. "Plentymarkets",
  500. "Porto",
  501. "RadPHP",
  502. "SMF",
  503. "Thelia",
  504. "Whmcs",
  505. "WolfCMS",
  506. "agl",
  507. "aimeos",
  508. "annotatecms",
  509. "attogram",
  510. "bitrix",
  511. "cakephp",
  512. "chef",
  513. "cockpit",
  514. "codeigniter",
  515. "concrete5",
  516. "croogo",
  517. "dokuwiki",
  518. "drupal",
  519. "eZ Platform",
  520. "elgg",
  521. "expressionengine",
  522. "fuelphp",
  523. "grav",
  524. "installer",
  525. "itop",
  526. "joomla",
  527. "known",
  528. "kohana",
  529. "laravel",
  530. "lavalite",
  531. "lithium",
  532. "magento",
  533. "majima",
  534. "mako",
  535. "mediawiki",
  536. "modulework",
  537. "modx",
  538. "moodle",
  539. "osclass",
  540. "phpbb",
  541. "piwik",
  542. "ppi",
  543. "puppet",
  544. "pxcms",
  545. "reindex",
  546. "roundcube",
  547. "shopware",
  548. "silverstripe",
  549. "sydes",
  550. "symfony",
  551. "typo3",
  552. "wordpress",
  553. "yawik",
  554. "zend",
  555. "zikula"
  556. ],
  557. "time": "2019-08-12T15:00:31+00:00"
  558. },
  559. {
  560. "name": "composer/semver",
  561. "version": "1.5.0",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/composer/semver.git",
  565. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/composer/semver/zipball/46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  570. "reference": "46d9139568ccb8d9e7cdd4539cab7347568a5e2e",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "php": "^5.3.2 || ^7.0"
  575. },
  576. "require-dev": {
  577. "phpunit/phpunit": "^4.5 || ^5.0.5",
  578. "phpunit/phpunit-mock-objects": "2.3.0 || ^3.0"
  579. },
  580. "type": "library",
  581. "extra": {
  582. "branch-alias": {
  583. "dev-master": "1.x-dev"
  584. }
  585. },
  586. "autoload": {
  587. "psr-4": {
  588. "Composer\\Semver\\": "src"
  589. }
  590. },
  591. "notification-url": "https://packagist.org/downloads/",
  592. "license": [
  593. "MIT"
  594. ],
  595. "authors": [
  596. {
  597. "name": "Nils Adermann",
  598. "email": "naderman@naderman.de",
  599. "homepage": "http://www.naderman.de"
  600. },
  601. {
  602. "name": "Jordi Boggiano",
  603. "email": "j.boggiano@seld.be",
  604. "homepage": "http://seld.be"
  605. },
  606. {
  607. "name": "Rob Bast",
  608. "email": "rob.bast@gmail.com",
  609. "homepage": "http://robbast.nl"
  610. }
  611. ],
  612. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  613. "keywords": [
  614. "semantic",
  615. "semver",
  616. "validation",
  617. "versioning"
  618. ],
  619. "time": "2019-03-19T17:25:45+00:00"
  620. },
  621. {
  622. "name": "consolidation/annotated-command",
  623. "version": "2.12.0",
  624. "source": {
  625. "type": "git",
  626. "url": "https://github.com/consolidation/annotated-command.git",
  627. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  628. },
  629. "dist": {
  630. "type": "zip",
  631. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  632. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  633. "shasum": ""
  634. },
  635. "require": {
  636. "consolidation/output-formatters": "^3.4",
  637. "php": ">=5.4.5",
  638. "psr/log": "^1",
  639. "symfony/console": "^2.8|^3|^4",
  640. "symfony/event-dispatcher": "^2.5|^3|^4",
  641. "symfony/finder": "^2.5|^3|^4"
  642. },
  643. "require-dev": {
  644. "g1a/composer-test-scenarios": "^3",
  645. "php-coveralls/php-coveralls": "^1",
  646. "phpunit/phpunit": "^6",
  647. "squizlabs/php_codesniffer": "^2.7"
  648. },
  649. "type": "library",
  650. "extra": {
  651. "scenarios": {
  652. "symfony4": {
  653. "require": {
  654. "symfony/console": "^4.0"
  655. },
  656. "config": {
  657. "platform": {
  658. "php": "7.1.3"
  659. }
  660. }
  661. },
  662. "symfony2": {
  663. "require": {
  664. "symfony/console": "^2.8"
  665. },
  666. "require-dev": {
  667. "phpunit/phpunit": "^4.8.36"
  668. },
  669. "remove": [
  670. "php-coveralls/php-coveralls"
  671. ],
  672. "config": {
  673. "platform": {
  674. "php": "5.4.8"
  675. }
  676. },
  677. "scenario-options": {
  678. "create-lockfile": "false"
  679. }
  680. },
  681. "phpunit4": {
  682. "require-dev": {
  683. "phpunit/phpunit": "^4.8.36"
  684. },
  685. "remove": [
  686. "php-coveralls/php-coveralls"
  687. ],
  688. "config": {
  689. "platform": {
  690. "php": "5.4.8"
  691. }
  692. }
  693. }
  694. },
  695. "branch-alias": {
  696. "dev-master": "2.x-dev"
  697. }
  698. },
  699. "autoload": {
  700. "psr-4": {
  701. "Consolidation\\AnnotatedCommand\\": "src"
  702. }
  703. },
  704. "notification-url": "https://packagist.org/downloads/",
  705. "license": [
  706. "MIT"
  707. ],
  708. "authors": [
  709. {
  710. "name": "Greg Anderson",
  711. "email": "greg.1.anderson@greenknowe.org"
  712. }
  713. ],
  714. "description": "Initialize Symfony Console commands from annotated command class methods.",
  715. "time": "2019-03-08T16:55:03+00:00"
  716. },
  717. {
  718. "name": "consolidation/config",
  719. "version": "1.2.1",
  720. "source": {
  721. "type": "git",
  722. "url": "https://github.com/consolidation/config.git",
  723. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  724. },
  725. "dist": {
  726. "type": "zip",
  727. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  728. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  729. "shasum": ""
  730. },
  731. "require": {
  732. "dflydev/dot-access-data": "^1.1.0",
  733. "grasmash/expander": "^1",
  734. "php": ">=5.4.0"
  735. },
  736. "require-dev": {
  737. "g1a/composer-test-scenarios": "^3",
  738. "php-coveralls/php-coveralls": "^1",
  739. "phpunit/phpunit": "^5",
  740. "squizlabs/php_codesniffer": "2.*",
  741. "symfony/console": "^2.5|^3|^4",
  742. "symfony/yaml": "^2.8.11|^3|^4"
  743. },
  744. "suggest": {
  745. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  746. },
  747. "type": "library",
  748. "extra": {
  749. "scenarios": {
  750. "symfony4": {
  751. "require-dev": {
  752. "symfony/console": "^4.0"
  753. },
  754. "config": {
  755. "platform": {
  756. "php": "7.1.3"
  757. }
  758. }
  759. },
  760. "symfony2": {
  761. "require-dev": {
  762. "symfony/console": "^2.8",
  763. "symfony/event-dispatcher": "^2.8",
  764. "phpunit/phpunit": "^4.8.36"
  765. },
  766. "remove": [
  767. "php-coveralls/php-coveralls"
  768. ],
  769. "config": {
  770. "platform": {
  771. "php": "5.4.8"
  772. }
  773. }
  774. }
  775. },
  776. "branch-alias": {
  777. "dev-master": "1.x-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Consolidation\\Config\\": "src"
  783. }
  784. },
  785. "notification-url": "https://packagist.org/downloads/",
  786. "license": [
  787. "MIT"
  788. ],
  789. "authors": [
  790. {
  791. "name": "Greg Anderson",
  792. "email": "greg.1.anderson@greenknowe.org"
  793. }
  794. ],
  795. "description": "Provide configuration services for a commandline tool.",
  796. "time": "2019-03-03T19:37:04+00:00"
  797. },
  798. {
  799. "name": "consolidation/filter-via-dot-access-data",
  800. "version": "1.0.0",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  804. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  809. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "dflydev/dot-access-data": "^1.1.0",
  814. "php": ">=5.5.0"
  815. },
  816. "require-dev": {
  817. "consolidation/robo": "^1.2.3",
  818. "g1a/composer-test-scenarios": "^3",
  819. "knplabs/github-api": "^2.7",
  820. "php-coveralls/php-coveralls": "^1",
  821. "php-http/guzzle6-adapter": "^1.1",
  822. "phpunit/phpunit": "^5",
  823. "squizlabs/php_codesniffer": "^2.8",
  824. "symfony/console": "^2.8|^3|^4"
  825. },
  826. "type": "library",
  827. "extra": {
  828. "scenarios": {
  829. "phpunit5": {
  830. "require-dev": {
  831. "phpunit/phpunit": "^5.7.27"
  832. },
  833. "remove": [
  834. "php-coveralls/php-coveralls"
  835. ],
  836. "config": {
  837. "platform": {
  838. "php": "5.6.33"
  839. }
  840. }
  841. }
  842. },
  843. "branch-alias": {
  844. "dev-master": "1.x-dev"
  845. }
  846. },
  847. "autoload": {
  848. "psr-4": {
  849. "Consolidation\\Filter\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Greg Anderson",
  859. "email": "greg.1.anderson@greenknowe.org"
  860. }
  861. ],
  862. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  863. "time": "2019-01-18T06:05:07+00:00"
  864. },
  865. {
  866. "name": "consolidation/log",
  867. "version": "1.1.1",
  868. "source": {
  869. "type": "git",
  870. "url": "https://github.com/consolidation/log.git",
  871. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  872. },
  873. "dist": {
  874. "type": "zip",
  875. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  876. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  877. "shasum": ""
  878. },
  879. "require": {
  880. "php": ">=5.4.5",
  881. "psr/log": "^1.0",
  882. "symfony/console": "^2.8|^3|^4"
  883. },
  884. "require-dev": {
  885. "g1a/composer-test-scenarios": "^3",
  886. "php-coveralls/php-coveralls": "^1",
  887. "phpunit/phpunit": "^6",
  888. "squizlabs/php_codesniffer": "^2"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "scenarios": {
  893. "symfony4": {
  894. "require": {
  895. "symfony/console": "^4.0"
  896. },
  897. "config": {
  898. "platform": {
  899. "php": "7.1.3"
  900. }
  901. }
  902. },
  903. "symfony2": {
  904. "require": {
  905. "symfony/console": "^2.8"
  906. },
  907. "require-dev": {
  908. "phpunit/phpunit": "^4.8.36"
  909. },
  910. "remove": [
  911. "php-coveralls/php-coveralls"
  912. ],
  913. "config": {
  914. "platform": {
  915. "php": "5.4.8"
  916. }
  917. }
  918. },
  919. "phpunit4": {
  920. "require-dev": {
  921. "phpunit/phpunit": "^4.8.36"
  922. },
  923. "remove": [
  924. "php-coveralls/php-coveralls"
  925. ],
  926. "config": {
  927. "platform": {
  928. "php": "5.4.8"
  929. }
  930. }
  931. }
  932. },
  933. "branch-alias": {
  934. "dev-master": "1.x-dev"
  935. }
  936. },
  937. "autoload": {
  938. "psr-4": {
  939. "Consolidation\\Log\\": "src"
  940. }
  941. },
  942. "notification-url": "https://packagist.org/downloads/",
  943. "license": [
  944. "MIT"
  945. ],
  946. "authors": [
  947. {
  948. "name": "Greg Anderson",
  949. "email": "greg.1.anderson@greenknowe.org"
  950. }
  951. ],
  952. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  953. "time": "2019-01-01T17:30:51+00:00"
  954. },
  955. {
  956. "name": "consolidation/output-formatters",
  957. "version": "3.5.0",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/consolidation/output-formatters.git",
  961. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  966. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "dflydev/dot-access-data": "^1.1.0",
  971. "php": ">=5.4.0",
  972. "symfony/console": "^2.8|^3|^4",
  973. "symfony/finder": "^2.5|^3|^4"
  974. },
  975. "require-dev": {
  976. "g1a/composer-test-scenarios": "^3",
  977. "php-coveralls/php-coveralls": "^1",
  978. "phpunit/phpunit": "^5.7.27",
  979. "squizlabs/php_codesniffer": "^2.7",
  980. "symfony/var-dumper": "^2.8|^3|^4",
  981. "victorjonsson/markdowndocs": "^1.3"
  982. },
  983. "suggest": {
  984. "symfony/var-dumper": "For using the var_dump formatter"
  985. },
  986. "type": "library",
  987. "extra": {
  988. "scenarios": {
  989. "symfony4": {
  990. "require": {
  991. "symfony/console": "^4.0"
  992. },
  993. "require-dev": {
  994. "phpunit/phpunit": "^6"
  995. },
  996. "config": {
  997. "platform": {
  998. "php": "7.1.3"
  999. }
  1000. }
  1001. },
  1002. "symfony3": {
  1003. "require": {
  1004. "symfony/console": "^3.4",
  1005. "symfony/finder": "^3.4",
  1006. "symfony/var-dumper": "^3.4"
  1007. },
  1008. "config": {
  1009. "platform": {
  1010. "php": "5.6.32"
  1011. }
  1012. }
  1013. },
  1014. "symfony2": {
  1015. "require": {
  1016. "symfony/console": "^2.8"
  1017. },
  1018. "require-dev": {
  1019. "phpunit/phpunit": "^4.8.36"
  1020. },
  1021. "remove": [
  1022. "php-coveralls/php-coveralls"
  1023. ],
  1024. "config": {
  1025. "platform": {
  1026. "php": "5.4.8"
  1027. }
  1028. },
  1029. "scenario-options": {
  1030. "create-lockfile": "false"
  1031. }
  1032. }
  1033. },
  1034. "branch-alias": {
  1035. "dev-master": "3.x-dev"
  1036. }
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "Consolidation\\OutputFormatters\\": "src"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "MIT"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Greg Anderson",
  1050. "email": "greg.1.anderson@greenknowe.org"
  1051. }
  1052. ],
  1053. "description": "Format text by applying transformations provided by plug-in formatters.",
  1054. "time": "2019-05-30T23:16:01+00:00"
  1055. },
  1056. {
  1057. "name": "consolidation/robo",
  1058. "version": "1.4.11",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/consolidation/Robo.git",
  1062. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/consolidation/Robo/zipball/5fa1d901776a628167a325baa9db95d8edf13a80",
  1067. "reference": "5fa1d901776a628167a325baa9db95d8edf13a80",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "consolidation/annotated-command": "^2.11.0",
  1072. "consolidation/config": "^1.2",
  1073. "consolidation/log": "~1",
  1074. "consolidation/output-formatters": "^3.1.13",
  1075. "consolidation/self-update": "^1",
  1076. "grasmash/yaml-expander": "^1.3",
  1077. "league/container": "^2.2",
  1078. "php": ">=5.5.0",
  1079. "symfony/console": "^2.8|^3|^4",
  1080. "symfony/event-dispatcher": "^2.5|^3|^4",
  1081. "symfony/filesystem": "^2.5|^3|^4",
  1082. "symfony/finder": "^2.5|^3|^4",
  1083. "symfony/process": "^2.5|^3|^4"
  1084. },
  1085. "replace": {
  1086. "codegyre/robo": "< 1.0"
  1087. },
  1088. "require-dev": {
  1089. "codeception/aspect-mock": "^1|^2.1.1",
  1090. "codeception/base": "^2.3.7",
  1091. "codeception/verify": "^0.3.2",
  1092. "g1a/composer-test-scenarios": "^3",
  1093. "goaop/framework": "~2.1.2",
  1094. "goaop/parser-reflection": "^1.1.0",
  1095. "natxet/cssmin": "3.0.4",
  1096. "nikic/php-parser": "^3.1.5",
  1097. "patchwork/jsqueeze": "~2",
  1098. "pear/archive_tar": "^1.4.4",
  1099. "php-coveralls/php-coveralls": "^1",
  1100. "phpunit/php-code-coverage": "~2|~4",
  1101. "sebastian/comparator": "^1.2.4",
  1102. "squizlabs/php_codesniffer": "^2.8"
  1103. },
  1104. "suggest": {
  1105. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  1106. "natxet/CssMin": "For minifying CSS files in taskMinify",
  1107. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  1108. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  1109. },
  1110. "bin": [
  1111. "robo"
  1112. ],
  1113. "type": "library",
  1114. "extra": {
  1115. "scenarios": {
  1116. "symfony4": {
  1117. "require": {
  1118. "symfony/console": "^4"
  1119. },
  1120. "config": {
  1121. "platform": {
  1122. "php": "7.1.3"
  1123. }
  1124. }
  1125. },
  1126. "symfony2": {
  1127. "require": {
  1128. "symfony/console": "^2.8"
  1129. },
  1130. "remove": [
  1131. "goaop/framework"
  1132. ],
  1133. "config": {
  1134. "platform": {
  1135. "php": "5.5.9"
  1136. }
  1137. },
  1138. "scenario-options": {
  1139. "create-lockfile": "false"
  1140. }
  1141. }
  1142. },
  1143. "branch-alias": {
  1144. "dev-master": "2.x-dev"
  1145. }
  1146. },
  1147. "autoload": {
  1148. "psr-4": {
  1149. "Robo\\": "src"
  1150. }
  1151. },
  1152. "notification-url": "https://packagist.org/downloads/",
  1153. "license": [
  1154. "MIT"
  1155. ],
  1156. "authors": [
  1157. {
  1158. "name": "Davert",
  1159. "email": "davert.php@resend.cc"
  1160. }
  1161. ],
  1162. "description": "Modern task runner",
  1163. "time": "2019-10-29T15:50:02+00:00"
  1164. },
  1165. {
  1166. "name": "consolidation/self-update",
  1167. "version": "1.1.5",
  1168. "source": {
  1169. "type": "git",
  1170. "url": "https://github.com/consolidation/self-update.git",
  1171. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54"
  1172. },
  1173. "dist": {
  1174. "type": "zip",
  1175. "url": "https://api.github.com/repos/consolidation/self-update/zipball/a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1176. "reference": "a1c273b14ce334789825a09d06d4c87c0a02ad54",
  1177. "shasum": ""
  1178. },
  1179. "require": {
  1180. "php": ">=5.5.0",
  1181. "symfony/console": "^2.8|^3|^4",
  1182. "symfony/filesystem": "^2.5|^3|^4"
  1183. },
  1184. "bin": [
  1185. "scripts/release"
  1186. ],
  1187. "type": "library",
  1188. "extra": {
  1189. "branch-alias": {
  1190. "dev-master": "1.x-dev"
  1191. }
  1192. },
  1193. "autoload": {
  1194. "psr-4": {
  1195. "SelfUpdate\\": "src"
  1196. }
  1197. },
  1198. "notification-url": "https://packagist.org/downloads/",
  1199. "license": [
  1200. "MIT"
  1201. ],
  1202. "authors": [
  1203. {
  1204. "name": "Greg Anderson",
  1205. "email": "greg.1.anderson@greenknowe.org"
  1206. },
  1207. {
  1208. "name": "Alexander Menk",
  1209. "email": "menk@mestrona.net"
  1210. }
  1211. ],
  1212. "description": "Provides a self:update command for Symfony Console applications.",
  1213. "time": "2018-10-28T01:52:03+00:00"
  1214. },
  1215. {
  1216. "name": "consolidation/site-alias",
  1217. "version": "3.0.0",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/consolidation/site-alias.git",
  1221. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1226. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  1227. "shasum": ""
  1228. },
  1229. "require": {
  1230. "consolidation/config": "^1.2.1",
  1231. "php": ">=5.5.0"
  1232. },
  1233. "require-dev": {
  1234. "consolidation/robo": "^1.2.3",
  1235. "g1a/composer-test-scenarios": "^3",
  1236. "knplabs/github-api": "^2.7",
  1237. "php-coveralls/php-coveralls": "^1",
  1238. "php-http/guzzle6-adapter": "^1.1",
  1239. "phpunit/phpunit": "^6",
  1240. "squizlabs/php_codesniffer": "^2.8",
  1241. "symfony/console": "^2.8|^3|^4",
  1242. "symfony/yaml": "~2.3|^3"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "scenarios": {
  1247. "phpunit5": {
  1248. "require-dev": {
  1249. "phpunit/phpunit": "^5.7.27"
  1250. },
  1251. "remove": [
  1252. "php-coveralls/php-coveralls"
  1253. ],
  1254. "config": {
  1255. "platform": {
  1256. "php": "5.6.33"
  1257. }
  1258. }
  1259. }
  1260. },
  1261. "branch-alias": {
  1262. "dev-master": "3.x-dev"
  1263. }
  1264. },
  1265. "autoload": {
  1266. "psr-4": {
  1267. "Consolidation\\SiteAlias\\": "src"
  1268. }
  1269. },
  1270. "notification-url": "https://packagist.org/downloads/",
  1271. "license": [
  1272. "MIT"
  1273. ],
  1274. "authors": [
  1275. {
  1276. "name": "Moshe Weitzman",
  1277. "email": "weitzman@tejasa.com"
  1278. },
  1279. {
  1280. "name": "Greg Anderson",
  1281. "email": "greg.1.anderson@greenknowe.org"
  1282. }
  1283. ],
  1284. "description": "Manage alias records for local and remote sites.",
  1285. "time": "2019-03-12T17:31:48+00:00"
  1286. },
  1287. {
  1288. "name": "consolidation/site-process",
  1289. "version": "2.1.0",
  1290. "source": {
  1291. "type": "git",
  1292. "url": "https://github.com/consolidation/site-process.git",
  1293. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1294. },
  1295. "dist": {
  1296. "type": "zip",
  1297. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1298. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1299. "shasum": ""
  1300. },
  1301. "require": {
  1302. "consolidation/config": "^1.2.1",
  1303. "consolidation/site-alias": "^3",
  1304. "php": ">=5.6.0",
  1305. "symfony/process": "^3.4"
  1306. },
  1307. "require-dev": {
  1308. "consolidation/robo": "^1.3",
  1309. "g1a/composer-test-scenarios": "^3",
  1310. "knplabs/github-api": "^2.7",
  1311. "php-coveralls/php-coveralls": "^1",
  1312. "php-http/guzzle6-adapter": "^1.1",
  1313. "phpunit/phpunit": "^6",
  1314. "squizlabs/php_codesniffer": "^2.8"
  1315. },
  1316. "type": "library",
  1317. "extra": {
  1318. "scenarios": {
  1319. "phpunit5": {
  1320. "require-dev": {
  1321. "phpunit/phpunit": "^5.7.27"
  1322. },
  1323. "remove": [
  1324. "php-coveralls/php-coveralls"
  1325. ],
  1326. "config": {
  1327. "platform": {
  1328. "php": "5.6.33"
  1329. }
  1330. }
  1331. }
  1332. },
  1333. "branch-alias": {
  1334. "dev-master": "0.x-dev"
  1335. }
  1336. },
  1337. "autoload": {
  1338. "psr-4": {
  1339. "Consolidation\\SiteProcess\\": "src"
  1340. }
  1341. },
  1342. "notification-url": "https://packagist.org/downloads/",
  1343. "license": [
  1344. "MIT"
  1345. ],
  1346. "authors": [
  1347. {
  1348. "name": "Greg Anderson",
  1349. "email": "greg.1.anderson@greenknowe.org"
  1350. },
  1351. {
  1352. "name": "Moshe Weitzman",
  1353. "email": "weitzman@tejasa.com"
  1354. }
  1355. ],
  1356. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  1357. "time": "2019-09-10T17:56:24+00:00"
  1358. },
  1359. {
  1360. "name": "container-interop/container-interop",
  1361. "version": "1.2.0",
  1362. "source": {
  1363. "type": "git",
  1364. "url": "https://github.com/container-interop/container-interop.git",
  1365. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1366. },
  1367. "dist": {
  1368. "type": "zip",
  1369. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1370. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1371. "shasum": ""
  1372. },
  1373. "require": {
  1374. "psr/container": "^1.0"
  1375. },
  1376. "type": "library",
  1377. "autoload": {
  1378. "psr-4": {
  1379. "Interop\\Container\\": "src/Interop/Container/"
  1380. }
  1381. },
  1382. "notification-url": "https://packagist.org/downloads/",
  1383. "license": [
  1384. "MIT"
  1385. ],
  1386. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1387. "homepage": "https://github.com/container-interop/container-interop",
  1388. "abandoned": "psr/container",
  1389. "time": "2017-02-14T19:40:03+00:00"
  1390. },
  1391. {
  1392. "name": "cweagans/composer-patches",
  1393. "version": "1.6.7",
  1394. "source": {
  1395. "type": "git",
  1396. "url": "https://github.com/cweagans/composer-patches.git",
  1397. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1398. },
  1399. "dist": {
  1400. "type": "zip",
  1401. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1402. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1403. "shasum": ""
  1404. },
  1405. "require": {
  1406. "composer-plugin-api": "^1.0",
  1407. "php": ">=5.3.0"
  1408. },
  1409. "require-dev": {
  1410. "composer/composer": "~1.0",
  1411. "phpunit/phpunit": "~4.6"
  1412. },
  1413. "type": "composer-plugin",
  1414. "extra": {
  1415. "class": "cweagans\\Composer\\Patches"
  1416. },
  1417. "autoload": {
  1418. "psr-4": {
  1419. "cweagans\\Composer\\": "src"
  1420. }
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "BSD-3-Clause"
  1425. ],
  1426. "authors": [
  1427. {
  1428. "name": "Cameron Eagans",
  1429. "email": "me@cweagans.net"
  1430. }
  1431. ],
  1432. "description": "Provides a way to patch Composer packages.",
  1433. "time": "2019-08-29T20:11:49+00:00"
  1434. },
  1435. {
  1436. "name": "dflydev/dot-access-configuration",
  1437. "version": "v1.0.3",
  1438. "source": {
  1439. "type": "git",
  1440. "url": "https://github.com/dflydev/dflydev-dot-access-configuration.git",
  1441. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49"
  1442. },
  1443. "dist": {
  1444. "type": "zip",
  1445. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-configuration/zipball/2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1446. "reference": "2e6eb0c8b8830b26bb23defcfc38d4276508fc49",
  1447. "shasum": ""
  1448. },
  1449. "require": {
  1450. "dflydev/dot-access-data": "1.*",
  1451. "dflydev/placeholder-resolver": "1.*",
  1452. "php": ">=5.3.2"
  1453. },
  1454. "require-dev": {
  1455. "symfony/yaml": "~2.1"
  1456. },
  1457. "suggest": {
  1458. "symfony/yaml": "Required for using the YAML Configuration Builders"
  1459. },
  1460. "type": "library",
  1461. "extra": {
  1462. "branch-alias": {
  1463. "dev-master": "1.0-dev"
  1464. }
  1465. },
  1466. "autoload": {
  1467. "psr-0": {
  1468. "Dflydev\\DotAccessConfiguration": "src"
  1469. }
  1470. },
  1471. "notification-url": "https://packagist.org/downloads/",
  1472. "license": [
  1473. "MIT"
  1474. ],
  1475. "authors": [
  1476. {
  1477. "name": "Dragonfly Development Inc.",
  1478. "email": "info@dflydev.com",
  1479. "homepage": "http://dflydev.com"
  1480. },
  1481. {
  1482. "name": "Beau Simensen",
  1483. "email": "beau@dflydev.com",
  1484. "homepage": "http://beausimensen.com"
  1485. }
  1486. ],
  1487. "description": "Given a deep data structure representing a configuration, access configuration by dot notation.",
  1488. "homepage": "https://github.com/dflydev/dflydev-dot-access-configuration",
  1489. "keywords": [
  1490. "config",
  1491. "configuration"
  1492. ],
  1493. "time": "2018-09-08T23:00:17+00:00"
  1494. },
  1495. {
  1496. "name": "dflydev/dot-access-data",
  1497. "version": "v1.1.0",
  1498. "source": {
  1499. "type": "git",
  1500. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1501. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1502. },
  1503. "dist": {
  1504. "type": "zip",
  1505. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1506. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1507. "shasum": ""
  1508. },
  1509. "require": {
  1510. "php": ">=5.3.2"
  1511. },
  1512. "type": "library",
  1513. "extra": {
  1514. "branch-alias": {
  1515. "dev-master": "1.0-dev"
  1516. }
  1517. },
  1518. "autoload": {
  1519. "psr-0": {
  1520. "Dflydev\\DotAccessData": "src"
  1521. }
  1522. },
  1523. "notification-url": "https://packagist.org/downloads/",
  1524. "license": [
  1525. "MIT"
  1526. ],
  1527. "authors": [
  1528. {
  1529. "name": "Dragonfly Development Inc.",
  1530. "email": "info@dflydev.com",
  1531. "homepage": "http://dflydev.com"
  1532. },
  1533. {
  1534. "name": "Beau Simensen",
  1535. "email": "beau@dflydev.com",
  1536. "homepage": "http://beausimensen.com"
  1537. },
  1538. {
  1539. "name": "Carlos Frutos",
  1540. "email": "carlos@kiwing.it",
  1541. "homepage": "https://github.com/cfrutos"
  1542. }
  1543. ],
  1544. "description": "Given a deep data structure, access data by dot notation.",
  1545. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1546. "keywords": [
  1547. "access",
  1548. "data",
  1549. "dot",
  1550. "notation"
  1551. ],
  1552. "time": "2017-01-20T21:14:22+00:00"
  1553. },
  1554. {
  1555. "name": "dflydev/placeholder-resolver",
  1556. "version": "v1.0.2",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/dflydev/dflydev-placeholder-resolver.git",
  1560. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/dflydev/dflydev-placeholder-resolver/zipball/c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1565. "reference": "c498d0cae91b1bb36cc7d60906dab8e62bb7c356",
  1566. "shasum": ""
  1567. },
  1568. "require": {
  1569. "php": ">=5.3.2"
  1570. },
  1571. "type": "library",
  1572. "extra": {
  1573. "branch-alias": {
  1574. "dev-master": "1.0-dev"
  1575. }
  1576. },
  1577. "autoload": {
  1578. "psr-0": {
  1579. "Dflydev\\PlaceholderResolver": "src"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "authors": [
  1587. {
  1588. "name": "Dragonfly Development Inc.",
  1589. "email": "info@dflydev.com",
  1590. "homepage": "http://dflydev.com"
  1591. },
  1592. {
  1593. "name": "Beau Simensen",
  1594. "email": "beau@dflydev.com",
  1595. "homepage": "http://beausimensen.com"
  1596. }
  1597. ],
  1598. "description": "Given a data source representing key => value pairs, resolve placeholders like ${foo.bar} to the value associated with the 'foo.bar' key in the data source.",
  1599. "homepage": "https://github.com/dflydev/dflydev-placeholder-resolver",
  1600. "keywords": [
  1601. "placeholder",
  1602. "resolver"
  1603. ],
  1604. "time": "2012-10-28T21:08:28+00:00"
  1605. },
  1606. {
  1607. "name": "dnoegel/php-xdg-base-dir",
  1608. "version": "0.1",
  1609. "source": {
  1610. "type": "git",
  1611. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1612. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a"
  1613. },
  1614. "dist": {
  1615. "type": "zip",
  1616. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a",
  1617. "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a",
  1618. "shasum": ""
  1619. },
  1620. "require": {
  1621. "php": ">=5.3.2"
  1622. },
  1623. "require-dev": {
  1624. "phpunit/phpunit": "@stable"
  1625. },
  1626. "type": "project",
  1627. "autoload": {
  1628. "psr-4": {
  1629. "XdgBaseDir\\": "src/"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "description": "implementation of xdg base directory specification for php",
  1637. "time": "2014-10-24T07:27:01+00:00"
  1638. },
  1639. {
  1640. "name": "doctrine/annotations",
  1641. "version": "v1.4.0",
  1642. "source": {
  1643. "type": "git",
  1644. "url": "https://github.com/doctrine/annotations.git",
  1645. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1646. },
  1647. "dist": {
  1648. "type": "zip",
  1649. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1650. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1651. "shasum": ""
  1652. },
  1653. "require": {
  1654. "doctrine/lexer": "1.*",
  1655. "php": "^5.6 || ^7.0"
  1656. },
  1657. "require-dev": {
  1658. "doctrine/cache": "1.*",
  1659. "phpunit/phpunit": "^5.7"
  1660. },
  1661. "type": "library",
  1662. "extra": {
  1663. "branch-alias": {
  1664. "dev-master": "1.4.x-dev"
  1665. }
  1666. },
  1667. "autoload": {
  1668. "psr-4": {
  1669. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1670. }
  1671. },
  1672. "notification-url": "https://packagist.org/downloads/",
  1673. "license": [
  1674. "MIT"
  1675. ],
  1676. "authors": [
  1677. {
  1678. "name": "Roman Borschel",
  1679. "email": "roman@code-factory.org"
  1680. },
  1681. {
  1682. "name": "Benjamin Eberlei",
  1683. "email": "kontakt@beberlei.de"
  1684. },
  1685. {
  1686. "name": "Guilherme Blanco",
  1687. "email": "guilhermeblanco@gmail.com"
  1688. },
  1689. {
  1690. "name": "Jonathan Wage",
  1691. "email": "jonwage@gmail.com"
  1692. },
  1693. {
  1694. "name": "Johannes Schmitt",
  1695. "email": "schmittjoh@gmail.com"
  1696. }
  1697. ],
  1698. "description": "Docblock Annotations Parser",
  1699. "homepage": "http://www.doctrine-project.org",
  1700. "keywords": [
  1701. "annotations",
  1702. "docblock",
  1703. "parser"
  1704. ],
  1705. "time": "2017-02-24T16:22:25+00:00"
  1706. },
  1707. {
  1708. "name": "doctrine/cache",
  1709. "version": "v1.6.2",
  1710. "source": {
  1711. "type": "git",
  1712. "url": "https://github.com/doctrine/cache.git",
  1713. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1714. },
  1715. "dist": {
  1716. "type": "zip",
  1717. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1718. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1719. "shasum": ""
  1720. },
  1721. "require": {
  1722. "php": "~5.5|~7.0"
  1723. },
  1724. "conflict": {
  1725. "doctrine/common": ">2.2,<2.4"
  1726. },
  1727. "require-dev": {
  1728. "phpunit/phpunit": "~4.8|~5.0",
  1729. "predis/predis": "~1.0",
  1730. "satooshi/php-coveralls": "~0.6"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-master": "1.6.x-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Roman Borschel",
  1750. "email": "roman@code-factory.org"
  1751. },
  1752. {
  1753. "name": "Benjamin Eberlei",
  1754. "email": "kontakt@beberlei.de"
  1755. },
  1756. {
  1757. "name": "Guilherme Blanco",
  1758. "email": "guilhermeblanco@gmail.com"
  1759. },
  1760. {
  1761. "name": "Jonathan Wage",
  1762. "email": "jonwage@gmail.com"
  1763. },
  1764. {
  1765. "name": "Johannes Schmitt",
  1766. "email": "schmittjoh@gmail.com"
  1767. }
  1768. ],
  1769. "description": "Caching library offering an object-oriented API for many cache backends",
  1770. "homepage": "http://www.doctrine-project.org",
  1771. "keywords": [
  1772. "cache",
  1773. "caching"
  1774. ],
  1775. "time": "2017-07-22T12:49:21+00:00"
  1776. },
  1777. {
  1778. "name": "doctrine/collections",
  1779. "version": "v1.4.0",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/doctrine/collections.git",
  1783. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1788. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1789. "shasum": ""
  1790. },
  1791. "require": {
  1792. "php": "^5.6 || ^7.0"
  1793. },
  1794. "require-dev": {
  1795. "doctrine/coding-standard": "~0.1@dev",
  1796. "phpunit/phpunit": "^5.7"
  1797. },
  1798. "type": "library",
  1799. "extra": {
  1800. "branch-alias": {
  1801. "dev-master": "1.3.x-dev"
  1802. }
  1803. },
  1804. "autoload": {
  1805. "psr-0": {
  1806. "Doctrine\\Common\\Collections\\": "lib/"
  1807. }
  1808. },
  1809. "notification-url": "https://packagist.org/downloads/",
  1810. "license": [
  1811. "MIT"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Roman Borschel",
  1816. "email": "roman@code-factory.org"
  1817. },
  1818. {
  1819. "name": "Benjamin Eberlei",
  1820. "email": "kontakt@beberlei.de"
  1821. },
  1822. {
  1823. "name": "Guilherme Blanco",
  1824. "email": "guilhermeblanco@gmail.com"
  1825. },
  1826. {
  1827. "name": "Jonathan Wage",
  1828. "email": "jonwage@gmail.com"
  1829. },
  1830. {
  1831. "name": "Johannes Schmitt",
  1832. "email": "schmittjoh@gmail.com"
  1833. }
  1834. ],
  1835. "description": "Collections Abstraction library",
  1836. "homepage": "http://www.doctrine-project.org",
  1837. "keywords": [
  1838. "array",
  1839. "collections",
  1840. "iterator"
  1841. ],
  1842. "time": "2017-01-03T10:49:41+00:00"
  1843. },
  1844. {
  1845. "name": "doctrine/common",
  1846. "version": "v2.7.3",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/doctrine/common.git",
  1850. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1855. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1856. "shasum": ""
  1857. },
  1858. "require": {
  1859. "doctrine/annotations": "1.*",
  1860. "doctrine/cache": "1.*",
  1861. "doctrine/collections": "1.*",
  1862. "doctrine/inflector": "1.*",
  1863. "doctrine/lexer": "1.*",
  1864. "php": "~5.6|~7.0"
  1865. },
  1866. "require-dev": {
  1867. "phpunit/phpunit": "^5.4.6"
  1868. },
  1869. "type": "library",
  1870. "extra": {
  1871. "branch-alias": {
  1872. "dev-master": "2.7.x-dev"
  1873. }
  1874. },
  1875. "autoload": {
  1876. "psr-4": {
  1877. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1878. }
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Roman Borschel",
  1887. "email": "roman@code-factory.org"
  1888. },
  1889. {
  1890. "name": "Benjamin Eberlei",
  1891. "email": "kontakt@beberlei.de"
  1892. },
  1893. {
  1894. "name": "Guilherme Blanco",
  1895. "email": "guilhermeblanco@gmail.com"
  1896. },
  1897. {
  1898. "name": "Jonathan Wage",
  1899. "email": "jonwage@gmail.com"
  1900. },
  1901. {
  1902. "name": "Johannes Schmitt",
  1903. "email": "schmittjoh@gmail.com"
  1904. }
  1905. ],
  1906. "description": "Common Library for Doctrine projects",
  1907. "homepage": "http://www.doctrine-project.org",
  1908. "keywords": [
  1909. "annotations",
  1910. "collections",
  1911. "eventmanager",
  1912. "persistence",
  1913. "spl"
  1914. ],
  1915. "time": "2017-07-22T08:35:12+00:00"
  1916. },
  1917. {
  1918. "name": "doctrine/inflector",
  1919. "version": "v1.2.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/doctrine/inflector.git",
  1923. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1928. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1929. "shasum": ""
  1930. },
  1931. "require": {
  1932. "php": "^7.0"
  1933. },
  1934. "require-dev": {
  1935. "phpunit/phpunit": "^6.2"
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "1.2.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Roman Borschel",
  1955. "email": "roman@code-factory.org"
  1956. },
  1957. {
  1958. "name": "Benjamin Eberlei",
  1959. "email": "kontakt@beberlei.de"
  1960. },
  1961. {
  1962. "name": "Guilherme Blanco",
  1963. "email": "guilhermeblanco@gmail.com"
  1964. },
  1965. {
  1966. "name": "Jonathan Wage",
  1967. "email": "jonwage@gmail.com"
  1968. },
  1969. {
  1970. "name": "Johannes Schmitt",
  1971. "email": "schmittjoh@gmail.com"
  1972. }
  1973. ],
  1974. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1975. "homepage": "http://www.doctrine-project.org",
  1976. "keywords": [
  1977. "inflection",
  1978. "pluralize",
  1979. "singularize",
  1980. "string"
  1981. ],
  1982. "time": "2017-07-22T12:18:28+00:00"
  1983. },
  1984. {
  1985. "name": "doctrine/instantiator",
  1986. "version": "1.0.5",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/doctrine/instantiator.git",
  1990. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
  1995. "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "php": ">=5.3,<8.0-DEV"
  2000. },
  2001. "require-dev": {
  2002. "athletic/athletic": "~0.1.8",
  2003. "ext-pdo": "*",
  2004. "ext-phar": "*",
  2005. "phpunit/phpunit": "~4.0",
  2006. "squizlabs/php_codesniffer": "~2.0"
  2007. },
  2008. "type": "library",
  2009. "extra": {
  2010. "branch-alias": {
  2011. "dev-master": "1.0.x-dev"
  2012. }
  2013. },
  2014. "autoload": {
  2015. "psr-4": {
  2016. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  2017. }
  2018. },
  2019. "notification-url": "https://packagist.org/downloads/",
  2020. "license": [
  2021. "MIT"
  2022. ],
  2023. "authors": [
  2024. {
  2025. "name": "Marco Pivetta",
  2026. "email": "ocramius@gmail.com",
  2027. "homepage": "http://ocramius.github.com/"
  2028. }
  2029. ],
  2030. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  2031. "homepage": "https://github.com/doctrine/instantiator",
  2032. "keywords": [
  2033. "constructor",
  2034. "instantiate"
  2035. ],
  2036. "time": "2015-06-14T21:17:01+00:00"
  2037. },
  2038. {
  2039. "name": "doctrine/lexer",
  2040. "version": "1.0.2",
  2041. "source": {
  2042. "type": "git",
  2043. "url": "https://github.com/doctrine/lexer.git",
  2044. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  2045. },
  2046. "dist": {
  2047. "type": "zip",
  2048. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2049. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  2050. "shasum": ""
  2051. },
  2052. "require": {
  2053. "php": ">=5.3.2"
  2054. },
  2055. "require-dev": {
  2056. "phpunit/phpunit": "^4.5"
  2057. },
  2058. "type": "library",
  2059. "extra": {
  2060. "branch-alias": {
  2061. "dev-master": "1.0.x-dev"
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "authors": [
  2074. {
  2075. "name": "Roman Borschel",
  2076. "email": "roman@code-factory.org"
  2077. },
  2078. {
  2079. "name": "Guilherme Blanco",
  2080. "email": "guilhermeblanco@gmail.com"
  2081. },
  2082. {
  2083. "name": "Johannes Schmitt",
  2084. "email": "schmittjoh@gmail.com"
  2085. }
  2086. ],
  2087. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  2088. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  2089. "keywords": [
  2090. "annotations",
  2091. "docblock",
  2092. "lexer",
  2093. "parser",
  2094. "php"
  2095. ],
  2096. "time": "2019-06-08T11:03:04+00:00"
  2097. },
  2098. {
  2099. "name": "drupal-composer/drupal-scaffold",
  2100. "version": "2.6.1",
  2101. "source": {
  2102. "type": "git",
  2103. "url": "https://github.com/drupal-composer/drupal-scaffold.git",
  2104. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8"
  2105. },
  2106. "dist": {
  2107. "type": "zip",
  2108. "url": "https://api.github.com/repos/drupal-composer/drupal-scaffold/zipball/13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2109. "reference": "13c1ffc7dd4925cb03707759128b85c0cd6276f8",
  2110. "shasum": ""
  2111. },
  2112. "require": {
  2113. "composer-plugin-api": "^1.0.0",
  2114. "composer/semver": "^1.4",
  2115. "php": "^5.5.9|>=7.0.8"
  2116. },
  2117. "require-dev": {
  2118. "composer/composer": "dev-master",
  2119. "g1a/composer-test-scenarios": "^2.1.0",
  2120. "phpunit/phpunit": "^6",
  2121. "squizlabs/php_codesniffer": "^2.8"
  2122. },
  2123. "type": "composer-plugin",
  2124. "extra": {
  2125. "class": "DrupalComposer\\DrupalScaffold\\Plugin",
  2126. "branch-alias": {
  2127. "dev-master": "2.0.x-dev"
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "DrupalComposer\\DrupalScaffold\\": "src/"
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "GPL-2.0-or-later"
  2138. ],
  2139. "description": "Composer Plugin for updating the Drupal scaffold files when using drupal/core",
  2140. "time": "2019-03-30T10:41:38+00:00"
  2141. },
  2142. {
  2143. "name": "drupal/addtoany",
  2144. "version": "1.12.0",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://git.drupalcode.org/project/addtoany.git",
  2148. "reference": "8.x-1.12"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.12.zip",
  2153. "reference": "8.x-1.12",
  2154. "shasum": "f66b3cb0a95b500e4802e8ff9c29af04554327d8"
  2155. },
  2156. "require": {
  2157. "drupal/core": "*"
  2158. },
  2159. "type": "drupal-module",
  2160. "extra": {
  2161. "branch-alias": {
  2162. "dev-1.x": "1.x-dev"
  2163. },
  2164. "drupal": {
  2165. "version": "8.x-1.12",
  2166. "datestamp": "1554702781",
  2167. "security-coverage": {
  2168. "status": "covered",
  2169. "message": "Covered by Drupal's security advisory policy"
  2170. }
  2171. }
  2172. },
  2173. "notification-url": "https://packages.drupal.org/8/downloads",
  2174. "license": [
  2175. "GPL-2.0-or-later"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "AddToAny",
  2180. "homepage": "https://www.drupal.org/user/2640913"
  2181. },
  2182. {
  2183. "name": "micropat",
  2184. "homepage": "https://www.drupal.org/user/260224"
  2185. }
  2186. ],
  2187. "description": "Share buttons by AddToAny, including the AddToAny universal sharing button, Facebook, Twitter, Google+, Pinterest, and over 100 more on the <a href=\"https://www.addtoany.com/\" target=\"_blank\">AddToAny</a> platform.",
  2188. "homepage": "https://www.drupal.org/project/addtoany",
  2189. "support": {
  2190. "source": "https://git.drupalcode.org/project/addtoany"
  2191. }
  2192. },
  2193. {
  2194. "name": "drupal/admin_toolbar",
  2195. "version": "2.0.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  2199. "reference": "8.x-2.0"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.0.zip",
  2204. "reference": "8.x-2.0",
  2205. "shasum": "568de63dbaa8046a82d327dbd0b892ab79fb87aa"
  2206. },
  2207. "require": {
  2208. "drupal/core": "*"
  2209. },
  2210. "type": "drupal-module",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-2.x": "2.x-dev"
  2214. },
  2215. "drupal": {
  2216. "version": "8.x-2.0",
  2217. "datestamp": "1572370984",
  2218. "security-coverage": {
  2219. "status": "covered",
  2220. "message": "Covered by Drupal's security advisory policy"
  2221. }
  2222. }
  2223. },
  2224. "notification-url": "https://packages.drupal.org/8/downloads",
  2225. "license": [
  2226. "GPL-2.0+"
  2227. ],
  2228. "authors": [
  2229. {
  2230. "name": "Wilfrid Roze (eme)",
  2231. "homepage": "https://www.drupal.org/u/eme",
  2232. "role": "Maintainer"
  2233. },
  2234. {
  2235. "name": "Romain Jarraud (romainj)",
  2236. "homepage": "https://www.drupal.org/u/romainj",
  2237. "role": "Maintainer"
  2238. },
  2239. {
  2240. "name": "Adrian Cid Almaguer (adriancid)",
  2241. "homepage": "https://www.drupal.org/u/adriancid",
  2242. "email": "adriancid@gmail.com",
  2243. "role": "Maintainer"
  2244. },
  2245. {
  2246. "name": "Mohamed Anis Taktak (matio89)",
  2247. "homepage": "https://www.drupal.org/u/matio89",
  2248. "role": "Maintainer"
  2249. },
  2250. {
  2251. "name": "fethi.krout",
  2252. "homepage": "https://www.drupal.org/user/3206765"
  2253. },
  2254. {
  2255. "name": "matio89",
  2256. "homepage": "https://www.drupal.org/user/2320090"
  2257. },
  2258. {
  2259. "name": "romainj",
  2260. "homepage": "https://www.drupal.org/user/370706"
  2261. }
  2262. ],
  2263. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  2264. "homepage": "http://drupal.org/project/admin_toolbar",
  2265. "keywords": [
  2266. "Drupal",
  2267. "Toolbar"
  2268. ],
  2269. "support": {
  2270. "source": "http://cgit.drupalcode.org/admin_toolbar",
  2271. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  2272. }
  2273. },
  2274. {
  2275. "name": "drupal/adminimal_theme",
  2276. "version": "1.5.0",
  2277. "source": {
  2278. "type": "git",
  2279. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  2280. "reference": "8.x-1.5"
  2281. },
  2282. "dist": {
  2283. "type": "zip",
  2284. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.5.zip",
  2285. "reference": "8.x-1.5",
  2286. "shasum": "fb4457015d743faafecaa0776d2bebf2829a6738"
  2287. },
  2288. "require": {
  2289. "drupal/core": "~8.0"
  2290. },
  2291. "type": "drupal-theme",
  2292. "extra": {
  2293. "branch-alias": {
  2294. "dev-1.x": "1.x-dev"
  2295. },
  2296. "drupal": {
  2297. "version": "8.x-1.5",
  2298. "datestamp": "1558584484",
  2299. "security-coverage": {
  2300. "status": "covered",
  2301. "message": "Covered by Drupal's security advisory policy"
  2302. }
  2303. }
  2304. },
  2305. "notification-url": "https://packages.drupal.org/8/downloads",
  2306. "license": [
  2307. "GPL-2.0+"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "ANDiTKO",
  2312. "homepage": "https://www.drupal.org/user/1428124"
  2313. },
  2314. {
  2315. "name": "andrey.troeglazov",
  2316. "homepage": "https://www.drupal.org/user/3145389"
  2317. },
  2318. {
  2319. "name": "realityloop",
  2320. "homepage": "https://www.drupal.org/user/139189"
  2321. }
  2322. ],
  2323. "description": "Drupal administration theme with modern minimalist design.",
  2324. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2325. "support": {
  2326. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2327. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2328. }
  2329. },
  2330. {
  2331. "name": "drupal/audiofield",
  2332. "version": "1.9.0",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://git.drupalcode.org/project/audiofield.git",
  2336. "reference": "8.x-1.9"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  2341. "reference": "8.x-1.9",
  2342. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  2343. },
  2344. "require": {
  2345. "drupal/core": "~8.0"
  2346. },
  2347. "type": "drupal-module",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-1.x": "1.x-dev"
  2351. },
  2352. "drupal": {
  2353. "version": "8.x-1.9",
  2354. "datestamp": "1553712781",
  2355. "security-coverage": {
  2356. "status": "covered",
  2357. "message": "Covered by Drupal's security advisory policy"
  2358. }
  2359. },
  2360. "drush": {
  2361. "services": {
  2362. "drush.services.yml": "^9"
  2363. }
  2364. }
  2365. },
  2366. "notification-url": "https://packages.drupal.org/8/downloads",
  2367. "license": [
  2368. "GPL-2.0+"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Daniel Moberly",
  2373. "homepage": "https://www.drupal.org/u/danielmoberly",
  2374. "role": "Maintainer"
  2375. },
  2376. {
  2377. "name": "josipsaric",
  2378. "homepage": "https://www.drupal.org/user/3063287"
  2379. },
  2380. {
  2381. "name": "tamerzg",
  2382. "homepage": "https://www.drupal.org/user/464564"
  2383. }
  2384. ],
  2385. "description": "AudioField Module",
  2386. "homepage": "https://www.drupal.org/project/audiofield",
  2387. "support": {
  2388. "source": "https://git.drupalcode.org/project/audiofield",
  2389. "issues": "https://www.drupal.org/project/issues/audiofield"
  2390. }
  2391. },
  2392. {
  2393. "name": "drupal/autologout",
  2394. "version": "1.0.0",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://git.drupalcode.org/project/autologout.git",
  2398. "reference": "8.x-1.0"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.0.zip",
  2403. "reference": "8.x-1.0",
  2404. "shasum": "0a5f67d4393b0acdf8522b1b1a5c9eb40bb05d93"
  2405. },
  2406. "require": {
  2407. "drupal/core": "~8.0"
  2408. },
  2409. "type": "drupal-module",
  2410. "extra": {
  2411. "branch-alias": {
  2412. "dev-1.x": "1.x-dev"
  2413. },
  2414. "drupal": {
  2415. "version": "8.x-1.0",
  2416. "datestamp": "1494237185",
  2417. "security-coverage": {
  2418. "status": "covered",
  2419. "message": "Covered by Drupal's security advisory policy"
  2420. }
  2421. }
  2422. },
  2423. "notification-url": "https://packages.drupal.org/8/downloads",
  2424. "license": [
  2425. "GPL-2.0+"
  2426. ],
  2427. "authors": [
  2428. {
  2429. "name": "AjK",
  2430. "homepage": "https://www.drupal.org/user/39030"
  2431. },
  2432. {
  2433. "name": "AjitS",
  2434. "homepage": "https://www.drupal.org/user/981944"
  2435. },
  2436. {
  2437. "name": "boshtian",
  2438. "homepage": "https://www.drupal.org/user/1773456"
  2439. },
  2440. {
  2441. "name": "dandrews",
  2442. "homepage": "https://www.drupal.org/user/2014490"
  2443. },
  2444. {
  2445. "name": "darksnow",
  2446. "homepage": "https://www.drupal.org/user/391915"
  2447. },
  2448. {
  2449. "name": "johnennew",
  2450. "homepage": "https://www.drupal.org/user/1150042"
  2451. },
  2452. {
  2453. "name": "jrglasgow",
  2454. "homepage": "https://www.drupal.org/user/36590"
  2455. },
  2456. {
  2457. "name": "kmasood",
  2458. "homepage": "https://www.drupal.org/user/1262860"
  2459. },
  2460. {
  2461. "name": "levelos",
  2462. "homepage": "https://www.drupal.org/user/54135"
  2463. },
  2464. {
  2465. "name": "prabeen.giri",
  2466. "homepage": "https://www.drupal.org/user/913078"
  2467. },
  2468. {
  2469. "name": "str8",
  2470. "homepage": "https://www.drupal.org/user/2865063"
  2471. }
  2472. ],
  2473. "description": "Adds automated timed logout.",
  2474. "homepage": "http://drupal.org/project/autologout",
  2475. "support": {
  2476. "source": "https://git.drupalcode.org/project/autologout"
  2477. }
  2478. },
  2479. {
  2480. "name": "drupal/basic",
  2481. "version": "1.3.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://git.drupalcode.org/project/basic.git",
  2485. "reference": "8.x-1.3"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://ftp.drupal.org/files/projects/basic-8.x-1.3.zip",
  2490. "reference": "8.x-1.3",
  2491. "shasum": "d42e75327d54ae38cf988ebe77f995b44fbc45f7"
  2492. },
  2493. "require": {
  2494. "drupal/core": "~8.0"
  2495. },
  2496. "type": "drupal-theme",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-1.x": "1.x-dev"
  2500. },
  2501. "drupal": {
  2502. "version": "8.x-1.3",
  2503. "datestamp": "1508096944",
  2504. "security-coverage": {
  2505. "status": "covered",
  2506. "message": "Covered by Drupal's security advisory policy"
  2507. }
  2508. }
  2509. },
  2510. "notification-url": "https://packages.drupal.org/8/downloads",
  2511. "license": [
  2512. "GPL-2.0+"
  2513. ],
  2514. "authors": [
  2515. {
  2516. "name": "Steve Krueger",
  2517. "homepage": "http://thejibe.com",
  2518. "email": "steve@thejibe.com",
  2519. "role": "Maintainer"
  2520. },
  2521. {
  2522. "name": "Joël Pittet",
  2523. "homepage": "https://www.drupal.org/u/joelpittet",
  2524. "email": "joel@pittet.ca",
  2525. "role": "Maintainer"
  2526. },
  2527. {
  2528. "name": "Leah Wagner",
  2529. "homepage": "http://thejibe.com",
  2530. "email": "leah@thejibe.com",
  2531. "role": "Maintainer"
  2532. },
  2533. {
  2534. "name": "Catherine Winters",
  2535. "homepage": "http://www.catherinewinters.com",
  2536. "email": "catherine@catherinewinters.com",
  2537. "role": "Maintainer"
  2538. },
  2539. {
  2540. "name": "Johannes Schmidt",
  2541. "homepage": "http://2tabs.com",
  2542. "email": "mail@2tabs.com",
  2543. "role": "Maintainer"
  2544. },
  2545. {
  2546. "name": "johannez",
  2547. "homepage": "https://www.drupal.org/user/670988"
  2548. },
  2549. {
  2550. "name": "leahtard",
  2551. "homepage": "https://www.drupal.org/user/683812"
  2552. }
  2553. ],
  2554. "description": "HTML5, SASS, Responsive grid starter theme.",
  2555. "homepage": "http://drupal.org/project/basic",
  2556. "support": {
  2557. "source": "http://cgit.drupalcode.org/basic",
  2558. "issues": "https://www.drupal.org/project/issues/basic",
  2559. "irc": "irc://irc.freenode.org/drupal-contribute"
  2560. }
  2561. },
  2562. {
  2563. "name": "drupal/better_messages",
  2564. "version": "1.0.0-alpha2",
  2565. "source": {
  2566. "type": "git",
  2567. "url": "https://git.drupalcode.org/project/better_messages.git",
  2568. "reference": "8.x-1.0-alpha2"
  2569. },
  2570. "dist": {
  2571. "type": "zip",
  2572. "url": "https://ftp.drupal.org/files/projects/better_messages-8.x-1.0-alpha2.zip",
  2573. "reference": "8.x-1.0-alpha2",
  2574. "shasum": "ca09231502d5e0d8a5c0d16f9efc5430091b8a38"
  2575. },
  2576. "require": {
  2577. "drupal/core": "~8.0"
  2578. },
  2579. "type": "drupal-module",
  2580. "extra": {
  2581. "branch-alias": {
  2582. "dev-1.x": "1.x-dev"
  2583. },
  2584. "drupal": {
  2585. "version": "8.x-1.0-alpha2",
  2586. "datestamp": "1517663880",
  2587. "security-coverage": {
  2588. "status": "not-covered",
  2589. "message": "Alpha releases are not covered by Drupal security advisories."
  2590. }
  2591. }
  2592. },
  2593. "notification-url": "https://packages.drupal.org/8/downloads",
  2594. "license": [
  2595. "GPL-2.0-or-later"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "Mohammed J. Razem",
  2600. "homepage": "https://www.drupal.org/user/255384"
  2601. },
  2602. {
  2603. "name": "bucefal91",
  2604. "homepage": "https://www.drupal.org/user/504128"
  2605. },
  2606. {
  2607. "name": "le72",
  2608. "homepage": "https://www.drupal.org/user/1866896"
  2609. }
  2610. ],
  2611. "description": "Better Messages module for Drupal 8.",
  2612. "homepage": "https://www.drupal.org/project/better_messages",
  2613. "support": {
  2614. "source": "https://git.drupalcode.org/project/better_messages"
  2615. }
  2616. },
  2617. {
  2618. "name": "drupal/bulkdelete",
  2619. "version": "dev-1.x",
  2620. "source": {
  2621. "type": "git",
  2622. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2623. "reference": "22e6ff410cf345609e83605d086cf7885bf4e865"
  2624. },
  2625. "require": {
  2626. "drupal/core": "~8.0"
  2627. },
  2628. "type": "drupal-module",
  2629. "extra": {
  2630. "branch-alias": {
  2631. "dev-1.x": "1.x-dev"
  2632. },
  2633. "drupal": {
  2634. "version": "8.x-1.x-dev",
  2635. "datestamp": "1495565583",
  2636. "security-coverage": {
  2637. "status": "not-covered",
  2638. "message": "Dev releases are not covered by Drupal security advisories."
  2639. }
  2640. }
  2641. },
  2642. "notification-url": "https://packages.drupal.org/8/downloads",
  2643. "license": [
  2644. "GPL-2.0-or-later"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "Kars-T",
  2649. "homepage": "https://www.drupal.org/user/224499"
  2650. },
  2651. {
  2652. "name": "Rahul Seth",
  2653. "homepage": "https://www.drupal.org/user/2694359"
  2654. },
  2655. {
  2656. "name": "adriancid",
  2657. "homepage": "https://www.drupal.org/user/1962106"
  2658. },
  2659. {
  2660. "name": "robertDouglass",
  2661. "homepage": "https://www.drupal.org/user/5449"
  2662. }
  2663. ],
  2664. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2665. "homepage": "https://www.drupal.org/project/bulkdelete",
  2666. "support": {
  2667. "source": "https://git.drupalcode.org/project/bulkdelete"
  2668. },
  2669. "time": "2019-09-27T12:11:08+00:00"
  2670. },
  2671. {
  2672. "name": "drupal/coder",
  2673. "version": "8.3.6",
  2674. "source": {
  2675. "type": "git",
  2676. "url": "https://git.drupalcode.org/project/coder.git",
  2677. "reference": "4337ddf58d28dbdee4e1367bf71ee13393ab9820"
  2678. },
  2679. "require": {
  2680. "ext-mbstring": "*",
  2681. "php": ">=5.5.9",
  2682. "squizlabs/php_codesniffer": "^3.4.1",
  2683. "symfony/yaml": ">=2.0.5"
  2684. },
  2685. "require-dev": {
  2686. "phpunit/phpunit": ">=3.7 <6"
  2687. },
  2688. "type": "phpcodesniffer-standard",
  2689. "autoload": {
  2690. "psr-0": {
  2691. "Drupal\\": "coder_sniffer/Drupal/",
  2692. "DrupalPractice\\": "coder_sniffer/DrupalPractice/"
  2693. }
  2694. },
  2695. "notification-url": "https://packagist.org/downloads/",
  2696. "license": [
  2697. "GPL-2.0+"
  2698. ],
  2699. "description": "Coder is a library to review Drupal code.",
  2700. "homepage": "https://www.drupal.org/project/coder",
  2701. "keywords": [
  2702. "code review",
  2703. "phpcs",
  2704. "standards"
  2705. ],
  2706. "time": "2019-08-09T09:27:26+00:00"
  2707. },
  2708. {
  2709. "name": "drupal/color_field",
  2710. "version": "2.0.0",
  2711. "source": {
  2712. "type": "git",
  2713. "url": "https://git.drupalcode.org/project/color_field.git",
  2714. "reference": "8.x-2.0"
  2715. },
  2716. "dist": {
  2717. "type": "zip",
  2718. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.0.zip",
  2719. "reference": "8.x-2.0",
  2720. "shasum": "27c510d258e409e1d029d69cf7747e96c1087df6"
  2721. },
  2722. "require": {
  2723. "drupal/core": "*"
  2724. },
  2725. "require-dev": {
  2726. "drupal/token": "~1.3"
  2727. },
  2728. "suggest": {
  2729. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2730. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2731. },
  2732. "type": "drupal-module",
  2733. "extra": {
  2734. "branch-alias": {
  2735. "dev-2.x": "2.x-dev"
  2736. },
  2737. "drupal": {
  2738. "version": "8.x-2.0",
  2739. "datestamp": "1536168780",
  2740. "security-coverage": {
  2741. "status": "covered",
  2742. "message": "Covered by Drupal's security advisory policy"
  2743. }
  2744. }
  2745. },
  2746. "notification-url": "https://packages.drupal.org/8/downloads",
  2747. "license": [
  2748. "GPL-2.0-or-later"
  2749. ],
  2750. "authors": [
  2751. {
  2752. "name": "targoo",
  2753. "homepage": "https://www.drupal.org/user/431910",
  2754. "role": "Maintainer"
  2755. },
  2756. {
  2757. "name": "Nick Wilde",
  2758. "homepage": "https://www.drupal.org/user/nickwilde",
  2759. "role": "Maintainer"
  2760. }
  2761. ],
  2762. "description": "Provides a color field type to store the color value and opacity",
  2763. "homepage": "https://www.drupal.org/project/color_field",
  2764. "support": {
  2765. "source": "http://cgit.drupalcode.org/color_field",
  2766. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2767. }
  2768. },
  2769. {
  2770. "name": "drupal/config_devel",
  2771. "version": "1.4.0",
  2772. "source": {
  2773. "type": "git",
  2774. "url": "https://git.drupalcode.org/project/config_devel.git",
  2775. "reference": "8.x-1.4"
  2776. },
  2777. "dist": {
  2778. "type": "zip",
  2779. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.4.zip",
  2780. "reference": "8.x-1.4",
  2781. "shasum": "93cbecd4811cbf357cd0a8be19e480f7af32f756"
  2782. },
  2783. "require": {
  2784. "drupal/core": "~8.0"
  2785. },
  2786. "type": "drupal-module",
  2787. "extra": {
  2788. "branch-alias": {
  2789. "dev-1.x": "1.x-dev"
  2790. },
  2791. "drupal": {
  2792. "version": "8.x-1.4",
  2793. "datestamp": "1569934685",
  2794. "security-coverage": {
  2795. "status": "covered",
  2796. "message": "Covered by Drupal's security advisory policy"
  2797. }
  2798. }
  2799. },
  2800. "notification-url": "https://packages.drupal.org/8/downloads",
  2801. "license": [
  2802. "GPL-2.0+"
  2803. ],
  2804. "authors": [
  2805. {
  2806. "name": "alexpott",
  2807. "homepage": "https://www.drupal.org/user/157725"
  2808. },
  2809. {
  2810. "name": "benjy",
  2811. "homepage": "https://www.drupal.org/user/1852732"
  2812. },
  2813. {
  2814. "name": "chx",
  2815. "homepage": "https://www.drupal.org/user/9446"
  2816. },
  2817. {
  2818. "name": "joachim",
  2819. "homepage": "https://www.drupal.org/user/107701"
  2820. },
  2821. {
  2822. "name": "nedjo",
  2823. "homepage": "https://www.drupal.org/user/4481"
  2824. },
  2825. {
  2826. "name": "tim.plunkett",
  2827. "homepage": "https://www.drupal.org/user/241634"
  2828. },
  2829. {
  2830. "name": "vijaycs85",
  2831. "homepage": "https://www.drupal.org/user/93488"
  2832. }
  2833. ],
  2834. "description": "Helps developers work with configuration.",
  2835. "homepage": "https://www.drupal.org/project/config_devel",
  2836. "support": {
  2837. "source": "https://git.drupalcode.org/project/config_devel"
  2838. }
  2839. },
  2840. {
  2841. "name": "drupal/config_filter",
  2842. "version": "1.5.0",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://git.drupalcode.org/project/config_filter.git",
  2846. "reference": "8.x-1.5"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.5.zip",
  2851. "reference": "8.x-1.5",
  2852. "shasum": "81210684c378dab856b3c2bce5eeaa58992d2efc"
  2853. },
  2854. "require": {
  2855. "drupal/core": "~8.0"
  2856. },
  2857. "suggest": {
  2858. "drupal/config_split": "Split site configuration for different environments."
  2859. },
  2860. "type": "drupal-module",
  2861. "extra": {
  2862. "branch-alias": {
  2863. "dev-1.x": "1.x-dev"
  2864. },
  2865. "drupal": {
  2866. "version": "8.x-1.5",
  2867. "datestamp": "1572542288",
  2868. "security-coverage": {
  2869. "status": "covered",
  2870. "message": "Covered by Drupal's security advisory policy"
  2871. }
  2872. }
  2873. },
  2874. "notification-url": "https://packages.drupal.org/8/downloads",
  2875. "license": [
  2876. "GPL-2.0+"
  2877. ],
  2878. "authors": [
  2879. {
  2880. "name": "Fabian Bircher",
  2881. "homepage": "https://www.drupal.org/u/bircher",
  2882. "email": "opensource@fabianbircher.com",
  2883. "role": "Maintainer"
  2884. },
  2885. {
  2886. "name": "Nuvole Web",
  2887. "homepage": "http://nuvole.org",
  2888. "email": "info@nuvole.org",
  2889. "role": "Maintainer"
  2890. },
  2891. {
  2892. "name": "pescetti",
  2893. "homepage": "https://www.drupal.org/user/436244"
  2894. }
  2895. ],
  2896. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2897. "homepage": "https://www.drupal.org/project/config_filter",
  2898. "keywords": [
  2899. "Drupal",
  2900. "configuration",
  2901. "configuration management"
  2902. ],
  2903. "support": {
  2904. "source": "http://cgit.drupalcode.org/config_filter",
  2905. "issues": "https://www.drupal.org/project/issues/config_filter",
  2906. "irc": "irc://irc.freenode.org/drupal-contribute"
  2907. }
  2908. },
  2909. {
  2910. "name": "drupal/config_ignore",
  2911. "version": "2.1.0",
  2912. "source": {
  2913. "type": "git",
  2914. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2915. "reference": "8.x-2.1"
  2916. },
  2917. "dist": {
  2918. "type": "zip",
  2919. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.1.zip",
  2920. "reference": "8.x-2.1",
  2921. "shasum": "07e00684930706632b3f2fc2a7433ffdae57cde7"
  2922. },
  2923. "require": {
  2924. "drupal/config_filter": "1.*",
  2925. "drupal/core": "~8.0"
  2926. },
  2927. "type": "drupal-module",
  2928. "extra": {
  2929. "branch-alias": {
  2930. "dev-2.x": "2.x-dev"
  2931. },
  2932. "drupal": {
  2933. "version": "8.x-2.1",
  2934. "datestamp": "1507706044",
  2935. "security-coverage": {
  2936. "status": "covered",
  2937. "message": "Covered by Drupal's security advisory policy"
  2938. }
  2939. }
  2940. },
  2941. "notification-url": "https://packages.drupal.org/8/downloads",
  2942. "license": [
  2943. "GPL-2.0+"
  2944. ],
  2945. "authors": [
  2946. {
  2947. "name": "Tommy Lynge Jørgensen",
  2948. "homepage": "https://www.drupal.org/u/tlyngej",
  2949. "email": "tlyngej@gmail.com",
  2950. "role": "Maintainer"
  2951. },
  2952. {
  2953. "name": "Fabian Bircher",
  2954. "homepage": "https://www.drupal.org/u/bircher",
  2955. "role": "Maintainer"
  2956. }
  2957. ],
  2958. "description": "Ignore certain configuration during import.",
  2959. "homepage": "http://drupal.org/project/config_ignore",
  2960. "support": {
  2961. "source": "http://cgit.drupalcode.org/config_ignore",
  2962. "issues": "http://drupal.org/project/config_ignore",
  2963. "irc": "irc://irc.freenode.org/drupal-contribute"
  2964. }
  2965. },
  2966. {
  2967. "name": "drupal/config_update",
  2968. "version": "1.6.0",
  2969. "source": {
  2970. "type": "git",
  2971. "url": "https://git.drupalcode.org/project/config_update.git",
  2972. "reference": "8.x-1.6"
  2973. },
  2974. "dist": {
  2975. "type": "zip",
  2976. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.6.zip",
  2977. "reference": "8.x-1.6",
  2978. "shasum": "04bbd0fc440017fd0129dceae240a8bba409a450"
  2979. },
  2980. "require": {
  2981. "drupal/core": "*"
  2982. },
  2983. "type": "drupal-module",
  2984. "extra": {
  2985. "branch-alias": {
  2986. "dev-1.x": "1.x-dev"
  2987. },
  2988. "drupal": {
  2989. "version": "8.x-1.6",
  2990. "datestamp": "1545090480",
  2991. "security-coverage": {
  2992. "status": "covered",
  2993. "message": "Covered by Drupal's security advisory policy"
  2994. }
  2995. }
  2996. },
  2997. "notification-url": "https://packages.drupal.org/8/downloads",
  2998. "license": [
  2999. "GPL-2.0-or-later"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "jhodgdon",
  3004. "homepage": "https://www.drupal.org/user/155601"
  3005. },
  3006. {
  3007. "name": "nedjo",
  3008. "homepage": "https://www.drupal.org/user/4481"
  3009. }
  3010. ],
  3011. "description": "Provides basic revert and update functionality for other modules",
  3012. "homepage": "https://www.drupal.org/project/config_update",
  3013. "support": {
  3014. "source": "https://git.drupalcode.org/project/config_update"
  3015. }
  3016. },
  3017. {
  3018. "name": "drupal/console",
  3019. "version": "1.9.4",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/hechoendrupal/drupal-console.git",
  3023. "reference": "04522b687b2149dc1f808599e716421a20d50a5b"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/hechoendrupal/drupal-console/zipball/04522b687b2149dc1f808599e716421a20d50a5b",
  3028. "reference": "04522b687b2149dc1f808599e716421a20d50a5b",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "alchemy/zippy": "~0.4",
  3033. "composer/installers": "~1.0",
  3034. "doctrine/annotations": "^1.2",
  3035. "doctrine/collections": "^1.3",
  3036. "drupal/console-core": "1.9.4",
  3037. "drupal/console-extend-plugin": "~0",
  3038. "php": "^5.5.9 || ^7.0",
  3039. "psy/psysh": "0.6.* || ~0.8",
  3040. "symfony/css-selector": "~2.8|~3.0",
  3041. "symfony/dom-crawler": "~2.8|~3.0",
  3042. "symfony/http-foundation": "~2.8|~3.0"
  3043. },
  3044. "suggest": {
  3045. "symfony/thanks": "Thank your favorite PHP projects on GitHub using the CLI",
  3046. "vlucas/phpdotenv": "Loads environment variables from .env to getenv(), $_ENV and $_SERVER automagically"
  3047. },
  3048. "bin": [
  3049. "bin/drupal"
  3050. ],
  3051. "type": "library",
  3052. "autoload": {
  3053. "psr-4": {
  3054. "Drupal\\Console\\": "src"
  3055. }
  3056. },
  3057. "notification-url": "https://packagist.org/downloads/",
  3058. "license": [
  3059. "GPL-2.0-or-later"
  3060. ],
  3061. "authors": [
  3062. {
  3063. "name": "David Flores",
  3064. "email": "dmousex@gmail.com",
  3065. "homepage": "http://dmouse.net"
  3066. },
  3067. {
  3068. "name": "Jesus Manuel Olivas",
  3069. "email": "jesus.olivas@gmail.com",
  3070. "homepage": "http://jmolivas.com"
  3071. },
  3072. {
  3073. "name": "Eduardo Garcia",
  3074. "email": "enzo@enzolutions.com",
  3075. "homepage": "http://enzolutions.com/"
  3076. },
  3077. {
  3078. "name": "Omar Aguirre",
  3079. "email": "omersguchigu@gmail.com"
  3080. },
  3081. {
  3082. "name": "Drupal Console Contributors",
  3083. "homepage": "https://github.com/hechoendrupal/drupal-console/graphs/contributors"
  3084. }
  3085. ],
  3086. "description": "The Drupal CLI. A tool to generate boilerplate code, interact with and debug Drupal.",
  3087. "homepage": "http://drupalconsole.com/",
  3088. "keywords": [
  3089. "console",
  3090. "development",
  3091. "drupal",
  3092. "symfony"
  3093. ],
  3094. "time": "2019-11-11T19:35:01+00:00"
  3095. },
  3096. {
  3097. "name": "drupal/console-core",
  3098. "version": "1.9.4",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/hechoendrupal/drupal-console-core.git",
  3102. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-core/zipball/cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3107. "reference": "cc6f50c6ac8199140224347c862df75fd2d2f5ed",
  3108. "shasum": ""
  3109. },
  3110. "require": {
  3111. "dflydev/dot-access-configuration": "^1.0",
  3112. "drupal/console-en": "1.9.4",
  3113. "guzzlehttp/guzzle": "~6.1",
  3114. "php": "^5.5.9 || ^7.0",
  3115. "stecman/symfony-console-completion": "~0.7",
  3116. "symfony/config": "~2.8|~3.0",
  3117. "symfony/console": "~2.8|~3.0",
  3118. "symfony/debug": "~2.8|~3.0",
  3119. "symfony/dependency-injection": "~2.8|~3.0",
  3120. "symfony/event-dispatcher": "~2.8|~3.0",
  3121. "symfony/filesystem": "~2.8|~3.0",
  3122. "symfony/finder": "~2.8|~3.0",
  3123. "symfony/process": "~2.8|~3.0",
  3124. "symfony/translation": "~2.8|~3.0",
  3125. "symfony/yaml": "~2.8|~3.0",
  3126. "twig/twig": "^1.23.1",
  3127. "webflo/drupal-finder": "^1.0",
  3128. "webmozart/path-util": "^2.3"
  3129. },
  3130. "type": "library",
  3131. "autoload": {
  3132. "files": [
  3133. "src/functions.php"
  3134. ],
  3135. "psr-4": {
  3136. "Drupal\\Console\\Core\\": "src"
  3137. }
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "GPL-2.0-or-later"
  3142. ],
  3143. "authors": [
  3144. {
  3145. "name": "David Flores",
  3146. "email": "dmousex@gmail.com",
  3147. "homepage": "http://dmouse.net"
  3148. },
  3149. {
  3150. "name": "Jesus Manuel Olivas",
  3151. "email": "jesus.olivas@gmail.com",
  3152. "homepage": "http://jmolivas.com"
  3153. },
  3154. {
  3155. "name": "Eduardo Garcia",
  3156. "email": "enzo@enzolutions.com",
  3157. "homepage": "http://enzolutions.com/"
  3158. },
  3159. {
  3160. "name": "Omar Aguirre",
  3161. "email": "omersguchigu@gmail.com"
  3162. },
  3163. {
  3164. "name": "Drupal Console Contributors",
  3165. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3166. }
  3167. ],
  3168. "description": "Drupal Console Core",
  3169. "homepage": "http://drupalconsole.com/",
  3170. "keywords": [
  3171. "console",
  3172. "development",
  3173. "drupal",
  3174. "symfony"
  3175. ],
  3176. "time": "2019-11-11T19:26:28+00:00"
  3177. },
  3178. {
  3179. "name": "drupal/console-en",
  3180. "version": "1.9.4",
  3181. "source": {
  3182. "type": "git",
  3183. "url": "https://github.com/hechoendrupal/drupal-console-en.git",
  3184. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d"
  3185. },
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-en/zipball/30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3189. "reference": "30813a832fdb1244e84cbcc012cd103d5e9d673d",
  3190. "shasum": ""
  3191. },
  3192. "type": "library",
  3193. "notification-url": "https://packagist.org/downloads/",
  3194. "license": [
  3195. "GPL-2.0-or-later"
  3196. ],
  3197. "authors": [
  3198. {
  3199. "name": "David Flores",
  3200. "email": "dmousex@gmail.com",
  3201. "homepage": "http://dmouse.net"
  3202. },
  3203. {
  3204. "name": "Jesus Manuel Olivas",
  3205. "email": "jesus.olivas@gmail.com",
  3206. "homepage": "http://jmolivas.com"
  3207. },
  3208. {
  3209. "name": "Eduardo Garcia",
  3210. "email": "enzo@enzolutions.com",
  3211. "homepage": "http://enzolutions.com/"
  3212. },
  3213. {
  3214. "name": "Omar Aguirre",
  3215. "email": "omersguchigu@gmail.com"
  3216. },
  3217. {
  3218. "name": "Drupal Console Contributors",
  3219. "homepage": "https://github.com/hechoendrupal/DrupalConsole/graphs/contributors"
  3220. }
  3221. ],
  3222. "description": "Drupal Console English Language",
  3223. "homepage": "http://drupalconsole.com/",
  3224. "keywords": [
  3225. "console",
  3226. "development",
  3227. "drupal",
  3228. "symfony"
  3229. ],
  3230. "time": "2019-10-07T23:45:30+00:00"
  3231. },
  3232. {
  3233. "name": "drupal/console-extend-plugin",
  3234. "version": "0.9.3",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/hechoendrupal/drupal-console-extend-plugin.git",
  3238. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/hechoendrupal/drupal-console-extend-plugin/zipball/ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3243. "reference": "ad8e52df34b2e78bdacfffecc9fe8edf41843342",
  3244. "shasum": ""
  3245. },
  3246. "require": {
  3247. "composer-plugin-api": "^1.0",
  3248. "composer/installers": "^1.2",
  3249. "symfony/finder": "~2.7|~3.0",
  3250. "symfony/yaml": "~2.7|~3.0"
  3251. },
  3252. "type": "composer-plugin",
  3253. "extra": {
  3254. "class": "Drupal\\Console\\Composer\\Plugin\\Extender"
  3255. },
  3256. "autoload": {
  3257. "psr-4": {
  3258. "Drupal\\Console\\Composer\\Plugin\\": "src"
  3259. }
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "GPL-2.0+"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "Jesus Manuel Olivas",
  3268. "email": "jesus.olivas@gmail.com"
  3269. }
  3270. ],
  3271. "description": "Drupal Console Extend Plugin",
  3272. "time": "2019-11-07T20:15:27+00:00"
  3273. },
  3274. {
  3275. "name": "drupal/context",
  3276. "version": "4.0.0-beta2",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://git.drupalcode.org/project/context.git",
  3280. "reference": "8.x-4.0-beta2"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.0-beta2.zip",
  3285. "reference": "8.x-4.0-beta2",
  3286. "shasum": "e41bc912e1ec73bc4d08a3cf730dc2405a9213d3"
  3287. },
  3288. "require": {
  3289. "drupal/core": "~8.0"
  3290. },
  3291. "type": "drupal-module",
  3292. "extra": {
  3293. "branch-alias": {
  3294. "dev-4.x": "4.x-dev"
  3295. },
  3296. "drupal": {
  3297. "version": "8.x-4.0-beta2",
  3298. "datestamp": "1505378944",
  3299. "security-coverage": {
  3300. "status": "not-covered",
  3301. "message": "Beta releases are not covered by Drupal security advisories."
  3302. }
  3303. }
  3304. },
  3305. "notification-url": "https://packages.drupal.org/8/downloads",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Christoffer Palm",
  3312. "homepage": "http://www.oddhill.se/",
  3313. "email": "christoffer.palm@oddhill.se",
  3314. "role": "Developer"
  3315. },
  3316. {
  3317. "name": "Steven Jones",
  3318. "homepage": "https://www.drupal.org/user/99644"
  3319. },
  3320. {
  3321. "name": "alex_b",
  3322. "homepage": "https://www.drupal.org/user/53995"
  3323. },
  3324. {
  3325. "name": "boshtian",
  3326. "homepage": "https://www.drupal.org/user/1773456"
  3327. },
  3328. {
  3329. "name": "colan",
  3330. "homepage": "https://www.drupal.org/user/58704"
  3331. },
  3332. {
  3333. "name": "emanaton",
  3334. "homepage": "https://www.drupal.org/user/120853"
  3335. },
  3336. {
  3337. "name": "febbraro",
  3338. "homepage": "https://www.drupal.org/user/43670"
  3339. },
  3340. {
  3341. "name": "fizk",
  3342. "homepage": "https://www.drupal.org/user/473174"
  3343. },
  3344. {
  3345. "name": "hass",
  3346. "homepage": "https://www.drupal.org/user/85918"
  3347. },
  3348. {
  3349. "name": "hefox",
  3350. "homepage": "https://www.drupal.org/user/426416"
  3351. },
  3352. {
  3353. "name": "hyrcan",
  3354. "homepage": "https://www.drupal.org/user/26618"
  3355. },
  3356. {
  3357. "name": "jmiccolis",
  3358. "homepage": "https://www.drupal.org/user/31731"
  3359. },
  3360. {
  3361. "name": "nedjo",
  3362. "homepage": "https://www.drupal.org/user/4481"
  3363. },
  3364. {
  3365. "name": "tekante",
  3366. "homepage": "https://www.drupal.org/user/640024"
  3367. },
  3368. {
  3369. "name": "yhahn",
  3370. "homepage": "https://www.drupal.org/user/264833"
  3371. }
  3372. ],
  3373. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3374. "homepage": "https://github.com/oddhill/context",
  3375. "keywords": [
  3376. "Drupal",
  3377. "block",
  3378. "conditions",
  3379. "context",
  3380. "visibility"
  3381. ],
  3382. "support": {
  3383. "source": "https://github.com/oddhill/context",
  3384. "issues": "https://github.com/oddhill/context/issues",
  3385. "docs": "https://github.com/oddhill/context"
  3386. }
  3387. },
  3388. {
  3389. "name": "drupal/core",
  3390. "version": "8.7.9",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://github.com/drupal/core.git",
  3394. "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://api.github.com/repos/drupal/core/zipball/881e60062ea86a8f6809a298f09f56afd20b3cf3",
  3399. "reference": "881e60062ea86a8f6809a298f09f56afd20b3cf3",
  3400. "shasum": ""
  3401. },
  3402. "require": {
  3403. "asm89/stack-cors": "^1.1",
  3404. "composer/semver": "^1.0",
  3405. "doctrine/annotations": "^1.2",
  3406. "doctrine/common": "^2.5",
  3407. "easyrdf/easyrdf": "^0.9",
  3408. "egulias/email-validator": "^2.0",
  3409. "ext-date": "*",
  3410. "ext-dom": "*",
  3411. "ext-filter": "*",
  3412. "ext-gd": "*",
  3413. "ext-hash": "*",
  3414. "ext-json": "*",
  3415. "ext-pcre": "*",
  3416. "ext-pdo": "*",
  3417. "ext-session": "*",
  3418. "ext-simplexml": "*",
  3419. "ext-spl": "*",
  3420. "ext-tokenizer": "*",
  3421. "ext-xml": "*",
  3422. "guzzlehttp/guzzle": "^6.2.1",
  3423. "masterminds/html5": "^2.1",
  3424. "paragonie/random_compat": "^1.0|^2.0|^9.99.99",
  3425. "pear/archive_tar": "^1.4",
  3426. "php": "^5.5.9|>=7.0.8",
  3427. "stack/builder": "^1.0",
  3428. "symfony-cmf/routing": "^1.4",
  3429. "symfony/class-loader": "~3.4.0",
  3430. "symfony/console": "~3.4.0",
  3431. "symfony/dependency-injection": "~3.4.26",
  3432. "symfony/event-dispatcher": "~3.4.0",
  3433. "symfony/http-foundation": "~3.4.27",
  3434. "symfony/http-kernel": "~3.4.14",
  3435. "symfony/polyfill-iconv": "^1.0",
  3436. "symfony/process": "~3.4.0",
  3437. "symfony/psr-http-message-bridge": "^1.1.2",
  3438. "symfony/routing": "~3.4.0",
  3439. "symfony/serializer": "~3.4.0",
  3440. "symfony/translation": "~3.4.0",
  3441. "symfony/validator": "~3.4.0",
  3442. "symfony/yaml": "~3.4.5",
  3443. "twig/twig": "^1.38.2",
  3444. "typo3/phar-stream-wrapper": "^2.1.1",
  3445. "zendframework/zend-diactoros": "^1.1",
  3446. "zendframework/zend-feed": "^2.4"
  3447. },
  3448. "conflict": {
  3449. "drush/drush": "<8.1.10",
  3450. "symfony/dom-crawler": ">=4"
  3451. },
  3452. "replace": {
  3453. "drupal/action": "self.version",
  3454. "drupal/aggregator": "self.version",
  3455. "drupal/automated_cron": "self.version",
  3456. "drupal/ban": "self.version",
  3457. "drupal/bartik": "self.version",
  3458. "drupal/basic_auth": "self.version",
  3459. "drupal/big_pipe": "self.version",
  3460. "drupal/block": "self.version",
  3461. "drupal/block_content": "self.version",
  3462. "drupal/block_place": "self.version",
  3463. "drupal/book": "self.version",
  3464. "drupal/breakpoint": "self.version",
  3465. "drupal/ckeditor": "self.version",
  3466. "drupal/classy": "self.version",
  3467. "drupal/color": "self.version",
  3468. "drupal/comment": "self.version",
  3469. "drupal/config": "self.version",
  3470. "drupal/config_translation": "self.version",
  3471. "drupal/contact": "self.version",
  3472. "drupal/content_moderation": "self.version",
  3473. "drupal/content_translation": "self.version",
  3474. "drupal/contextual": "self.version",
  3475. "drupal/core-annotation": "self.version",
  3476. "drupal/core-assertion": "self.version",
  3477. "drupal/core-bridge": "self.version",
  3478. "drupal/core-class-finder": "self.version",
  3479. "drupal/core-datetime": "self.version",
  3480. "drupal/core-dependency-injection": "self.version",
  3481. "drupal/core-diff": "self.version",
  3482. "drupal/core-discovery": "self.version",
  3483. "drupal/core-event-dispatcher": "self.version",
  3484. "drupal/core-file-cache": "self.version",
  3485. "drupal/core-filesystem": "self.version",
  3486. "drupal/core-gettext": "self.version",
  3487. "drupal/core-graph": "self.version",
  3488. "drupal/core-http-foundation": "self.version",
  3489. "drupal/core-php-storage": "self.version",
  3490. "drupal/core-plugin": "self.version",
  3491. "drupal/core-proxy-builder": "self.version",
  3492. "drupal/core-render": "self.version",
  3493. "drupal/core-serialization": "self.version",
  3494. "drupal/core-transliteration": "self.version",
  3495. "drupal/core-utility": "self.version",
  3496. "drupal/core-uuid": "self.version",
  3497. "drupal/core-version": "self.version",
  3498. "drupal/datetime": "self.version",
  3499. "drupal/datetime_range": "self.version",
  3500. "drupal/dblog": "self.version",
  3501. "drupal/dynamic_page_cache": "self.version",
  3502. "drupal/editor": "self.version",
  3503. "drupal/entity_reference": "self.version",
  3504. "drupal/field": "self.version",
  3505. "drupal/field_layout": "self.version",
  3506. "drupal/field_ui": "self.version",
  3507. "drupal/file": "self.version",
  3508. "drupal/filter": "self.version",
  3509. "drupal/forum": "self.version",
  3510. "drupal/hal": "self.version",
  3511. "drupal/help": "self.version",
  3512. "drupal/history": "self.version",
  3513. "drupal/image": "self.version",
  3514. "drupal/inline_form_errors": "self.version",
  3515. "drupal/jsonapi": "self.version",
  3516. "drupal/language": "self.version",
  3517. "drupal/layout_builder": "self.version",
  3518. "drupal/layout_discovery": "self.version",
  3519. "drupal/link": "self.version",
  3520. "drupal/locale": "self.version",
  3521. "drupal/media": "self.version",
  3522. "drupal/media_library": "self.version",
  3523. "drupal/menu_link_content": "self.version",
  3524. "drupal/menu_ui": "self.version",
  3525. "drupal/migrate": "self.version",
  3526. "drupal/migrate_drupal": "self.version",
  3527. "drupal/migrate_drupal_multilingual": "self.version",
  3528. "drupal/migrate_drupal_ui": "self.version",
  3529. "drupal/minimal": "self.version",
  3530. "drupal/node": "self.version",
  3531. "drupal/options": "self.version",
  3532. "drupal/page_cache": "self.version",
  3533. "drupal/path": "self.version",
  3534. "drupal/quickedit": "self.version",
  3535. "drupal/rdf": "self.version",
  3536. "drupal/responsive_image": "self.version",
  3537. "drupal/rest": "self.version",
  3538. "drupal/search": "self.version",
  3539. "drupal/serialization": "self.version",
  3540. "drupal/settings_tray": "self.version",
  3541. "drupal/seven": "self.version",
  3542. "drupal/shortcut": "self.version",
  3543. "drupal/simpletest": "self.version",
  3544. "drupal/standard": "self.version",
  3545. "drupal/stark": "self.version",
  3546. "drupal/statistics": "self.version",
  3547. "drupal/syslog": "self.version",
  3548. "drupal/system": "self.version",
  3549. "drupal/taxonomy": "self.version",
  3550. "drupal/telephone": "self.version",
  3551. "drupal/text": "self.version",
  3552. "drupal/toolbar": "self.version",
  3553. "drupal/tour": "self.version",
  3554. "drupal/tracker": "self.version",
  3555. "drupal/update": "self.version",
  3556. "drupal/user": "self.version",
  3557. "drupal/views": "self.version",
  3558. "drupal/views_ui": "self.version",
  3559. "drupal/workflows": "self.version",
  3560. "drupal/workspaces": "self.version"
  3561. },
  3562. "require-dev": {
  3563. "behat/mink": "1.7.x-dev",
  3564. "behat/mink-goutte-driver": "^1.2",
  3565. "behat/mink-selenium2-driver": "1.3.x-dev",
  3566. "drupal/coder": "^8.3.1",
  3567. "jcalderonzumba/gastonjs": "^1.0.2",
  3568. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  3569. "justinrainbow/json-schema": "^5.2",
  3570. "mikey179/vfsstream": "^1.2",
  3571. "phpspec/prophecy": "^1.7",
  3572. "phpunit/phpunit": "^4.8.35 || ^6.5",
  3573. "symfony/css-selector": "^3.4.0",
  3574. "symfony/debug": "^3.4.0",
  3575. "symfony/phpunit-bridge": "^3.4.3"
  3576. },
  3577. "type": "drupal-core",
  3578. "extra": {
  3579. "merge-plugin": {
  3580. "require": [
  3581. "core/lib/Drupal/Component/Annotation/composer.json",
  3582. "core/lib/Drupal/Component/Assertion/composer.json",
  3583. "core/lib/Drupal/Component/Bridge/composer.json",
  3584. "core/lib/Drupal/Component/ClassFinder/composer.json",
  3585. "core/lib/Drupal/Component/Datetime/composer.json",
  3586. "core/lib/Drupal/Component/DependencyInjection/composer.json",
  3587. "core/lib/Drupal/Component/Diff/composer.json",
  3588. "core/lib/Drupal/Component/Discovery/composer.json",
  3589. "core/lib/Drupal/Component/EventDispatcher/composer.json",
  3590. "core/lib/Drupal/Component/FileCache/composer.json",
  3591. "core/lib/Drupal/Component/FileSystem/composer.json",
  3592. "core/lib/Drupal/Component/Gettext/composer.json",
  3593. "core/lib/Drupal/Component/Graph/composer.json",
  3594. "core/lib/Drupal/Component/HttpFoundation/composer.json",
  3595. "core/lib/Drupal/Component/PhpStorage/composer.json",
  3596. "core/lib/Drupal/Component/Plugin/composer.json",
  3597. "core/lib/Drupal/Component/ProxyBuilder/composer.json",
  3598. "core/lib/Drupal/Component/Render/composer.json",
  3599. "core/lib/Drupal/Component/Serialization/composer.json",
  3600. "core/lib/Drupal/Component/Transliteration/composer.json",
  3601. "core/lib/Drupal/Component/Utility/composer.json",
  3602. "core/lib/Drupal/Component/Uuid/composer.json",
  3603. "core/lib/Drupal/Component/Version/composer.json"
  3604. ],
  3605. "recurse": false,
  3606. "replace": false,
  3607. "merge-extra": false
  3608. }
  3609. },
  3610. "autoload": {
  3611. "psr-4": {
  3612. "Drupal\\Core\\": "lib/Drupal/Core",
  3613. "Drupal\\Component\\": "lib/Drupal/Component",
  3614. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  3615. },
  3616. "classmap": [
  3617. "lib/Drupal.php",
  3618. "lib/Drupal/Component/Utility/Timer.php",
  3619. "lib/Drupal/Component/Utility/Unicode.php",
  3620. "lib/Drupal/Core/Database/Database.php",
  3621. "lib/Drupal/Core/DrupalKernel.php",
  3622. "lib/Drupal/Core/DrupalKernelInterface.php",
  3623. "lib/Drupal/Core/Site/Settings.php"
  3624. ]
  3625. },
  3626. "notification-url": "https://packagist.org/downloads/",
  3627. "license": [
  3628. "GPL-2.0-or-later"
  3629. ],
  3630. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3631. "time": "2019-11-06T18:00:38+00:00"
  3632. },
  3633. {
  3634. "name": "drupal/ctools",
  3635. "version": "3.2.0",
  3636. "source": {
  3637. "type": "git",
  3638. "url": "https://git.drupalcode.org/project/ctools.git",
  3639. "reference": "8.x-3.2"
  3640. },
  3641. "dist": {
  3642. "type": "zip",
  3643. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.2.zip",
  3644. "reference": "8.x-3.2",
  3645. "shasum": "d6da87239b64ba708a5977e7b33b1e009e36b091"
  3646. },
  3647. "require": {
  3648. "drupal/core": "^8.5"
  3649. },
  3650. "type": "drupal-module",
  3651. "extra": {
  3652. "branch-alias": {
  3653. "dev-3.x": "3.x-dev"
  3654. },
  3655. "drupal": {
  3656. "version": "8.x-3.2",
  3657. "datestamp": "1550728386",
  3658. "security-coverage": {
  3659. "status": "covered",
  3660. "message": "Covered by Drupal's security advisory policy"
  3661. }
  3662. }
  3663. },
  3664. "notification-url": "https://packages.drupal.org/8/downloads",
  3665. "license": [
  3666. "GPL-2.0+"
  3667. ],
  3668. "authors": [
  3669. {
  3670. "name": "Kris Vanderwater (EclipseGc)",
  3671. "homepage": "https://www.drupal.org/u/eclipsegc",
  3672. "role": "Maintainer"
  3673. },
  3674. {
  3675. "name": "Jakob Perry (japerry)",
  3676. "homepage": "https://www.drupal.org/u/japerry",
  3677. "role": "Maintainer"
  3678. },
  3679. {
  3680. "name": "Tim Plunkett (tim.plunkett)",
  3681. "homepage": "https://www.drupal.org/u/timplunkett",
  3682. "role": "Maintainer"
  3683. },
  3684. {
  3685. "name": "James Gilliland (neclimdul)",
  3686. "homepage": "https://www.drupal.org/u/neclimdul",
  3687. "role": "Maintainer"
  3688. },
  3689. {
  3690. "name": "Daniel Wehner (dawehner)",
  3691. "homepage": "https://www.drupal.org/u/dawehner",
  3692. "role": "Maintainer"
  3693. },
  3694. {
  3695. "name": "joelpittet",
  3696. "homepage": "https://www.drupal.org/user/160302"
  3697. },
  3698. {
  3699. "name": "merlinofchaos",
  3700. "homepage": "https://www.drupal.org/user/26979"
  3701. },
  3702. {
  3703. "name": "neclimdul",
  3704. "homepage": "https://www.drupal.org/user/48673"
  3705. },
  3706. {
  3707. "name": "sdboyer",
  3708. "homepage": "https://www.drupal.org/user/146719"
  3709. },
  3710. {
  3711. "name": "sun",
  3712. "homepage": "https://www.drupal.org/user/54136"
  3713. },
  3714. {
  3715. "name": "tim.plunkett",
  3716. "homepage": "https://www.drupal.org/user/241634"
  3717. }
  3718. ],
  3719. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3720. "homepage": "https://www.drupal.org/project/ctools",
  3721. "support": {
  3722. "source": "http://cgit.drupalcode.org/ctools",
  3723. "issues": "https://www.drupal.org/project/issues/ctools"
  3724. }
  3725. },
  3726. {
  3727. "name": "drupal/date_range_formatter",
  3728. "version": "3.1.0",
  3729. "source": {
  3730. "type": "git",
  3731. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3732. "reference": "8.x-3.1"
  3733. },
  3734. "dist": {
  3735. "type": "zip",
  3736. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-8.x-3.1.zip",
  3737. "reference": "8.x-3.1",
  3738. "shasum": "a98c511ac90eb92879235bc82a3aa643f7b5c173"
  3739. },
  3740. "require": {
  3741. "drupal/core": "*"
  3742. },
  3743. "type": "drupal-module",
  3744. "extra": {
  3745. "branch-alias": {
  3746. "dev-3.x": "3.x-dev"
  3747. },
  3748. "drupal": {
  3749. "version": "8.x-3.1",
  3750. "datestamp": "1502454544",
  3751. "security-coverage": {
  3752. "status": "covered",
  3753. "message": "Covered by Drupal's security advisory policy"
  3754. }
  3755. }
  3756. },
  3757. "notification-url": "https://packages.drupal.org/8/downloads",
  3758. "license": [
  3759. "GPL-2.0-or-later"
  3760. ],
  3761. "authors": [
  3762. {
  3763. "name": "maximpodorov",
  3764. "homepage": "https://www.drupal.org/user/515310"
  3765. },
  3766. {
  3767. "name": "sudishth",
  3768. "homepage": "https://www.drupal.org/user/1440562"
  3769. }
  3770. ],
  3771. "description": "Formats date ranges.",
  3772. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3773. "support": {
  3774. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3775. }
  3776. },
  3777. {
  3778. "name": "drupal/devel",
  3779. "version": "2.1.0",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://git.drupalcode.org/project/devel.git",
  3783. "reference": "8.x-2.1"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://ftp.drupal.org/files/projects/devel-8.x-2.1.zip",
  3788. "reference": "8.x-2.1",
  3789. "shasum": "8f735892922aa5f228e681e645e5f02b1c008f14"
  3790. },
  3791. "require": {
  3792. "drupal/core": "~8.0",
  3793. "symfony/var-dumper": "~2.7|^3|^4"
  3794. },
  3795. "type": "drupal-module",
  3796. "extra": {
  3797. "branch-alias": {
  3798. "dev-2.x": "2.x-dev"
  3799. },
  3800. "drupal": {
  3801. "version": "8.x-2.1",
  3802. "datestamp": "1556799496",
  3803. "security-coverage": {
  3804. "status": "covered",
  3805. "message": "Covered by Drupal's security advisory policy"
  3806. }
  3807. },
  3808. "drush": {
  3809. "services": {
  3810. "drush.services.yml": "^9"
  3811. }
  3812. }
  3813. },
  3814. "notification-url": "https://packages.drupal.org/8/downloads",
  3815. "license": [
  3816. "GPL-2.0+"
  3817. ],
  3818. "authors": [
  3819. {
  3820. "name": "Moshe Weitzman",
  3821. "homepage": "https://github.com/weitzman",
  3822. "email": "weitzman@tejasa.com",
  3823. "role": "Maintainer"
  3824. },
  3825. {
  3826. "name": "Hans Salvisberg",
  3827. "homepage": "https://www.drupal.org/u/salvis",
  3828. "email": "drupal@salvisberg.com",
  3829. "role": "Maintainer"
  3830. },
  3831. {
  3832. "name": "Luca Lusso",
  3833. "homepage": "https://www.drupal.org/u/lussoluca",
  3834. "role": "Maintainer"
  3835. },
  3836. {
  3837. "name": "Marco (willzyx)",
  3838. "homepage": "https://www.drupal.org/u/willzyx",
  3839. "role": "Maintainer"
  3840. },
  3841. {
  3842. "name": "See contributors",
  3843. "homepage": "https://www.drupal.org/node/3236/committers"
  3844. },
  3845. {
  3846. "name": "salvis",
  3847. "homepage": "https://www.drupal.org/user/82964"
  3848. },
  3849. {
  3850. "name": "willzyx",
  3851. "homepage": "https://www.drupal.org/user/1043862"
  3852. }
  3853. ],
  3854. "description": "Various blocks, pages, and functions for developers.",
  3855. "homepage": "http://drupal.org/project/devel",
  3856. "support": {
  3857. "source": "http://cgit.drupalcode.org/devel",
  3858. "issues": "http://drupal.org/project/devel",
  3859. "irc": "irc://irc.freenode.org/drupal-contribute"
  3860. }
  3861. },
  3862. {
  3863. "name": "drupal/domain",
  3864. "version": "1.0.0-alpha16",
  3865. "source": {
  3866. "type": "git",
  3867. "url": "https://git.drupalcode.org/project/domain.git",
  3868. "reference": "8.x-1.0-alpha16"
  3869. },
  3870. "dist": {
  3871. "type": "zip",
  3872. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-alpha16.zip",
  3873. "reference": "8.x-1.0-alpha16",
  3874. "shasum": "d0088936af09e922ec873080d7960a1dc020bef8"
  3875. },
  3876. "require": {
  3877. "drupal/core": "^8.5"
  3878. },
  3879. "require-dev": {
  3880. "drupal/domain_access": "*"
  3881. },
  3882. "type": "drupal-module",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-1.x": "1.x-dev"
  3886. },
  3887. "drupal": {
  3888. "version": "8.x-1.0-alpha16",
  3889. "datestamp": "1561126081",
  3890. "security-coverage": {
  3891. "status": "not-covered",
  3892. "message": "Alpha releases are not covered by Drupal security advisories."
  3893. }
  3894. }
  3895. },
  3896. "notification-url": "https://packages.drupal.org/8/downloads",
  3897. "license": [
  3898. "GPL-2.0-or-later"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "agentrickard",
  3903. "homepage": "https://www.drupal.org/user/20975"
  3904. },
  3905. {
  3906. "name": "nonsie",
  3907. "homepage": "https://www.drupal.org/user/29899"
  3908. }
  3909. ],
  3910. "description": "Creates domain records within a Drupal installation.",
  3911. "homepage": "https://www.drupal.org/project/domain",
  3912. "support": {
  3913. "source": "https://git.drupalcode.org/project/domain"
  3914. }
  3915. },
  3916. {
  3917. "name": "drupal/domain_access",
  3918. "version": "1.0.0-alpha16",
  3919. "require": {
  3920. "drupal/core": "*",
  3921. "drupal/domain": "self.version"
  3922. },
  3923. "type": "metapackage",
  3924. "extra": {
  3925. "branch-alias": {
  3926. "dev-1.x": "1.x-dev"
  3927. },
  3928. "drupal": {
  3929. "version": "8.x-1.0-alpha16",
  3930. "datestamp": "1561126081",
  3931. "security-coverage": {
  3932. "status": "not-covered",
  3933. "message": "Alpha releases are not covered by Drupal security advisories."
  3934. }
  3935. }
  3936. },
  3937. "notification-url": "https://packages.drupal.org/8/downloads",
  3938. "license": [
  3939. "GPL-2.0-or-later"
  3940. ],
  3941. "authors": [
  3942. {
  3943. "name": "agentrickard",
  3944. "homepage": "https://www.drupal.org/user/20975"
  3945. },
  3946. {
  3947. "name": "nonsie",
  3948. "homepage": "https://www.drupal.org/user/29899"
  3949. }
  3950. ],
  3951. "description": "Domain-based access control for content.",
  3952. "homepage": "https://www.drupal.org/project/domain",
  3953. "support": {
  3954. "source": "https://git.drupalcode.org/project/domain"
  3955. }
  3956. },
  3957. {
  3958. "name": "drupal/domain_config",
  3959. "version": "1.0.0-alpha16",
  3960. "require": {
  3961. "drupal/core": "~8.0",
  3962. "drupal/domain": "self.version"
  3963. },
  3964. "type": "metapackage",
  3965. "extra": {
  3966. "branch-alias": {
  3967. "dev-1.x": "1.x-dev"
  3968. },
  3969. "drupal": {
  3970. "version": "8.x-1.0-alpha16",
  3971. "datestamp": "1561126081",
  3972. "security-coverage": {
  3973. "status": "not-covered",
  3974. "message": "Alpha releases are not covered by Drupal security advisories."
  3975. }
  3976. }
  3977. },
  3978. "notification-url": "https://packages.drupal.org/8/downloads",
  3979. "license": [
  3980. "GPL-2.0-or-later"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "agentrickard",
  3985. "homepage": "https://www.drupal.org/user/20975"
  3986. },
  3987. {
  3988. "name": "nonsie",
  3989. "homepage": "https://www.drupal.org/user/29899"
  3990. }
  3991. ],
  3992. "description": "Allows domain specific configuration.",
  3993. "homepage": "https://www.drupal.org/project/domain",
  3994. "support": {
  3995. "source": "https://git.drupalcode.org/project/domain"
  3996. }
  3997. },
  3998. {
  3999. "name": "drupal/domain_menu_access",
  4000. "version": "dev-1.x",
  4001. "source": {
  4002. "type": "git",
  4003. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  4004. "reference": "cd62e57ec09be4eca491e18e50092e10c19750f2"
  4005. },
  4006. "require": {
  4007. "drupal/core": "~8.0",
  4008. "drupal/domain": "^1",
  4009. "drupal/domain_access": "^1"
  4010. },
  4011. "type": "drupal-module",
  4012. "extra": {
  4013. "branch-alias": {
  4014. "dev-1.x": "1.x-dev"
  4015. },
  4016. "drupal": {
  4017. "version": "8.x-1.0-alpha2+3-dev",
  4018. "datestamp": "1551553085",
  4019. "security-coverage": {
  4020. "status": "not-covered",
  4021. "message": "Dev releases are not covered by Drupal security advisories."
  4022. }
  4023. }
  4024. },
  4025. "notification-url": "https://packages.drupal.org/8/downloads",
  4026. "license": [
  4027. "GPL-2.0+"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Sebastien @Actualys",
  4032. "homepage": "https://www.drupal.org/user/380104"
  4033. },
  4034. {
  4035. "name": "maciej.zgadzaj",
  4036. "homepage": "https://www.drupal.org/user/271491"
  4037. },
  4038. {
  4039. "name": "pifagor",
  4040. "homepage": "https://www.drupal.org/user/2375692"
  4041. }
  4042. ],
  4043. "description": "Domain-based access control for menu link.",
  4044. "homepage": "https://www.drupal.org/project/domain_menu_access",
  4045. "support": {
  4046. "source": "https://git.drupalcode.org/project/domain_menu_access"
  4047. },
  4048. "time": "2019-04-11T06:07:16+00:00"
  4049. },
  4050. {
  4051. "name": "drupal/domain_site_settings",
  4052. "version": "1.3.0",
  4053. "source": {
  4054. "type": "git",
  4055. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  4056. "reference": "8.x-1.3"
  4057. },
  4058. "dist": {
  4059. "type": "zip",
  4060. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.3.zip",
  4061. "reference": "8.x-1.3",
  4062. "shasum": "36ad22d8e31400f372b9e7f587578061b4fdc5db"
  4063. },
  4064. "require": {
  4065. "drupal/core": "~8.0",
  4066. "drupal/domain": "*",
  4067. "drupal/domain_config": "*"
  4068. },
  4069. "type": "drupal-module",
  4070. "extra": {
  4071. "branch-alias": {
  4072. "dev-1.x": "1.x-dev"
  4073. },
  4074. "drupal": {
  4075. "version": "8.x-1.3",
  4076. "datestamp": "1537684980",
  4077. "security-coverage": {
  4078. "status": "covered",
  4079. "message": "Covered by Drupal's security advisory policy"
  4080. }
  4081. },
  4082. "patches_applied": {
  4083. "Circular Error or Conflict with Language_Manager": "https://www.drupal.org/files/issues/2018-10-09/2930391-21.patch"
  4084. }
  4085. },
  4086. "notification-url": "https://packages.drupal.org/8/downloads",
  4087. "license": [
  4088. "GPL-2.0+"
  4089. ],
  4090. "authors": [
  4091. {
  4092. "name": "aloknarwaria",
  4093. "homepage": "https://www.drupal.org/user/906640"
  4094. }
  4095. ],
  4096. "description": "Basic Site Setting for Domains.",
  4097. "homepage": "https://www.drupal.org/project/domain_site_settings",
  4098. "keywords": [
  4099. "Drupal"
  4100. ],
  4101. "support": {
  4102. "source": "http://cgit.drupalcode.org/domain_site_settings",
  4103. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  4104. }
  4105. },
  4106. {
  4107. "name": "drupal/email_registration",
  4108. "version": "1.0.0-rc7",
  4109. "source": {
  4110. "type": "git",
  4111. "url": "https://git.drupalcode.org/project/email_registration.git",
  4112. "reference": "8.x-1.0-rc7"
  4113. },
  4114. "dist": {
  4115. "type": "zip",
  4116. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.0-rc7.zip",
  4117. "reference": "8.x-1.0-rc7",
  4118. "shasum": "a3ebc1e38539e7916f48e827d5bd7b1abeef0011"
  4119. },
  4120. "require": {
  4121. "drupal/core": "*"
  4122. },
  4123. "type": "drupal-module",
  4124. "extra": {
  4125. "branch-alias": {
  4126. "dev-1.x": "1.x-dev"
  4127. },
  4128. "drupal": {
  4129. "version": "8.x-1.0-rc7",
  4130. "datestamp": "1557344281",
  4131. "security-coverage": {
  4132. "status": "not-covered",
  4133. "message": "RC releases are not covered by Drupal security advisories."
  4134. }
  4135. }
  4136. },
  4137. "notification-url": "https://packages.drupal.org/8/downloads",
  4138. "license": [
  4139. "GPL-2.0+"
  4140. ],
  4141. "authors": [
  4142. {
  4143. "name": "Greg Knaddison (greggles)",
  4144. "homepage": "https://www.drupal.org/u/greggles",
  4145. "role": "Maintainer"
  4146. },
  4147. {
  4148. "name": "Andrey Postnikov (andypost)",
  4149. "homepage": "https://www.drupal.org/u/andypost",
  4150. "role": "Maintainer"
  4151. },
  4152. {
  4153. "name": "Chris Herberte",
  4154. "homepage": "https://www.drupal.org/u/chris-herberte",
  4155. "role": "Maintainer"
  4156. },
  4157. {
  4158. "name": "Moshe Weitzman (moshe weitzman)",
  4159. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4160. "role": "Maintainer"
  4161. }
  4162. ],
  4163. "description": "Allows users to register with an email address as their username.",
  4164. "homepage": "https://www.drupal.org/project/email_registration",
  4165. "support": {
  4166. "source": "http://cgit.drupalcode.org/email_registration",
  4167. "issues": "http://drupal.org/project/issues/email_registration"
  4168. }
  4169. },
  4170. {
  4171. "name": "drupal/entity",
  4172. "version": "1.0.0-rc3",
  4173. "source": {
  4174. "type": "git",
  4175. "url": "https://git.drupalcode.org/project/entity.git",
  4176. "reference": "8.x-1.0-rc3"
  4177. },
  4178. "dist": {
  4179. "type": "zip",
  4180. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.0-rc3.zip",
  4181. "reference": "8.x-1.0-rc3",
  4182. "shasum": "6b4ccc0231c52ed9594502a0718057f53d98404d"
  4183. },
  4184. "require": {
  4185. "drupal/core": "^8.6"
  4186. },
  4187. "type": "drupal-module",
  4188. "extra": {
  4189. "branch-alias": {
  4190. "dev-1.x": "1.x-dev"
  4191. },
  4192. "drupal": {
  4193. "version": "8.x-1.0-rc3",
  4194. "datestamp": "1559579884",
  4195. "security-coverage": {
  4196. "status": "not-covered",
  4197. "message": "RC releases are not covered by Drupal security advisories."
  4198. }
  4199. }
  4200. },
  4201. "notification-url": "https://packages.drupal.org/8/downloads",
  4202. "license": [
  4203. "GPL-2.0+"
  4204. ],
  4205. "authors": [
  4206. {
  4207. "name": "Berdir",
  4208. "homepage": "https://www.drupal.org/user/214652"
  4209. },
  4210. {
  4211. "name": "bojanz",
  4212. "homepage": "https://www.drupal.org/user/86106"
  4213. },
  4214. {
  4215. "name": "dawehner",
  4216. "homepage": "https://www.drupal.org/user/99340"
  4217. },
  4218. {
  4219. "name": "dixon_",
  4220. "homepage": "https://www.drupal.org/user/239911"
  4221. },
  4222. {
  4223. "name": "fago",
  4224. "homepage": "https://www.drupal.org/user/16747"
  4225. }
  4226. ],
  4227. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  4228. "homepage": "http://drupal.org/project/entity",
  4229. "support": {
  4230. "source": "https://git.drupalcode.org/project/entity"
  4231. }
  4232. },
  4233. {
  4234. "name": "drupal/features",
  4235. "version": "3.8.0",
  4236. "source": {
  4237. "type": "git",
  4238. "url": "https://git.drupalcode.org/project/features.git",
  4239. "reference": "8.x-3.8"
  4240. },
  4241. "dist": {
  4242. "type": "zip",
  4243. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.8.zip",
  4244. "reference": "8.x-3.8",
  4245. "shasum": "15cebd00e38d63c0d946682e76327a03499c27be"
  4246. },
  4247. "require": {
  4248. "drupal/config_update": "^1.4",
  4249. "drupal/core": "*"
  4250. },
  4251. "type": "drupal-module",
  4252. "extra": {
  4253. "branch-alias": {
  4254. "dev-3.x": "3.x-dev"
  4255. },
  4256. "drupal": {
  4257. "version": "8.x-3.8",
  4258. "datestamp": "1536512284",
  4259. "security-coverage": {
  4260. "status": "covered",
  4261. "message": "Covered by Drupal's security advisory policy"
  4262. }
  4263. },
  4264. "drush": {
  4265. "services": {
  4266. "drush.services.yml": "^9"
  4267. }
  4268. }
  4269. },
  4270. "notification-url": "https://packages.drupal.org/8/downloads",
  4271. "license": [
  4272. "GPL-2.0+"
  4273. ],
  4274. "authors": [
  4275. {
  4276. "name": "dawehner",
  4277. "homepage": "https://www.drupal.org/user/99340"
  4278. },
  4279. {
  4280. "name": "e2thex",
  4281. "homepage": "https://www.drupal.org/user/189123"
  4282. },
  4283. {
  4284. "name": "febbraro",
  4285. "homepage": "https://www.drupal.org/user/43670"
  4286. },
  4287. {
  4288. "name": "jmiccolis",
  4289. "homepage": "https://www.drupal.org/user/31731"
  4290. },
  4291. {
  4292. "name": "joseph.olstad",
  4293. "homepage": "https://www.drupal.org/user/1321830"
  4294. },
  4295. {
  4296. "name": "mpotter",
  4297. "homepage": "https://www.drupal.org/user/616192"
  4298. },
  4299. {
  4300. "name": "nedjo",
  4301. "homepage": "https://www.drupal.org/user/4481"
  4302. },
  4303. {
  4304. "name": "tim.plunkett",
  4305. "homepage": "https://www.drupal.org/user/241634"
  4306. }
  4307. ],
  4308. "description": "Enables administrators to package configuration into modules",
  4309. "homepage": "https://www.drupal.org/project/features",
  4310. "support": {
  4311. "source": "https://git.drupalcode.org/project/features"
  4312. }
  4313. },
  4314. {
  4315. "name": "drupal/field_group",
  4316. "version": "3.0.0-rc1",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://git.drupalcode.org/project/field_group.git",
  4320. "reference": "8.x-3.0-rc1"
  4321. },
  4322. "dist": {
  4323. "type": "zip",
  4324. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.0-rc1.zip",
  4325. "reference": "8.x-3.0-rc1",
  4326. "shasum": "e291b5468c834a344e9aa6cafd3a76171d473a22"
  4327. },
  4328. "require": {
  4329. "drupal/core": "*"
  4330. },
  4331. "type": "drupal-module",
  4332. "extra": {
  4333. "branch-alias": {
  4334. "dev-3.x": "3.x-dev"
  4335. },
  4336. "drupal": {
  4337. "version": "8.x-3.0-rc1",
  4338. "datestamp": "1558678323",
  4339. "security-coverage": {
  4340. "status": "not-covered",
  4341. "message": "RC releases are not covered by Drupal security advisories."
  4342. }
  4343. }
  4344. },
  4345. "notification-url": "https://packages.drupal.org/8/downloads",
  4346. "license": [
  4347. "GPL-2.0+"
  4348. ],
  4349. "authors": [
  4350. {
  4351. "name": "Hydra",
  4352. "homepage": "https://www.drupal.org/user/647364"
  4353. },
  4354. {
  4355. "name": "Stalski",
  4356. "homepage": "https://www.drupal.org/user/322618"
  4357. },
  4358. {
  4359. "name": "jyve",
  4360. "homepage": "https://www.drupal.org/user/591438"
  4361. },
  4362. {
  4363. "name": "swentel",
  4364. "homepage": "https://www.drupal.org/user/107403"
  4365. },
  4366. {
  4367. "name": "zuuperman",
  4368. "homepage": "https://www.drupal.org/user/361625"
  4369. }
  4370. ],
  4371. "description": "Provides the field_group module.",
  4372. "homepage": "https://www.drupal.org/project/field_group",
  4373. "support": {
  4374. "source": "https://git.drupalcode.org/project/field_group"
  4375. }
  4376. },
  4377. {
  4378. "name": "drupal/filefield_sources",
  4379. "version": "dev-1.x",
  4380. "source": {
  4381. "type": "git",
  4382. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  4383. "reference": "6da74b585fcdc66bf5b1f5b3d9c6985df137fa2a"
  4384. },
  4385. "require": {
  4386. "drupal/core": "*"
  4387. },
  4388. "require-dev": {
  4389. "drupal/imce": "*"
  4390. },
  4391. "type": "drupal-module",
  4392. "extra": {
  4393. "branch-alias": {
  4394. "dev-1.x": "1.x-dev"
  4395. },
  4396. "drupal": {
  4397. "version": "8.x-1.0-alpha1+5-dev",
  4398. "datestamp": "1556769786",
  4399. "security-coverage": {
  4400. "status": "not-covered",
  4401. "message": "Dev releases are not covered by Drupal security advisories."
  4402. }
  4403. }
  4404. },
  4405. "notification-url": "https://packages.drupal.org/8/downloads",
  4406. "license": [
  4407. "GPL-2.0-or-later"
  4408. ],
  4409. "authors": [
  4410. {
  4411. "name": "Nate Lampton (quicksketch)",
  4412. "homepage": "https://www.drupal.org/u/quicksketch",
  4413. "role": "Maintainer"
  4414. },
  4415. {
  4416. "name": "Andrey Khromyshev (profak)",
  4417. "homepage": "https://www.drupal.org/u/profak",
  4418. "role": "Maintainer"
  4419. },
  4420. {
  4421. "name": "David Valdez (gnuget)",
  4422. "homepage": "https://www.drupal.org/u/gnuget",
  4423. "role": "Maintainer"
  4424. }
  4425. ],
  4426. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  4427. "homepage": "https://www.drupal.org/project/filefield_sources",
  4428. "support": {
  4429. "source": "https://git.drupalcode.org/project/filefield_sources",
  4430. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  4431. "irc": "irc://irc.freenode.org/drupal-contribute"
  4432. },
  4433. "time": "2019-05-03T18:32:19+00:00"
  4434. },
  4435. {
  4436. "name": "drupal/filter_perms",
  4437. "version": "dev-1.x",
  4438. "source": {
  4439. "type": "git",
  4440. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4441. "reference": "f491dd73fd876f6de0b2252c6b9bf18e0e27b357"
  4442. },
  4443. "require": {
  4444. "drupal/core": "*"
  4445. },
  4446. "type": "drupal-module",
  4447. "extra": {
  4448. "branch-alias": {
  4449. "dev-1.x": "1.x-dev"
  4450. },
  4451. "drupal": {
  4452. "version": "8.x-1.x-dev",
  4453. "datestamp": "1469645939",
  4454. "security-coverage": {
  4455. "status": "not-covered",
  4456. "message": "Dev releases are not covered by Drupal security advisories."
  4457. }
  4458. }
  4459. },
  4460. "notification-url": "https://packages.drupal.org/8/downloads",
  4461. "license": [
  4462. "GPL-2.0-or-later"
  4463. ],
  4464. "authors": [
  4465. {
  4466. "name": "cYu",
  4467. "homepage": "https://www.drupal.org/user/202205"
  4468. },
  4469. {
  4470. "name": "deekayen",
  4471. "homepage": "https://www.drupal.org/user/972"
  4472. },
  4473. {
  4474. "name": "willzyx",
  4475. "homepage": "https://www.drupal.org/user/1043862"
  4476. }
  4477. ],
  4478. "description": "Provides role and module filters to simplify the user permissions page.",
  4479. "homepage": "https://www.drupal.org/project/filter_perms",
  4480. "support": {
  4481. "source": "https://git.drupalcode.org/project/filter_perms"
  4482. },
  4483. "time": "2016-07-27T19:01:11+00:00"
  4484. },
  4485. {
  4486. "name": "drupal/honeypot",
  4487. "version": "1.29.0",
  4488. "source": {
  4489. "type": "git",
  4490. "url": "https://git.drupalcode.org/project/honeypot.git",
  4491. "reference": "8.x-1.29"
  4492. },
  4493. "dist": {
  4494. "type": "zip",
  4495. "url": "https://ftp.drupal.org/files/projects/honeypot-8.x-1.29.zip",
  4496. "reference": "8.x-1.29",
  4497. "shasum": "029d9e068d8f6a5db52434c27dc71bd3f06da487"
  4498. },
  4499. "require": {
  4500. "drupal/core": "~8.0"
  4501. },
  4502. "type": "drupal-module",
  4503. "extra": {
  4504. "branch-alias": {
  4505. "dev-1.x": "1.x-dev"
  4506. },
  4507. "drupal": {
  4508. "version": "8.x-1.29",
  4509. "datestamp": "1536179280",
  4510. "security-coverage": {
  4511. "status": "covered",
  4512. "message": "Covered by Drupal's security advisory policy"
  4513. }
  4514. }
  4515. },
  4516. "notification-url": "https://packages.drupal.org/8/downloads",
  4517. "license": [
  4518. "GPL-2.0+"
  4519. ],
  4520. "authors": [
  4521. {
  4522. "name": "Jeff Geerling",
  4523. "homepage": "https://www.drupal.org/user/213194",
  4524. "email": "geerlingguy@mac.com"
  4525. },
  4526. {
  4527. "name": "geerlingguy",
  4528. "homepage": "https://www.drupal.org/user/389011"
  4529. },
  4530. {
  4531. "name": "vijaycs85",
  4532. "homepage": "https://www.drupal.org/user/93488"
  4533. }
  4534. ],
  4535. "description": "Mitigates spam form submissions using the honeypot method.",
  4536. "homepage": "https://www.drupal.org/project/honeypot",
  4537. "keywords": [
  4538. "deterrent",
  4539. "form",
  4540. "honeypot",
  4541. "honeytrap",
  4542. "php",
  4543. "spam"
  4544. ],
  4545. "support": {
  4546. "source": "https://git.drupalcode.org/project/honeypot"
  4547. }
  4548. },
  4549. {
  4550. "name": "drupal/linkit",
  4551. "version": "5.0.0-beta9",
  4552. "source": {
  4553. "type": "git",
  4554. "url": "https://git.drupalcode.org/project/linkit.git",
  4555. "reference": "8.x-5.0-beta9"
  4556. },
  4557. "dist": {
  4558. "type": "zip",
  4559. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta9.zip",
  4560. "reference": "8.x-5.0-beta9",
  4561. "shasum": "150291dd87a4f65027492020c28635e2b5249d1a"
  4562. },
  4563. "require": {
  4564. "drupal/core": "~8.0"
  4565. },
  4566. "require-dev": {
  4567. "drupal/imce": "*"
  4568. },
  4569. "type": "drupal-module",
  4570. "extra": {
  4571. "branch-alias": {
  4572. "dev-5.x": "5.x-dev"
  4573. },
  4574. "drupal": {
  4575. "version": "8.x-5.0-beta9",
  4576. "datestamp": "1562194985",
  4577. "security-coverage": {
  4578. "status": "not-covered",
  4579. "message": "Beta releases are not covered by Drupal security advisories."
  4580. }
  4581. }
  4582. },
  4583. "notification-url": "https://packages.drupal.org/8/downloads",
  4584. "license": [
  4585. "GPL-2.0+"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "Emil Stjerneman",
  4590. "homepage": "https://stjerneman.com",
  4591. "email": "emil@stjerneman.com",
  4592. "role": "Maintainer"
  4593. }
  4594. ],
  4595. "description": "Linkit - Enriched linking experience",
  4596. "homepage": "http://drupal.org/project/linkit",
  4597. "support": {
  4598. "source": "http://cgit.drupalcode.org/linkit",
  4599. "issues": "http://drupal.org/project/linkit"
  4600. }
  4601. },
  4602. {
  4603. "name": "drupal/login_emailusername",
  4604. "version": "1.1.0",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4608. "reference": "8.x-1.1"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://ftp.drupal.org/files/projects/login_emailusername-8.x-1.1.zip",
  4613. "reference": "8.x-1.1",
  4614. "shasum": "f484b76b538f4dbbae5a75b49577f4ddf576809e"
  4615. },
  4616. "require": {
  4617. "drupal/core": "~8.0"
  4618. },
  4619. "type": "drupal-module",
  4620. "extra": {
  4621. "branch-alias": {
  4622. "dev-1.x": "1.x-dev"
  4623. },
  4624. "drupal": {
  4625. "version": "8.x-1.1",
  4626. "datestamp": "1483456142",
  4627. "security-coverage": {
  4628. "status": "covered",
  4629. "message": "Covered by Drupal's security advisory policy"
  4630. }
  4631. }
  4632. },
  4633. "notification-url": "https://packages.drupal.org/8/downloads",
  4634. "license": [
  4635. "GPL-2.0-or-later"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "rjjakes",
  4640. "homepage": "https://www.drupal.org/user/3457245"
  4641. }
  4642. ],
  4643. "description": "Allow users to log in with either their username OR email address using the same input box on the login form.",
  4644. "homepage": "https://www.drupal.org/project/login_emailusername",
  4645. "support": {
  4646. "source": "https://git.drupalcode.org/project/login_emailusername"
  4647. }
  4648. },
  4649. {
  4650. "name": "drupal/maillog",
  4651. "version": "dev-1.x",
  4652. "source": {
  4653. "type": "git",
  4654. "url": "https://git.drupalcode.org/project/maillog.git",
  4655. "reference": "14fd24cd89e299ad271608cd52706c60b753c26d"
  4656. },
  4657. "require": {
  4658. "drupal/core": "*"
  4659. },
  4660. "type": "drupal-module",
  4661. "extra": {
  4662. "branch-alias": {
  4663. "dev-1.x": "1.x-dev"
  4664. },
  4665. "drupal": {
  4666. "version": "8.x-1.x-dev",
  4667. "datestamp": "1470431939",
  4668. "security-coverage": {
  4669. "status": "not-covered",
  4670. "message": "Project has not opted into security advisory coverage!"
  4671. }
  4672. }
  4673. },
  4674. "notification-url": "https://packages.drupal.org/8/downloads",
  4675. "license": [
  4676. "GPL-2.0-or-later"
  4677. ],
  4678. "authors": [
  4679. {
  4680. "name": "Berdir",
  4681. "homepage": "https://www.drupal.org/user/214652"
  4682. },
  4683. {
  4684. "name": "DamienMcKenna",
  4685. "homepage": "https://www.drupal.org/user/108450"
  4686. },
  4687. {
  4688. "name": "miro_dietiker",
  4689. "homepage": "https://www.drupal.org/user/227761"
  4690. },
  4691. {
  4692. "name": "pluess",
  4693. "homepage": "https://www.drupal.org/user/84659"
  4694. }
  4695. ],
  4696. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4697. "homepage": "https://www.drupal.org/project/maillog",
  4698. "support": {
  4699. "source": "https://git.drupalcode.org/project/maillog"
  4700. },
  4701. "time": "2016-08-05T21:18:07+00:00"
  4702. },
  4703. {
  4704. "name": "drupal/matomo",
  4705. "version": "1.9.0",
  4706. "source": {
  4707. "type": "git",
  4708. "url": "https://git.drupalcode.org/project/matomo.git",
  4709. "reference": "8.x-1.9"
  4710. },
  4711. "dist": {
  4712. "type": "zip",
  4713. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4714. "reference": "8.x-1.9",
  4715. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4716. },
  4717. "require": {
  4718. "drupal/core": "~8.5"
  4719. },
  4720. "require-dev": {
  4721. "drupal/php": "*",
  4722. "drupal/token": "*"
  4723. },
  4724. "type": "drupal-module",
  4725. "extra": {
  4726. "branch-alias": {
  4727. "dev-1.x": "1.x-dev"
  4728. },
  4729. "drupal": {
  4730. "version": "8.x-1.9",
  4731. "datestamp": "1549615080",
  4732. "security-coverage": {
  4733. "status": "covered",
  4734. "message": "Covered by Drupal's security advisory policy"
  4735. }
  4736. }
  4737. },
  4738. "notification-url": "https://packages.drupal.org/8/downloads",
  4739. "license": [
  4740. "GPL-2.0+"
  4741. ],
  4742. "authors": [
  4743. {
  4744. "name": "hass",
  4745. "homepage": "https://www.drupal.org/u/hass"
  4746. },
  4747. {
  4748. "name": "See other contributors",
  4749. "homepage": "https://www.drupal.org/node/247808/committers"
  4750. }
  4751. ],
  4752. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4753. "homepage": "https://www.drupal.org/project/matomo",
  4754. "support": {
  4755. "source": "https://git.drupal.org/project/matomo.git",
  4756. "issues": "https://www.drupal.org/project/issues/matomo"
  4757. }
  4758. },
  4759. {
  4760. "name": "drupal/menu_admin_per_menu",
  4761. "version": "1.0.0",
  4762. "source": {
  4763. "type": "git",
  4764. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4765. "reference": "8.x-1.0"
  4766. },
  4767. "dist": {
  4768. "type": "zip",
  4769. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.0.zip",
  4770. "reference": "8.x-1.0",
  4771. "shasum": "27dbef0025146a382feab67db5e93eaf280b8de4"
  4772. },
  4773. "require": {
  4774. "drupal/core": "*"
  4775. },
  4776. "type": "drupal-module",
  4777. "extra": {
  4778. "branch-alias": {
  4779. "dev-1.x": "1.x-dev"
  4780. },
  4781. "drupal": {
  4782. "version": "8.x-1.0",
  4783. "datestamp": "1507184944",
  4784. "security-coverage": {
  4785. "status": "covered",
  4786. "message": "Covered by Drupal's security advisory policy"
  4787. }
  4788. }
  4789. },
  4790. "notification-url": "https://packages.drupal.org/8/downloads",
  4791. "license": [
  4792. "GPL-2.0-or-later"
  4793. ],
  4794. "authors": [
  4795. {
  4796. "name": "anrikun",
  4797. "homepage": "https://www.drupal.org/user/410199"
  4798. },
  4799. {
  4800. "name": "mkdok",
  4801. "homepage": "https://www.drupal.org/user/3308753"
  4802. }
  4803. ],
  4804. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4805. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4806. "support": {
  4807. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4808. }
  4809. },
  4810. {
  4811. "name": "drupal/metatag",
  4812. "version": "1.10.0",
  4813. "source": {
  4814. "type": "git",
  4815. "url": "https://git.drupalcode.org/project/metatag.git",
  4816. "reference": "8.x-1.10"
  4817. },
  4818. "dist": {
  4819. "type": "zip",
  4820. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.10.zip",
  4821. "reference": "8.x-1.10",
  4822. "shasum": "06275ae0f72cfcdbec8b8e8fd5d0863a5967bbcc"
  4823. },
  4824. "require": {
  4825. "drupal/core": "*",
  4826. "drupal/token": "^1.0"
  4827. },
  4828. "require-dev": {
  4829. "drupal/devel": "^2.0",
  4830. "drupal/metatag_dc": "*",
  4831. "drupal/metatag_open_graph": "*",
  4832. "drupal/page_manager": "^4.0",
  4833. "drupal/redirect": "^1.0",
  4834. "drupal/restui": "^1.0",
  4835. "drupal/schema_metatag": "^1.0",
  4836. "drupal/schema_web_page": "*"
  4837. },
  4838. "type": "drupal-module",
  4839. "extra": {
  4840. "branch-alias": {
  4841. "dev-1.x": "1.x-dev"
  4842. },
  4843. "drupal": {
  4844. "version": "8.x-1.10",
  4845. "datestamp": "1567099985",
  4846. "security-coverage": {
  4847. "status": "covered",
  4848. "message": "Covered by Drupal's security advisory policy"
  4849. }
  4850. }
  4851. },
  4852. "notification-url": "https://packages.drupal.org/8/downloads",
  4853. "license": [
  4854. "GPL-2.0+"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "See contributors",
  4859. "homepage": "https://www.drupal.org/node/640498/committers",
  4860. "role": "Developer"
  4861. },
  4862. {
  4863. "name": "Dave Reid",
  4864. "homepage": "https://www.drupal.org/user/53892"
  4865. }
  4866. ],
  4867. "description": "Manage meta tags for all entities.",
  4868. "homepage": "https://www.drupal.org/project/metatag",
  4869. "keywords": [
  4870. "Drupal",
  4871. "seo"
  4872. ],
  4873. "support": {
  4874. "source": "http://cgit.drupalcode.org/metatag",
  4875. "issues": "http://drupal.org/project/issues/metatag"
  4876. }
  4877. },
  4878. {
  4879. "name": "drupal/migrate_plus",
  4880. "version": "4.2.0",
  4881. "source": {
  4882. "type": "git",
  4883. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4884. "reference": "8.x-4.2"
  4885. },
  4886. "dist": {
  4887. "type": "zip",
  4888. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-4.2.zip",
  4889. "reference": "8.x-4.2",
  4890. "shasum": "5736a43e39cc5c091d54ceef2849ea35ba979af3"
  4891. },
  4892. "require": {
  4893. "drupal/core": "^8.3"
  4894. },
  4895. "require-dev": {
  4896. "drupal/entity": "*",
  4897. "drupal/migrate_example_advanced_setup": "*",
  4898. "drupal/migrate_example_setup": "*",
  4899. "drupal/migrate_tools": "*",
  4900. "drupal/profile": "*"
  4901. },
  4902. "suggest": {
  4903. "ext-soap": "*",
  4904. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4905. },
  4906. "type": "drupal-module",
  4907. "extra": {
  4908. "branch-alias": {
  4909. "dev-4.x": "4.x-dev"
  4910. },
  4911. "drupal": {
  4912. "version": "8.x-4.2",
  4913. "datestamp": "1555683487",
  4914. "security-coverage": {
  4915. "status": "covered",
  4916. "message": "Covered by Drupal's security advisory policy"
  4917. }
  4918. }
  4919. },
  4920. "notification-url": "https://packages.drupal.org/8/downloads",
  4921. "license": [
  4922. "GPL-2.0+"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Mike Ryan",
  4927. "homepage": "https://www.drupal.org/u/mikeryan",
  4928. "role": "Maintainer"
  4929. },
  4930. {
  4931. "name": "mikeryan",
  4932. "homepage": "https://www.drupal.org/user/4420"
  4933. }
  4934. ],
  4935. "description": "Enhancements to core migration support.",
  4936. "homepage": "https://www.drupal.org/project/migrate_plus",
  4937. "support": {
  4938. "source": "https://cgit.drupalcode.org/migrate_plus",
  4939. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4940. "irc": "irc://irc.freenode.org/drupal-migrate"
  4941. }
  4942. },
  4943. {
  4944. "name": "drupal/migrate_tools",
  4945. "version": "4.4.0",
  4946. "source": {
  4947. "type": "git",
  4948. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4949. "reference": "8.x-4.4"
  4950. },
  4951. "dist": {
  4952. "type": "zip",
  4953. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.4.zip",
  4954. "reference": "8.x-4.4",
  4955. "shasum": "54a9f138809564c7e89d0e37e9fbb2ed57b562e2"
  4956. },
  4957. "require": {
  4958. "drupal/core": "^8.3",
  4959. "drupal/migrate_plus": "^4 || ^5"
  4960. },
  4961. "require-dev": {
  4962. "drupal/migrate_plus": "4.x-dev",
  4963. "drupal/migrate_source_csv": "^2.2",
  4964. "drush/drush": "^10"
  4965. },
  4966. "type": "drupal-module",
  4967. "extra": {
  4968. "branch-alias": {
  4969. "dev-4.x": "4.x-dev"
  4970. },
  4971. "drupal": {
  4972. "version": "8.x-4.4",
  4973. "datestamp": "1570477985",
  4974. "security-coverage": {
  4975. "status": "covered",
  4976. "message": "Covered by Drupal's security advisory policy"
  4977. }
  4978. },
  4979. "drush": {
  4980. "services": {
  4981. "drush.services.yml": "^9 || ^10"
  4982. }
  4983. }
  4984. },
  4985. "notification-url": "https://packages.drupal.org/8/downloads",
  4986. "license": [
  4987. "GPL-2.0-or-later"
  4988. ],
  4989. "authors": [
  4990. {
  4991. "name": "heddn",
  4992. "homepage": "https://www.drupal.org/user/1463982"
  4993. },
  4994. {
  4995. "name": "mikeryan",
  4996. "homepage": "https://www.drupal.org/user/4420"
  4997. },
  4998. {
  4999. "name": "moshe weitzman",
  5000. "homepage": "https://www.drupal.org/user/23"
  5001. }
  5002. ],
  5003. "description": "Tools to assist in developing and running migrations.",
  5004. "homepage": "http://drupal.org/project/migrate_tools",
  5005. "support": {
  5006. "source": "http://cgit.drupalcode.org/migrate_tools",
  5007. "issues": "http://drupal.org/project/migrate_tools",
  5008. "irc": "irc://irc.freenode.org/drupal-migrate"
  5009. }
  5010. },
  5011. {
  5012. "name": "drupal/path_alias_xt",
  5013. "version": "dev-1.x",
  5014. "source": {
  5015. "type": "git",
  5016. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5017. "reference": "30e7fc03f4f8572516160ea3a7d7282653e71818"
  5018. },
  5019. "require": {
  5020. "drupal/core": "*"
  5021. },
  5022. "type": "drupal-module",
  5023. "extra": {
  5024. "branch-alias": {
  5025. "dev-1.x": "1.x-dev"
  5026. },
  5027. "drupal": {
  5028. "version": "8.x-1.x-dev",
  5029. "datestamp": "1557514381",
  5030. "security-coverage": {
  5031. "status": "not-covered",
  5032. "message": "Dev releases are not covered by Drupal security advisories."
  5033. }
  5034. }
  5035. },
  5036. "notification-url": "https://packages.drupal.org/8/downloads",
  5037. "license": [
  5038. "GPL-2.0-or-later"
  5039. ],
  5040. "authors": [
  5041. {
  5042. "name": "RdeBoer",
  5043. "homepage": "https://www.drupal.org/user/404007"
  5044. },
  5045. {
  5046. "name": "adriancid",
  5047. "homepage": "https://www.drupal.org/user/1962106"
  5048. },
  5049. {
  5050. "name": "sdstyles",
  5051. "homepage": "https://www.drupal.org/user/1420228"
  5052. }
  5053. ],
  5054. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  5055. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5056. "support": {
  5057. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5058. },
  5059. "time": "2019-05-28T17:44:23+00:00"
  5060. },
  5061. {
  5062. "name": "drupal/pathauto",
  5063. "version": "1.5.0",
  5064. "source": {
  5065. "type": "git",
  5066. "url": "https://git.drupalcode.org/project/pathauto.git",
  5067. "reference": "8.x-1.5"
  5068. },
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.5.zip",
  5072. "reference": "8.x-1.5",
  5073. "shasum": "ae3c13f26d625e63da3b13dc64016888eca519c7"
  5074. },
  5075. "require": {
  5076. "drupal/core": "^8.6",
  5077. "drupal/ctools": "*",
  5078. "drupal/token": "*"
  5079. },
  5080. "type": "drupal-module",
  5081. "extra": {
  5082. "branch-alias": {
  5083. "dev-1.x": "1.x-dev"
  5084. },
  5085. "drupal": {
  5086. "version": "8.x-1.5",
  5087. "datestamp": "1570828084",
  5088. "security-coverage": {
  5089. "status": "covered",
  5090. "message": "Covered by Drupal's security advisory policy"
  5091. }
  5092. }
  5093. },
  5094. "notification-url": "https://packages.drupal.org/8/downloads",
  5095. "license": [
  5096. "GPL-2.0-or-later"
  5097. ],
  5098. "authors": [
  5099. {
  5100. "name": "Berdir",
  5101. "homepage": "https://www.drupal.org/user/214652"
  5102. },
  5103. {
  5104. "name": "Dave Reid",
  5105. "homepage": "https://www.drupal.org/user/53892"
  5106. },
  5107. {
  5108. "name": "Freso",
  5109. "homepage": "https://www.drupal.org/user/27504"
  5110. },
  5111. {
  5112. "name": "greggles",
  5113. "homepage": "https://www.drupal.org/user/36762"
  5114. }
  5115. ],
  5116. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5117. "homepage": "https://www.drupal.org/project/pathauto",
  5118. "support": {
  5119. "source": "https://git.drupalcode.org/project/pathauto"
  5120. }
  5121. },
  5122. {
  5123. "name": "drupal/piwik",
  5124. "version": "1.4.0",
  5125. "source": {
  5126. "type": "git",
  5127. "url": "https://git.drupalcode.org/project/piwik.git",
  5128. "reference": "8.x-1.4"
  5129. },
  5130. "dist": {
  5131. "type": "zip",
  5132. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  5133. "reference": "8.x-1.4",
  5134. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  5135. },
  5136. "require": {
  5137. "drupal/core": "~8.0",
  5138. "drupal/matomo": "^1.0"
  5139. },
  5140. "require-dev": {
  5141. "drupal/php": "*",
  5142. "drupal/token": "*"
  5143. },
  5144. "type": "drupal-module",
  5145. "extra": {
  5146. "branch-alias": {
  5147. "dev-1.x": "1.x-dev"
  5148. },
  5149. "drupal": {
  5150. "version": "8.x-1.4",
  5151. "datestamp": "1530437786",
  5152. "security-coverage": {
  5153. "status": "covered",
  5154. "message": "Covered by Drupal's security advisory policy"
  5155. }
  5156. }
  5157. },
  5158. "notification-url": "https://packages.drupal.org/8/downloads",
  5159. "license": [
  5160. "GPL-2.0+"
  5161. ],
  5162. "authors": [
  5163. {
  5164. "name": "hass",
  5165. "homepage": "https://www.drupal.org/u/hass"
  5166. },
  5167. {
  5168. "name": "See other contributors",
  5169. "homepage": "https://www.drupal.org/node/247808/committers"
  5170. }
  5171. ],
  5172. "description": "Adds Piwik javascript tracking code to all your site's pages",
  5173. "homepage": "https://www.drupal.org/project/piwik",
  5174. "support": {
  5175. "source": "http://git.drupal.org/project/piwik.git",
  5176. "issues": "https://www.drupal.org/project/issues/piwik"
  5177. }
  5178. },
  5179. {
  5180. "name": "drupal/profile",
  5181. "version": "1.0.0",
  5182. "source": {
  5183. "type": "git",
  5184. "url": "https://git.drupalcode.org/project/profile.git",
  5185. "reference": "8.x-1.0"
  5186. },
  5187. "dist": {
  5188. "type": "zip",
  5189. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.0.zip",
  5190. "reference": "8.x-1.0",
  5191. "shasum": "45f5ad7f274d5e1e7ec8b72d98f9a20136073112"
  5192. },
  5193. "require": {
  5194. "drupal/core": "^8.6",
  5195. "drupal/entity": "^1.0-rc2"
  5196. },
  5197. "require-dev": {
  5198. "drupal/token": "^1.0"
  5199. },
  5200. "type": "drupal-module",
  5201. "extra": {
  5202. "branch-alias": {
  5203. "dev-1.x": "1.x-dev"
  5204. },
  5205. "drupal": {
  5206. "version": "8.x-1.0",
  5207. "datestamp": "1567007888",
  5208. "security-coverage": {
  5209. "status": "covered",
  5210. "message": "Covered by Drupal's security advisory policy"
  5211. }
  5212. }
  5213. },
  5214. "notification-url": "https://packages.drupal.org/8/downloads",
  5215. "license": [
  5216. "GPL-2.0+"
  5217. ],
  5218. "authors": [
  5219. {
  5220. "name": "bojanz",
  5221. "homepage": "https://www.drupal.org/user/86106"
  5222. },
  5223. {
  5224. "name": "daggerhart",
  5225. "homepage": "https://www.drupal.org/user/167806"
  5226. },
  5227. {
  5228. "name": "fago",
  5229. "homepage": "https://www.drupal.org/user/16747"
  5230. },
  5231. {
  5232. "name": "jsacksick",
  5233. "homepage": "https://www.drupal.org/user/972218"
  5234. },
  5235. {
  5236. "name": "mglaman",
  5237. "homepage": "https://www.drupal.org/user/2416470"
  5238. },
  5239. {
  5240. "name": "pcambra",
  5241. "homepage": "https://www.drupal.org/user/122101"
  5242. }
  5243. ],
  5244. "description": "Provides configurable user profiles.",
  5245. "homepage": "http://drupal.org/project/profile",
  5246. "support": {
  5247. "source": "https://git.drupalcode.org/project/profile"
  5248. }
  5249. },
  5250. {
  5251. "name": "drupal/redirect",
  5252. "version": "1.4.0",
  5253. "source": {
  5254. "type": "git",
  5255. "url": "https://git.drupalcode.org/project/redirect.git",
  5256. "reference": "8.x-1.4"
  5257. },
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.4.zip",
  5261. "reference": "8.x-1.4",
  5262. "shasum": "4c7e0dc0ab0cbcc7d66e16cc684882c0eaa71c1c"
  5263. },
  5264. "require": {
  5265. "drupal/core": "~8"
  5266. },
  5267. "type": "drupal-module",
  5268. "extra": {
  5269. "branch-alias": {
  5270. "dev-1.x": "1.x-dev"
  5271. },
  5272. "drupal": {
  5273. "version": "8.x-1.4",
  5274. "datestamp": "1561757585",
  5275. "security-coverage": {
  5276. "status": "covered",
  5277. "message": "Covered by Drupal's security advisory policy"
  5278. }
  5279. }
  5280. },
  5281. "notification-url": "https://packages.drupal.org/8/downloads",
  5282. "license": [
  5283. "GPL-2.0+"
  5284. ],
  5285. "authors": [
  5286. {
  5287. "name": "Berdir",
  5288. "homepage": "https://www.drupal.org/user/214652"
  5289. },
  5290. {
  5291. "name": "Dave Reid",
  5292. "homepage": "https://www.drupal.org/user/53892"
  5293. },
  5294. {
  5295. "name": "pifagor",
  5296. "homepage": "https://www.drupal.org/user/2375692"
  5297. }
  5298. ],
  5299. "description": "Allows users to redirect from old URLs to new URLs.",
  5300. "homepage": "https://www.drupal.org/project/redirect",
  5301. "support": {
  5302. "source": "https://git.drupalcode.org/project/redirect"
  5303. }
  5304. },
  5305. {
  5306. "name": "drupal/redis",
  5307. "version": "1.2.0",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://git.drupalcode.org/project/redis.git",
  5311. "reference": "8.x-1.2"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.2.zip",
  5316. "reference": "8.x-1.2",
  5317. "shasum": "6b8847a0816a6e400d495aed1e9dde4c594d6e2b"
  5318. },
  5319. "require": {
  5320. "drupal/core": "~8.0"
  5321. },
  5322. "suggest": {
  5323. "predis/predis": "^1.1.1"
  5324. },
  5325. "type": "drupal-module",
  5326. "extra": {
  5327. "branch-alias": {
  5328. "dev-1.x": "1.x-dev"
  5329. },
  5330. "drupal": {
  5331. "version": "8.x-1.2",
  5332. "datestamp": "1568275684",
  5333. "security-coverage": {
  5334. "status": "covered",
  5335. "message": "Covered by Drupal's security advisory policy"
  5336. }
  5337. }
  5338. },
  5339. "autoload": {
  5340. "psr-4": {
  5341. "Drupal\\redis\\": "src"
  5342. }
  5343. },
  5344. "notification-url": "https://packages.drupal.org/8/downloads",
  5345. "license": [
  5346. "GPL-2.0"
  5347. ],
  5348. "authors": [
  5349. {
  5350. "name": "Berdir",
  5351. "homepage": "https://www.drupal.org/user/214652"
  5352. },
  5353. {
  5354. "name": "pounard",
  5355. "homepage": "https://www.drupal.org/user/240164"
  5356. }
  5357. ],
  5358. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  5359. "homepage": "https://www.drupal.org/project/redis",
  5360. "support": {
  5361. "source": "https://git.drupalcode.org/project/redis"
  5362. }
  5363. },
  5364. {
  5365. "name": "drupal/restui",
  5366. "version": "1.17.0",
  5367. "source": {
  5368. "type": "git",
  5369. "url": "https://git.drupalcode.org/project/restui.git",
  5370. "reference": "8.x-1.17"
  5371. },
  5372. "dist": {
  5373. "type": "zip",
  5374. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.17.zip",
  5375. "reference": "8.x-1.17",
  5376. "shasum": "2fff1b74759d5e490884d002330ad04d1bf241ba"
  5377. },
  5378. "require": {
  5379. "drupal/core": "^8.2.0"
  5380. },
  5381. "type": "drupal-module",
  5382. "extra": {
  5383. "branch-alias": {
  5384. "dev-1.x": "1.x-dev"
  5385. },
  5386. "drupal": {
  5387. "version": "8.x-1.17",
  5388. "datestamp": "1557845581",
  5389. "security-coverage": {
  5390. "status": "covered",
  5391. "message": "Covered by Drupal's security advisory policy"
  5392. }
  5393. }
  5394. },
  5395. "notification-url": "https://packages.drupal.org/8/downloads",
  5396. "license": [
  5397. "GPL-2.0-or-later"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "-enzo-",
  5402. "homepage": "https://www.drupal.org/user/294937"
  5403. },
  5404. {
  5405. "name": "clemens.tolboom",
  5406. "homepage": "https://www.drupal.org/user/125814"
  5407. },
  5408. {
  5409. "name": "juampynr",
  5410. "homepage": "https://www.drupal.org/user/682736"
  5411. },
  5412. {
  5413. "name": "klausi",
  5414. "homepage": "https://www.drupal.org/user/262198"
  5415. }
  5416. ],
  5417. "description": "Provides a user interface to manage REST resources.",
  5418. "homepage": "https://www.drupal.org/project/restui",
  5419. "support": {
  5420. "source": "https://git.drupalcode.org/project/restui"
  5421. }
  5422. },
  5423. {
  5424. "name": "drupal/search_api",
  5425. "version": "1.15.0",
  5426. "source": {
  5427. "type": "git",
  5428. "url": "https://git.drupalcode.org/project/search_api.git",
  5429. "reference": "8.x-1.15"
  5430. },
  5431. "dist": {
  5432. "type": "zip",
  5433. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.15.zip",
  5434. "reference": "8.x-1.15",
  5435. "shasum": "12c13141adb6b687fe36781ac9269a49ef810323"
  5436. },
  5437. "require": {
  5438. "drupal/core": "^8.6"
  5439. },
  5440. "conflict": {
  5441. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5442. },
  5443. "require-dev": {
  5444. "drupal/language_fallback_fix": "@dev",
  5445. "drupal/search_api_autocomplete": "@dev",
  5446. "drupal/search_api_db": "*"
  5447. },
  5448. "suggest": {
  5449. "drupal/facets": "Adds the ability to create faceted searches.",
  5450. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5451. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5452. },
  5453. "type": "drupal-module",
  5454. "extra": {
  5455. "branch-alias": {
  5456. "dev-1.x": "1.x-dev"
  5457. },
  5458. "drupal": {
  5459. "version": "8.x-1.15",
  5460. "datestamp": "1573122785",
  5461. "security-coverage": {
  5462. "status": "covered",
  5463. "message": "Covered by Drupal's security advisory policy"
  5464. }
  5465. },
  5466. "drush": {
  5467. "services": {
  5468. "drush.services.yml": "^9"
  5469. }
  5470. }
  5471. },
  5472. "notification-url": "https://packages.drupal.org/8/downloads",
  5473. "license": [
  5474. "GPL-2.0+"
  5475. ],
  5476. "authors": [
  5477. {
  5478. "name": "Thomas Seidl",
  5479. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5480. },
  5481. {
  5482. "name": "Nick Veenhof",
  5483. "homepage": "https://www.drupal.org/u/nick_vh"
  5484. },
  5485. {
  5486. "name": "See other contributors",
  5487. "homepage": "https://www.drupal.org/node/790418/committers"
  5488. }
  5489. ],
  5490. "description": "Provides a generic framework for modules offering search capabilities.",
  5491. "homepage": "https://www.drupal.org/project/search_api",
  5492. "support": {
  5493. "source": "http://git.drupal.org/project/search_api.git",
  5494. "issues": "https://www.drupal.org/project/issues/search_api",
  5495. "irc": "irc://irc.freenode.org/drupal-search-api"
  5496. }
  5497. },
  5498. {
  5499. "name": "drupal/simple_sitemap",
  5500. "version": "3.4.0",
  5501. "source": {
  5502. "type": "git",
  5503. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5504. "reference": "8.x-3.4"
  5505. },
  5506. "dist": {
  5507. "type": "zip",
  5508. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.4.zip",
  5509. "reference": "8.x-3.4",
  5510. "shasum": "7cb1944ca2659e426e20680ef8e7cd48747545c8"
  5511. },
  5512. "require": {
  5513. "drupal/core": "~8.0",
  5514. "ext-xmlwriter": "*"
  5515. },
  5516. "type": "drupal-module",
  5517. "extra": {
  5518. "branch-alias": {
  5519. "dev-3.x": "3.x-dev"
  5520. },
  5521. "drupal": {
  5522. "version": "8.x-3.4",
  5523. "datestamp": "1570445886",
  5524. "security-coverage": {
  5525. "status": "covered",
  5526. "message": "Covered by Drupal's security advisory policy"
  5527. }
  5528. },
  5529. "drush": {
  5530. "services": {
  5531. "drush.services.yml": "^9"
  5532. }
  5533. }
  5534. },
  5535. "notification-url": "https://packages.drupal.org/8/downloads",
  5536. "license": [
  5537. "GPL-2.0+"
  5538. ],
  5539. "authors": [
  5540. {
  5541. "name": "Pawel Ginalski (gbyte.co)",
  5542. "homepage": "https://www.drupal.org/u/gbyte.co",
  5543. "email": "contact@gbyte.co",
  5544. "role": "Maintainer"
  5545. },
  5546. {
  5547. "name": "gbyte.co",
  5548. "homepage": "https://www.drupal.org/user/2381352"
  5549. }
  5550. ],
  5551. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5552. "homepage": "https://drupal.org/project/simple_sitemap",
  5553. "support": {
  5554. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5555. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5556. "irc": "irc://irc.freenode.org/drupal-contribute"
  5557. }
  5558. },
  5559. {
  5560. "name": "drupal/synonyms",
  5561. "version": "dev-1.x",
  5562. "source": {
  5563. "type": "git",
  5564. "url": "https://git.drupalcode.org/project/synonyms.git",
  5565. "reference": "5327ef244bad11e859eed9ff71b49cb8f9955190"
  5566. },
  5567. "require": {
  5568. "drupal/core": "^8.2"
  5569. },
  5570. "type": "drupal-module",
  5571. "extra": {
  5572. "branch-alias": {
  5573. "dev-1.x": "1.x-dev"
  5574. },
  5575. "drupal": {
  5576. "version": "8.x-1.0-alpha1+5-dev",
  5577. "datestamp": "1540141681",
  5578. "security-coverage": {
  5579. "status": "not-covered",
  5580. "message": "Dev releases are not covered by Drupal security advisories."
  5581. }
  5582. }
  5583. },
  5584. "notification-url": "https://packages.drupal.org/8/downloads",
  5585. "license": [
  5586. "GPL-2.0-or-later"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Zen",
  5591. "homepage": "https://www.drupal.org/user/21209"
  5592. },
  5593. {
  5594. "name": "bojanz",
  5595. "homepage": "https://www.drupal.org/user/86106"
  5596. },
  5597. {
  5598. "name": "bucefal91",
  5599. "homepage": "https://www.drupal.org/user/504128"
  5600. }
  5601. ],
  5602. "description": "Provides synonyms feature for content entities.",
  5603. "homepage": "https://www.drupal.org/project/synonyms",
  5604. "support": {
  5605. "source": "https://git.drupalcode.org/project/synonyms"
  5606. },
  5607. "time": "2018-10-21T17:05:25+00:00"
  5608. },
  5609. {
  5610. "name": "drupal/token",
  5611. "version": "1.5.0",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://git.drupalcode.org/project/token.git",
  5615. "reference": "8.x-1.5"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.5.zip",
  5620. "reference": "8.x-1.5",
  5621. "shasum": "6382a7e1aabbd8246f1117a26bf4916d285b401d"
  5622. },
  5623. "require": {
  5624. "drupal/core": "^8.5"
  5625. },
  5626. "type": "drupal-module",
  5627. "extra": {
  5628. "branch-alias": {
  5629. "dev-1.x": "1.x-dev"
  5630. },
  5631. "drupal": {
  5632. "version": "8.x-1.5",
  5633. "datestamp": "1537557481",
  5634. "security-coverage": {
  5635. "status": "covered",
  5636. "message": "Covered by Drupal's security advisory policy"
  5637. }
  5638. }
  5639. },
  5640. "notification-url": "https://packages.drupal.org/8/downloads",
  5641. "license": [
  5642. "GPL-2.0-or-later"
  5643. ],
  5644. "authors": [
  5645. {
  5646. "name": "Berdir",
  5647. "homepage": "https://www.drupal.org/user/214652"
  5648. },
  5649. {
  5650. "name": "Dave Reid",
  5651. "homepage": "https://www.drupal.org/user/53892"
  5652. },
  5653. {
  5654. "name": "eaton",
  5655. "homepage": "https://www.drupal.org/user/16496"
  5656. },
  5657. {
  5658. "name": "fago",
  5659. "homepage": "https://www.drupal.org/user/16747"
  5660. },
  5661. {
  5662. "name": "greggles",
  5663. "homepage": "https://www.drupal.org/user/36762"
  5664. },
  5665. {
  5666. "name": "mikeryan",
  5667. "homepage": "https://www.drupal.org/user/4420"
  5668. }
  5669. ],
  5670. "description": "Provides a user interface for the Token API and some missing core tokens.",
  5671. "homepage": "https://www.drupal.org/project/token",
  5672. "support": {
  5673. "source": "https://git.drupalcode.org/project/token"
  5674. }
  5675. },
  5676. {
  5677. "name": "drupal/toolbar_themes",
  5678. "version": "dev-1.x",
  5679. "source": {
  5680. "type": "git",
  5681. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5682. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5683. },
  5684. "require": {
  5685. "drupal/core": "*"
  5686. },
  5687. "type": "drupal-module",
  5688. "extra": {
  5689. "branch-alias": {
  5690. "dev-1.x": "1.x-dev"
  5691. },
  5692. "drupal": {
  5693. "version": "8.x-1.0-alpha4+10-dev",
  5694. "datestamp": "1510689485",
  5695. "security-coverage": {
  5696. "status": "not-covered",
  5697. "message": "Project has not opted into security advisory coverage!"
  5698. }
  5699. }
  5700. },
  5701. "notification-url": "https://packages.drupal.org/8/downloads",
  5702. "license": [
  5703. "GPL-2.0-or-later"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Jeff Burnz",
  5708. "homepage": "https://www.drupal.org/user/61393"
  5709. }
  5710. ],
  5711. "description": "Apply themes to the toolbar.",
  5712. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5713. "support": {
  5714. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5715. },
  5716. "time": "2017-11-14T19:57:02+00:00"
  5717. },
  5718. {
  5719. "name": "drupal/translation_views",
  5720. "version": "1.0.0-alpha8",
  5721. "source": {
  5722. "type": "git",
  5723. "url": "https://git.drupalcode.org/project/translation_views.git",
  5724. "reference": "8.x-1.0-alpha8"
  5725. },
  5726. "dist": {
  5727. "type": "zip",
  5728. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha8.zip",
  5729. "reference": "8.x-1.0-alpha8",
  5730. "shasum": "5903869f77129aa46daf46cd9a34bd9706072eb5"
  5731. },
  5732. "require": {
  5733. "drupal/core": "*"
  5734. },
  5735. "require-dev": {
  5736. "drupal/translators": "*",
  5737. "drupal/translators_content": "*"
  5738. },
  5739. "type": "drupal-module",
  5740. "extra": {
  5741. "branch-alias": {
  5742. "dev-1.x": "1.x-dev"
  5743. },
  5744. "drupal": {
  5745. "version": "8.x-1.0-alpha8",
  5746. "datestamp": "1572571385",
  5747. "security-coverage": {
  5748. "status": "not-covered",
  5749. "message": "Project has not opted into security advisory coverage!"
  5750. }
  5751. }
  5752. },
  5753. "notification-url": "https://packages.drupal.org/8/downloads",
  5754. "license": [
  5755. "GPL-2.0-or-later"
  5756. ],
  5757. "authors": [
  5758. {
  5759. "name": "matsbla",
  5760. "homepage": "https://www.drupal.org/user/2325394"
  5761. },
  5762. {
  5763. "name": "vlad.dancer",
  5764. "homepage": "https://www.drupal.org/user/903844"
  5765. }
  5766. ],
  5767. "description": "Create customized lists and queries of translations from your database.",
  5768. "homepage": "https://www.drupal.org/project/translation_views",
  5769. "support": {
  5770. "source": "https://git.drupalcode.org/project/translation_views"
  5771. }
  5772. },
  5773. {
  5774. "name": "drupal/url_to_video_filter",
  5775. "version": "1.3.0",
  5776. "source": {
  5777. "type": "git",
  5778. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5779. "reference": "8.x-1.3"
  5780. },
  5781. "dist": {
  5782. "type": "zip",
  5783. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-8.x-1.3.zip",
  5784. "reference": "8.x-1.3",
  5785. "shasum": "40a27d1d8948638c0202c1b0c8afe0d92f8362a6"
  5786. },
  5787. "require": {
  5788. "drupal/core": "~8.0"
  5789. },
  5790. "type": "drupal-module",
  5791. "extra": {
  5792. "branch-alias": {
  5793. "dev-1.x": "1.x-dev"
  5794. },
  5795. "drupal": {
  5796. "version": "8.x-1.3",
  5797. "datestamp": "1532695981",
  5798. "security-coverage": {
  5799. "status": "covered",
  5800. "message": "Covered by Drupal's security advisory policy"
  5801. }
  5802. }
  5803. },
  5804. "notification-url": "https://packages.drupal.org/8/downloads",
  5805. "license": [
  5806. "GPL-2.0-or-later"
  5807. ],
  5808. "authors": [
  5809. {
  5810. "name": "Jaypan",
  5811. "homepage": "https://www.drupal.org/user/324696"
  5812. }
  5813. ],
  5814. "description": "Text filter to convert URLs to embedded videos",
  5815. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5816. "support": {
  5817. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5818. }
  5819. },
  5820. {
  5821. "name": "drupal/views_bulk_edit",
  5822. "version": "2.4.0",
  5823. "source": {
  5824. "type": "git",
  5825. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5826. "reference": "8.x-2.4"
  5827. },
  5828. "dist": {
  5829. "type": "zip",
  5830. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.4.zip",
  5831. "reference": "8.x-2.4",
  5832. "shasum": "039ebf9c6ae3cdd0555c7bfb97c629ebfee61ddb"
  5833. },
  5834. "require": {
  5835. "drupal/core": "*",
  5836. "drupal/views_bulk_operations": "~1.0 | ~2.0 | ~3.0"
  5837. },
  5838. "type": "drupal-module",
  5839. "extra": {
  5840. "branch-alias": {
  5841. "dev-2.x": "2.x-dev"
  5842. },
  5843. "drupal": {
  5844. "version": "8.x-2.4",
  5845. "datestamp": "1570030085",
  5846. "security-coverage": {
  5847. "status": "covered",
  5848. "message": "Covered by Drupal's security advisory policy"
  5849. }
  5850. }
  5851. },
  5852. "notification-url": "https://packages.drupal.org/8/downloads",
  5853. "license": [
  5854. "GPL-2.0+"
  5855. ],
  5856. "authors": [
  5857. {
  5858. "name": "Marcin Grabias",
  5859. "homepage": "https://www.drupal.org/u/graber"
  5860. },
  5861. {
  5862. "name": "benjy",
  5863. "homepage": "https://www.drupal.org/user/1852732"
  5864. }
  5865. ],
  5866. "description": "Allows bulk edition of entity field values.",
  5867. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5868. "support": {
  5869. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5870. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5871. }
  5872. },
  5873. {
  5874. "name": "drupal/views_bulk_operations",
  5875. "version": "3.3.0",
  5876. "source": {
  5877. "type": "git",
  5878. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5879. "reference": "8.x-3.3"
  5880. },
  5881. "dist": {
  5882. "type": "zip",
  5883. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.3.zip",
  5884. "reference": "8.x-3.3",
  5885. "shasum": "480fec7c4a21ce8a57328af45735b5086a5bd178"
  5886. },
  5887. "require": {
  5888. "drupal/core": "~8.5"
  5889. },
  5890. "type": "drupal-module",
  5891. "extra": {
  5892. "branch-alias": {
  5893. "dev-3.x": "3.x-dev"
  5894. },
  5895. "drupal": {
  5896. "version": "8.x-3.3",
  5897. "datestamp": "1570032485",
  5898. "security-coverage": {
  5899. "status": "covered",
  5900. "message": "Covered by Drupal's security advisory policy"
  5901. }
  5902. },
  5903. "drush": {
  5904. "services": {
  5905. "drush.services.yml": "^9"
  5906. }
  5907. }
  5908. },
  5909. "notification-url": "https://packages.drupal.org/8/downloads",
  5910. "license": [
  5911. "GPL-2.0+"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "Marcin Grabias",
  5916. "homepage": "https://www.drupal.org/u/graber"
  5917. },
  5918. {
  5919. "name": "Jon Pugh",
  5920. "homepage": "https://www.drupal.org/user/17028"
  5921. },
  5922. {
  5923. "name": "bojanz",
  5924. "homepage": "https://www.drupal.org/user/86106"
  5925. },
  5926. {
  5927. "name": "infojunkie",
  5928. "homepage": "https://www.drupal.org/user/48424"
  5929. },
  5930. {
  5931. "name": "joelpittet",
  5932. "homepage": "https://www.drupal.org/user/160302"
  5933. }
  5934. ],
  5935. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5936. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5937. "support": {
  5938. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5939. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5940. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5941. }
  5942. },
  5943. {
  5944. "name": "drupal/workflow",
  5945. "version": "dev-1.x",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://git.drupalcode.org/project/workflow.git",
  5949. "reference": "920f1e5acc99da722592eb0f3b3cb32c0e96a560"
  5950. },
  5951. "require": {
  5952. "drupal/core": "*"
  5953. },
  5954. "type": "drupal-module",
  5955. "extra": {
  5956. "branch-alias": {
  5957. "dev-1.x": "1.x-dev"
  5958. },
  5959. "drupal": {
  5960. "version": "8.x-1.1+38-dev",
  5961. "datestamp": "1571663284",
  5962. "security-coverage": {
  5963. "status": "not-covered",
  5964. "message": "Dev releases are not covered by Drupal security advisories."
  5965. }
  5966. }
  5967. },
  5968. "notification-url": "https://packages.drupal.org/8/downloads",
  5969. "license": [
  5970. "GPL-2.0-or-later"
  5971. ],
  5972. "authors": [
  5973. {
  5974. "name": "Bastlynn",
  5975. "homepage": "https://www.drupal.org/user/275249"
  5976. },
  5977. {
  5978. "name": "Heine",
  5979. "homepage": "https://www.drupal.org/user/17943"
  5980. },
  5981. {
  5982. "name": "JacobSingh",
  5983. "homepage": "https://www.drupal.org/user/68912"
  5984. },
  5985. {
  5986. "name": "NancyDru",
  5987. "homepage": "https://www.drupal.org/user/101412"
  5988. },
  5989. {
  5990. "name": "eaton",
  5991. "homepage": "https://www.drupal.org/user/16496"
  5992. },
  5993. {
  5994. "name": "johnv",
  5995. "homepage": "https://www.drupal.org/user/591042"
  5996. },
  5997. {
  5998. "name": "jvandyk",
  5999. "homepage": "https://www.drupal.org/user/2375"
  6000. },
  6001. {
  6002. "name": "mfredrickson",
  6003. "homepage": "https://www.drupal.org/user/31994"
  6004. },
  6005. {
  6006. "name": "q0rban",
  6007. "homepage": "https://www.drupal.org/user/31022"
  6008. }
  6009. ],
  6010. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  6011. "homepage": "https://www.drupal.org/project/workflow",
  6012. "support": {
  6013. "source": "https://git.drupalcode.org/project/workflow"
  6014. },
  6015. "time": "2019-11-12T11:10:01+00:00"
  6016. },
  6017. {
  6018. "name": "drush/drush",
  6019. "version": "9.7.1",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/drush-ops/drush.git",
  6023. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6f9a8d235daec06fd6f47b2d84da675750566479",
  6028. "reference": "6f9a8d235daec06fd6f47b2d84da675750566479",
  6029. "shasum": ""
  6030. },
  6031. "require": {
  6032. "chi-teck/drupal-code-generator": "^1.28.1",
  6033. "composer/semver": "^1.4",
  6034. "consolidation/annotated-command": "^2.12",
  6035. "consolidation/config": "^1.2",
  6036. "consolidation/filter-via-dot-access-data": "^1",
  6037. "consolidation/output-formatters": "^3.3.1",
  6038. "consolidation/robo": "^1.4.6",
  6039. "consolidation/site-alias": "^3.0.0@stable",
  6040. "consolidation/site-process": "^2.0.3",
  6041. "ext-dom": "*",
  6042. "grasmash/yaml-expander": "^1.1.1",
  6043. "league/container": "~2",
  6044. "php": ">=5.6.0",
  6045. "psr/log": "~1.0",
  6046. "psy/psysh": "~0.6",
  6047. "symfony/console": "^3.4",
  6048. "symfony/event-dispatcher": "^3.4",
  6049. "symfony/finder": "^3.4 || ^4.0",
  6050. "symfony/process": "^3.4",
  6051. "symfony/var-dumper": "^3.4 || ^4.0",
  6052. "symfony/yaml": "^3.4",
  6053. "webflo/drupal-finder": "^1.1",
  6054. "webmozart/path-util": "^2.1.0"
  6055. },
  6056. "require-dev": {
  6057. "composer/installers": "^1.2",
  6058. "cweagans/composer-patches": "~1.0",
  6059. "drupal/alinks": "1.0.0",
  6060. "drupal/devel": "^2",
  6061. "drupal/empty_theme": "1.0",
  6062. "g1a/composer-test-scenarios": "^3",
  6063. "lox/xhprof": "dev-master",
  6064. "phpunit/phpunit": "^4.8.36 || ^6.1",
  6065. "squizlabs/php_codesniffer": "^2.7 || ^3",
  6066. "vlucas/phpdotenv": "^2.4",
  6067. "webflo/drupal-core-require-dev": "8.7.x-dev",
  6068. "webflo/drupal-core-strict": "8.7.x-dev"
  6069. },
  6070. "bin": [
  6071. "drush"
  6072. ],
  6073. "type": "library",
  6074. "extra": {
  6075. "installer-paths": {
  6076. "sut/core": [
  6077. "type:drupal-core"
  6078. ],
  6079. "sut/libraries/{$name}": [
  6080. "type:drupal-library"
  6081. ],
  6082. "sut/modules/unish/{$name}": [
  6083. "drupal/devel"
  6084. ],
  6085. "sut/themes/unish/{$name}": [
  6086. "drupal/empty_theme"
  6087. ],
  6088. "sut/modules/contrib/{$name}": [
  6089. "type:drupal-module"
  6090. ],
  6091. "sut/profiles/contrib/{$name}": [
  6092. "type:drupal-profile"
  6093. ],
  6094. "sut/themes/contrib/{$name}": [
  6095. "type:drupal-theme"
  6096. ],
  6097. "sut/drush/contrib/{$name}": [
  6098. "type:drupal-drush"
  6099. ]
  6100. },
  6101. "scenarios": {
  6102. "php5": {
  6103. "config": {
  6104. "platform": {
  6105. "php": "5.6.38"
  6106. }
  6107. },
  6108. "require-dev": {
  6109. "webflo/drupal-core-strict": "8.6.x-dev",
  6110. "webflo/drupal-core-require-dev": "8.6.x-dev"
  6111. }
  6112. }
  6113. },
  6114. "branch-alias": {
  6115. "dev-master": "9.x-dev"
  6116. }
  6117. },
  6118. "autoload": {
  6119. "psr-4": {
  6120. "Drush\\": "src/",
  6121. "Drush\\Internal\\": "src/internal-forks"
  6122. }
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "GPL-2.0-or-later"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Moshe Weitzman",
  6131. "email": "weitzman@tejasa.com"
  6132. },
  6133. {
  6134. "name": "Owen Barton",
  6135. "email": "drupal@owenbarton.com"
  6136. },
  6137. {
  6138. "name": "Greg Anderson",
  6139. "email": "greg.1.anderson@greenknowe.org"
  6140. },
  6141. {
  6142. "name": "Jonathan Araña Cruz",
  6143. "email": "jonhattan@faita.net"
  6144. },
  6145. {
  6146. "name": "Jonathan Hedstrom",
  6147. "email": "jhedstrom@gmail.com"
  6148. },
  6149. {
  6150. "name": "Christopher Gervais",
  6151. "email": "chris@ergonlogic.com"
  6152. },
  6153. {
  6154. "name": "Dave Reid",
  6155. "email": "dave@davereid.net"
  6156. },
  6157. {
  6158. "name": "Damian Lee",
  6159. "email": "damiankloip@googlemail.com"
  6160. }
  6161. ],
  6162. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  6163. "homepage": "http://www.drush.org",
  6164. "time": "2019-06-30T19:46:39+00:00"
  6165. },
  6166. {
  6167. "name": "easyrdf/easyrdf",
  6168. "version": "0.9.1",
  6169. "source": {
  6170. "type": "git",
  6171. "url": "https://github.com/njh/easyrdf.git",
  6172. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  6173. },
  6174. "dist": {
  6175. "type": "zip",
  6176. "url": "https://api.github.com/repos/njh/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  6177. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  6178. "shasum": ""
  6179. },
  6180. "require": {
  6181. "ext-mbstring": "*",
  6182. "ext-pcre": "*",
  6183. "php": ">=5.2.8"
  6184. },
  6185. "require-dev": {
  6186. "phpunit/phpunit": "~3.5",
  6187. "sami/sami": "~1.4",
  6188. "squizlabs/php_codesniffer": "~1.4.3"
  6189. },
  6190. "suggest": {
  6191. "ml/json-ld": "~1.0"
  6192. },
  6193. "type": "library",
  6194. "autoload": {
  6195. "psr-0": {
  6196. "EasyRdf_": "lib/"
  6197. }
  6198. },
  6199. "notification-url": "https://packagist.org/downloads/",
  6200. "license": [
  6201. "BSD-3-Clause"
  6202. ],
  6203. "authors": [
  6204. {
  6205. "name": "Nicholas Humfrey",
  6206. "email": "njh@aelius.com",
  6207. "homepage": "http://www.aelius.com/njh/",
  6208. "role": "Developer"
  6209. },
  6210. {
  6211. "name": "Alexey Zakhlestin",
  6212. "email": "indeyets@gmail.com",
  6213. "role": "Developer"
  6214. }
  6215. ],
  6216. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  6217. "homepage": "http://www.easyrdf.org/",
  6218. "keywords": [
  6219. "Linked Data",
  6220. "RDF",
  6221. "Semantic Web",
  6222. "Turtle",
  6223. "rdfa",
  6224. "sparql"
  6225. ],
  6226. "time": "2015-02-27T09:45:49+00:00"
  6227. },
  6228. {
  6229. "name": "egulias/email-validator",
  6230. "version": "2.1.11",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://github.com/egulias/EmailValidator.git",
  6234. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/92dd169c32f6f55ba570c309d83f5209cefb5e23",
  6239. "reference": "92dd169c32f6f55ba570c309d83f5209cefb5e23",
  6240. "shasum": ""
  6241. },
  6242. "require": {
  6243. "doctrine/lexer": "^1.0.1",
  6244. "php": ">= 5.5"
  6245. },
  6246. "require-dev": {
  6247. "dominicsayers/isemail": "dev-master",
  6248. "phpunit/phpunit": "^4.8.35||^5.7||^6.0",
  6249. "satooshi/php-coveralls": "^1.0.1",
  6250. "symfony/phpunit-bridge": "^4.4@dev"
  6251. },
  6252. "suggest": {
  6253. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6254. },
  6255. "type": "library",
  6256. "extra": {
  6257. "branch-alias": {
  6258. "dev-master": "2.1.x-dev"
  6259. }
  6260. },
  6261. "autoload": {
  6262. "psr-4": {
  6263. "Egulias\\EmailValidator\\": "EmailValidator"
  6264. }
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Eduardo Gulias Davis"
  6273. }
  6274. ],
  6275. "description": "A library for validating emails against several RFCs",
  6276. "homepage": "https://github.com/egulias/EmailValidator",
  6277. "keywords": [
  6278. "email",
  6279. "emailvalidation",
  6280. "emailvalidator",
  6281. "validation",
  6282. "validator"
  6283. ],
  6284. "time": "2019-08-13T17:33:27+00:00"
  6285. },
  6286. {
  6287. "name": "fabpot/goutte",
  6288. "version": "v3.2.3",
  6289. "source": {
  6290. "type": "git",
  6291. "url": "https://github.com/FriendsOfPHP/Goutte.git",
  6292. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8"
  6293. },
  6294. "dist": {
  6295. "type": "zip",
  6296. "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6297. "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8",
  6298. "shasum": ""
  6299. },
  6300. "require": {
  6301. "guzzlehttp/guzzle": "^6.0",
  6302. "php": ">=5.5.0",
  6303. "symfony/browser-kit": "~2.1|~3.0|~4.0",
  6304. "symfony/css-selector": "~2.1|~3.0|~4.0",
  6305. "symfony/dom-crawler": "~2.1|~3.0|~4.0"
  6306. },
  6307. "require-dev": {
  6308. "symfony/phpunit-bridge": "^3.3 || ^4"
  6309. },
  6310. "type": "application",
  6311. "extra": {
  6312. "branch-alias": {
  6313. "dev-master": "3.2-dev"
  6314. }
  6315. },
  6316. "autoload": {
  6317. "psr-4": {
  6318. "Goutte\\": "Goutte"
  6319. },
  6320. "exclude-from-classmap": [
  6321. "Goutte/Tests"
  6322. ]
  6323. },
  6324. "notification-url": "https://packagist.org/downloads/",
  6325. "license": [
  6326. "MIT"
  6327. ],
  6328. "authors": [
  6329. {
  6330. "name": "Fabien Potencier",
  6331. "email": "fabien@symfony.com"
  6332. }
  6333. ],
  6334. "description": "A simple PHP Web Scraper",
  6335. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  6336. "keywords": [
  6337. "scraper"
  6338. ],
  6339. "time": "2018-06-29T15:13:57+00:00"
  6340. },
  6341. {
  6342. "name": "grasmash/expander",
  6343. "version": "1.0.0",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/grasmash/expander.git",
  6347. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6352. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  6353. "shasum": ""
  6354. },
  6355. "require": {
  6356. "dflydev/dot-access-data": "^1.1.0",
  6357. "php": ">=5.4"
  6358. },
  6359. "require-dev": {
  6360. "greg-1-anderson/composer-test-scenarios": "^1",
  6361. "phpunit/phpunit": "^4|^5.5.4",
  6362. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6363. "squizlabs/php_codesniffer": "^2.7"
  6364. },
  6365. "type": "library",
  6366. "extra": {
  6367. "branch-alias": {
  6368. "dev-master": "1.x-dev"
  6369. }
  6370. },
  6371. "autoload": {
  6372. "psr-4": {
  6373. "Grasmash\\Expander\\": "src/"
  6374. }
  6375. },
  6376. "notification-url": "https://packagist.org/downloads/",
  6377. "license": [
  6378. "MIT"
  6379. ],
  6380. "authors": [
  6381. {
  6382. "name": "Matthew Grasmick"
  6383. }
  6384. ],
  6385. "description": "Expands internal property references in PHP arrays file.",
  6386. "time": "2017-12-21T22:14:55+00:00"
  6387. },
  6388. {
  6389. "name": "grasmash/yaml-expander",
  6390. "version": "1.4.0",
  6391. "source": {
  6392. "type": "git",
  6393. "url": "https://github.com/grasmash/yaml-expander.git",
  6394. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  6395. },
  6396. "dist": {
  6397. "type": "zip",
  6398. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6399. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  6400. "shasum": ""
  6401. },
  6402. "require": {
  6403. "dflydev/dot-access-data": "^1.1.0",
  6404. "php": ">=5.4",
  6405. "symfony/yaml": "^2.8.11|^3|^4"
  6406. },
  6407. "require-dev": {
  6408. "greg-1-anderson/composer-test-scenarios": "^1",
  6409. "phpunit/phpunit": "^4.8|^5.5.4",
  6410. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6411. "squizlabs/php_codesniffer": "^2.7"
  6412. },
  6413. "type": "library",
  6414. "extra": {
  6415. "branch-alias": {
  6416. "dev-master": "1.x-dev"
  6417. }
  6418. },
  6419. "autoload": {
  6420. "psr-4": {
  6421. "Grasmash\\YamlExpander\\": "src/"
  6422. }
  6423. },
  6424. "notification-url": "https://packagist.org/downloads/",
  6425. "license": [
  6426. "MIT"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Matthew Grasmick"
  6431. }
  6432. ],
  6433. "description": "Expands internal property references in a yaml file.",
  6434. "time": "2017-12-16T16:06:03+00:00"
  6435. },
  6436. {
  6437. "name": "guzzlehttp/guzzle",
  6438. "version": "6.4.1",
  6439. "source": {
  6440. "type": "git",
  6441. "url": "https://github.com/guzzle/guzzle.git",
  6442. "reference": "0895c932405407fd3a7368b6910c09a24d26db11"
  6443. },
  6444. "dist": {
  6445. "type": "zip",
  6446. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/0895c932405407fd3a7368b6910c09a24d26db11",
  6447. "reference": "0895c932405407fd3a7368b6910c09a24d26db11",
  6448. "shasum": ""
  6449. },
  6450. "require": {
  6451. "ext-json": "*",
  6452. "guzzlehttp/promises": "^1.0",
  6453. "guzzlehttp/psr7": "^1.6.1",
  6454. "php": ">=5.5"
  6455. },
  6456. "require-dev": {
  6457. "ext-curl": "*",
  6458. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6459. "psr/log": "^1.1"
  6460. },
  6461. "suggest": {
  6462. "psr/log": "Required for using the Log middleware"
  6463. },
  6464. "type": "library",
  6465. "extra": {
  6466. "branch-alias": {
  6467. "dev-master": "6.3-dev"
  6468. }
  6469. },
  6470. "autoload": {
  6471. "psr-4": {
  6472. "GuzzleHttp\\": "src/"
  6473. },
  6474. "files": [
  6475. "src/functions_include.php"
  6476. ]
  6477. },
  6478. "notification-url": "https://packagist.org/downloads/",
  6479. "license": [
  6480. "MIT"
  6481. ],
  6482. "authors": [
  6483. {
  6484. "name": "Michael Dowling",
  6485. "email": "mtdowling@gmail.com",
  6486. "homepage": "https://github.com/mtdowling"
  6487. }
  6488. ],
  6489. "description": "Guzzle is a PHP HTTP client library",
  6490. "homepage": "http://guzzlephp.org/",
  6491. "keywords": [
  6492. "client",
  6493. "curl",
  6494. "framework",
  6495. "http",
  6496. "http client",
  6497. "rest",
  6498. "web service"
  6499. ],
  6500. "time": "2019-10-23T15:58:00+00:00"
  6501. },
  6502. {
  6503. "name": "guzzlehttp/promises",
  6504. "version": "v1.3.1",
  6505. "source": {
  6506. "type": "git",
  6507. "url": "https://github.com/guzzle/promises.git",
  6508. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6509. },
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6513. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "php": ">=5.5.0"
  6518. },
  6519. "require-dev": {
  6520. "phpunit/phpunit": "^4.0"
  6521. },
  6522. "type": "library",
  6523. "extra": {
  6524. "branch-alias": {
  6525. "dev-master": "1.4-dev"
  6526. }
  6527. },
  6528. "autoload": {
  6529. "psr-4": {
  6530. "GuzzleHttp\\Promise\\": "src/"
  6531. },
  6532. "files": [
  6533. "src/functions_include.php"
  6534. ]
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "Michael Dowling",
  6543. "email": "mtdowling@gmail.com",
  6544. "homepage": "https://github.com/mtdowling"
  6545. }
  6546. ],
  6547. "description": "Guzzle promises library",
  6548. "keywords": [
  6549. "promise"
  6550. ],
  6551. "time": "2016-12-20T10:07:11+00:00"
  6552. },
  6553. {
  6554. "name": "guzzlehttp/psr7",
  6555. "version": "1.6.1",
  6556. "source": {
  6557. "type": "git",
  6558. "url": "https://github.com/guzzle/psr7.git",
  6559. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6560. },
  6561. "dist": {
  6562. "type": "zip",
  6563. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6564. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6565. "shasum": ""
  6566. },
  6567. "require": {
  6568. "php": ">=5.4.0",
  6569. "psr/http-message": "~1.0",
  6570. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6571. },
  6572. "provide": {
  6573. "psr/http-message-implementation": "1.0"
  6574. },
  6575. "require-dev": {
  6576. "ext-zlib": "*",
  6577. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6578. },
  6579. "suggest": {
  6580. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6581. },
  6582. "type": "library",
  6583. "extra": {
  6584. "branch-alias": {
  6585. "dev-master": "1.6-dev"
  6586. }
  6587. },
  6588. "autoload": {
  6589. "psr-4": {
  6590. "GuzzleHttp\\Psr7\\": "src/"
  6591. },
  6592. "files": [
  6593. "src/functions_include.php"
  6594. ]
  6595. },
  6596. "notification-url": "https://packagist.org/downloads/",
  6597. "license": [
  6598. "MIT"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "Michael Dowling",
  6603. "email": "mtdowling@gmail.com",
  6604. "homepage": "https://github.com/mtdowling"
  6605. },
  6606. {
  6607. "name": "Tobias Schultze",
  6608. "homepage": "https://github.com/Tobion"
  6609. }
  6610. ],
  6611. "description": "PSR-7 message implementation that also provides common utility methods",
  6612. "keywords": [
  6613. "http",
  6614. "message",
  6615. "psr-7",
  6616. "request",
  6617. "response",
  6618. "stream",
  6619. "uri",
  6620. "url"
  6621. ],
  6622. "time": "2019-07-01T23:21:34+00:00"
  6623. },
  6624. {
  6625. "name": "instaclick/php-webdriver",
  6626. "version": "1.4.6",
  6627. "source": {
  6628. "type": "git",
  6629. "url": "https://github.com/instaclick/php-webdriver.git",
  6630. "reference": "bd9405077ca04129a73059a06873bedb5e138402"
  6631. },
  6632. "dist": {
  6633. "type": "zip",
  6634. "url": "https://api.github.com/repos/instaclick/php-webdriver/zipball/bd9405077ca04129a73059a06873bedb5e138402",
  6635. "reference": "bd9405077ca04129a73059a06873bedb5e138402",
  6636. "shasum": ""
  6637. },
  6638. "require": {
  6639. "ext-curl": "*",
  6640. "php": ">=5.3.2"
  6641. },
  6642. "require-dev": {
  6643. "phpunit/phpunit": "^4.8",
  6644. "satooshi/php-coveralls": "^1.0||^2.0"
  6645. },
  6646. "type": "library",
  6647. "extra": {
  6648. "branch-alias": {
  6649. "dev-master": "1.4.x-dev"
  6650. }
  6651. },
  6652. "autoload": {
  6653. "psr-0": {
  6654. "WebDriver": "lib/"
  6655. }
  6656. },
  6657. "notification-url": "https://packagist.org/downloads/",
  6658. "license": [
  6659. "Apache-2.0"
  6660. ],
  6661. "authors": [
  6662. {
  6663. "name": "Justin Bishop",
  6664. "email": "jubishop@gmail.com",
  6665. "role": "Developer"
  6666. },
  6667. {
  6668. "name": "Anthon Pang",
  6669. "email": "apang@softwaredevelopment.ca",
  6670. "role": "Fork Maintainer"
  6671. }
  6672. ],
  6673. "description": "PHP WebDriver for Selenium 2",
  6674. "homepage": "http://instaclick.com/",
  6675. "keywords": [
  6676. "browser",
  6677. "selenium",
  6678. "webdriver",
  6679. "webtest"
  6680. ],
  6681. "time": "2019-09-23T15:50:44+00:00"
  6682. },
  6683. {
  6684. "name": "jakub-onderka/php-console-color",
  6685. "version": "v0.2",
  6686. "source": {
  6687. "type": "git",
  6688. "url": "https://github.com/JakubOnderka/PHP-Console-Color.git",
  6689. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191"
  6690. },
  6691. "dist": {
  6692. "type": "zip",
  6693. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191",
  6694. "reference": "d5deaecff52a0d61ccb613bb3804088da0307191",
  6695. "shasum": ""
  6696. },
  6697. "require": {
  6698. "php": ">=5.4.0"
  6699. },
  6700. "require-dev": {
  6701. "jakub-onderka/php-code-style": "1.0",
  6702. "jakub-onderka/php-parallel-lint": "1.0",
  6703. "jakub-onderka/php-var-dump-check": "0.*",
  6704. "phpunit/phpunit": "~4.3",
  6705. "squizlabs/php_codesniffer": "1.*"
  6706. },
  6707. "type": "library",
  6708. "autoload": {
  6709. "psr-4": {
  6710. "JakubOnderka\\PhpConsoleColor\\": "src/"
  6711. }
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "BSD-2-Clause"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "Jakub Onderka",
  6720. "email": "jakub.onderka@gmail.com"
  6721. }
  6722. ],
  6723. "time": "2018-09-29T17:23:10+00:00"
  6724. },
  6725. {
  6726. "name": "jakub-onderka/php-console-highlighter",
  6727. "version": "v0.4",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git",
  6731. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6736. "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547",
  6737. "shasum": ""
  6738. },
  6739. "require": {
  6740. "ext-tokenizer": "*",
  6741. "jakub-onderka/php-console-color": "~0.2",
  6742. "php": ">=5.4.0"
  6743. },
  6744. "require-dev": {
  6745. "jakub-onderka/php-code-style": "~1.0",
  6746. "jakub-onderka/php-parallel-lint": "~1.0",
  6747. "jakub-onderka/php-var-dump-check": "~0.1",
  6748. "phpunit/phpunit": "~4.0",
  6749. "squizlabs/php_codesniffer": "~1.5"
  6750. },
  6751. "type": "library",
  6752. "autoload": {
  6753. "psr-4": {
  6754. "JakubOnderka\\PhpConsoleHighlighter\\": "src/"
  6755. }
  6756. },
  6757. "notification-url": "https://packagist.org/downloads/",
  6758. "license": [
  6759. "MIT"
  6760. ],
  6761. "authors": [
  6762. {
  6763. "name": "Jakub Onderka",
  6764. "email": "acci@acci.cz",
  6765. "homepage": "http://www.acci.cz/"
  6766. }
  6767. ],
  6768. "description": "Highlight PHP code in terminal",
  6769. "time": "2018-09-29T18:48:56+00:00"
  6770. },
  6771. {
  6772. "name": "jcalderonzumba/gastonjs",
  6773. "version": "v1.2.0",
  6774. "source": {
  6775. "type": "git",
  6776. "url": "https://github.com/jcalderonzumba/gastonjs.git",
  6777. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3"
  6778. },
  6779. "dist": {
  6780. "type": "zip",
  6781. "url": "https://api.github.com/repos/jcalderonzumba/gastonjs/zipball/575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6782. "reference": "575a9c18d8b87990c37252e8d9707b29f0a313f3",
  6783. "shasum": ""
  6784. },
  6785. "require": {
  6786. "guzzlehttp/guzzle": "~5.0|~6.0",
  6787. "php": ">=5.4"
  6788. },
  6789. "require-dev": {
  6790. "phpunit/phpunit": "~4.6",
  6791. "silex/silex": "~1.2",
  6792. "symfony/phpunit-bridge": "~2.7",
  6793. "symfony/process": "~2.1"
  6794. },
  6795. "type": "phantomjs-api",
  6796. "extra": {
  6797. "branch-alias": {
  6798. "dev-master": "1.1.x-dev"
  6799. }
  6800. },
  6801. "autoload": {
  6802. "psr-4": {
  6803. "Zumba\\GastonJS\\": "src"
  6804. }
  6805. },
  6806. "notification-url": "https://packagist.org/downloads/",
  6807. "license": [
  6808. "MIT"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "Juan Francisco Calderón Zumba",
  6813. "email": "juanfcz@gmail.com",
  6814. "homepage": "http://github.com/jcalderonzumba"
  6815. }
  6816. ],
  6817. "description": "PhantomJS API based server for webpage automation",
  6818. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  6819. "keywords": [
  6820. "api",
  6821. "automation",
  6822. "browser",
  6823. "headless",
  6824. "phantomjs"
  6825. ],
  6826. "time": "2017-03-31T07:31:47+00:00"
  6827. },
  6828. {
  6829. "name": "jcalderonzumba/mink-phantomjs-driver",
  6830. "version": "v0.3.3",
  6831. "source": {
  6832. "type": "git",
  6833. "url": "https://github.com/jcalderonzumba/MinkPhantomJSDriver.git",
  6834. "reference": "008f43670e94acd39273d15add1e7348eb23848d"
  6835. },
  6836. "dist": {
  6837. "type": "zip",
  6838. "url": "https://api.github.com/repos/jcalderonzumba/MinkPhantomJSDriver/zipball/008f43670e94acd39273d15add1e7348eb23848d",
  6839. "reference": "008f43670e94acd39273d15add1e7348eb23848d",
  6840. "shasum": ""
  6841. },
  6842. "require": {
  6843. "behat/mink": "~1.7",
  6844. "jcalderonzumba/gastonjs": "~1.0",
  6845. "php": ">=5.4",
  6846. "twig/twig": "~1.20|~2.0"
  6847. },
  6848. "require-dev": {
  6849. "mink/driver-testsuite": "dev-master",
  6850. "phpunit/phpunit": "~4.6"
  6851. },
  6852. "type": "mink-driver",
  6853. "extra": {
  6854. "branch-alias": {
  6855. "dev-master": "0.4.x-dev"
  6856. }
  6857. },
  6858. "autoload": {
  6859. "psr-4": {
  6860. "Zumba\\Mink\\Driver\\": "src"
  6861. }
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "MIT"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Juan Francisco Calderón Zumba",
  6870. "email": "juanfcz@gmail.com",
  6871. "homepage": "http://github.com/jcalderonzumba"
  6872. }
  6873. ],
  6874. "description": "PhantomJS driver for Mink framework",
  6875. "homepage": "http://mink.behat.org/",
  6876. "keywords": [
  6877. "ajax",
  6878. "browser",
  6879. "headless",
  6880. "javascript",
  6881. "phantomjs",
  6882. "testing"
  6883. ],
  6884. "time": "2016-12-01T10:57:30+00:00"
  6885. },
  6886. {
  6887. "name": "justinrainbow/json-schema",
  6888. "version": "5.2.9",
  6889. "source": {
  6890. "type": "git",
  6891. "url": "https://github.com/justinrainbow/json-schema.git",
  6892. "reference": "44c6787311242a979fa15c704327c20e7221a0e4"
  6893. },
  6894. "dist": {
  6895. "type": "zip",
  6896. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/44c6787311242a979fa15c704327c20e7221a0e4",
  6897. "reference": "44c6787311242a979fa15c704327c20e7221a0e4",
  6898. "shasum": ""
  6899. },
  6900. "require": {
  6901. "php": ">=5.3.3"
  6902. },
  6903. "require-dev": {
  6904. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  6905. "json-schema/json-schema-test-suite": "1.2.0",
  6906. "phpunit/phpunit": "^4.8.35"
  6907. },
  6908. "bin": [
  6909. "bin/validate-json"
  6910. ],
  6911. "type": "library",
  6912. "extra": {
  6913. "branch-alias": {
  6914. "dev-master": "5.0.x-dev"
  6915. }
  6916. },
  6917. "autoload": {
  6918. "psr-4": {
  6919. "JsonSchema\\": "src/JsonSchema/"
  6920. }
  6921. },
  6922. "notification-url": "https://packagist.org/downloads/",
  6923. "license": [
  6924. "MIT"
  6925. ],
  6926. "authors": [
  6927. {
  6928. "name": "Bruno Prieto Reis",
  6929. "email": "bruno.p.reis@gmail.com"
  6930. },
  6931. {
  6932. "name": "Justin Rainbow",
  6933. "email": "justin.rainbow@gmail.com"
  6934. },
  6935. {
  6936. "name": "Igor Wiedler",
  6937. "email": "igor@wiedler.ch"
  6938. },
  6939. {
  6940. "name": "Robert Schönthal",
  6941. "email": "seroscho@googlemail.com"
  6942. }
  6943. ],
  6944. "description": "A library to validate a json schema.",
  6945. "homepage": "https://github.com/justinrainbow/json-schema",
  6946. "keywords": [
  6947. "json",
  6948. "schema"
  6949. ],
  6950. "time": "2019-09-25T14:49:45+00:00"
  6951. },
  6952. {
  6953. "name": "league/container",
  6954. "version": "2.4.1",
  6955. "source": {
  6956. "type": "git",
  6957. "url": "https://github.com/thephpleague/container.git",
  6958. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6959. },
  6960. "dist": {
  6961. "type": "zip",
  6962. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6963. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6964. "shasum": ""
  6965. },
  6966. "require": {
  6967. "container-interop/container-interop": "^1.2",
  6968. "php": "^5.4.0 || ^7.0"
  6969. },
  6970. "provide": {
  6971. "container-interop/container-interop-implementation": "^1.2",
  6972. "psr/container-implementation": "^1.0"
  6973. },
  6974. "replace": {
  6975. "orno/di": "~2.0"
  6976. },
  6977. "require-dev": {
  6978. "phpunit/phpunit": "4.*"
  6979. },
  6980. "type": "library",
  6981. "extra": {
  6982. "branch-alias": {
  6983. "dev-2.x": "2.x-dev",
  6984. "dev-1.x": "1.x-dev"
  6985. }
  6986. },
  6987. "autoload": {
  6988. "psr-4": {
  6989. "League\\Container\\": "src"
  6990. }
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "MIT"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "Phil Bennett",
  6999. "email": "philipobenito@gmail.com",
  7000. "homepage": "http://www.philipobenito.com",
  7001. "role": "Developer"
  7002. }
  7003. ],
  7004. "description": "A fast and intuitive dependency injection container.",
  7005. "homepage": "https://github.com/thephpleague/container",
  7006. "keywords": [
  7007. "container",
  7008. "dependency",
  7009. "di",
  7010. "injection",
  7011. "league",
  7012. "provider",
  7013. "service"
  7014. ],
  7015. "time": "2017-05-10T09:20:27+00:00"
  7016. },
  7017. {
  7018. "name": "masterminds/html5",
  7019. "version": "2.7.0",
  7020. "source": {
  7021. "type": "git",
  7022. "url": "https://github.com/Masterminds/html5-php.git",
  7023. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2"
  7024. },
  7025. "dist": {
  7026. "type": "zip",
  7027. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/104443ad663d15981225f99532ba73c2f1d6b6f2",
  7028. "reference": "104443ad663d15981225f99532ba73c2f1d6b6f2",
  7029. "shasum": ""
  7030. },
  7031. "require": {
  7032. "ext-ctype": "*",
  7033. "ext-dom": "*",
  7034. "ext-libxml": "*",
  7035. "php": ">=5.3.0"
  7036. },
  7037. "require-dev": {
  7038. "phpunit/phpunit": "^4.8.35",
  7039. "sami/sami": "~2.0",
  7040. "satooshi/php-coveralls": "1.0.*"
  7041. },
  7042. "type": "library",
  7043. "extra": {
  7044. "branch-alias": {
  7045. "dev-master": "2.7-dev"
  7046. }
  7047. },
  7048. "autoload": {
  7049. "psr-4": {
  7050. "Masterminds\\": "src"
  7051. }
  7052. },
  7053. "notification-url": "https://packagist.org/downloads/",
  7054. "license": [
  7055. "MIT"
  7056. ],
  7057. "authors": [
  7058. {
  7059. "name": "Matt Butcher",
  7060. "email": "technosophos@gmail.com"
  7061. },
  7062. {
  7063. "name": "Matt Farina",
  7064. "email": "matt@mattfarina.com"
  7065. },
  7066. {
  7067. "name": "Asmir Mustafic",
  7068. "email": "goetas@gmail.com"
  7069. }
  7070. ],
  7071. "description": "An HTML5 parser and serializer.",
  7072. "homepage": "http://masterminds.github.io/html5-php",
  7073. "keywords": [
  7074. "HTML5",
  7075. "dom",
  7076. "html",
  7077. "parser",
  7078. "querypath",
  7079. "serializer",
  7080. "xml"
  7081. ],
  7082. "time": "2019-07-25T07:03:26+00:00"
  7083. },
  7084. {
  7085. "name": "mikey179/vfsstream",
  7086. "version": "v1.6.8",
  7087. "source": {
  7088. "type": "git",
  7089. "url": "https://github.com/bovigo/vfsStream.git",
  7090. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe"
  7091. },
  7092. "dist": {
  7093. "type": "zip",
  7094. "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  7095. "reference": "231c73783ebb7dd9ec77916c10037eff5a2b6efe",
  7096. "shasum": ""
  7097. },
  7098. "require": {
  7099. "php": ">=5.3.0"
  7100. },
  7101. "require-dev": {
  7102. "phpunit/phpunit": "^4.5|^5.0"
  7103. },
  7104. "type": "library",
  7105. "extra": {
  7106. "branch-alias": {
  7107. "dev-master": "1.6.x-dev"
  7108. }
  7109. },
  7110. "autoload": {
  7111. "psr-0": {
  7112. "org\\bovigo\\vfs\\": "src/main/php"
  7113. }
  7114. },
  7115. "notification-url": "https://packagist.org/downloads/",
  7116. "license": [
  7117. "BSD-3-Clause"
  7118. ],
  7119. "authors": [
  7120. {
  7121. "name": "Frank Kleine",
  7122. "homepage": "http://frankkleine.de/",
  7123. "role": "Developer"
  7124. }
  7125. ],
  7126. "description": "Virtual file system to mock the real file system in unit tests.",
  7127. "homepage": "http://vfs.bovigo.org/",
  7128. "time": "2019-10-30T15:31:00+00:00"
  7129. },
  7130. {
  7131. "name": "myclabs/deep-copy",
  7132. "version": "1.7.0",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://github.com/myclabs/DeepCopy.git",
  7136. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7141. "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e",
  7142. "shasum": ""
  7143. },
  7144. "require": {
  7145. "php": "^5.6 || ^7.0"
  7146. },
  7147. "require-dev": {
  7148. "doctrine/collections": "^1.0",
  7149. "doctrine/common": "^2.6",
  7150. "phpunit/phpunit": "^4.1"
  7151. },
  7152. "type": "library",
  7153. "autoload": {
  7154. "psr-4": {
  7155. "DeepCopy\\": "src/DeepCopy/"
  7156. },
  7157. "files": [
  7158. "src/DeepCopy/deep_copy.php"
  7159. ]
  7160. },
  7161. "notification-url": "https://packagist.org/downloads/",
  7162. "license": [
  7163. "MIT"
  7164. ],
  7165. "description": "Create deep copies (clones) of your objects",
  7166. "keywords": [
  7167. "clone",
  7168. "copy",
  7169. "duplicate",
  7170. "object",
  7171. "object graph"
  7172. ],
  7173. "time": "2017-10-19T19:58:43+00:00"
  7174. },
  7175. {
  7176. "name": "nikic/php-parser",
  7177. "version": "v4.3.0",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/nikic/PHP-Parser.git",
  7181. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7186. "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc",
  7187. "shasum": ""
  7188. },
  7189. "require": {
  7190. "ext-tokenizer": "*",
  7191. "php": ">=7.0"
  7192. },
  7193. "require-dev": {
  7194. "ircmaxell/php-yacc": "0.0.5",
  7195. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7196. },
  7197. "bin": [
  7198. "bin/php-parse"
  7199. ],
  7200. "type": "library",
  7201. "extra": {
  7202. "branch-alias": {
  7203. "dev-master": "4.3-dev"
  7204. }
  7205. },
  7206. "autoload": {
  7207. "psr-4": {
  7208. "PhpParser\\": "lib/PhpParser"
  7209. }
  7210. },
  7211. "notification-url": "https://packagist.org/downloads/",
  7212. "license": [
  7213. "BSD-3-Clause"
  7214. ],
  7215. "authors": [
  7216. {
  7217. "name": "Nikita Popov"
  7218. }
  7219. ],
  7220. "description": "A PHP parser written in PHP",
  7221. "keywords": [
  7222. "parser",
  7223. "php"
  7224. ],
  7225. "time": "2019-11-08T13:50:10+00:00"
  7226. },
  7227. {
  7228. "name": "oomphinc/composer-installers-extender",
  7229. "version": "v1.1.2",
  7230. "source": {
  7231. "type": "git",
  7232. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  7233. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  7234. },
  7235. "dist": {
  7236. "type": "zip",
  7237. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7238. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  7239. "shasum": ""
  7240. },
  7241. "require": {
  7242. "composer-plugin-api": "^1.0",
  7243. "composer/installers": "^1.0"
  7244. },
  7245. "type": "composer-plugin",
  7246. "extra": {
  7247. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  7248. },
  7249. "autoload": {
  7250. "psr-4": {
  7251. "OomphInc\\ComposerInstallersExtender\\": "src/"
  7252. }
  7253. },
  7254. "notification-url": "https://packagist.org/downloads/",
  7255. "license": [
  7256. "MIT"
  7257. ],
  7258. "authors": [
  7259. {
  7260. "name": "Stephen Beemsterboer",
  7261. "email": "stephen@oomphinc.com",
  7262. "homepage": "https://github.com/balbuf"
  7263. }
  7264. ],
  7265. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  7266. "homepage": "http://www.oomphinc.com/",
  7267. "time": "2017-03-31T16:57:39+00:00"
  7268. },
  7269. {
  7270. "name": "paragonie/random_compat",
  7271. "version": "v9.99.99",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/paragonie/random_compat.git",
  7275. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7280. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "php": "^7"
  7285. },
  7286. "require-dev": {
  7287. "phpunit/phpunit": "4.*|5.*",
  7288. "vimeo/psalm": "^1"
  7289. },
  7290. "suggest": {
  7291. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7292. },
  7293. "type": "library",
  7294. "notification-url": "https://packagist.org/downloads/",
  7295. "license": [
  7296. "MIT"
  7297. ],
  7298. "authors": [
  7299. {
  7300. "name": "Paragon Initiative Enterprises",
  7301. "email": "security@paragonie.com",
  7302. "homepage": "https://paragonie.com"
  7303. }
  7304. ],
  7305. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7306. "keywords": [
  7307. "csprng",
  7308. "polyfill",
  7309. "pseudorandom",
  7310. "random"
  7311. ],
  7312. "time": "2018-07-02T15:55:56+00:00"
  7313. },
  7314. {
  7315. "name": "pear/archive_tar",
  7316. "version": "1.4.8",
  7317. "source": {
  7318. "type": "git",
  7319. "url": "https://github.com/pear/Archive_Tar.git",
  7320. "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5"
  7321. },
  7322. "dist": {
  7323. "type": "zip",
  7324. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/442bdffb7edb84c898cfd94f7ac8500e49d5bbb5",
  7325. "reference": "442bdffb7edb84c898cfd94f7ac8500e49d5bbb5",
  7326. "shasum": ""
  7327. },
  7328. "require": {
  7329. "pear/pear-core-minimal": "^1.10.0alpha2",
  7330. "php": ">=5.2.0"
  7331. },
  7332. "require-dev": {
  7333. "phpunit/phpunit": "*"
  7334. },
  7335. "suggest": {
  7336. "ext-bz2": "Bz2 compression support.",
  7337. "ext-xz": "Lzma2 compression support.",
  7338. "ext-zlib": "Gzip compression support."
  7339. },
  7340. "type": "library",
  7341. "extra": {
  7342. "branch-alias": {
  7343. "dev-master": "1.4.x-dev"
  7344. }
  7345. },
  7346. "autoload": {
  7347. "psr-0": {
  7348. "Archive_Tar": ""
  7349. }
  7350. },
  7351. "notification-url": "https://packagist.org/downloads/",
  7352. "include-path": [
  7353. "./"
  7354. ],
  7355. "license": [
  7356. "BSD-3-Clause"
  7357. ],
  7358. "authors": [
  7359. {
  7360. "name": "Vincent Blavet",
  7361. "email": "vincent@phpconcept.net"
  7362. },
  7363. {
  7364. "name": "Greg Beaver",
  7365. "email": "greg@chiaraquartet.net"
  7366. },
  7367. {
  7368. "name": "Michiel Rook",
  7369. "email": "mrook@php.net"
  7370. }
  7371. ],
  7372. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7373. "homepage": "https://github.com/pear/Archive_Tar",
  7374. "keywords": [
  7375. "archive",
  7376. "tar"
  7377. ],
  7378. "time": "2019-10-21T13:31:24+00:00"
  7379. },
  7380. {
  7381. "name": "pear/console_getopt",
  7382. "version": "v1.4.2",
  7383. "source": {
  7384. "type": "git",
  7385. "url": "https://github.com/pear/Console_Getopt.git",
  7386. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0"
  7387. },
  7388. "dist": {
  7389. "type": "zip",
  7390. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/6c77aeb625b32bd752e89ee17972d103588b90c0",
  7391. "reference": "6c77aeb625b32bd752e89ee17972d103588b90c0",
  7392. "shasum": ""
  7393. },
  7394. "type": "library",
  7395. "autoload": {
  7396. "psr-0": {
  7397. "Console": "./"
  7398. }
  7399. },
  7400. "notification-url": "https://packagist.org/downloads/",
  7401. "include-path": [
  7402. "./"
  7403. ],
  7404. "license": [
  7405. "BSD-2-Clause"
  7406. ],
  7407. "authors": [
  7408. {
  7409. "name": "Greg Beaver",
  7410. "email": "cellog@php.net",
  7411. "role": "Helper"
  7412. },
  7413. {
  7414. "name": "Andrei Zmievski",
  7415. "email": "andrei@php.net",
  7416. "role": "Lead"
  7417. },
  7418. {
  7419. "name": "Stig Bakken",
  7420. "email": "stig@php.net",
  7421. "role": "Developer"
  7422. }
  7423. ],
  7424. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7425. "time": "2019-02-06T16:52:33+00:00"
  7426. },
  7427. {
  7428. "name": "pear/pear-core-minimal",
  7429. "version": "v1.10.9",
  7430. "source": {
  7431. "type": "git",
  7432. "url": "https://github.com/pear/pear-core-minimal.git",
  7433. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f"
  7434. },
  7435. "dist": {
  7436. "type": "zip",
  7437. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  7438. "reference": "742be8dd68c746a01e4b0a422258e9c9cae1c37f",
  7439. "shasum": ""
  7440. },
  7441. "require": {
  7442. "pear/console_getopt": "~1.4",
  7443. "pear/pear_exception": "~1.0"
  7444. },
  7445. "replace": {
  7446. "rsky/pear-core-min": "self.version"
  7447. },
  7448. "type": "library",
  7449. "autoload": {
  7450. "psr-0": {
  7451. "": "src/"
  7452. }
  7453. },
  7454. "notification-url": "https://packagist.org/downloads/",
  7455. "include-path": [
  7456. "src/"
  7457. ],
  7458. "license": [
  7459. "BSD-3-Clause"
  7460. ],
  7461. "authors": [
  7462. {
  7463. "name": "Christian Weiske",
  7464. "email": "cweiske@php.net",
  7465. "role": "Lead"
  7466. }
  7467. ],
  7468. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7469. "time": "2019-03-13T18:15:44+00:00"
  7470. },
  7471. {
  7472. "name": "pear/pear_exception",
  7473. "version": "v1.0.0",
  7474. "source": {
  7475. "type": "git",
  7476. "url": "https://github.com/pear/PEAR_Exception.git",
  7477. "reference": "8c18719fdae000b690e3912be401c76e406dd13b"
  7478. },
  7479. "dist": {
  7480. "type": "zip",
  7481. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/8c18719fdae000b690e3912be401c76e406dd13b",
  7482. "reference": "8c18719fdae000b690e3912be401c76e406dd13b",
  7483. "shasum": ""
  7484. },
  7485. "require": {
  7486. "php": ">=4.4.0"
  7487. },
  7488. "require-dev": {
  7489. "phpunit/phpunit": "*"
  7490. },
  7491. "type": "class",
  7492. "extra": {
  7493. "branch-alias": {
  7494. "dev-master": "1.0.x-dev"
  7495. }
  7496. },
  7497. "autoload": {
  7498. "psr-0": {
  7499. "PEAR": ""
  7500. }
  7501. },
  7502. "notification-url": "https://packagist.org/downloads/",
  7503. "include-path": [
  7504. "."
  7505. ],
  7506. "license": [
  7507. "BSD-2-Clause"
  7508. ],
  7509. "authors": [
  7510. {
  7511. "name": "Helgi Thormar",
  7512. "email": "dufuz@php.net"
  7513. },
  7514. {
  7515. "name": "Greg Beaver",
  7516. "email": "cellog@php.net"
  7517. }
  7518. ],
  7519. "description": "The PEAR Exception base class.",
  7520. "homepage": "https://github.com/pear/PEAR_Exception",
  7521. "keywords": [
  7522. "exception"
  7523. ],
  7524. "time": "2015-02-10T20:07:52+00:00"
  7525. },
  7526. {
  7527. "name": "phar-io/manifest",
  7528. "version": "1.0.1",
  7529. "source": {
  7530. "type": "git",
  7531. "url": "https://github.com/phar-io/manifest.git",
  7532. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0"
  7533. },
  7534. "dist": {
  7535. "type": "zip",
  7536. "url": "https://api.github.com/repos/phar-io/manifest/zipball/2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7537. "reference": "2df402786ab5368a0169091f61a7c1e0eb6852d0",
  7538. "shasum": ""
  7539. },
  7540. "require": {
  7541. "ext-dom": "*",
  7542. "ext-phar": "*",
  7543. "phar-io/version": "^1.0.1",
  7544. "php": "^5.6 || ^7.0"
  7545. },
  7546. "type": "library",
  7547. "extra": {
  7548. "branch-alias": {
  7549. "dev-master": "1.0.x-dev"
  7550. }
  7551. },
  7552. "autoload": {
  7553. "classmap": [
  7554. "src/"
  7555. ]
  7556. },
  7557. "notification-url": "https://packagist.org/downloads/",
  7558. "license": [
  7559. "BSD-3-Clause"
  7560. ],
  7561. "authors": [
  7562. {
  7563. "name": "Arne Blankerts",
  7564. "email": "arne@blankerts.de",
  7565. "role": "Developer"
  7566. },
  7567. {
  7568. "name": "Sebastian Heuer",
  7569. "email": "sebastian@phpeople.de",
  7570. "role": "Developer"
  7571. },
  7572. {
  7573. "name": "Sebastian Bergmann",
  7574. "email": "sebastian@phpunit.de",
  7575. "role": "Developer"
  7576. }
  7577. ],
  7578. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7579. "time": "2017-03-05T18:14:27+00:00"
  7580. },
  7581. {
  7582. "name": "phar-io/version",
  7583. "version": "1.0.1",
  7584. "source": {
  7585. "type": "git",
  7586. "url": "https://github.com/phar-io/version.git",
  7587. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df"
  7588. },
  7589. "dist": {
  7590. "type": "zip",
  7591. "url": "https://api.github.com/repos/phar-io/version/zipball/a70c0ced4be299a63d32fa96d9281d03e94041df",
  7592. "reference": "a70c0ced4be299a63d32fa96d9281d03e94041df",
  7593. "shasum": ""
  7594. },
  7595. "require": {
  7596. "php": "^5.6 || ^7.0"
  7597. },
  7598. "type": "library",
  7599. "autoload": {
  7600. "classmap": [
  7601. "src/"
  7602. ]
  7603. },
  7604. "notification-url": "https://packagist.org/downloads/",
  7605. "license": [
  7606. "BSD-3-Clause"
  7607. ],
  7608. "authors": [
  7609. {
  7610. "name": "Arne Blankerts",
  7611. "email": "arne@blankerts.de",
  7612. "role": "Developer"
  7613. },
  7614. {
  7615. "name": "Sebastian Heuer",
  7616. "email": "sebastian@phpeople.de",
  7617. "role": "Developer"
  7618. },
  7619. {
  7620. "name": "Sebastian Bergmann",
  7621. "email": "sebastian@phpunit.de",
  7622. "role": "Developer"
  7623. }
  7624. ],
  7625. "description": "Library for handling version information and constraints",
  7626. "time": "2017-03-05T17:38:23+00:00"
  7627. },
  7628. {
  7629. "name": "phpdocumentor/reflection-common",
  7630. "version": "1.0.1",
  7631. "source": {
  7632. "type": "git",
  7633. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  7634. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6"
  7635. },
  7636. "dist": {
  7637. "type": "zip",
  7638. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7639. "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6",
  7640. "shasum": ""
  7641. },
  7642. "require": {
  7643. "php": ">=5.5"
  7644. },
  7645. "require-dev": {
  7646. "phpunit/phpunit": "^4.6"
  7647. },
  7648. "type": "library",
  7649. "extra": {
  7650. "branch-alias": {
  7651. "dev-master": "1.0.x-dev"
  7652. }
  7653. },
  7654. "autoload": {
  7655. "psr-4": {
  7656. "phpDocumentor\\Reflection\\": [
  7657. "src"
  7658. ]
  7659. }
  7660. },
  7661. "notification-url": "https://packagist.org/downloads/",
  7662. "license": [
  7663. "MIT"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Jaap van Otterdijk",
  7668. "email": "opensource@ijaap.nl"
  7669. }
  7670. ],
  7671. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  7672. "homepage": "http://www.phpdoc.org",
  7673. "keywords": [
  7674. "FQSEN",
  7675. "phpDocumentor",
  7676. "phpdoc",
  7677. "reflection",
  7678. "static analysis"
  7679. ],
  7680. "time": "2017-09-11T18:02:19+00:00"
  7681. },
  7682. {
  7683. "name": "phpdocumentor/reflection-docblock",
  7684. "version": "4.3.2",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  7688. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7693. "reference": "b83ff7cfcfee7827e1e78b637a5904fe6a96698e",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": "^7.0",
  7698. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  7699. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  7700. "webmozart/assert": "^1.0"
  7701. },
  7702. "require-dev": {
  7703. "doctrine/instantiator": "^1.0.5",
  7704. "mockery/mockery": "^1.0",
  7705. "phpunit/phpunit": "^6.4"
  7706. },
  7707. "type": "library",
  7708. "extra": {
  7709. "branch-alias": {
  7710. "dev-master": "4.x-dev"
  7711. }
  7712. },
  7713. "autoload": {
  7714. "psr-4": {
  7715. "phpDocumentor\\Reflection\\": [
  7716. "src/"
  7717. ]
  7718. }
  7719. },
  7720. "notification-url": "https://packagist.org/downloads/",
  7721. "license": [
  7722. "MIT"
  7723. ],
  7724. "authors": [
  7725. {
  7726. "name": "Mike van Riel",
  7727. "email": "me@mikevanriel.com"
  7728. }
  7729. ],
  7730. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  7731. "time": "2019-09-12T14:27:41+00:00"
  7732. },
  7733. {
  7734. "name": "phpdocumentor/type-resolver",
  7735. "version": "0.5.1",
  7736. "source": {
  7737. "type": "git",
  7738. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  7739. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae"
  7740. },
  7741. "dist": {
  7742. "type": "zip",
  7743. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/cf842904952e64e703800d094cdf34e715a8a3ae",
  7744. "reference": "cf842904952e64e703800d094cdf34e715a8a3ae",
  7745. "shasum": ""
  7746. },
  7747. "require": {
  7748. "php": "^7.0",
  7749. "phpdocumentor/reflection-common": "^1.0"
  7750. },
  7751. "require-dev": {
  7752. "mockery/mockery": "^1.0",
  7753. "phpunit/phpunit": "^6.4"
  7754. },
  7755. "type": "library",
  7756. "extra": {
  7757. "branch-alias": {
  7758. "dev-master": "1.0.x-dev"
  7759. }
  7760. },
  7761. "autoload": {
  7762. "psr-4": {
  7763. "phpDocumentor\\Reflection\\": "src"
  7764. }
  7765. },
  7766. "notification-url": "https://packagist.org/downloads/",
  7767. "license": [
  7768. "MIT"
  7769. ],
  7770. "authors": [
  7771. {
  7772. "name": "Mike van Riel",
  7773. "email": "me@mikevanriel.com"
  7774. }
  7775. ],
  7776. "time": "2017-12-30T13:23:38+00:00"
  7777. },
  7778. {
  7779. "name": "phpspec/prophecy",
  7780. "version": "1.9.0",
  7781. "source": {
  7782. "type": "git",
  7783. "url": "https://github.com/phpspec/prophecy.git",
  7784. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203"
  7785. },
  7786. "dist": {
  7787. "type": "zip",
  7788. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7789. "reference": "f6811d96d97bdf400077a0cc100ae56aa32b9203",
  7790. "shasum": ""
  7791. },
  7792. "require": {
  7793. "doctrine/instantiator": "^1.0.2",
  7794. "php": "^5.3|^7.0",
  7795. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  7796. "sebastian/comparator": "^1.1|^2.0|^3.0",
  7797. "sebastian/recursion-context": "^1.0|^2.0|^3.0"
  7798. },
  7799. "require-dev": {
  7800. "phpspec/phpspec": "^2.5|^3.2",
  7801. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  7802. },
  7803. "type": "library",
  7804. "extra": {
  7805. "branch-alias": {
  7806. "dev-master": "1.8.x-dev"
  7807. }
  7808. },
  7809. "autoload": {
  7810. "psr-4": {
  7811. "Prophecy\\": "src/Prophecy"
  7812. }
  7813. },
  7814. "notification-url": "https://packagist.org/downloads/",
  7815. "license": [
  7816. "MIT"
  7817. ],
  7818. "authors": [
  7819. {
  7820. "name": "Konstantin Kudryashov",
  7821. "email": "ever.zet@gmail.com",
  7822. "homepage": "http://everzet.com"
  7823. },
  7824. {
  7825. "name": "Marcello Duarte",
  7826. "email": "marcello.duarte@gmail.com"
  7827. }
  7828. ],
  7829. "description": "Highly opinionated mocking framework for PHP 5.3+",
  7830. "homepage": "https://github.com/phpspec/prophecy",
  7831. "keywords": [
  7832. "Double",
  7833. "Dummy",
  7834. "fake",
  7835. "mock",
  7836. "spy",
  7837. "stub"
  7838. ],
  7839. "time": "2019-10-03T11:07:50+00:00"
  7840. },
  7841. {
  7842. "name": "phpunit/php-code-coverage",
  7843. "version": "5.3.2",
  7844. "source": {
  7845. "type": "git",
  7846. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7847. "reference": "c89677919c5dd6d3b3852f230a663118762218ac"
  7848. },
  7849. "dist": {
  7850. "type": "zip",
  7851. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac",
  7852. "reference": "c89677919c5dd6d3b3852f230a663118762218ac",
  7853. "shasum": ""
  7854. },
  7855. "require": {
  7856. "ext-dom": "*",
  7857. "ext-xmlwriter": "*",
  7858. "php": "^7.0",
  7859. "phpunit/php-file-iterator": "^1.4.2",
  7860. "phpunit/php-text-template": "^1.2.1",
  7861. "phpunit/php-token-stream": "^2.0.1",
  7862. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  7863. "sebastian/environment": "^3.0",
  7864. "sebastian/version": "^2.0.1",
  7865. "theseer/tokenizer": "^1.1"
  7866. },
  7867. "require-dev": {
  7868. "phpunit/phpunit": "^6.0"
  7869. },
  7870. "suggest": {
  7871. "ext-xdebug": "^2.5.5"
  7872. },
  7873. "type": "library",
  7874. "extra": {
  7875. "branch-alias": {
  7876. "dev-master": "5.3.x-dev"
  7877. }
  7878. },
  7879. "autoload": {
  7880. "classmap": [
  7881. "src/"
  7882. ]
  7883. },
  7884. "notification-url": "https://packagist.org/downloads/",
  7885. "license": [
  7886. "BSD-3-Clause"
  7887. ],
  7888. "authors": [
  7889. {
  7890. "name": "Sebastian Bergmann",
  7891. "email": "sebastian@phpunit.de",
  7892. "role": "lead"
  7893. }
  7894. ],
  7895. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7896. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7897. "keywords": [
  7898. "coverage",
  7899. "testing",
  7900. "xunit"
  7901. ],
  7902. "time": "2018-04-06T15:36:58+00:00"
  7903. },
  7904. {
  7905. "name": "phpunit/php-file-iterator",
  7906. "version": "1.4.5",
  7907. "source": {
  7908. "type": "git",
  7909. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7910. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
  7911. },
  7912. "dist": {
  7913. "type": "zip",
  7914. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7915. "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
  7916. "shasum": ""
  7917. },
  7918. "require": {
  7919. "php": ">=5.3.3"
  7920. },
  7921. "type": "library",
  7922. "extra": {
  7923. "branch-alias": {
  7924. "dev-master": "1.4.x-dev"
  7925. }
  7926. },
  7927. "autoload": {
  7928. "classmap": [
  7929. "src/"
  7930. ]
  7931. },
  7932. "notification-url": "https://packagist.org/downloads/",
  7933. "license": [
  7934. "BSD-3-Clause"
  7935. ],
  7936. "authors": [
  7937. {
  7938. "name": "Sebastian Bergmann",
  7939. "email": "sb@sebastian-bergmann.de",
  7940. "role": "lead"
  7941. }
  7942. ],
  7943. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7944. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7945. "keywords": [
  7946. "filesystem",
  7947. "iterator"
  7948. ],
  7949. "time": "2017-11-27T13:52:08+00:00"
  7950. },
  7951. {
  7952. "name": "phpunit/php-text-template",
  7953. "version": "1.2.1",
  7954. "source": {
  7955. "type": "git",
  7956. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7957. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  7958. },
  7959. "dist": {
  7960. "type": "zip",
  7961. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7962. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  7963. "shasum": ""
  7964. },
  7965. "require": {
  7966. "php": ">=5.3.3"
  7967. },
  7968. "type": "library",
  7969. "autoload": {
  7970. "classmap": [
  7971. "src/"
  7972. ]
  7973. },
  7974. "notification-url": "https://packagist.org/downloads/",
  7975. "license": [
  7976. "BSD-3-Clause"
  7977. ],
  7978. "authors": [
  7979. {
  7980. "name": "Sebastian Bergmann",
  7981. "email": "sebastian@phpunit.de",
  7982. "role": "lead"
  7983. }
  7984. ],
  7985. "description": "Simple template engine.",
  7986. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7987. "keywords": [
  7988. "template"
  7989. ],
  7990. "time": "2015-06-21T13:50:34+00:00"
  7991. },
  7992. {
  7993. "name": "phpunit/php-timer",
  7994. "version": "1.0.9",
  7995. "source": {
  7996. "type": "git",
  7997. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7998. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
  7999. },
  8000. "dist": {
  8001. "type": "zip",
  8002. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  8003. "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
  8004. "shasum": ""
  8005. },
  8006. "require": {
  8007. "php": "^5.3.3 || ^7.0"
  8008. },
  8009. "require-dev": {
  8010. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  8011. },
  8012. "type": "library",
  8013. "extra": {
  8014. "branch-alias": {
  8015. "dev-master": "1.0-dev"
  8016. }
  8017. },
  8018. "autoload": {
  8019. "classmap": [
  8020. "src/"
  8021. ]
  8022. },
  8023. "notification-url": "https://packagist.org/downloads/",
  8024. "license": [
  8025. "BSD-3-Clause"
  8026. ],
  8027. "authors": [
  8028. {
  8029. "name": "Sebastian Bergmann",
  8030. "email": "sb@sebastian-bergmann.de",
  8031. "role": "lead"
  8032. }
  8033. ],
  8034. "description": "Utility class for timing",
  8035. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8036. "keywords": [
  8037. "timer"
  8038. ],
  8039. "time": "2017-02-26T11:10:40+00:00"
  8040. },
  8041. {
  8042. "name": "phpunit/php-token-stream",
  8043. "version": "2.0.2",
  8044. "source": {
  8045. "type": "git",
  8046. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  8047. "reference": "791198a2c6254db10131eecfe8c06670700904db"
  8048. },
  8049. "dist": {
  8050. "type": "zip",
  8051. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
  8052. "reference": "791198a2c6254db10131eecfe8c06670700904db",
  8053. "shasum": ""
  8054. },
  8055. "require": {
  8056. "ext-tokenizer": "*",
  8057. "php": "^7.0"
  8058. },
  8059. "require-dev": {
  8060. "phpunit/phpunit": "^6.2.4"
  8061. },
  8062. "type": "library",
  8063. "extra": {
  8064. "branch-alias": {
  8065. "dev-master": "2.0-dev"
  8066. }
  8067. },
  8068. "autoload": {
  8069. "classmap": [
  8070. "src/"
  8071. ]
  8072. },
  8073. "notification-url": "https://packagist.org/downloads/",
  8074. "license": [
  8075. "BSD-3-Clause"
  8076. ],
  8077. "authors": [
  8078. {
  8079. "name": "Sebastian Bergmann",
  8080. "email": "sebastian@phpunit.de"
  8081. }
  8082. ],
  8083. "description": "Wrapper around PHP's tokenizer extension.",
  8084. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  8085. "keywords": [
  8086. "tokenizer"
  8087. ],
  8088. "time": "2017-11-27T05:48:46+00:00"
  8089. },
  8090. {
  8091. "name": "phpunit/phpunit",
  8092. "version": "6.5.14",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8096. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  8101. "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "ext-dom": "*",
  8106. "ext-json": "*",
  8107. "ext-libxml": "*",
  8108. "ext-mbstring": "*",
  8109. "ext-xml": "*",
  8110. "myclabs/deep-copy": "^1.6.1",
  8111. "phar-io/manifest": "^1.0.1",
  8112. "phar-io/version": "^1.0",
  8113. "php": "^7.0",
  8114. "phpspec/prophecy": "^1.7",
  8115. "phpunit/php-code-coverage": "^5.3",
  8116. "phpunit/php-file-iterator": "^1.4.3",
  8117. "phpunit/php-text-template": "^1.2.1",
  8118. "phpunit/php-timer": "^1.0.9",
  8119. "phpunit/phpunit-mock-objects": "^5.0.9",
  8120. "sebastian/comparator": "^2.1",
  8121. "sebastian/diff": "^2.0",
  8122. "sebastian/environment": "^3.1",
  8123. "sebastian/exporter": "^3.1",
  8124. "sebastian/global-state": "^2.0",
  8125. "sebastian/object-enumerator": "^3.0.3",
  8126. "sebastian/resource-operations": "^1.0",
  8127. "sebastian/version": "^2.0.1"
  8128. },
  8129. "conflict": {
  8130. "phpdocumentor/reflection-docblock": "3.0.2",
  8131. "phpunit/dbunit": "<3.0"
  8132. },
  8133. "require-dev": {
  8134. "ext-pdo": "*"
  8135. },
  8136. "suggest": {
  8137. "ext-xdebug": "*",
  8138. "phpunit/php-invoker": "^1.1"
  8139. },
  8140. "bin": [
  8141. "phpunit"
  8142. ],
  8143. "type": "library",
  8144. "extra": {
  8145. "branch-alias": {
  8146. "dev-master": "6.5.x-dev"
  8147. }
  8148. },
  8149. "autoload": {
  8150. "classmap": [
  8151. "src/"
  8152. ]
  8153. },
  8154. "notification-url": "https://packagist.org/downloads/",
  8155. "license": [
  8156. "BSD-3-Clause"
  8157. ],
  8158. "authors": [
  8159. {
  8160. "name": "Sebastian Bergmann",
  8161. "email": "sebastian@phpunit.de",
  8162. "role": "lead"
  8163. }
  8164. ],
  8165. "description": "The PHP Unit Testing framework.",
  8166. "homepage": "https://phpunit.de/",
  8167. "keywords": [
  8168. "phpunit",
  8169. "testing",
  8170. "xunit"
  8171. ],
  8172. "time": "2019-02-01T05:22:47+00:00"
  8173. },
  8174. {
  8175. "name": "phpunit/phpunit-mock-objects",
  8176. "version": "5.0.10",
  8177. "source": {
  8178. "type": "git",
  8179. "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
  8180. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f"
  8181. },
  8182. "dist": {
  8183. "type": "zip",
  8184. "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8185. "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f",
  8186. "shasum": ""
  8187. },
  8188. "require": {
  8189. "doctrine/instantiator": "^1.0.5",
  8190. "php": "^7.0",
  8191. "phpunit/php-text-template": "^1.2.1",
  8192. "sebastian/exporter": "^3.1"
  8193. },
  8194. "conflict": {
  8195. "phpunit/phpunit": "<6.0"
  8196. },
  8197. "require-dev": {
  8198. "phpunit/phpunit": "^6.5.11"
  8199. },
  8200. "suggest": {
  8201. "ext-soap": "*"
  8202. },
  8203. "type": "library",
  8204. "extra": {
  8205. "branch-alias": {
  8206. "dev-master": "5.0.x-dev"
  8207. }
  8208. },
  8209. "autoload": {
  8210. "classmap": [
  8211. "src/"
  8212. ]
  8213. },
  8214. "notification-url": "https://packagist.org/downloads/",
  8215. "license": [
  8216. "BSD-3-Clause"
  8217. ],
  8218. "authors": [
  8219. {
  8220. "name": "Sebastian Bergmann",
  8221. "email": "sebastian@phpunit.de",
  8222. "role": "lead"
  8223. }
  8224. ],
  8225. "description": "Mock Object library for PHPUnit",
  8226. "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
  8227. "keywords": [
  8228. "mock",
  8229. "xunit"
  8230. ],
  8231. "abandoned": true,
  8232. "time": "2018-08-09T05:50:03+00:00"
  8233. },
  8234. {
  8235. "name": "psr/container",
  8236. "version": "1.0.0",
  8237. "source": {
  8238. "type": "git",
  8239. "url": "https://github.com/php-fig/container.git",
  8240. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  8241. },
  8242. "dist": {
  8243. "type": "zip",
  8244. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8245. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  8246. "shasum": ""
  8247. },
  8248. "require": {
  8249. "php": ">=5.3.0"
  8250. },
  8251. "type": "library",
  8252. "extra": {
  8253. "branch-alias": {
  8254. "dev-master": "1.0.x-dev"
  8255. }
  8256. },
  8257. "autoload": {
  8258. "psr-4": {
  8259. "Psr\\Container\\": "src/"
  8260. }
  8261. },
  8262. "notification-url": "https://packagist.org/downloads/",
  8263. "license": [
  8264. "MIT"
  8265. ],
  8266. "authors": [
  8267. {
  8268. "name": "PHP-FIG",
  8269. "homepage": "http://www.php-fig.org/"
  8270. }
  8271. ],
  8272. "description": "Common Container Interface (PHP FIG PSR-11)",
  8273. "homepage": "https://github.com/php-fig/container",
  8274. "keywords": [
  8275. "PSR-11",
  8276. "container",
  8277. "container-interface",
  8278. "container-interop",
  8279. "psr"
  8280. ],
  8281. "time": "2017-02-14T16:28:37+00:00"
  8282. },
  8283. {
  8284. "name": "psr/http-message",
  8285. "version": "1.0.1",
  8286. "source": {
  8287. "type": "git",
  8288. "url": "https://github.com/php-fig/http-message.git",
  8289. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  8290. },
  8291. "dist": {
  8292. "type": "zip",
  8293. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  8294. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  8295. "shasum": ""
  8296. },
  8297. "require": {
  8298. "php": ">=5.3.0"
  8299. },
  8300. "type": "library",
  8301. "extra": {
  8302. "branch-alias": {
  8303. "dev-master": "1.0.x-dev"
  8304. }
  8305. },
  8306. "autoload": {
  8307. "psr-4": {
  8308. "Psr\\Http\\Message\\": "src/"
  8309. }
  8310. },
  8311. "notification-url": "https://packagist.org/downloads/",
  8312. "license": [
  8313. "MIT"
  8314. ],
  8315. "authors": [
  8316. {
  8317. "name": "PHP-FIG",
  8318. "homepage": "http://www.php-fig.org/"
  8319. }
  8320. ],
  8321. "description": "Common interface for HTTP messages",
  8322. "homepage": "https://github.com/php-fig/http-message",
  8323. "keywords": [
  8324. "http",
  8325. "http-message",
  8326. "psr",
  8327. "psr-7",
  8328. "request",
  8329. "response"
  8330. ],
  8331. "time": "2016-08-06T14:39:51+00:00"
  8332. },
  8333. {
  8334. "name": "psr/log",
  8335. "version": "1.1.2",
  8336. "source": {
  8337. "type": "git",
  8338. "url": "https://github.com/php-fig/log.git",
  8339. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801"
  8340. },
  8341. "dist": {
  8342. "type": "zip",
  8343. "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
  8344. "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
  8345. "shasum": ""
  8346. },
  8347. "require": {
  8348. "php": ">=5.3.0"
  8349. },
  8350. "type": "library",
  8351. "extra": {
  8352. "branch-alias": {
  8353. "dev-master": "1.1.x-dev"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "psr-4": {
  8358. "Psr\\Log\\": "Psr/Log/"
  8359. }
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "MIT"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "PHP-FIG",
  8368. "homepage": "http://www.php-fig.org/"
  8369. }
  8370. ],
  8371. "description": "Common interface for logging libraries",
  8372. "homepage": "https://github.com/php-fig/log",
  8373. "keywords": [
  8374. "log",
  8375. "psr",
  8376. "psr-3"
  8377. ],
  8378. "time": "2019-11-01T11:05:21+00:00"
  8379. },
  8380. {
  8381. "name": "psy/psysh",
  8382. "version": "v0.9.9",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/bobthecow/psysh.git",
  8386. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8391. "reference": "9aaf29575bb8293206bb0420c1e1c87ff2ffa94e",
  8392. "shasum": ""
  8393. },
  8394. "require": {
  8395. "dnoegel/php-xdg-base-dir": "0.1",
  8396. "ext-json": "*",
  8397. "ext-tokenizer": "*",
  8398. "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*",
  8399. "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0",
  8400. "php": ">=5.4.0",
  8401. "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0",
  8402. "symfony/var-dumper": "~2.7|~3.0|~4.0"
  8403. },
  8404. "require-dev": {
  8405. "bamarni/composer-bin-plugin": "^1.2",
  8406. "hoa/console": "~2.15|~3.16",
  8407. "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0"
  8408. },
  8409. "suggest": {
  8410. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8411. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8412. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8413. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  8414. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  8415. },
  8416. "bin": [
  8417. "bin/psysh"
  8418. ],
  8419. "type": "library",
  8420. "extra": {
  8421. "branch-alias": {
  8422. "dev-develop": "0.9.x-dev"
  8423. }
  8424. },
  8425. "autoload": {
  8426. "files": [
  8427. "src/functions.php"
  8428. ],
  8429. "psr-4": {
  8430. "Psy\\": "src/"
  8431. }
  8432. },
  8433. "notification-url": "https://packagist.org/downloads/",
  8434. "license": [
  8435. "MIT"
  8436. ],
  8437. "authors": [
  8438. {
  8439. "name": "Justin Hileman",
  8440. "email": "justin@justinhileman.info",
  8441. "homepage": "http://justinhileman.com"
  8442. }
  8443. ],
  8444. "description": "An interactive shell for modern PHP.",
  8445. "homepage": "http://psysh.org",
  8446. "keywords": [
  8447. "REPL",
  8448. "console",
  8449. "interactive",
  8450. "shell"
  8451. ],
  8452. "time": "2018-10-13T15:16:03+00:00"
  8453. },
  8454. {
  8455. "name": "ralouphie/getallheaders",
  8456. "version": "3.0.3",
  8457. "source": {
  8458. "type": "git",
  8459. "url": "https://github.com/ralouphie/getallheaders.git",
  8460. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8461. },
  8462. "dist": {
  8463. "type": "zip",
  8464. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8465. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8466. "shasum": ""
  8467. },
  8468. "require": {
  8469. "php": ">=5.6"
  8470. },
  8471. "require-dev": {
  8472. "php-coveralls/php-coveralls": "^2.1",
  8473. "phpunit/phpunit": "^5 || ^6.5"
  8474. },
  8475. "type": "library",
  8476. "autoload": {
  8477. "files": [
  8478. "src/getallheaders.php"
  8479. ]
  8480. },
  8481. "notification-url": "https://packagist.org/downloads/",
  8482. "license": [
  8483. "MIT"
  8484. ],
  8485. "authors": [
  8486. {
  8487. "name": "Ralph Khattar",
  8488. "email": "ralph.khattar@gmail.com"
  8489. }
  8490. ],
  8491. "description": "A polyfill for getallheaders.",
  8492. "time": "2019-03-08T08:55:37+00:00"
  8493. },
  8494. {
  8495. "name": "sebastian/code-unit-reverse-lookup",
  8496. "version": "1.0.1",
  8497. "source": {
  8498. "type": "git",
  8499. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8500. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
  8501. },
  8502. "dist": {
  8503. "type": "zip",
  8504. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8505. "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
  8506. "shasum": ""
  8507. },
  8508. "require": {
  8509. "php": "^5.6 || ^7.0"
  8510. },
  8511. "require-dev": {
  8512. "phpunit/phpunit": "^5.7 || ^6.0"
  8513. },
  8514. "type": "library",
  8515. "extra": {
  8516. "branch-alias": {
  8517. "dev-master": "1.0.x-dev"
  8518. }
  8519. },
  8520. "autoload": {
  8521. "classmap": [
  8522. "src/"
  8523. ]
  8524. },
  8525. "notification-url": "https://packagist.org/downloads/",
  8526. "license": [
  8527. "BSD-3-Clause"
  8528. ],
  8529. "authors": [
  8530. {
  8531. "name": "Sebastian Bergmann",
  8532. "email": "sebastian@phpunit.de"
  8533. }
  8534. ],
  8535. "description": "Looks up which function or method a line of code belongs to",
  8536. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8537. "time": "2017-03-04T06:30:41+00:00"
  8538. },
  8539. {
  8540. "name": "sebastian/comparator",
  8541. "version": "2.1.3",
  8542. "source": {
  8543. "type": "git",
  8544. "url": "https://github.com/sebastianbergmann/comparator.git",
  8545. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9"
  8546. },
  8547. "dist": {
  8548. "type": "zip",
  8549. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9",
  8550. "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9",
  8551. "shasum": ""
  8552. },
  8553. "require": {
  8554. "php": "^7.0",
  8555. "sebastian/diff": "^2.0 || ^3.0",
  8556. "sebastian/exporter": "^3.1"
  8557. },
  8558. "require-dev": {
  8559. "phpunit/phpunit": "^6.4"
  8560. },
  8561. "type": "library",
  8562. "extra": {
  8563. "branch-alias": {
  8564. "dev-master": "2.1.x-dev"
  8565. }
  8566. },
  8567. "autoload": {
  8568. "classmap": [
  8569. "src/"
  8570. ]
  8571. },
  8572. "notification-url": "https://packagist.org/downloads/",
  8573. "license": [
  8574. "BSD-3-Clause"
  8575. ],
  8576. "authors": [
  8577. {
  8578. "name": "Jeff Welch",
  8579. "email": "whatthejeff@gmail.com"
  8580. },
  8581. {
  8582. "name": "Volker Dusch",
  8583. "email": "github@wallbash.com"
  8584. },
  8585. {
  8586. "name": "Bernhard Schussek",
  8587. "email": "bschussek@2bepublished.at"
  8588. },
  8589. {
  8590. "name": "Sebastian Bergmann",
  8591. "email": "sebastian@phpunit.de"
  8592. }
  8593. ],
  8594. "description": "Provides the functionality to compare PHP values for equality",
  8595. "homepage": "https://github.com/sebastianbergmann/comparator",
  8596. "keywords": [
  8597. "comparator",
  8598. "compare",
  8599. "equality"
  8600. ],
  8601. "time": "2018-02-01T13:46:46+00:00"
  8602. },
  8603. {
  8604. "name": "sebastian/diff",
  8605. "version": "2.0.1",
  8606. "source": {
  8607. "type": "git",
  8608. "url": "https://github.com/sebastianbergmann/diff.git",
  8609. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd"
  8610. },
  8611. "dist": {
  8612. "type": "zip",
  8613. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8614. "reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd",
  8615. "shasum": ""
  8616. },
  8617. "require": {
  8618. "php": "^7.0"
  8619. },
  8620. "require-dev": {
  8621. "phpunit/phpunit": "^6.2"
  8622. },
  8623. "type": "library",
  8624. "extra": {
  8625. "branch-alias": {
  8626. "dev-master": "2.0-dev"
  8627. }
  8628. },
  8629. "autoload": {
  8630. "classmap": [
  8631. "src/"
  8632. ]
  8633. },
  8634. "notification-url": "https://packagist.org/downloads/",
  8635. "license": [
  8636. "BSD-3-Clause"
  8637. ],
  8638. "authors": [
  8639. {
  8640. "name": "Kore Nordmann",
  8641. "email": "mail@kore-nordmann.de"
  8642. },
  8643. {
  8644. "name": "Sebastian Bergmann",
  8645. "email": "sebastian@phpunit.de"
  8646. }
  8647. ],
  8648. "description": "Diff implementation",
  8649. "homepage": "https://github.com/sebastianbergmann/diff",
  8650. "keywords": [
  8651. "diff"
  8652. ],
  8653. "time": "2017-08-03T08:09:46+00:00"
  8654. },
  8655. {
  8656. "name": "sebastian/environment",
  8657. "version": "3.1.0",
  8658. "source": {
  8659. "type": "git",
  8660. "url": "https://github.com/sebastianbergmann/environment.git",
  8661. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5"
  8662. },
  8663. "dist": {
  8664. "type": "zip",
  8665. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8666. "reference": "cd0871b3975fb7fc44d11314fd1ee20925fce4f5",
  8667. "shasum": ""
  8668. },
  8669. "require": {
  8670. "php": "^7.0"
  8671. },
  8672. "require-dev": {
  8673. "phpunit/phpunit": "^6.1"
  8674. },
  8675. "type": "library",
  8676. "extra": {
  8677. "branch-alias": {
  8678. "dev-master": "3.1.x-dev"
  8679. }
  8680. },
  8681. "autoload": {
  8682. "classmap": [
  8683. "src/"
  8684. ]
  8685. },
  8686. "notification-url": "https://packagist.org/downloads/",
  8687. "license": [
  8688. "BSD-3-Clause"
  8689. ],
  8690. "authors": [
  8691. {
  8692. "name": "Sebastian Bergmann",
  8693. "email": "sebastian@phpunit.de"
  8694. }
  8695. ],
  8696. "description": "Provides functionality to handle HHVM/PHP environments",
  8697. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8698. "keywords": [
  8699. "Xdebug",
  8700. "environment",
  8701. "hhvm"
  8702. ],
  8703. "time": "2017-07-01T08:51:00+00:00"
  8704. },
  8705. {
  8706. "name": "sebastian/exporter",
  8707. "version": "3.1.2",
  8708. "source": {
  8709. "type": "git",
  8710. "url": "https://github.com/sebastianbergmann/exporter.git",
  8711. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e"
  8712. },
  8713. "dist": {
  8714. "type": "zip",
  8715. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8716. "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e",
  8717. "shasum": ""
  8718. },
  8719. "require": {
  8720. "php": "^7.0",
  8721. "sebastian/recursion-context": "^3.0"
  8722. },
  8723. "require-dev": {
  8724. "ext-mbstring": "*",
  8725. "phpunit/phpunit": "^6.0"
  8726. },
  8727. "type": "library",
  8728. "extra": {
  8729. "branch-alias": {
  8730. "dev-master": "3.1.x-dev"
  8731. }
  8732. },
  8733. "autoload": {
  8734. "classmap": [
  8735. "src/"
  8736. ]
  8737. },
  8738. "notification-url": "https://packagist.org/downloads/",
  8739. "license": [
  8740. "BSD-3-Clause"
  8741. ],
  8742. "authors": [
  8743. {
  8744. "name": "Sebastian Bergmann",
  8745. "email": "sebastian@phpunit.de"
  8746. },
  8747. {
  8748. "name": "Jeff Welch",
  8749. "email": "whatthejeff@gmail.com"
  8750. },
  8751. {
  8752. "name": "Volker Dusch",
  8753. "email": "github@wallbash.com"
  8754. },
  8755. {
  8756. "name": "Adam Harvey",
  8757. "email": "aharvey@php.net"
  8758. },
  8759. {
  8760. "name": "Bernhard Schussek",
  8761. "email": "bschussek@gmail.com"
  8762. }
  8763. ],
  8764. "description": "Provides the functionality to export PHP variables for visualization",
  8765. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  8766. "keywords": [
  8767. "export",
  8768. "exporter"
  8769. ],
  8770. "time": "2019-09-14T09:02:43+00:00"
  8771. },
  8772. {
  8773. "name": "sebastian/global-state",
  8774. "version": "2.0.0",
  8775. "source": {
  8776. "type": "git",
  8777. "url": "https://github.com/sebastianbergmann/global-state.git",
  8778. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4"
  8779. },
  8780. "dist": {
  8781. "type": "zip",
  8782. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8783. "reference": "e8ba02eed7bbbb9e59e43dedd3dddeff4a56b0c4",
  8784. "shasum": ""
  8785. },
  8786. "require": {
  8787. "php": "^7.0"
  8788. },
  8789. "require-dev": {
  8790. "phpunit/phpunit": "^6.0"
  8791. },
  8792. "suggest": {
  8793. "ext-uopz": "*"
  8794. },
  8795. "type": "library",
  8796. "extra": {
  8797. "branch-alias": {
  8798. "dev-master": "2.0-dev"
  8799. }
  8800. },
  8801. "autoload": {
  8802. "classmap": [
  8803. "src/"
  8804. ]
  8805. },
  8806. "notification-url": "https://packagist.org/downloads/",
  8807. "license": [
  8808. "BSD-3-Clause"
  8809. ],
  8810. "authors": [
  8811. {
  8812. "name": "Sebastian Bergmann",
  8813. "email": "sebastian@phpunit.de"
  8814. }
  8815. ],
  8816. "description": "Snapshotting of global state",
  8817. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8818. "keywords": [
  8819. "global state"
  8820. ],
  8821. "time": "2017-04-27T15:39:26+00:00"
  8822. },
  8823. {
  8824. "name": "sebastian/object-enumerator",
  8825. "version": "3.0.3",
  8826. "source": {
  8827. "type": "git",
  8828. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8829. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5"
  8830. },
  8831. "dist": {
  8832. "type": "zip",
  8833. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8834. "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5",
  8835. "shasum": ""
  8836. },
  8837. "require": {
  8838. "php": "^7.0",
  8839. "sebastian/object-reflector": "^1.1.1",
  8840. "sebastian/recursion-context": "^3.0"
  8841. },
  8842. "require-dev": {
  8843. "phpunit/phpunit": "^6.0"
  8844. },
  8845. "type": "library",
  8846. "extra": {
  8847. "branch-alias": {
  8848. "dev-master": "3.0.x-dev"
  8849. }
  8850. },
  8851. "autoload": {
  8852. "classmap": [
  8853. "src/"
  8854. ]
  8855. },
  8856. "notification-url": "https://packagist.org/downloads/",
  8857. "license": [
  8858. "BSD-3-Clause"
  8859. ],
  8860. "authors": [
  8861. {
  8862. "name": "Sebastian Bergmann",
  8863. "email": "sebastian@phpunit.de"
  8864. }
  8865. ],
  8866. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8867. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8868. "time": "2017-08-03T12:35:26+00:00"
  8869. },
  8870. {
  8871. "name": "sebastian/object-reflector",
  8872. "version": "1.1.1",
  8873. "source": {
  8874. "type": "git",
  8875. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8876. "reference": "773f97c67f28de00d397be301821b06708fca0be"
  8877. },
  8878. "dist": {
  8879. "type": "zip",
  8880. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be",
  8881. "reference": "773f97c67f28de00d397be301821b06708fca0be",
  8882. "shasum": ""
  8883. },
  8884. "require": {
  8885. "php": "^7.0"
  8886. },
  8887. "require-dev": {
  8888. "phpunit/phpunit": "^6.0"
  8889. },
  8890. "type": "library",
  8891. "extra": {
  8892. "branch-alias": {
  8893. "dev-master": "1.1-dev"
  8894. }
  8895. },
  8896. "autoload": {
  8897. "classmap": [
  8898. "src/"
  8899. ]
  8900. },
  8901. "notification-url": "https://packagist.org/downloads/",
  8902. "license": [
  8903. "BSD-3-Clause"
  8904. ],
  8905. "authors": [
  8906. {
  8907. "name": "Sebastian Bergmann",
  8908. "email": "sebastian@phpunit.de"
  8909. }
  8910. ],
  8911. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8912. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8913. "time": "2017-03-29T09:07:27+00:00"
  8914. },
  8915. {
  8916. "name": "sebastian/recursion-context",
  8917. "version": "3.0.0",
  8918. "source": {
  8919. "type": "git",
  8920. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8921. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8"
  8922. },
  8923. "dist": {
  8924. "type": "zip",
  8925. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8926. "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8",
  8927. "shasum": ""
  8928. },
  8929. "require": {
  8930. "php": "^7.0"
  8931. },
  8932. "require-dev": {
  8933. "phpunit/phpunit": "^6.0"
  8934. },
  8935. "type": "library",
  8936. "extra": {
  8937. "branch-alias": {
  8938. "dev-master": "3.0.x-dev"
  8939. }
  8940. },
  8941. "autoload": {
  8942. "classmap": [
  8943. "src/"
  8944. ]
  8945. },
  8946. "notification-url": "https://packagist.org/downloads/",
  8947. "license": [
  8948. "BSD-3-Clause"
  8949. ],
  8950. "authors": [
  8951. {
  8952. "name": "Jeff Welch",
  8953. "email": "whatthejeff@gmail.com"
  8954. },
  8955. {
  8956. "name": "Sebastian Bergmann",
  8957. "email": "sebastian@phpunit.de"
  8958. },
  8959. {
  8960. "name": "Adam Harvey",
  8961. "email": "aharvey@php.net"
  8962. }
  8963. ],
  8964. "description": "Provides functionality to recursively process PHP variables",
  8965. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  8966. "time": "2017-03-03T06:23:57+00:00"
  8967. },
  8968. {
  8969. "name": "sebastian/resource-operations",
  8970. "version": "1.0.0",
  8971. "source": {
  8972. "type": "git",
  8973. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8974. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
  8975. },
  8976. "dist": {
  8977. "type": "zip",
  8978. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8979. "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
  8980. "shasum": ""
  8981. },
  8982. "require": {
  8983. "php": ">=5.6.0"
  8984. },
  8985. "type": "library",
  8986. "extra": {
  8987. "branch-alias": {
  8988. "dev-master": "1.0.x-dev"
  8989. }
  8990. },
  8991. "autoload": {
  8992. "classmap": [
  8993. "src/"
  8994. ]
  8995. },
  8996. "notification-url": "https://packagist.org/downloads/",
  8997. "license": [
  8998. "BSD-3-Clause"
  8999. ],
  9000. "authors": [
  9001. {
  9002. "name": "Sebastian Bergmann",
  9003. "email": "sebastian@phpunit.de"
  9004. }
  9005. ],
  9006. "description": "Provides a list of PHP built-in functions that operate on resources",
  9007. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9008. "time": "2015-07-28T20:34:47+00:00"
  9009. },
  9010. {
  9011. "name": "sebastian/version",
  9012. "version": "2.0.1",
  9013. "source": {
  9014. "type": "git",
  9015. "url": "https://github.com/sebastianbergmann/version.git",
  9016. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9017. },
  9018. "dist": {
  9019. "type": "zip",
  9020. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9021. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9022. "shasum": ""
  9023. },
  9024. "require": {
  9025. "php": ">=5.6"
  9026. },
  9027. "type": "library",
  9028. "extra": {
  9029. "branch-alias": {
  9030. "dev-master": "2.0.x-dev"
  9031. }
  9032. },
  9033. "autoload": {
  9034. "classmap": [
  9035. "src/"
  9036. ]
  9037. },
  9038. "notification-url": "https://packagist.org/downloads/",
  9039. "license": [
  9040. "BSD-3-Clause"
  9041. ],
  9042. "authors": [
  9043. {
  9044. "name": "Sebastian Bergmann",
  9045. "email": "sebastian@phpunit.de",
  9046. "role": "lead"
  9047. }
  9048. ],
  9049. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9050. "homepage": "https://github.com/sebastianbergmann/version",
  9051. "time": "2016-10-03T07:35:21+00:00"
  9052. },
  9053. {
  9054. "name": "squizlabs/php_codesniffer",
  9055. "version": "3.5.2",
  9056. "source": {
  9057. "type": "git",
  9058. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  9059. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7"
  9060. },
  9061. "dist": {
  9062. "type": "zip",
  9063. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  9064. "reference": "65b12cdeaaa6cd276d4c3033a95b9b88b12701e7",
  9065. "shasum": ""
  9066. },
  9067. "require": {
  9068. "ext-simplexml": "*",
  9069. "ext-tokenizer": "*",
  9070. "ext-xmlwriter": "*",
  9071. "php": ">=5.4.0"
  9072. },
  9073. "require-dev": {
  9074. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  9075. },
  9076. "bin": [
  9077. "bin/phpcs",
  9078. "bin/phpcbf"
  9079. ],
  9080. "type": "library",
  9081. "extra": {
  9082. "branch-alias": {
  9083. "dev-master": "3.x-dev"
  9084. }
  9085. },
  9086. "notification-url": "https://packagist.org/downloads/",
  9087. "license": [
  9088. "BSD-3-Clause"
  9089. ],
  9090. "authors": [
  9091. {
  9092. "name": "Greg Sherwood",
  9093. "role": "lead"
  9094. }
  9095. ],
  9096. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9097. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  9098. "keywords": [
  9099. "phpcs",
  9100. "standards"
  9101. ],
  9102. "time": "2019-10-28T04:36:32+00:00"
  9103. },
  9104. {
  9105. "name": "stack/builder",
  9106. "version": "v1.0.5",
  9107. "source": {
  9108. "type": "git",
  9109. "url": "https://github.com/stackphp/builder.git",
  9110. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  9111. },
  9112. "dist": {
  9113. "type": "zip",
  9114. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9115. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  9116. "shasum": ""
  9117. },
  9118. "require": {
  9119. "php": ">=5.3.0",
  9120. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  9121. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  9122. },
  9123. "require-dev": {
  9124. "silex/silex": "~1.0"
  9125. },
  9126. "type": "library",
  9127. "extra": {
  9128. "branch-alias": {
  9129. "dev-master": "1.0-dev"
  9130. }
  9131. },
  9132. "autoload": {
  9133. "psr-0": {
  9134. "Stack": "src"
  9135. }
  9136. },
  9137. "notification-url": "https://packagist.org/downloads/",
  9138. "license": [
  9139. "MIT"
  9140. ],
  9141. "authors": [
  9142. {
  9143. "name": "Igor Wiedler",
  9144. "email": "igor@wiedler.ch"
  9145. }
  9146. ],
  9147. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  9148. "keywords": [
  9149. "stack"
  9150. ],
  9151. "time": "2017-11-18T14:57:29+00:00"
  9152. },
  9153. {
  9154. "name": "stecman/symfony-console-completion",
  9155. "version": "0.10.1",
  9156. "source": {
  9157. "type": "git",
  9158. "url": "https://github.com/stecman/symfony-console-completion.git",
  9159. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8"
  9160. },
  9161. "dist": {
  9162. "type": "zip",
  9163. "url": "https://api.github.com/repos/stecman/symfony-console-completion/zipball/7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9164. "reference": "7bfa9b93e216896419f2f8de659935d7e04fecd8",
  9165. "shasum": ""
  9166. },
  9167. "require": {
  9168. "php": ">=5.3.2",
  9169. "symfony/console": "~2.3 || ~3.0 || ~4.0"
  9170. },
  9171. "require-dev": {
  9172. "phpunit/phpunit": "~4.8.36 || ~5.7 || ~6.4"
  9173. },
  9174. "type": "library",
  9175. "extra": {
  9176. "branch-alias": {
  9177. "dev-master": "0.10.x-dev"
  9178. }
  9179. },
  9180. "autoload": {
  9181. "psr-4": {
  9182. "Stecman\\Component\\Symfony\\Console\\BashCompletion\\": "src/"
  9183. }
  9184. },
  9185. "notification-url": "https://packagist.org/downloads/",
  9186. "license": [
  9187. "MIT"
  9188. ],
  9189. "authors": [
  9190. {
  9191. "name": "Stephen Holdaway",
  9192. "email": "stephen@stecman.co.nz"
  9193. }
  9194. ],
  9195. "description": "Automatic BASH completion for Symfony Console Component based applications.",
  9196. "time": "2019-04-29T03:20:18+00:00"
  9197. },
  9198. {
  9199. "name": "symfony-cmf/routing",
  9200. "version": "1.4.1",
  9201. "source": {
  9202. "type": "git",
  9203. "url": "https://github.com/symfony-cmf/routing.git",
  9204. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  9205. },
  9206. "dist": {
  9207. "type": "zip",
  9208. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9209. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  9210. "shasum": ""
  9211. },
  9212. "require": {
  9213. "php": "^5.3.9|^7.0",
  9214. "psr/log": "1.*",
  9215. "symfony/http-kernel": "^2.2|3.*",
  9216. "symfony/routing": "^2.2|3.*"
  9217. },
  9218. "require-dev": {
  9219. "friendsofsymfony/jsrouting-bundle": "^1.1",
  9220. "symfony-cmf/testing": "^1.3",
  9221. "symfony/config": "^2.2|3.*",
  9222. "symfony/dependency-injection": "^2.0.5|3.*",
  9223. "symfony/event-dispatcher": "^2.1|3.*"
  9224. },
  9225. "suggest": {
  9226. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  9227. },
  9228. "type": "library",
  9229. "extra": {
  9230. "branch-alias": {
  9231. "dev-master": "1.4-dev"
  9232. }
  9233. },
  9234. "autoload": {
  9235. "psr-4": {
  9236. "Symfony\\Cmf\\Component\\Routing\\": ""
  9237. }
  9238. },
  9239. "notification-url": "https://packagist.org/downloads/",
  9240. "license": [
  9241. "MIT"
  9242. ],
  9243. "authors": [
  9244. {
  9245. "name": "Symfony CMF Community",
  9246. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  9247. }
  9248. ],
  9249. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  9250. "homepage": "http://cmf.symfony.com",
  9251. "keywords": [
  9252. "database",
  9253. "routing"
  9254. ],
  9255. "time": "2017-05-09T08:10:41+00:00"
  9256. },
  9257. {
  9258. "name": "symfony/browser-kit",
  9259. "version": "v3.4.34",
  9260. "source": {
  9261. "type": "git",
  9262. "url": "https://github.com/symfony/browser-kit.git",
  9263. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6"
  9264. },
  9265. "dist": {
  9266. "type": "zip",
  9267. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  9268. "reference": "2e4c991e27a97a8c27745720b030ff85a5cebdf6",
  9269. "shasum": ""
  9270. },
  9271. "require": {
  9272. "php": "^5.5.9|>=7.0.8",
  9273. "symfony/dom-crawler": "~2.8|~3.0|~4.0"
  9274. },
  9275. "require-dev": {
  9276. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9277. "symfony/process": "~2.8|~3.0|~4.0"
  9278. },
  9279. "suggest": {
  9280. "symfony/process": ""
  9281. },
  9282. "type": "library",
  9283. "extra": {
  9284. "branch-alias": {
  9285. "dev-master": "3.4-dev"
  9286. }
  9287. },
  9288. "autoload": {
  9289. "psr-4": {
  9290. "Symfony\\Component\\BrowserKit\\": ""
  9291. },
  9292. "exclude-from-classmap": [
  9293. "/Tests/"
  9294. ]
  9295. },
  9296. "notification-url": "https://packagist.org/downloads/",
  9297. "license": [
  9298. "MIT"
  9299. ],
  9300. "authors": [
  9301. {
  9302. "name": "Fabien Potencier",
  9303. "email": "fabien@symfony.com"
  9304. },
  9305. {
  9306. "name": "Symfony Community",
  9307. "homepage": "https://symfony.com/contributors"
  9308. }
  9309. ],
  9310. "description": "Symfony BrowserKit Component",
  9311. "homepage": "https://symfony.com",
  9312. "time": "2019-10-24T15:33:53+00:00"
  9313. },
  9314. {
  9315. "name": "symfony/class-loader",
  9316. "version": "v3.4.34",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/symfony/class-loader.git",
  9320. "reference": "e212b06996819a2bce026a63da03b7182d05a690"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e212b06996819a2bce026a63da03b7182d05a690",
  9325. "reference": "e212b06996819a2bce026a63da03b7182d05a690",
  9326. "shasum": ""
  9327. },
  9328. "require": {
  9329. "php": "^5.5.9|>=7.0.8"
  9330. },
  9331. "require-dev": {
  9332. "symfony/finder": "~2.8|~3.0|~4.0",
  9333. "symfony/polyfill-apcu": "~1.1"
  9334. },
  9335. "suggest": {
  9336. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  9337. },
  9338. "type": "library",
  9339. "extra": {
  9340. "branch-alias": {
  9341. "dev-master": "3.4-dev"
  9342. }
  9343. },
  9344. "autoload": {
  9345. "psr-4": {
  9346. "Symfony\\Component\\ClassLoader\\": ""
  9347. },
  9348. "exclude-from-classmap": [
  9349. "/Tests/"
  9350. ]
  9351. },
  9352. "notification-url": "https://packagist.org/downloads/",
  9353. "license": [
  9354. "MIT"
  9355. ],
  9356. "authors": [
  9357. {
  9358. "name": "Fabien Potencier",
  9359. "email": "fabien@symfony.com"
  9360. },
  9361. {
  9362. "name": "Symfony Community",
  9363. "homepage": "https://symfony.com/contributors"
  9364. }
  9365. ],
  9366. "description": "Symfony ClassLoader Component",
  9367. "homepage": "https://symfony.com",
  9368. "time": "2019-08-20T13:31:17+00:00"
  9369. },
  9370. {
  9371. "name": "symfony/config",
  9372. "version": "v3.4.34",
  9373. "source": {
  9374. "type": "git",
  9375. "url": "https://github.com/symfony/config.git",
  9376. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f"
  9377. },
  9378. "dist": {
  9379. "type": "zip",
  9380. "url": "https://api.github.com/repos/symfony/config/zipball/c3a30587de97263d2813a3c81b74126c58b67a4f",
  9381. "reference": "c3a30587de97263d2813a3c81b74126c58b67a4f",
  9382. "shasum": ""
  9383. },
  9384. "require": {
  9385. "php": "^5.5.9|>=7.0.8",
  9386. "symfony/filesystem": "~2.8|~3.0|~4.0",
  9387. "symfony/polyfill-ctype": "~1.8"
  9388. },
  9389. "conflict": {
  9390. "symfony/dependency-injection": "<3.3",
  9391. "symfony/finder": "<3.3"
  9392. },
  9393. "require-dev": {
  9394. "symfony/dependency-injection": "~3.3|~4.0",
  9395. "symfony/event-dispatcher": "~3.3|~4.0",
  9396. "symfony/finder": "~3.3|~4.0",
  9397. "symfony/yaml": "~3.0|~4.0"
  9398. },
  9399. "suggest": {
  9400. "symfony/yaml": "To use the yaml reference dumper"
  9401. },
  9402. "type": "library",
  9403. "extra": {
  9404. "branch-alias": {
  9405. "dev-master": "3.4-dev"
  9406. }
  9407. },
  9408. "autoload": {
  9409. "psr-4": {
  9410. "Symfony\\Component\\Config\\": ""
  9411. },
  9412. "exclude-from-classmap": [
  9413. "/Tests/"
  9414. ]
  9415. },
  9416. "notification-url": "https://packagist.org/downloads/",
  9417. "license": [
  9418. "MIT"
  9419. ],
  9420. "authors": [
  9421. {
  9422. "name": "Fabien Potencier",
  9423. "email": "fabien@symfony.com"
  9424. },
  9425. {
  9426. "name": "Symfony Community",
  9427. "homepage": "https://symfony.com/contributors"
  9428. }
  9429. ],
  9430. "description": "Symfony Config Component",
  9431. "homepage": "https://symfony.com",
  9432. "time": "2019-11-08T08:28:59+00:00"
  9433. },
  9434. {
  9435. "name": "symfony/console",
  9436. "version": "v3.4.34",
  9437. "source": {
  9438. "type": "git",
  9439. "url": "https://github.com/symfony/console.git",
  9440. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf"
  9441. },
  9442. "dist": {
  9443. "type": "zip",
  9444. "url": "https://api.github.com/repos/symfony/console/zipball/c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9445. "reference": "c7edffb26b29cae972ca4afccb610a38ce8d0ccf",
  9446. "shasum": ""
  9447. },
  9448. "require": {
  9449. "php": "^5.5.9|>=7.0.8",
  9450. "symfony/debug": "~2.8|~3.0|~4.0",
  9451. "symfony/polyfill-mbstring": "~1.0"
  9452. },
  9453. "conflict": {
  9454. "symfony/dependency-injection": "<3.4",
  9455. "symfony/process": "<3.3"
  9456. },
  9457. "provide": {
  9458. "psr/log-implementation": "1.0"
  9459. },
  9460. "require-dev": {
  9461. "psr/log": "~1.0",
  9462. "symfony/config": "~3.3|~4.0",
  9463. "symfony/dependency-injection": "~3.4|~4.0",
  9464. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9465. "symfony/lock": "~3.4|~4.0",
  9466. "symfony/process": "~3.3|~4.0"
  9467. },
  9468. "suggest": {
  9469. "psr/log": "For using the console logger",
  9470. "symfony/event-dispatcher": "",
  9471. "symfony/lock": "",
  9472. "symfony/process": ""
  9473. },
  9474. "type": "library",
  9475. "extra": {
  9476. "branch-alias": {
  9477. "dev-master": "3.4-dev"
  9478. }
  9479. },
  9480. "autoload": {
  9481. "psr-4": {
  9482. "Symfony\\Component\\Console\\": ""
  9483. },
  9484. "exclude-from-classmap": [
  9485. "/Tests/"
  9486. ]
  9487. },
  9488. "notification-url": "https://packagist.org/downloads/",
  9489. "license": [
  9490. "MIT"
  9491. ],
  9492. "authors": [
  9493. {
  9494. "name": "Fabien Potencier",
  9495. "email": "fabien@symfony.com"
  9496. },
  9497. {
  9498. "name": "Symfony Community",
  9499. "homepage": "https://symfony.com/contributors"
  9500. }
  9501. ],
  9502. "description": "Symfony Console Component",
  9503. "homepage": "https://symfony.com",
  9504. "time": "2019-10-24T15:33:53+00:00"
  9505. },
  9506. {
  9507. "name": "symfony/css-selector",
  9508. "version": "v3.4.34",
  9509. "source": {
  9510. "type": "git",
  9511. "url": "https://github.com/symfony/css-selector.git",
  9512. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f"
  9513. },
  9514. "dist": {
  9515. "type": "zip",
  9516. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9517. "reference": "f819f71ae3ba6f396b4c015bd5895de7d2f1f85f",
  9518. "shasum": ""
  9519. },
  9520. "require": {
  9521. "php": "^5.5.9|>=7.0.8"
  9522. },
  9523. "type": "library",
  9524. "extra": {
  9525. "branch-alias": {
  9526. "dev-master": "3.4-dev"
  9527. }
  9528. },
  9529. "autoload": {
  9530. "psr-4": {
  9531. "Symfony\\Component\\CssSelector\\": ""
  9532. },
  9533. "exclude-from-classmap": [
  9534. "/Tests/"
  9535. ]
  9536. },
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "license": [
  9539. "MIT"
  9540. ],
  9541. "authors": [
  9542. {
  9543. "name": "Fabien Potencier",
  9544. "email": "fabien@symfony.com"
  9545. },
  9546. {
  9547. "name": "Jean-François Simon",
  9548. "email": "jeanfrancois.simon@sensiolabs.com"
  9549. },
  9550. {
  9551. "name": "Symfony Community",
  9552. "homepage": "https://symfony.com/contributors"
  9553. }
  9554. ],
  9555. "description": "Symfony CssSelector Component",
  9556. "homepage": "https://symfony.com",
  9557. "time": "2019-10-01T11:57:37+00:00"
  9558. },
  9559. {
  9560. "name": "symfony/debug",
  9561. "version": "v3.4.34",
  9562. "source": {
  9563. "type": "git",
  9564. "url": "https://github.com/symfony/debug.git",
  9565. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086"
  9566. },
  9567. "dist": {
  9568. "type": "zip",
  9569. "url": "https://api.github.com/repos/symfony/debug/zipball/f72e33fdb1170b326e72c3157f0cd456351dd086",
  9570. "reference": "f72e33fdb1170b326e72c3157f0cd456351dd086",
  9571. "shasum": ""
  9572. },
  9573. "require": {
  9574. "php": "^5.5.9|>=7.0.8",
  9575. "psr/log": "~1.0"
  9576. },
  9577. "conflict": {
  9578. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  9579. },
  9580. "require-dev": {
  9581. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  9582. },
  9583. "type": "library",
  9584. "extra": {
  9585. "branch-alias": {
  9586. "dev-master": "3.4-dev"
  9587. }
  9588. },
  9589. "autoload": {
  9590. "psr-4": {
  9591. "Symfony\\Component\\Debug\\": ""
  9592. },
  9593. "exclude-from-classmap": [
  9594. "/Tests/"
  9595. ]
  9596. },
  9597. "notification-url": "https://packagist.org/downloads/",
  9598. "license": [
  9599. "MIT"
  9600. ],
  9601. "authors": [
  9602. {
  9603. "name": "Fabien Potencier",
  9604. "email": "fabien@symfony.com"
  9605. },
  9606. {
  9607. "name": "Symfony Community",
  9608. "homepage": "https://symfony.com/contributors"
  9609. }
  9610. ],
  9611. "description": "Symfony Debug Component",
  9612. "homepage": "https://symfony.com",
  9613. "time": "2019-10-24T15:33:53+00:00"
  9614. },
  9615. {
  9616. "name": "symfony/dependency-injection",
  9617. "version": "v3.4.34",
  9618. "source": {
  9619. "type": "git",
  9620. "url": "https://github.com/symfony/dependency-injection.git",
  9621. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920"
  9622. },
  9623. "dist": {
  9624. "type": "zip",
  9625. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0ea4d39ca82409a25a43b61ce828048a90000920",
  9626. "reference": "0ea4d39ca82409a25a43b61ce828048a90000920",
  9627. "shasum": ""
  9628. },
  9629. "require": {
  9630. "php": "^5.5.9|>=7.0.8",
  9631. "psr/container": "^1.0"
  9632. },
  9633. "conflict": {
  9634. "symfony/config": "<3.3.7",
  9635. "symfony/finder": "<3.3",
  9636. "symfony/proxy-manager-bridge": "<3.4",
  9637. "symfony/yaml": "<3.4"
  9638. },
  9639. "provide": {
  9640. "psr/container-implementation": "1.0"
  9641. },
  9642. "require-dev": {
  9643. "symfony/config": "~3.3|~4.0",
  9644. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9645. "symfony/yaml": "~3.4|~4.0"
  9646. },
  9647. "suggest": {
  9648. "symfony/config": "",
  9649. "symfony/expression-language": "For using expressions in service container configuration",
  9650. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  9651. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  9652. "symfony/yaml": ""
  9653. },
  9654. "type": "library",
  9655. "extra": {
  9656. "branch-alias": {
  9657. "dev-master": "3.4-dev"
  9658. }
  9659. },
  9660. "autoload": {
  9661. "psr-4": {
  9662. "Symfony\\Component\\DependencyInjection\\": ""
  9663. },
  9664. "exclude-from-classmap": [
  9665. "/Tests/"
  9666. ]
  9667. },
  9668. "notification-url": "https://packagist.org/downloads/",
  9669. "license": [
  9670. "MIT"
  9671. ],
  9672. "authors": [
  9673. {
  9674. "name": "Fabien Potencier",
  9675. "email": "fabien@symfony.com"
  9676. },
  9677. {
  9678. "name": "Symfony Community",
  9679. "homepage": "https://symfony.com/contributors"
  9680. }
  9681. ],
  9682. "description": "Symfony DependencyInjection Component",
  9683. "homepage": "https://symfony.com",
  9684. "time": "2019-11-08T16:18:30+00:00"
  9685. },
  9686. {
  9687. "name": "symfony/dom-crawler",
  9688. "version": "v3.4.34",
  9689. "source": {
  9690. "type": "git",
  9691. "url": "https://github.com/symfony/dom-crawler.git",
  9692. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3"
  9693. },
  9694. "dist": {
  9695. "type": "zip",
  9696. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9697. "reference": "6bcffd2eabc4ca087faaaf54e26c8ff3a40284f3",
  9698. "shasum": ""
  9699. },
  9700. "require": {
  9701. "php": "^5.5.9|>=7.0.8",
  9702. "symfony/polyfill-ctype": "~1.8",
  9703. "symfony/polyfill-mbstring": "~1.0"
  9704. },
  9705. "require-dev": {
  9706. "symfony/css-selector": "~2.8|~3.0|~4.0"
  9707. },
  9708. "suggest": {
  9709. "symfony/css-selector": ""
  9710. },
  9711. "type": "library",
  9712. "extra": {
  9713. "branch-alias": {
  9714. "dev-master": "3.4-dev"
  9715. }
  9716. },
  9717. "autoload": {
  9718. "psr-4": {
  9719. "Symfony\\Component\\DomCrawler\\": ""
  9720. },
  9721. "exclude-from-classmap": [
  9722. "/Tests/"
  9723. ]
  9724. },
  9725. "notification-url": "https://packagist.org/downloads/",
  9726. "license": [
  9727. "MIT"
  9728. ],
  9729. "authors": [
  9730. {
  9731. "name": "Fabien Potencier",
  9732. "email": "fabien@symfony.com"
  9733. },
  9734. {
  9735. "name": "Symfony Community",
  9736. "homepage": "https://symfony.com/contributors"
  9737. }
  9738. ],
  9739. "description": "Symfony DomCrawler Component",
  9740. "homepage": "https://symfony.com",
  9741. "time": "2019-10-24T15:33:53+00:00"
  9742. },
  9743. {
  9744. "name": "symfony/event-dispatcher",
  9745. "version": "v3.4.34",
  9746. "source": {
  9747. "type": "git",
  9748. "url": "https://github.com/symfony/event-dispatcher.git",
  9749. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177"
  9750. },
  9751. "dist": {
  9752. "type": "zip",
  9753. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f9031c22ec127d4a2450760f81a8677fe8a10177",
  9754. "reference": "f9031c22ec127d4a2450760f81a8677fe8a10177",
  9755. "shasum": ""
  9756. },
  9757. "require": {
  9758. "php": "^5.5.9|>=7.0.8"
  9759. },
  9760. "conflict": {
  9761. "symfony/dependency-injection": "<3.3"
  9762. },
  9763. "require-dev": {
  9764. "psr/log": "~1.0",
  9765. "symfony/config": "~2.8|~3.0|~4.0",
  9766. "symfony/dependency-injection": "~3.3|~4.0",
  9767. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9768. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  9769. },
  9770. "suggest": {
  9771. "symfony/dependency-injection": "",
  9772. "symfony/http-kernel": ""
  9773. },
  9774. "type": "library",
  9775. "extra": {
  9776. "branch-alias": {
  9777. "dev-master": "3.4-dev"
  9778. }
  9779. },
  9780. "autoload": {
  9781. "psr-4": {
  9782. "Symfony\\Component\\EventDispatcher\\": ""
  9783. },
  9784. "exclude-from-classmap": [
  9785. "/Tests/"
  9786. ]
  9787. },
  9788. "notification-url": "https://packagist.org/downloads/",
  9789. "license": [
  9790. "MIT"
  9791. ],
  9792. "authors": [
  9793. {
  9794. "name": "Fabien Potencier",
  9795. "email": "fabien@symfony.com"
  9796. },
  9797. {
  9798. "name": "Symfony Community",
  9799. "homepage": "https://symfony.com/contributors"
  9800. }
  9801. ],
  9802. "description": "Symfony EventDispatcher Component",
  9803. "homepage": "https://symfony.com",
  9804. "time": "2019-10-24T15:33:53+00:00"
  9805. },
  9806. {
  9807. "name": "symfony/filesystem",
  9808. "version": "v3.4.34",
  9809. "source": {
  9810. "type": "git",
  9811. "url": "https://github.com/symfony/filesystem.git",
  9812. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516"
  9813. },
  9814. "dist": {
  9815. "type": "zip",
  9816. "url": "https://api.github.com/repos/symfony/filesystem/zipball/00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9817. "reference": "00e3a6ddd723b8bcfe4f2a1b6f82b98eeeb51516",
  9818. "shasum": ""
  9819. },
  9820. "require": {
  9821. "php": "^5.5.9|>=7.0.8",
  9822. "symfony/polyfill-ctype": "~1.8"
  9823. },
  9824. "type": "library",
  9825. "extra": {
  9826. "branch-alias": {
  9827. "dev-master": "3.4-dev"
  9828. }
  9829. },
  9830. "autoload": {
  9831. "psr-4": {
  9832. "Symfony\\Component\\Filesystem\\": ""
  9833. },
  9834. "exclude-from-classmap": [
  9835. "/Tests/"
  9836. ]
  9837. },
  9838. "notification-url": "https://packagist.org/downloads/",
  9839. "license": [
  9840. "MIT"
  9841. ],
  9842. "authors": [
  9843. {
  9844. "name": "Fabien Potencier",
  9845. "email": "fabien@symfony.com"
  9846. },
  9847. {
  9848. "name": "Symfony Community",
  9849. "homepage": "https://symfony.com/contributors"
  9850. }
  9851. ],
  9852. "description": "Symfony Filesystem Component",
  9853. "homepage": "https://symfony.com",
  9854. "time": "2019-08-20T13:31:17+00:00"
  9855. },
  9856. {
  9857. "name": "symfony/finder",
  9858. "version": "v3.4.34",
  9859. "source": {
  9860. "type": "git",
  9861. "url": "https://github.com/symfony/finder.git",
  9862. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8"
  9863. },
  9864. "dist": {
  9865. "type": "zip",
  9866. "url": "https://api.github.com/repos/symfony/finder/zipball/3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9867. "reference": "3e915e5ce305f8bc8017597f71f1f4095092ddf8",
  9868. "shasum": ""
  9869. },
  9870. "require": {
  9871. "php": "^5.5.9|>=7.0.8"
  9872. },
  9873. "type": "library",
  9874. "extra": {
  9875. "branch-alias": {
  9876. "dev-master": "3.4-dev"
  9877. }
  9878. },
  9879. "autoload": {
  9880. "psr-4": {
  9881. "Symfony\\Component\\Finder\\": ""
  9882. },
  9883. "exclude-from-classmap": [
  9884. "/Tests/"
  9885. ]
  9886. },
  9887. "notification-url": "https://packagist.org/downloads/",
  9888. "license": [
  9889. "MIT"
  9890. ],
  9891. "authors": [
  9892. {
  9893. "name": "Fabien Potencier",
  9894. "email": "fabien@symfony.com"
  9895. },
  9896. {
  9897. "name": "Symfony Community",
  9898. "homepage": "https://symfony.com/contributors"
  9899. }
  9900. ],
  9901. "description": "Symfony Finder Component",
  9902. "homepage": "https://symfony.com",
  9903. "time": "2019-10-30T12:43:22+00:00"
  9904. },
  9905. {
  9906. "name": "symfony/http-foundation",
  9907. "version": "v3.4.34",
  9908. "source": {
  9909. "type": "git",
  9910. "url": "https://github.com/symfony/http-foundation.git",
  9911. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2"
  9912. },
  9913. "dist": {
  9914. "type": "zip",
  9915. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a5d46a33e8649ba802cebe520d188b04385572a2",
  9916. "reference": "a5d46a33e8649ba802cebe520d188b04385572a2",
  9917. "shasum": ""
  9918. },
  9919. "require": {
  9920. "php": "^5.5.9|>=7.0.8",
  9921. "symfony/polyfill-mbstring": "~1.1",
  9922. "symfony/polyfill-php70": "~1.6"
  9923. },
  9924. "require-dev": {
  9925. "symfony/expression-language": "~2.8|~3.0|~4.0"
  9926. },
  9927. "type": "library",
  9928. "extra": {
  9929. "branch-alias": {
  9930. "dev-master": "3.4-dev"
  9931. }
  9932. },
  9933. "autoload": {
  9934. "psr-4": {
  9935. "Symfony\\Component\\HttpFoundation\\": ""
  9936. },
  9937. "exclude-from-classmap": [
  9938. "/Tests/"
  9939. ]
  9940. },
  9941. "notification-url": "https://packagist.org/downloads/",
  9942. "license": [
  9943. "MIT"
  9944. ],
  9945. "authors": [
  9946. {
  9947. "name": "Fabien Potencier",
  9948. "email": "fabien@symfony.com"
  9949. },
  9950. {
  9951. "name": "Symfony Community",
  9952. "homepage": "https://symfony.com/contributors"
  9953. }
  9954. ],
  9955. "description": "Symfony HttpFoundation Component",
  9956. "homepage": "https://symfony.com",
  9957. "time": "2019-11-03T02:12:45+00:00"
  9958. },
  9959. {
  9960. "name": "symfony/http-kernel",
  9961. "version": "v3.4.34",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/symfony/http-kernel.git",
  9965. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9970. "reference": "6cd0e7e22c33b96b4779f40ef5b4053e4dd9dbd2",
  9971. "shasum": ""
  9972. },
  9973. "require": {
  9974. "php": "^5.5.9|>=7.0.8",
  9975. "psr/log": "~1.0",
  9976. "symfony/debug": "^3.3.3|~4.0",
  9977. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  9978. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  9979. "symfony/polyfill-ctype": "~1.8"
  9980. },
  9981. "conflict": {
  9982. "symfony/config": "<2.8",
  9983. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  9984. "symfony/var-dumper": "<3.3",
  9985. "twig/twig": "<1.34|<2.4,>=2"
  9986. },
  9987. "provide": {
  9988. "psr/log-implementation": "1.0"
  9989. },
  9990. "require-dev": {
  9991. "psr/cache": "~1.0",
  9992. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  9993. "symfony/class-loader": "~2.8|~3.0",
  9994. "symfony/config": "~2.8|~3.0|~4.0",
  9995. "symfony/console": "~2.8|~3.0|~4.0",
  9996. "symfony/css-selector": "~2.8|~3.0|~4.0",
  9997. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  9998. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  9999. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10000. "symfony/finder": "~2.8|~3.0|~4.0",
  10001. "symfony/process": "~2.8|~3.0|~4.0",
  10002. "symfony/routing": "~3.4|~4.0",
  10003. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  10004. "symfony/templating": "~2.8|~3.0|~4.0",
  10005. "symfony/translation": "~2.8|~3.0|~4.0",
  10006. "symfony/var-dumper": "~3.3|~4.0"
  10007. },
  10008. "suggest": {
  10009. "symfony/browser-kit": "",
  10010. "symfony/config": "",
  10011. "symfony/console": "",
  10012. "symfony/dependency-injection": "",
  10013. "symfony/finder": "",
  10014. "symfony/var-dumper": ""
  10015. },
  10016. "type": "library",
  10017. "extra": {
  10018. "branch-alias": {
  10019. "dev-master": "3.4-dev"
  10020. }
  10021. },
  10022. "autoload": {
  10023. "psr-4": {
  10024. "Symfony\\Component\\HttpKernel\\": ""
  10025. },
  10026. "exclude-from-classmap": [
  10027. "/Tests/"
  10028. ]
  10029. },
  10030. "notification-url": "https://packagist.org/downloads/",
  10031. "license": [
  10032. "MIT"
  10033. ],
  10034. "authors": [
  10035. {
  10036. "name": "Fabien Potencier",
  10037. "email": "fabien@symfony.com"
  10038. },
  10039. {
  10040. "name": "Symfony Community",
  10041. "homepage": "https://symfony.com/contributors"
  10042. }
  10043. ],
  10044. "description": "Symfony HttpKernel Component",
  10045. "homepage": "https://symfony.com",
  10046. "time": "2019-11-11T16:11:23+00:00"
  10047. },
  10048. {
  10049. "name": "symfony/phpunit-bridge",
  10050. "version": "v3.4.34",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/symfony/phpunit-bridge.git",
  10054. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  10059. "reference": "cbea8818e9f34e4e9d780bd22bdda21b57d4d5c7",
  10060. "shasum": ""
  10061. },
  10062. "require": {
  10063. "php": ">=5.3.3"
  10064. },
  10065. "conflict": {
  10066. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10067. },
  10068. "suggest": {
  10069. "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  10070. },
  10071. "bin": [
  10072. "bin/simple-phpunit"
  10073. ],
  10074. "type": "symfony-bridge",
  10075. "extra": {
  10076. "branch-alias": {
  10077. "dev-master": "3.4-dev"
  10078. },
  10079. "thanks": {
  10080. "name": "phpunit/phpunit",
  10081. "url": "https://github.com/sebastianbergmann/phpunit"
  10082. }
  10083. },
  10084. "autoload": {
  10085. "files": [
  10086. "bootstrap.php"
  10087. ],
  10088. "psr-4": {
  10089. "Symfony\\Bridge\\PhpUnit\\": ""
  10090. },
  10091. "exclude-from-classmap": [
  10092. "/Tests/"
  10093. ]
  10094. },
  10095. "notification-url": "https://packagist.org/downloads/",
  10096. "license": [
  10097. "MIT"
  10098. ],
  10099. "authors": [
  10100. {
  10101. "name": "Nicolas Grekas",
  10102. "email": "p@tchwork.com"
  10103. },
  10104. {
  10105. "name": "Symfony Community",
  10106. "homepage": "https://symfony.com/contributors"
  10107. }
  10108. ],
  10109. "description": "Symfony PHPUnit Bridge",
  10110. "homepage": "https://symfony.com",
  10111. "time": "2019-09-30T20:33:19+00:00"
  10112. },
  10113. {
  10114. "name": "symfony/polyfill-ctype",
  10115. "version": "v1.12.0",
  10116. "source": {
  10117. "type": "git",
  10118. "url": "https://github.com/symfony/polyfill-ctype.git",
  10119. "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
  10120. },
  10121. "dist": {
  10122. "type": "zip",
  10123. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
  10124. "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
  10125. "shasum": ""
  10126. },
  10127. "require": {
  10128. "php": ">=5.3.3"
  10129. },
  10130. "suggest": {
  10131. "ext-ctype": "For best performance"
  10132. },
  10133. "type": "library",
  10134. "extra": {
  10135. "branch-alias": {
  10136. "dev-master": "1.12-dev"
  10137. }
  10138. },
  10139. "autoload": {
  10140. "psr-4": {
  10141. "Symfony\\Polyfill\\Ctype\\": ""
  10142. },
  10143. "files": [
  10144. "bootstrap.php"
  10145. ]
  10146. },
  10147. "notification-url": "https://packagist.org/downloads/",
  10148. "license": [
  10149. "MIT"
  10150. ],
  10151. "authors": [
  10152. {
  10153. "name": "Gert de Pagter",
  10154. "email": "BackEndTea@gmail.com"
  10155. },
  10156. {
  10157. "name": "Symfony Community",
  10158. "homepage": "https://symfony.com/contributors"
  10159. }
  10160. ],
  10161. "description": "Symfony polyfill for ctype functions",
  10162. "homepage": "https://symfony.com",
  10163. "keywords": [
  10164. "compatibility",
  10165. "ctype",
  10166. "polyfill",
  10167. "portable"
  10168. ],
  10169. "time": "2019-08-06T08:03:45+00:00"
  10170. },
  10171. {
  10172. "name": "symfony/polyfill-iconv",
  10173. "version": "v1.12.0",
  10174. "source": {
  10175. "type": "git",
  10176. "url": "https://github.com/symfony/polyfill-iconv.git",
  10177. "reference": "685968b11e61a347c18bf25db32effa478be610f"
  10178. },
  10179. "dist": {
  10180. "type": "zip",
  10181. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/685968b11e61a347c18bf25db32effa478be610f",
  10182. "reference": "685968b11e61a347c18bf25db32effa478be610f",
  10183. "shasum": ""
  10184. },
  10185. "require": {
  10186. "php": ">=5.3.3"
  10187. },
  10188. "suggest": {
  10189. "ext-iconv": "For best performance"
  10190. },
  10191. "type": "library",
  10192. "extra": {
  10193. "branch-alias": {
  10194. "dev-master": "1.12-dev"
  10195. }
  10196. },
  10197. "autoload": {
  10198. "psr-4": {
  10199. "Symfony\\Polyfill\\Iconv\\": ""
  10200. },
  10201. "files": [
  10202. "bootstrap.php"
  10203. ]
  10204. },
  10205. "notification-url": "https://packagist.org/downloads/",
  10206. "license": [
  10207. "MIT"
  10208. ],
  10209. "authors": [
  10210. {
  10211. "name": "Nicolas Grekas",
  10212. "email": "p@tchwork.com"
  10213. },
  10214. {
  10215. "name": "Symfony Community",
  10216. "homepage": "https://symfony.com/contributors"
  10217. }
  10218. ],
  10219. "description": "Symfony polyfill for the Iconv extension",
  10220. "homepage": "https://symfony.com",
  10221. "keywords": [
  10222. "compatibility",
  10223. "iconv",
  10224. "polyfill",
  10225. "portable",
  10226. "shim"
  10227. ],
  10228. "time": "2019-08-06T08:03:45+00:00"
  10229. },
  10230. {
  10231. "name": "symfony/polyfill-mbstring",
  10232. "version": "v1.12.0",
  10233. "source": {
  10234. "type": "git",
  10235. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10236. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
  10237. },
  10238. "dist": {
  10239. "type": "zip",
  10240. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  10241. "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
  10242. "shasum": ""
  10243. },
  10244. "require": {
  10245. "php": ">=5.3.3"
  10246. },
  10247. "suggest": {
  10248. "ext-mbstring": "For best performance"
  10249. },
  10250. "type": "library",
  10251. "extra": {
  10252. "branch-alias": {
  10253. "dev-master": "1.12-dev"
  10254. }
  10255. },
  10256. "autoload": {
  10257. "psr-4": {
  10258. "Symfony\\Polyfill\\Mbstring\\": ""
  10259. },
  10260. "files": [
  10261. "bootstrap.php"
  10262. ]
  10263. },
  10264. "notification-url": "https://packagist.org/downloads/",
  10265. "license": [
  10266. "MIT"
  10267. ],
  10268. "authors": [
  10269. {
  10270. "name": "Nicolas Grekas",
  10271. "email": "p@tchwork.com"
  10272. },
  10273. {
  10274. "name": "Symfony Community",
  10275. "homepage": "https://symfony.com/contributors"
  10276. }
  10277. ],
  10278. "description": "Symfony polyfill for the Mbstring extension",
  10279. "homepage": "https://symfony.com",
  10280. "keywords": [
  10281. "compatibility",
  10282. "mbstring",
  10283. "polyfill",
  10284. "portable",
  10285. "shim"
  10286. ],
  10287. "time": "2019-08-06T08:03:45+00:00"
  10288. },
  10289. {
  10290. "name": "symfony/polyfill-php70",
  10291. "version": "v1.12.0",
  10292. "source": {
  10293. "type": "git",
  10294. "url": "https://github.com/symfony/polyfill-php70.git",
  10295. "reference": "54b4c428a0054e254223797d2713c31e08610831"
  10296. },
  10297. "dist": {
  10298. "type": "zip",
  10299. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/54b4c428a0054e254223797d2713c31e08610831",
  10300. "reference": "54b4c428a0054e254223797d2713c31e08610831",
  10301. "shasum": ""
  10302. },
  10303. "require": {
  10304. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  10305. "php": ">=5.3.3"
  10306. },
  10307. "type": "library",
  10308. "extra": {
  10309. "branch-alias": {
  10310. "dev-master": "1.12-dev"
  10311. }
  10312. },
  10313. "autoload": {
  10314. "psr-4": {
  10315. "Symfony\\Polyfill\\Php70\\": ""
  10316. },
  10317. "files": [
  10318. "bootstrap.php"
  10319. ],
  10320. "classmap": [
  10321. "Resources/stubs"
  10322. ]
  10323. },
  10324. "notification-url": "https://packagist.org/downloads/",
  10325. "license": [
  10326. "MIT"
  10327. ],
  10328. "authors": [
  10329. {
  10330. "name": "Nicolas Grekas",
  10331. "email": "p@tchwork.com"
  10332. },
  10333. {
  10334. "name": "Symfony Community",
  10335. "homepage": "https://symfony.com/contributors"
  10336. }
  10337. ],
  10338. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  10339. "homepage": "https://symfony.com",
  10340. "keywords": [
  10341. "compatibility",
  10342. "polyfill",
  10343. "portable",
  10344. "shim"
  10345. ],
  10346. "time": "2019-08-06T08:03:45+00:00"
  10347. },
  10348. {
  10349. "name": "symfony/process",
  10350. "version": "v3.4.34",
  10351. "source": {
  10352. "type": "git",
  10353. "url": "https://github.com/symfony/process.git",
  10354. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e"
  10355. },
  10356. "dist": {
  10357. "type": "zip",
  10358. "url": "https://api.github.com/repos/symfony/process/zipball/c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  10359. "reference": "c19da50bc3e8fa7d60628fdb4ab5d67de534cf3e",
  10360. "shasum": ""
  10361. },
  10362. "require": {
  10363. "php": "^5.5.9|>=7.0.8"
  10364. },
  10365. "type": "library",
  10366. "extra": {
  10367. "branch-alias": {
  10368. "dev-master": "3.4-dev"
  10369. }
  10370. },
  10371. "autoload": {
  10372. "psr-4": {
  10373. "Symfony\\Component\\Process\\": ""
  10374. },
  10375. "exclude-from-classmap": [
  10376. "/Tests/"
  10377. ]
  10378. },
  10379. "notification-url": "https://packagist.org/downloads/",
  10380. "license": [
  10381. "MIT"
  10382. ],
  10383. "authors": [
  10384. {
  10385. "name": "Fabien Potencier",
  10386. "email": "fabien@symfony.com"
  10387. },
  10388. {
  10389. "name": "Symfony Community",
  10390. "homepage": "https://symfony.com/contributors"
  10391. }
  10392. ],
  10393. "description": "Symfony Process Component",
  10394. "homepage": "https://symfony.com",
  10395. "time": "2019-10-24T15:33:53+00:00"
  10396. },
  10397. {
  10398. "name": "symfony/psr-http-message-bridge",
  10399. "version": "v1.1.2",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10403. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  10408. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  10409. "shasum": ""
  10410. },
  10411. "require": {
  10412. "php": "^5.3.3 || ^7.0",
  10413. "psr/http-message": "^1.0",
  10414. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  10415. },
  10416. "require-dev": {
  10417. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  10418. },
  10419. "suggest": {
  10420. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10421. },
  10422. "type": "symfony-bridge",
  10423. "extra": {
  10424. "branch-alias": {
  10425. "dev-master": "1.1-dev"
  10426. }
  10427. },
  10428. "autoload": {
  10429. "psr-4": {
  10430. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10431. },
  10432. "exclude-from-classmap": [
  10433. "/Tests/"
  10434. ]
  10435. },
  10436. "notification-url": "https://packagist.org/downloads/",
  10437. "license": [
  10438. "MIT"
  10439. ],
  10440. "authors": [
  10441. {
  10442. "name": "Symfony Community",
  10443. "homepage": "http://symfony.com/contributors"
  10444. },
  10445. {
  10446. "name": "Fabien Potencier",
  10447. "email": "fabien@symfony.com"
  10448. }
  10449. ],
  10450. "description": "PSR HTTP message bridge",
  10451. "homepage": "http://symfony.com",
  10452. "keywords": [
  10453. "http",
  10454. "http-message",
  10455. "psr-17",
  10456. "psr-7"
  10457. ],
  10458. "time": "2019-04-03T17:09:40+00:00"
  10459. },
  10460. {
  10461. "name": "symfony/routing",
  10462. "version": "v3.4.34",
  10463. "source": {
  10464. "type": "git",
  10465. "url": "https://github.com/symfony/routing.git",
  10466. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5"
  10467. },
  10468. "dist": {
  10469. "type": "zip",
  10470. "url": "https://api.github.com/repos/symfony/routing/zipball/afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10471. "reference": "afc10b9c6b5196e0fecbc3bd373c7b4482e5b6b5",
  10472. "shasum": ""
  10473. },
  10474. "require": {
  10475. "php": "^5.5.9|>=7.0.8"
  10476. },
  10477. "conflict": {
  10478. "symfony/config": "<3.3.1",
  10479. "symfony/dependency-injection": "<3.3",
  10480. "symfony/yaml": "<3.4"
  10481. },
  10482. "require-dev": {
  10483. "doctrine/annotations": "~1.0",
  10484. "psr/log": "~1.0",
  10485. "symfony/config": "^3.3.1|~4.0",
  10486. "symfony/dependency-injection": "~3.3|~4.0",
  10487. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10488. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10489. "symfony/yaml": "~3.4|~4.0"
  10490. },
  10491. "suggest": {
  10492. "doctrine/annotations": "For using the annotation loader",
  10493. "symfony/config": "For using the all-in-one router or any loader",
  10494. "symfony/expression-language": "For using expression matching",
  10495. "symfony/http-foundation": "For using a Symfony Request object",
  10496. "symfony/yaml": "For using the YAML loader"
  10497. },
  10498. "type": "library",
  10499. "extra": {
  10500. "branch-alias": {
  10501. "dev-master": "3.4-dev"
  10502. }
  10503. },
  10504. "autoload": {
  10505. "psr-4": {
  10506. "Symfony\\Component\\Routing\\": ""
  10507. },
  10508. "exclude-from-classmap": [
  10509. "/Tests/"
  10510. ]
  10511. },
  10512. "notification-url": "https://packagist.org/downloads/",
  10513. "license": [
  10514. "MIT"
  10515. ],
  10516. "authors": [
  10517. {
  10518. "name": "Fabien Potencier",
  10519. "email": "fabien@symfony.com"
  10520. },
  10521. {
  10522. "name": "Symfony Community",
  10523. "homepage": "https://symfony.com/contributors"
  10524. }
  10525. ],
  10526. "description": "Symfony Routing Component",
  10527. "homepage": "https://symfony.com",
  10528. "keywords": [
  10529. "router",
  10530. "routing",
  10531. "uri",
  10532. "url"
  10533. ],
  10534. "time": "2019-11-08T17:25:00+00:00"
  10535. },
  10536. {
  10537. "name": "symfony/serializer",
  10538. "version": "v3.4.34",
  10539. "source": {
  10540. "type": "git",
  10541. "url": "https://github.com/symfony/serializer.git",
  10542. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773"
  10543. },
  10544. "dist": {
  10545. "type": "zip",
  10546. "url": "https://api.github.com/repos/symfony/serializer/zipball/a9b988899604cf3ecb144834ffbd11134c6f7773",
  10547. "reference": "a9b988899604cf3ecb144834ffbd11134c6f7773",
  10548. "shasum": ""
  10549. },
  10550. "require": {
  10551. "php": "^5.5.9|>=7.0.8",
  10552. "symfony/polyfill-ctype": "~1.8"
  10553. },
  10554. "conflict": {
  10555. "phpdocumentor/type-resolver": "<0.2.1",
  10556. "symfony/dependency-injection": "<3.2",
  10557. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  10558. "symfony/property-info": "<3.1",
  10559. "symfony/yaml": "<3.4"
  10560. },
  10561. "require-dev": {
  10562. "doctrine/annotations": "~1.0",
  10563. "doctrine/cache": "~1.0",
  10564. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  10565. "symfony/cache": "~3.1|~4.0",
  10566. "symfony/config": "~2.8|~3.0|~4.0",
  10567. "symfony/dependency-injection": "~3.2|~4.0",
  10568. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10569. "symfony/property-access": "~2.8|~3.0|~4.0",
  10570. "symfony/property-info": "^3.4.13|~4.0",
  10571. "symfony/yaml": "~3.4|~4.0"
  10572. },
  10573. "suggest": {
  10574. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10575. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10576. "psr/cache-implementation": "For using the metadata cache.",
  10577. "symfony/config": "For using the XML mapping loader.",
  10578. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  10579. "symfony/property-access": "For using the ObjectNormalizer.",
  10580. "symfony/property-info": "To deserialize relations.",
  10581. "symfony/yaml": "For using the default YAML mapping loader."
  10582. },
  10583. "type": "library",
  10584. "extra": {
  10585. "branch-alias": {
  10586. "dev-master": "3.4-dev"
  10587. }
  10588. },
  10589. "autoload": {
  10590. "psr-4": {
  10591. "Symfony\\Component\\Serializer\\": ""
  10592. },
  10593. "exclude-from-classmap": [
  10594. "/Tests/"
  10595. ]
  10596. },
  10597. "notification-url": "https://packagist.org/downloads/",
  10598. "license": [
  10599. "MIT"
  10600. ],
  10601. "authors": [
  10602. {
  10603. "name": "Fabien Potencier",
  10604. "email": "fabien@symfony.com"
  10605. },
  10606. {
  10607. "name": "Symfony Community",
  10608. "homepage": "https://symfony.com/contributors"
  10609. }
  10610. ],
  10611. "description": "Symfony Serializer Component",
  10612. "homepage": "https://symfony.com",
  10613. "time": "2019-10-29T11:09:57+00:00"
  10614. },
  10615. {
  10616. "name": "symfony/translation",
  10617. "version": "v3.4.34",
  10618. "source": {
  10619. "type": "git",
  10620. "url": "https://github.com/symfony/translation.git",
  10621. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772"
  10622. },
  10623. "dist": {
  10624. "type": "zip",
  10625. "url": "https://api.github.com/repos/symfony/translation/zipball/2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10626. "reference": "2031c895bc97ac1787d418d90bd1ed7d299f2772",
  10627. "shasum": ""
  10628. },
  10629. "require": {
  10630. "php": "^5.5.9|>=7.0.8",
  10631. "symfony/polyfill-mbstring": "~1.0"
  10632. },
  10633. "conflict": {
  10634. "symfony/config": "<2.8",
  10635. "symfony/dependency-injection": "<3.4",
  10636. "symfony/yaml": "<3.4"
  10637. },
  10638. "require-dev": {
  10639. "psr/log": "~1.0",
  10640. "symfony/config": "~2.8|~3.0|~4.0",
  10641. "symfony/dependency-injection": "~3.4|~4.0",
  10642. "symfony/finder": "~2.8|~3.0|~4.0",
  10643. "symfony/http-kernel": "~3.4|~4.0",
  10644. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10645. "symfony/var-dumper": "~3.4|~4.0",
  10646. "symfony/yaml": "~3.4|~4.0"
  10647. },
  10648. "suggest": {
  10649. "psr/log-implementation": "To use logging capability in translator",
  10650. "symfony/config": "",
  10651. "symfony/yaml": ""
  10652. },
  10653. "type": "library",
  10654. "extra": {
  10655. "branch-alias": {
  10656. "dev-master": "3.4-dev"
  10657. }
  10658. },
  10659. "autoload": {
  10660. "psr-4": {
  10661. "Symfony\\Component\\Translation\\": ""
  10662. },
  10663. "exclude-from-classmap": [
  10664. "/Tests/"
  10665. ]
  10666. },
  10667. "notification-url": "https://packagist.org/downloads/",
  10668. "license": [
  10669. "MIT"
  10670. ],
  10671. "authors": [
  10672. {
  10673. "name": "Fabien Potencier",
  10674. "email": "fabien@symfony.com"
  10675. },
  10676. {
  10677. "name": "Symfony Community",
  10678. "homepage": "https://symfony.com/contributors"
  10679. }
  10680. ],
  10681. "description": "Symfony Translation Component",
  10682. "homepage": "https://symfony.com",
  10683. "time": "2019-10-30T12:43:22+00:00"
  10684. },
  10685. {
  10686. "name": "symfony/validator",
  10687. "version": "v3.4.34",
  10688. "source": {
  10689. "type": "git",
  10690. "url": "https://github.com/symfony/validator.git",
  10691. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80"
  10692. },
  10693. "dist": {
  10694. "type": "zip",
  10695. "url": "https://api.github.com/repos/symfony/validator/zipball/b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10696. "reference": "b11f45742c5c9a228cedc46b70c6317780a1ac80",
  10697. "shasum": ""
  10698. },
  10699. "require": {
  10700. "php": "^5.5.9|>=7.0.8",
  10701. "symfony/polyfill-ctype": "~1.8",
  10702. "symfony/polyfill-mbstring": "~1.0",
  10703. "symfony/translation": "~2.8|~3.0|~4.0"
  10704. },
  10705. "conflict": {
  10706. "doctrine/lexer": "<1.0.2",
  10707. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  10708. "symfony/dependency-injection": "<3.3",
  10709. "symfony/http-kernel": "<3.3.5",
  10710. "symfony/yaml": "<3.4"
  10711. },
  10712. "require-dev": {
  10713. "doctrine/annotations": "~1.7",
  10714. "doctrine/cache": "~1.0",
  10715. "egulias/email-validator": "^2.1.10",
  10716. "symfony/cache": "~3.1|~4.0",
  10717. "symfony/config": "~2.8|~3.0|~4.0",
  10718. "symfony/dependency-injection": "~3.3|~4.0",
  10719. "symfony/expression-language": "~2.8|~3.0|~4.0",
  10720. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  10721. "symfony/http-kernel": "^3.3.5|~4.0",
  10722. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  10723. "symfony/property-access": "~2.8|~3.0|~4.0",
  10724. "symfony/var-dumper": "~3.3|~4.0",
  10725. "symfony/yaml": "~3.4|~4.0"
  10726. },
  10727. "suggest": {
  10728. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  10729. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  10730. "egulias/email-validator": "Strict (RFC compliant) email validation",
  10731. "psr/cache-implementation": "For using the metadata cache.",
  10732. "symfony/config": "",
  10733. "symfony/expression-language": "For using the Expression validator",
  10734. "symfony/http-foundation": "",
  10735. "symfony/intl": "",
  10736. "symfony/property-access": "For accessing properties within comparison constraints",
  10737. "symfony/yaml": ""
  10738. },
  10739. "type": "library",
  10740. "extra": {
  10741. "branch-alias": {
  10742. "dev-master": "3.4-dev"
  10743. }
  10744. },
  10745. "autoload": {
  10746. "psr-4": {
  10747. "Symfony\\Component\\Validator\\": ""
  10748. },
  10749. "exclude-from-classmap": [
  10750. "/Tests/"
  10751. ]
  10752. },
  10753. "notification-url": "https://packagist.org/downloads/",
  10754. "license": [
  10755. "MIT"
  10756. ],
  10757. "authors": [
  10758. {
  10759. "name": "Fabien Potencier",
  10760. "email": "fabien@symfony.com"
  10761. },
  10762. {
  10763. "name": "Symfony Community",
  10764. "homepage": "https://symfony.com/contributors"
  10765. }
  10766. ],
  10767. "description": "Symfony Validator Component",
  10768. "homepage": "https://symfony.com",
  10769. "time": "2019-11-05T22:03:38+00:00"
  10770. },
  10771. {
  10772. "name": "symfony/var-dumper",
  10773. "version": "v3.4.34",
  10774. "source": {
  10775. "type": "git",
  10776. "url": "https://github.com/symfony/var-dumper.git",
  10777. "reference": "569e261461600810845a8305ca3f64abd3e712c0"
  10778. },
  10779. "dist": {
  10780. "type": "zip",
  10781. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/569e261461600810845a8305ca3f64abd3e712c0",
  10782. "reference": "569e261461600810845a8305ca3f64abd3e712c0",
  10783. "shasum": ""
  10784. },
  10785. "require": {
  10786. "php": "^5.5.9|>=7.0.8",
  10787. "symfony/polyfill-mbstring": "~1.0"
  10788. },
  10789. "conflict": {
  10790. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
  10791. },
  10792. "require-dev": {
  10793. "ext-iconv": "*",
  10794. "twig/twig": "~1.34|~2.4"
  10795. },
  10796. "suggest": {
  10797. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  10798. "ext-intl": "To show region name in time zone dump",
  10799. "ext-symfony_debug": ""
  10800. },
  10801. "type": "library",
  10802. "extra": {
  10803. "branch-alias": {
  10804. "dev-master": "3.4-dev"
  10805. }
  10806. },
  10807. "autoload": {
  10808. "files": [
  10809. "Resources/functions/dump.php"
  10810. ],
  10811. "psr-4": {
  10812. "Symfony\\Component\\VarDumper\\": ""
  10813. },
  10814. "exclude-from-classmap": [
  10815. "/Tests/"
  10816. ]
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "MIT"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "Nicolas Grekas",
  10825. "email": "p@tchwork.com"
  10826. },
  10827. {
  10828. "name": "Symfony Community",
  10829. "homepage": "https://symfony.com/contributors"
  10830. }
  10831. ],
  10832. "description": "Symfony mechanism for exploring and dumping PHP variables",
  10833. "homepage": "https://symfony.com",
  10834. "keywords": [
  10835. "debug",
  10836. "dump"
  10837. ],
  10838. "time": "2019-10-10T11:03:19+00:00"
  10839. },
  10840. {
  10841. "name": "symfony/yaml",
  10842. "version": "v3.4.34",
  10843. "source": {
  10844. "type": "git",
  10845. "url": "https://github.com/symfony/yaml.git",
  10846. "reference": "dab657db15207879217fc81df4f875947bf68804"
  10847. },
  10848. "dist": {
  10849. "type": "zip",
  10850. "url": "https://api.github.com/repos/symfony/yaml/zipball/dab657db15207879217fc81df4f875947bf68804",
  10851. "reference": "dab657db15207879217fc81df4f875947bf68804",
  10852. "shasum": ""
  10853. },
  10854. "require": {
  10855. "php": "^5.5.9|>=7.0.8",
  10856. "symfony/polyfill-ctype": "~1.8"
  10857. },
  10858. "conflict": {
  10859. "symfony/console": "<3.4"
  10860. },
  10861. "require-dev": {
  10862. "symfony/console": "~3.4|~4.0"
  10863. },
  10864. "suggest": {
  10865. "symfony/console": "For validating YAML files using the lint command"
  10866. },
  10867. "type": "library",
  10868. "extra": {
  10869. "branch-alias": {
  10870. "dev-master": "3.4-dev"
  10871. }
  10872. },
  10873. "autoload": {
  10874. "psr-4": {
  10875. "Symfony\\Component\\Yaml\\": ""
  10876. },
  10877. "exclude-from-classmap": [
  10878. "/Tests/"
  10879. ]
  10880. },
  10881. "notification-url": "https://packagist.org/downloads/",
  10882. "license": [
  10883. "MIT"
  10884. ],
  10885. "authors": [
  10886. {
  10887. "name": "Fabien Potencier",
  10888. "email": "fabien@symfony.com"
  10889. },
  10890. {
  10891. "name": "Symfony Community",
  10892. "homepage": "https://symfony.com/contributors"
  10893. }
  10894. ],
  10895. "description": "Symfony Yaml Component",
  10896. "homepage": "https://symfony.com",
  10897. "time": "2019-10-24T15:33:53+00:00"
  10898. },
  10899. {
  10900. "name": "theseer/tokenizer",
  10901. "version": "1.1.3",
  10902. "source": {
  10903. "type": "git",
  10904. "url": "https://github.com/theseer/tokenizer.git",
  10905. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9"
  10906. },
  10907. "dist": {
  10908. "type": "zip",
  10909. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10910. "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9",
  10911. "shasum": ""
  10912. },
  10913. "require": {
  10914. "ext-dom": "*",
  10915. "ext-tokenizer": "*",
  10916. "ext-xmlwriter": "*",
  10917. "php": "^7.0"
  10918. },
  10919. "type": "library",
  10920. "autoload": {
  10921. "classmap": [
  10922. "src/"
  10923. ]
  10924. },
  10925. "notification-url": "https://packagist.org/downloads/",
  10926. "license": [
  10927. "BSD-3-Clause"
  10928. ],
  10929. "authors": [
  10930. {
  10931. "name": "Arne Blankerts",
  10932. "email": "arne@blankerts.de",
  10933. "role": "Developer"
  10934. }
  10935. ],
  10936. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10937. "time": "2019-06-13T22:48:21+00:00"
  10938. },
  10939. {
  10940. "name": "twig/twig",
  10941. "version": "v1.42.4",
  10942. "source": {
  10943. "type": "git",
  10944. "url": "https://github.com/twigphp/Twig.git",
  10945. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152"
  10946. },
  10947. "dist": {
  10948. "type": "zip",
  10949. "url": "https://api.github.com/repos/twigphp/Twig/zipball/e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10950. "reference": "e587180584c3d2d6cb864a0454e777bb6dcb6152",
  10951. "shasum": ""
  10952. },
  10953. "require": {
  10954. "php": ">=5.5.0",
  10955. "symfony/polyfill-ctype": "^1.8"
  10956. },
  10957. "require-dev": {
  10958. "psr/container": "^1.0",
  10959. "symfony/debug": "^3.4|^4.2",
  10960. "symfony/phpunit-bridge": "^4.4@dev|^5.0"
  10961. },
  10962. "type": "library",
  10963. "extra": {
  10964. "branch-alias": {
  10965. "dev-master": "1.42-dev"
  10966. }
  10967. },
  10968. "autoload": {
  10969. "psr-0": {
  10970. "Twig_": "lib/"
  10971. },
  10972. "psr-4": {
  10973. "Twig\\": "src/"
  10974. }
  10975. },
  10976. "notification-url": "https://packagist.org/downloads/",
  10977. "license": [
  10978. "BSD-3-Clause"
  10979. ],
  10980. "authors": [
  10981. {
  10982. "name": "Fabien Potencier",
  10983. "email": "fabien@symfony.com",
  10984. "homepage": "http://fabien.potencier.org",
  10985. "role": "Lead Developer"
  10986. },
  10987. {
  10988. "name": "Twig Team",
  10989. "homepage": "https://twig.symfony.com/contributors",
  10990. "role": "Contributors"
  10991. },
  10992. {
  10993. "name": "Armin Ronacher",
  10994. "email": "armin.ronacher@active-4.com",
  10995. "role": "Project Founder"
  10996. }
  10997. ],
  10998. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10999. "homepage": "https://twig.symfony.com",
  11000. "keywords": [
  11001. "templating"
  11002. ],
  11003. "time": "2019-11-11T16:49:32+00:00"
  11004. },
  11005. {
  11006. "name": "typo3/phar-stream-wrapper",
  11007. "version": "v2.1.3",
  11008. "source": {
  11009. "type": "git",
  11010. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  11011. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb"
  11012. },
  11013. "dist": {
  11014. "type": "zip",
  11015. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e8a656d72028b97ab9f61ed993734f3cded02eeb",
  11016. "reference": "e8a656d72028b97ab9f61ed993734f3cded02eeb",
  11017. "shasum": ""
  11018. },
  11019. "require": {
  11020. "brumann/polyfill-unserialize": "^1.0",
  11021. "ext-json": "*",
  11022. "php": "^5.3.3|^7.0"
  11023. },
  11024. "require-dev": {
  11025. "ext-xdebug": "*",
  11026. "phpunit/phpunit": "^4.8.36"
  11027. },
  11028. "suggest": {
  11029. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  11030. },
  11031. "type": "library",
  11032. "autoload": {
  11033. "psr-4": {
  11034. "TYPO3\\PharStreamWrapper\\": "src/"
  11035. }
  11036. },
  11037. "notification-url": "https://packagist.org/downloads/",
  11038. "license": [
  11039. "MIT"
  11040. ],
  11041. "description": "Interceptors for PHP's native phar:// stream handling",
  11042. "homepage": "https://typo3.org/",
  11043. "keywords": [
  11044. "phar",
  11045. "php",
  11046. "security",
  11047. "stream-wrapper"
  11048. ],
  11049. "time": "2019-10-18T11:59:10+00:00"
  11050. },
  11051. {
  11052. "name": "vlucas/phpdotenv",
  11053. "version": "v2.6.1",
  11054. "source": {
  11055. "type": "git",
  11056. "url": "https://github.com/vlucas/phpdotenv.git",
  11057. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5"
  11058. },
  11059. "dist": {
  11060. "type": "zip",
  11061. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  11062. "reference": "2a7dcf7e3e02dc5e701004e51a6f304b713107d5",
  11063. "shasum": ""
  11064. },
  11065. "require": {
  11066. "php": ">=5.3.9",
  11067. "symfony/polyfill-ctype": "^1.9"
  11068. },
  11069. "require-dev": {
  11070. "phpunit/phpunit": "^4.8.35 || ^5.0"
  11071. },
  11072. "type": "library",
  11073. "extra": {
  11074. "branch-alias": {
  11075. "dev-master": "2.6-dev"
  11076. }
  11077. },
  11078. "autoload": {
  11079. "psr-4": {
  11080. "Dotenv\\": "src/"
  11081. }
  11082. },
  11083. "notification-url": "https://packagist.org/downloads/",
  11084. "license": [
  11085. "BSD-3-Clause"
  11086. ],
  11087. "authors": [
  11088. {
  11089. "name": "Vance Lucas",
  11090. "email": "vance@vancelucas.com",
  11091. "homepage": "http://www.vancelucas.com"
  11092. }
  11093. ],
  11094. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  11095. "keywords": [
  11096. "dotenv",
  11097. "env",
  11098. "environment"
  11099. ],
  11100. "time": "2019-01-29T11:11:52+00:00"
  11101. },
  11102. {
  11103. "name": "webflo/drupal-core-require-dev",
  11104. "version": "8.7.9",
  11105. "source": {
  11106. "type": "git",
  11107. "url": "https://github.com/webflo/drupal-core-require-dev.git",
  11108. "reference": "712de55c6f8220cd1cabb6cf88df1e40595b187e"
  11109. },
  11110. "dist": {
  11111. "type": "zip",
  11112. "url": "https://api.github.com/repos/webflo/drupal-core-require-dev/zipball/712de55c6f8220cd1cabb6cf88df1e40595b187e",
  11113. "reference": "712de55c6f8220cd1cabb6cf88df1e40595b187e",
  11114. "shasum": ""
  11115. },
  11116. "require": {
  11117. "behat/mink": "1.7.x-dev",
  11118. "behat/mink-goutte-driver": "^1.2",
  11119. "behat/mink-selenium2-driver": "1.3.x-dev",
  11120. "drupal/coder": "^8.3.1",
  11121. "drupal/core": "8.7.9",
  11122. "jcalderonzumba/gastonjs": "^1.0.2",
  11123. "jcalderonzumba/mink-phantomjs-driver": "^0.3.1",
  11124. "justinrainbow/json-schema": "^5.2",
  11125. "mikey179/vfsstream": "^1.2",
  11126. "phpspec/prophecy": "^1.7",
  11127. "phpunit/phpunit": "^4.8.35 || ^6.5",
  11128. "symfony/css-selector": "^3.4.0",
  11129. "symfony/debug": "^3.4.0",
  11130. "symfony/phpunit-bridge": "^3.4.3"
  11131. },
  11132. "type": "metapackage",
  11133. "notification-url": "https://packagist.org/downloads/",
  11134. "license": [
  11135. "GPL-2.0-or-later"
  11136. ],
  11137. "description": "require-dev dependencies from drupal/core",
  11138. "time": "2019-11-06T18:31:43+00:00"
  11139. },
  11140. {
  11141. "name": "webflo/drupal-core-strict",
  11142. "version": "8.0.0-beta15",
  11143. "source": {
  11144. "type": "git",
  11145. "url": "https://github.com/webflo/drupal-core-strict.git",
  11146. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057"
  11147. },
  11148. "dist": {
  11149. "type": "zip",
  11150. "url": "https://api.github.com/repos/webflo/drupal-core-strict/zipball/1eb044b722ebe44bc6af86a03888415d7f31c057",
  11151. "reference": "1eb044b722ebe44bc6af86a03888415d7f31c057",
  11152. "shasum": ""
  11153. },
  11154. "type": "metapackage",
  11155. "notification-url": "https://packagist.org/downloads/",
  11156. "license": [
  11157. "GPL-2.0-or-later"
  11158. ],
  11159. "description": "Locked core dependencies",
  11160. "time": "2018-01-30T18:48:19+00:00"
  11161. },
  11162. {
  11163. "name": "webflo/drupal-finder",
  11164. "version": "1.2.0",
  11165. "source": {
  11166. "type": "git",
  11167. "url": "https://github.com/webflo/drupal-finder.git",
  11168. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  11169. },
  11170. "dist": {
  11171. "type": "zip",
  11172. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11173. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  11174. "shasum": ""
  11175. },
  11176. "require": {
  11177. "ext-json": "*"
  11178. },
  11179. "require-dev": {
  11180. "mikey179/vfsstream": "^1.6",
  11181. "phpunit/phpunit": "^4.8"
  11182. },
  11183. "type": "library",
  11184. "autoload": {
  11185. "classmap": [
  11186. "src/DrupalFinder.php"
  11187. ]
  11188. },
  11189. "notification-url": "https://packagist.org/downloads/",
  11190. "license": [
  11191. "GPL-2.0+"
  11192. ],
  11193. "authors": [
  11194. {
  11195. "name": "Florian Weber",
  11196. "email": "florian@webflo.org"
  11197. }
  11198. ],
  11199. "description": "Helper class to locate a Drupal installation from a given path.",
  11200. "time": "2019-08-02T08:06:18+00:00"
  11201. },
  11202. {
  11203. "name": "webmozart/assert",
  11204. "version": "1.5.0",
  11205. "source": {
  11206. "type": "git",
  11207. "url": "https://github.com/webmozart/assert.git",
  11208. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4"
  11209. },
  11210. "dist": {
  11211. "type": "zip",
  11212. "url": "https://api.github.com/repos/webmozart/assert/zipball/88e6d84706d09a236046d686bbea96f07b3a34f4",
  11213. "reference": "88e6d84706d09a236046d686bbea96f07b3a34f4",
  11214. "shasum": ""
  11215. },
  11216. "require": {
  11217. "php": "^5.3.3 || ^7.0",
  11218. "symfony/polyfill-ctype": "^1.8"
  11219. },
  11220. "require-dev": {
  11221. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  11222. },
  11223. "type": "library",
  11224. "extra": {
  11225. "branch-alias": {
  11226. "dev-master": "1.3-dev"
  11227. }
  11228. },
  11229. "autoload": {
  11230. "psr-4": {
  11231. "Webmozart\\Assert\\": "src/"
  11232. }
  11233. },
  11234. "notification-url": "https://packagist.org/downloads/",
  11235. "license": [
  11236. "MIT"
  11237. ],
  11238. "authors": [
  11239. {
  11240. "name": "Bernhard Schussek",
  11241. "email": "bschussek@gmail.com"
  11242. }
  11243. ],
  11244. "description": "Assertions to validate method input/output with nice error messages.",
  11245. "keywords": [
  11246. "assert",
  11247. "check",
  11248. "validate"
  11249. ],
  11250. "time": "2019-08-24T08:43:50+00:00"
  11251. },
  11252. {
  11253. "name": "webmozart/path-util",
  11254. "version": "2.3.0",
  11255. "source": {
  11256. "type": "git",
  11257. "url": "https://github.com/webmozart/path-util.git",
  11258. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  11259. },
  11260. "dist": {
  11261. "type": "zip",
  11262. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11263. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  11264. "shasum": ""
  11265. },
  11266. "require": {
  11267. "php": ">=5.3.3",
  11268. "webmozart/assert": "~1.0"
  11269. },
  11270. "require-dev": {
  11271. "phpunit/phpunit": "^4.6",
  11272. "sebastian/version": "^1.0.1"
  11273. },
  11274. "type": "library",
  11275. "extra": {
  11276. "branch-alias": {
  11277. "dev-master": "2.3-dev"
  11278. }
  11279. },
  11280. "autoload": {
  11281. "psr-4": {
  11282. "Webmozart\\PathUtil\\": "src/"
  11283. }
  11284. },
  11285. "notification-url": "https://packagist.org/downloads/",
  11286. "license": [
  11287. "MIT"
  11288. ],
  11289. "authors": [
  11290. {
  11291. "name": "Bernhard Schussek",
  11292. "email": "bschussek@gmail.com"
  11293. }
  11294. ],
  11295. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  11296. "time": "2015-12-17T08:42:14+00:00"
  11297. },
  11298. {
  11299. "name": "zaporylie/composer-drupal-optimizations",
  11300. "version": "1.1.1",
  11301. "source": {
  11302. "type": "git",
  11303. "url": "https://github.com/zaporylie/composer-drupal-optimizations.git",
  11304. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d"
  11305. },
  11306. "dist": {
  11307. "type": "zip",
  11308. "url": "https://api.github.com/repos/zaporylie/composer-drupal-optimizations/zipball/fb231d92adc862a2c9276bccbc90f684816dc75d",
  11309. "reference": "fb231d92adc862a2c9276bccbc90f684816dc75d",
  11310. "shasum": ""
  11311. },
  11312. "require": {
  11313. "composer-plugin-api": "^1.1"
  11314. },
  11315. "require-dev": {
  11316. "composer/composer": "^1.6",
  11317. "phpunit/phpunit": "^6"
  11318. },
  11319. "type": "composer-plugin",
  11320. "extra": {
  11321. "class": "zaporylie\\ComposerDrupalOptimizations\\Plugin"
  11322. },
  11323. "autoload": {
  11324. "psr-4": {
  11325. "zaporylie\\ComposerDrupalOptimizations\\": "src/"
  11326. }
  11327. },
  11328. "notification-url": "https://packagist.org/downloads/",
  11329. "license": [
  11330. "GPL-2.0-or-later"
  11331. ],
  11332. "authors": [
  11333. {
  11334. "name": "Jakub Piasecki",
  11335. "email": "jakub@piaseccy.pl"
  11336. }
  11337. ],
  11338. "description": "Composer plugin to improve composer performance for Drupal projects",
  11339. "time": "2019-10-02T17:01:11+00:00"
  11340. },
  11341. {
  11342. "name": "zendframework/zend-diactoros",
  11343. "version": "1.8.7",
  11344. "source": {
  11345. "type": "git",
  11346. "url": "https://github.com/zendframework/zend-diactoros.git",
  11347. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b"
  11348. },
  11349. "dist": {
  11350. "type": "zip",
  11351. "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11352. "reference": "a85e67b86e9b8520d07e6415fcbcb8391b44a75b",
  11353. "shasum": ""
  11354. },
  11355. "require": {
  11356. "php": "^5.6 || ^7.0",
  11357. "psr/http-message": "^1.0"
  11358. },
  11359. "provide": {
  11360. "psr/http-message-implementation": "1.0"
  11361. },
  11362. "require-dev": {
  11363. "ext-dom": "*",
  11364. "ext-libxml": "*",
  11365. "php-http/psr7-integration-tests": "dev-master",
  11366. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7",
  11367. "zendframework/zend-coding-standard": "~1.0"
  11368. },
  11369. "type": "library",
  11370. "extra": {
  11371. "branch-alias": {
  11372. "dev-release-1.8": "1.8.x-dev"
  11373. }
  11374. },
  11375. "autoload": {
  11376. "files": [
  11377. "src/functions/create_uploaded_file.php",
  11378. "src/functions/marshal_headers_from_sapi.php",
  11379. "src/functions/marshal_method_from_sapi.php",
  11380. "src/functions/marshal_protocol_version_from_sapi.php",
  11381. "src/functions/marshal_uri_from_sapi.php",
  11382. "src/functions/normalize_server.php",
  11383. "src/functions/normalize_uploaded_files.php",
  11384. "src/functions/parse_cookie_header.php"
  11385. ],
  11386. "psr-4": {
  11387. "Zend\\Diactoros\\": "src/"
  11388. }
  11389. },
  11390. "notification-url": "https://packagist.org/downloads/",
  11391. "license": [
  11392. "BSD-2-Clause"
  11393. ],
  11394. "description": "PSR HTTP Message implementations",
  11395. "homepage": "https://github.com/zendframework/zend-diactoros",
  11396. "keywords": [
  11397. "http",
  11398. "psr",
  11399. "psr-7"
  11400. ],
  11401. "time": "2019-08-06T17:53:53+00:00"
  11402. },
  11403. {
  11404. "name": "zendframework/zend-escaper",
  11405. "version": "2.6.1",
  11406. "source": {
  11407. "type": "git",
  11408. "url": "https://github.com/zendframework/zend-escaper.git",
  11409. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f"
  11410. },
  11411. "dist": {
  11412. "type": "zip",
  11413. "url": "https://api.github.com/repos/zendframework/zend-escaper/zipball/3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11414. "reference": "3801caa21b0ca6aca57fa1c42b08d35c395ebd5f",
  11415. "shasum": ""
  11416. },
  11417. "require": {
  11418. "php": "^5.6 || ^7.0"
  11419. },
  11420. "require-dev": {
  11421. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11422. "zendframework/zend-coding-standard": "~1.0.0"
  11423. },
  11424. "type": "library",
  11425. "extra": {
  11426. "branch-alias": {
  11427. "dev-master": "2.6.x-dev",
  11428. "dev-develop": "2.7.x-dev"
  11429. }
  11430. },
  11431. "autoload": {
  11432. "psr-4": {
  11433. "Zend\\Escaper\\": "src/"
  11434. }
  11435. },
  11436. "notification-url": "https://packagist.org/downloads/",
  11437. "license": [
  11438. "BSD-3-Clause"
  11439. ],
  11440. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  11441. "keywords": [
  11442. "ZendFramework",
  11443. "escaper",
  11444. "zf"
  11445. ],
  11446. "time": "2019-09-05T20:03:20+00:00"
  11447. },
  11448. {
  11449. "name": "zendframework/zend-feed",
  11450. "version": "2.12.0",
  11451. "source": {
  11452. "type": "git",
  11453. "url": "https://github.com/zendframework/zend-feed.git",
  11454. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733"
  11455. },
  11456. "dist": {
  11457. "type": "zip",
  11458. "url": "https://api.github.com/repos/zendframework/zend-feed/zipball/d926c5af34b93a0121d5e2641af34ddb1533d733",
  11459. "reference": "d926c5af34b93a0121d5e2641af34ddb1533d733",
  11460. "shasum": ""
  11461. },
  11462. "require": {
  11463. "ext-dom": "*",
  11464. "ext-libxml": "*",
  11465. "php": "^5.6 || ^7.0",
  11466. "zendframework/zend-escaper": "^2.5.2",
  11467. "zendframework/zend-stdlib": "^3.2.1"
  11468. },
  11469. "require-dev": {
  11470. "phpunit/phpunit": "^5.7.23 || ^6.4.3",
  11471. "psr/http-message": "^1.0.1",
  11472. "zendframework/zend-cache": "^2.7.2",
  11473. "zendframework/zend-coding-standard": "~1.0.0",
  11474. "zendframework/zend-db": "^2.8.2",
  11475. "zendframework/zend-http": "^2.7",
  11476. "zendframework/zend-servicemanager": "^2.7.8 || ^3.3",
  11477. "zendframework/zend-validator": "^2.10.1"
  11478. },
  11479. "suggest": {
  11480. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Zend\\Feed\\Reader\\Http\\Psr7ResponseDecorator",
  11481. "zendframework/zend-cache": "Zend\\Cache component, for optionally caching feeds between requests",
  11482. "zendframework/zend-db": "Zend\\Db component, for use with PubSubHubbub",
  11483. "zendframework/zend-http": "Zend\\Http for PubSubHubbub, and optionally for use with Zend\\Feed\\Reader",
  11484. "zendframework/zend-servicemanager": "Zend\\ServiceManager component, for easily extending ExtensionManager implementations",
  11485. "zendframework/zend-validator": "Zend\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent"
  11486. },
  11487. "type": "library",
  11488. "extra": {
  11489. "branch-alias": {
  11490. "dev-master": "2.12.x-dev",
  11491. "dev-develop": "2.13.x-dev"
  11492. }
  11493. },
  11494. "autoload": {
  11495. "psr-4": {
  11496. "Zend\\Feed\\": "src/"
  11497. }
  11498. },
  11499. "notification-url": "https://packagist.org/downloads/",
  11500. "license": [
  11501. "BSD-3-Clause"
  11502. ],
  11503. "description": "provides functionality for consuming RSS and Atom feeds",
  11504. "keywords": [
  11505. "ZendFramework",
  11506. "feed",
  11507. "zf"
  11508. ],
  11509. "time": "2019-03-05T20:08:49+00:00"
  11510. },
  11511. {
  11512. "name": "zendframework/zend-stdlib",
  11513. "version": "3.2.1",
  11514. "source": {
  11515. "type": "git",
  11516. "url": "https://github.com/zendframework/zend-stdlib.git",
  11517. "reference": "66536006722aff9e62d1b331025089b7ec71c065"
  11518. },
  11519. "dist": {
  11520. "type": "zip",
  11521. "url": "https://api.github.com/repos/zendframework/zend-stdlib/zipball/66536006722aff9e62d1b331025089b7ec71c065",
  11522. "reference": "66536006722aff9e62d1b331025089b7ec71c065",
  11523. "shasum": ""
  11524. },
  11525. "require": {
  11526. "php": "^5.6 || ^7.0"
  11527. },
  11528. "require-dev": {
  11529. "phpbench/phpbench": "^0.13",
  11530. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2",
  11531. "zendframework/zend-coding-standard": "~1.0.0"
  11532. },
  11533. "type": "library",
  11534. "extra": {
  11535. "branch-alias": {
  11536. "dev-master": "3.2.x-dev",
  11537. "dev-develop": "3.3.x-dev"
  11538. }
  11539. },
  11540. "autoload": {
  11541. "psr-4": {
  11542. "Zend\\Stdlib\\": "src/"
  11543. }
  11544. },
  11545. "notification-url": "https://packagist.org/downloads/",
  11546. "license": [
  11547. "BSD-3-Clause"
  11548. ],
  11549. "description": "SPL extensions, array utilities, error handlers, and more",
  11550. "keywords": [
  11551. "ZendFramework",
  11552. "stdlib",
  11553. "zf"
  11554. ],
  11555. "time": "2018-08-28T21:34:05+00:00"
  11556. }
  11557. ],
  11558. "packages-dev": [],
  11559. "aliases": [],
  11560. "minimum-stability": "dev",
  11561. "stability-flags": {
  11562. "drupal/bulkdelete": 20,
  11563. "drupal/domain_menu_access": 20,
  11564. "drupal/filefield_sources": 20,
  11565. "drupal/filter_perms": 20,
  11566. "drupal/maillog": 20,
  11567. "drupal/path_alias_xt": 20,
  11568. "drupal/synonyms": 20,
  11569. "drupal/toolbar_themes": 20,
  11570. "drupal/workflow": 20
  11571. },
  11572. "prefer-stable": true,
  11573. "prefer-lowest": false,
  11574. "platform": {
  11575. "php": ">=5.6"
  11576. },
  11577. "platform-dev": []
  11578. }