composer.lock 295 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169
  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": "bc0461f18dc854574df2bf17fd849558",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "1.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/b9c31def6a83f84b4d4a40d35996d375755f0e08",
  20. "reference": "b9c31def6a83f84b4d4a40d35996d375755f0e08",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5.9",
  25. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  26. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^5.0 || ^4.8.10",
  30. "squizlabs/php_codesniffer": "^2.3"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "1.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/Asm89/Stack/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "time": "2019-12-24T22:41:47+00:00"
  60. },
  61. {
  62. "name": "chi-teck/drupal-code-generator",
  63. "version": "1.32.0",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  67. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  72. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  73. "shasum": ""
  74. },
  75. "require": {
  76. "ext-json": "*",
  77. "php": ">=5.5.9",
  78. "symfony/console": "^3.4 || ^4.0",
  79. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  80. "twig/twig": "^1.41 || ^2.12"
  81. },
  82. "bin": [
  83. "bin/dcg"
  84. ],
  85. "type": "library",
  86. "extra": {
  87. "branch-alias": {
  88. "dev-master": "1.x-dev"
  89. }
  90. },
  91. "autoload": {
  92. "files": [
  93. "src/bootstrap.php"
  94. ],
  95. "psr-4": {
  96. "DrupalCodeGenerator\\": "src"
  97. }
  98. },
  99. "notification-url": "https://packagist.org/downloads/",
  100. "license": [
  101. "GPL-2.0-or-later"
  102. ],
  103. "description": "Drupal code generator",
  104. "time": "2020-04-16T06:45:06+00:00"
  105. },
  106. {
  107. "name": "commerceguys/addressing",
  108. "version": "v1.0.8",
  109. "source": {
  110. "type": "git",
  111. "url": "https://github.com/commerceguys/addressing.git",
  112. "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce"
  113. },
  114. "dist": {
  115. "type": "zip",
  116. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/cf202c913c10d85085ab5ed9ec88607e312839ce",
  117. "reference": "cf202c913c10d85085ab5ed9ec88607e312839ce",
  118. "shasum": ""
  119. },
  120. "require": {
  121. "doctrine/collections": "~1.0",
  122. "php": ">=7.0.8"
  123. },
  124. "require-dev": {
  125. "mikey179/vfsstream": "1.*",
  126. "phpunit/phpunit": "^6.0",
  127. "squizlabs/php_codesniffer": "2.*",
  128. "symfony/validator": "^3.4"
  129. },
  130. "suggest": {
  131. "symfony/validator": "to validate addresses"
  132. },
  133. "type": "library",
  134. "extra": {
  135. "branch-alias": {
  136. "dev-master": "1.x-dev"
  137. }
  138. },
  139. "autoload": {
  140. "psr-4": {
  141. "CommerceGuys\\Addressing\\": "src"
  142. }
  143. },
  144. "notification-url": "https://packagist.org/downloads/",
  145. "license": [
  146. "MIT"
  147. ],
  148. "authors": [
  149. {
  150. "name": "Bojan Zivanovic"
  151. },
  152. {
  153. "name": "Damien Tournoud"
  154. }
  155. ],
  156. "description": "Addressing library powered by CLDR and Google's address data.",
  157. "keywords": [
  158. "address",
  159. "internationalization",
  160. "localization",
  161. "postal"
  162. ],
  163. "time": "2020-05-26T11:04:04+00:00"
  164. },
  165. {
  166. "name": "composer/installers",
  167. "version": "v1.9.0",
  168. "source": {
  169. "type": "git",
  170. "url": "https://github.com/composer/installers.git",
  171. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca"
  172. },
  173. "dist": {
  174. "type": "zip",
  175. "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  176. "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca",
  177. "shasum": ""
  178. },
  179. "require": {
  180. "composer-plugin-api": "^1.0 || ^2.0"
  181. },
  182. "replace": {
  183. "roundcube/plugin-installer": "*",
  184. "shama/baton": "*"
  185. },
  186. "require-dev": {
  187. "composer/composer": "1.6.* || 2.0.*@dev",
  188. "composer/semver": "1.0.* || 2.0.*@dev",
  189. "phpunit/phpunit": "^4.8.36",
  190. "sebastian/comparator": "^1.2.4",
  191. "symfony/process": "^2.3"
  192. },
  193. "type": "composer-plugin",
  194. "extra": {
  195. "class": "Composer\\Installers\\Plugin",
  196. "branch-alias": {
  197. "dev-master": "1.0-dev"
  198. }
  199. },
  200. "autoload": {
  201. "psr-4": {
  202. "Composer\\Installers\\": "src/Composer/Installers"
  203. }
  204. },
  205. "notification-url": "https://packagist.org/downloads/",
  206. "license": [
  207. "MIT"
  208. ],
  209. "authors": [
  210. {
  211. "name": "Kyle Robinson Young",
  212. "email": "kyle@dontkry.com",
  213. "homepage": "https://github.com/shama"
  214. }
  215. ],
  216. "description": "A multi-framework Composer library installer",
  217. "homepage": "https://composer.github.io/installers/",
  218. "keywords": [
  219. "Craft",
  220. "Dolibarr",
  221. "Eliasis",
  222. "Hurad",
  223. "ImageCMS",
  224. "Kanboard",
  225. "Lan Management System",
  226. "MODX Evo",
  227. "MantisBT",
  228. "Mautic",
  229. "Maya",
  230. "OXID",
  231. "Plentymarkets",
  232. "Porto",
  233. "RadPHP",
  234. "SMF",
  235. "Thelia",
  236. "Whmcs",
  237. "WolfCMS",
  238. "agl",
  239. "aimeos",
  240. "annotatecms",
  241. "attogram",
  242. "bitrix",
  243. "cakephp",
  244. "chef",
  245. "cockpit",
  246. "codeigniter",
  247. "concrete5",
  248. "croogo",
  249. "dokuwiki",
  250. "drupal",
  251. "eZ Platform",
  252. "elgg",
  253. "expressionengine",
  254. "fuelphp",
  255. "grav",
  256. "installer",
  257. "itop",
  258. "joomla",
  259. "known",
  260. "kohana",
  261. "laravel",
  262. "lavalite",
  263. "lithium",
  264. "magento",
  265. "majima",
  266. "mako",
  267. "mediawiki",
  268. "modulework",
  269. "modx",
  270. "moodle",
  271. "osclass",
  272. "phpbb",
  273. "piwik",
  274. "ppi",
  275. "puppet",
  276. "pxcms",
  277. "reindex",
  278. "roundcube",
  279. "shopware",
  280. "silverstripe",
  281. "sydes",
  282. "sylius",
  283. "symfony",
  284. "typo3",
  285. "wordpress",
  286. "yawik",
  287. "zend",
  288. "zikula"
  289. ],
  290. "funding": [
  291. {
  292. "url": "https://packagist.com",
  293. "type": "custom"
  294. },
  295. {
  296. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  297. "type": "tidelift"
  298. }
  299. ],
  300. "time": "2020-04-07T06:57:05+00:00"
  301. },
  302. {
  303. "name": "composer/semver",
  304. "version": "1.5.1",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/composer/semver.git",
  308. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  313. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  314. "shasum": ""
  315. },
  316. "require": {
  317. "php": "^5.3.2 || ^7.0"
  318. },
  319. "require-dev": {
  320. "phpunit/phpunit": "^4.5 || ^5.0.5"
  321. },
  322. "type": "library",
  323. "extra": {
  324. "branch-alias": {
  325. "dev-master": "1.x-dev"
  326. }
  327. },
  328. "autoload": {
  329. "psr-4": {
  330. "Composer\\Semver\\": "src"
  331. }
  332. },
  333. "notification-url": "https://packagist.org/downloads/",
  334. "license": [
  335. "MIT"
  336. ],
  337. "authors": [
  338. {
  339. "name": "Nils Adermann",
  340. "email": "naderman@naderman.de",
  341. "homepage": "http://www.naderman.de"
  342. },
  343. {
  344. "name": "Jordi Boggiano",
  345. "email": "j.boggiano@seld.be",
  346. "homepage": "http://seld.be"
  347. },
  348. {
  349. "name": "Rob Bast",
  350. "email": "rob.bast@gmail.com",
  351. "homepage": "http://robbast.nl"
  352. }
  353. ],
  354. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  355. "keywords": [
  356. "semantic",
  357. "semver",
  358. "validation",
  359. "versioning"
  360. ],
  361. "time": "2020-01-13T12:06:48+00:00"
  362. },
  363. {
  364. "name": "consolidation/annotated-command",
  365. "version": "2.12.0",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/consolidation/annotated-command.git",
  369. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  374. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "consolidation/output-formatters": "^3.4",
  379. "php": ">=5.4.5",
  380. "psr/log": "^1",
  381. "symfony/console": "^2.8|^3|^4",
  382. "symfony/event-dispatcher": "^2.5|^3|^4",
  383. "symfony/finder": "^2.5|^3|^4"
  384. },
  385. "require-dev": {
  386. "g1a/composer-test-scenarios": "^3",
  387. "php-coveralls/php-coveralls": "^1",
  388. "phpunit/phpunit": "^6",
  389. "squizlabs/php_codesniffer": "^2.7"
  390. },
  391. "type": "library",
  392. "extra": {
  393. "scenarios": {
  394. "symfony4": {
  395. "require": {
  396. "symfony/console": "^4.0"
  397. },
  398. "config": {
  399. "platform": {
  400. "php": "7.1.3"
  401. }
  402. }
  403. },
  404. "symfony2": {
  405. "require": {
  406. "symfony/console": "^2.8"
  407. },
  408. "require-dev": {
  409. "phpunit/phpunit": "^4.8.36"
  410. },
  411. "remove": [
  412. "php-coveralls/php-coveralls"
  413. ],
  414. "config": {
  415. "platform": {
  416. "php": "5.4.8"
  417. }
  418. },
  419. "scenario-options": {
  420. "create-lockfile": "false"
  421. }
  422. },
  423. "phpunit4": {
  424. "require-dev": {
  425. "phpunit/phpunit": "^4.8.36"
  426. },
  427. "remove": [
  428. "php-coveralls/php-coveralls"
  429. ],
  430. "config": {
  431. "platform": {
  432. "php": "5.4.8"
  433. }
  434. }
  435. }
  436. },
  437. "branch-alias": {
  438. "dev-master": "2.x-dev"
  439. }
  440. },
  441. "autoload": {
  442. "psr-4": {
  443. "Consolidation\\AnnotatedCommand\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Greg Anderson",
  453. "email": "greg.1.anderson@greenknowe.org"
  454. }
  455. ],
  456. "description": "Initialize Symfony Console commands from annotated command class methods.",
  457. "time": "2019-03-08T16:55:03+00:00"
  458. },
  459. {
  460. "name": "consolidation/config",
  461. "version": "1.2.1",
  462. "source": {
  463. "type": "git",
  464. "url": "https://github.com/consolidation/config.git",
  465. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  466. },
  467. "dist": {
  468. "type": "zip",
  469. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  470. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  471. "shasum": ""
  472. },
  473. "require": {
  474. "dflydev/dot-access-data": "^1.1.0",
  475. "grasmash/expander": "^1",
  476. "php": ">=5.4.0"
  477. },
  478. "require-dev": {
  479. "g1a/composer-test-scenarios": "^3",
  480. "php-coveralls/php-coveralls": "^1",
  481. "phpunit/phpunit": "^5",
  482. "squizlabs/php_codesniffer": "2.*",
  483. "symfony/console": "^2.5|^3|^4",
  484. "symfony/yaml": "^2.8.11|^3|^4"
  485. },
  486. "suggest": {
  487. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  488. },
  489. "type": "library",
  490. "extra": {
  491. "scenarios": {
  492. "symfony4": {
  493. "require-dev": {
  494. "symfony/console": "^4.0"
  495. },
  496. "config": {
  497. "platform": {
  498. "php": "7.1.3"
  499. }
  500. }
  501. },
  502. "symfony2": {
  503. "require-dev": {
  504. "symfony/console": "^2.8",
  505. "symfony/event-dispatcher": "^2.8",
  506. "phpunit/phpunit": "^4.8.36"
  507. },
  508. "remove": [
  509. "php-coveralls/php-coveralls"
  510. ],
  511. "config": {
  512. "platform": {
  513. "php": "5.4.8"
  514. }
  515. }
  516. }
  517. },
  518. "branch-alias": {
  519. "dev-master": "1.x-dev"
  520. }
  521. },
  522. "autoload": {
  523. "psr-4": {
  524. "Consolidation\\Config\\": "src"
  525. }
  526. },
  527. "notification-url": "https://packagist.org/downloads/",
  528. "license": [
  529. "MIT"
  530. ],
  531. "authors": [
  532. {
  533. "name": "Greg Anderson",
  534. "email": "greg.1.anderson@greenknowe.org"
  535. }
  536. ],
  537. "description": "Provide configuration services for a commandline tool.",
  538. "time": "2019-03-03T19:37:04+00:00"
  539. },
  540. {
  541. "name": "consolidation/filter-via-dot-access-data",
  542. "version": "1.0.0",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  546. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  551. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "dflydev/dot-access-data": "^1.1.0",
  556. "php": ">=5.5.0"
  557. },
  558. "require-dev": {
  559. "consolidation/robo": "^1.2.3",
  560. "g1a/composer-test-scenarios": "^3",
  561. "knplabs/github-api": "^2.7",
  562. "php-coveralls/php-coveralls": "^1",
  563. "php-http/guzzle6-adapter": "^1.1",
  564. "phpunit/phpunit": "^5",
  565. "squizlabs/php_codesniffer": "^2.8",
  566. "symfony/console": "^2.8|^3|^4"
  567. },
  568. "type": "library",
  569. "extra": {
  570. "scenarios": {
  571. "phpunit5": {
  572. "require-dev": {
  573. "phpunit/phpunit": "^5.7.27"
  574. },
  575. "remove": [
  576. "php-coveralls/php-coveralls"
  577. ],
  578. "config": {
  579. "platform": {
  580. "php": "5.6.33"
  581. }
  582. }
  583. }
  584. },
  585. "branch-alias": {
  586. "dev-master": "1.x-dev"
  587. }
  588. },
  589. "autoload": {
  590. "psr-4": {
  591. "Consolidation\\Filter\\": "src"
  592. }
  593. },
  594. "notification-url": "https://packagist.org/downloads/",
  595. "license": [
  596. "MIT"
  597. ],
  598. "authors": [
  599. {
  600. "name": "Greg Anderson",
  601. "email": "greg.1.anderson@greenknowe.org"
  602. }
  603. ],
  604. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  605. "time": "2019-01-18T06:05:07+00:00"
  606. },
  607. {
  608. "name": "consolidation/log",
  609. "version": "1.1.1",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/consolidation/log.git",
  613. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  618. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "php": ">=5.4.5",
  623. "psr/log": "^1.0",
  624. "symfony/console": "^2.8|^3|^4"
  625. },
  626. "require-dev": {
  627. "g1a/composer-test-scenarios": "^3",
  628. "php-coveralls/php-coveralls": "^1",
  629. "phpunit/phpunit": "^6",
  630. "squizlabs/php_codesniffer": "^2"
  631. },
  632. "type": "library",
  633. "extra": {
  634. "scenarios": {
  635. "symfony4": {
  636. "require": {
  637. "symfony/console": "^4.0"
  638. },
  639. "config": {
  640. "platform": {
  641. "php": "7.1.3"
  642. }
  643. }
  644. },
  645. "symfony2": {
  646. "require": {
  647. "symfony/console": "^2.8"
  648. },
  649. "require-dev": {
  650. "phpunit/phpunit": "^4.8.36"
  651. },
  652. "remove": [
  653. "php-coveralls/php-coveralls"
  654. ],
  655. "config": {
  656. "platform": {
  657. "php": "5.4.8"
  658. }
  659. }
  660. },
  661. "phpunit4": {
  662. "require-dev": {
  663. "phpunit/phpunit": "^4.8.36"
  664. },
  665. "remove": [
  666. "php-coveralls/php-coveralls"
  667. ],
  668. "config": {
  669. "platform": {
  670. "php": "5.4.8"
  671. }
  672. }
  673. }
  674. },
  675. "branch-alias": {
  676. "dev-master": "1.x-dev"
  677. }
  678. },
  679. "autoload": {
  680. "psr-4": {
  681. "Consolidation\\Log\\": "src"
  682. }
  683. },
  684. "notification-url": "https://packagist.org/downloads/",
  685. "license": [
  686. "MIT"
  687. ],
  688. "authors": [
  689. {
  690. "name": "Greg Anderson",
  691. "email": "greg.1.anderson@greenknowe.org"
  692. }
  693. ],
  694. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  695. "time": "2019-01-01T17:30:51+00:00"
  696. },
  697. {
  698. "name": "consolidation/output-formatters",
  699. "version": "3.5.0",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/output-formatters.git",
  703. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  708. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "dflydev/dot-access-data": "^1.1.0",
  713. "php": ">=5.4.0",
  714. "symfony/console": "^2.8|^3|^4",
  715. "symfony/finder": "^2.5|^3|^4"
  716. },
  717. "require-dev": {
  718. "g1a/composer-test-scenarios": "^3",
  719. "php-coveralls/php-coveralls": "^1",
  720. "phpunit/phpunit": "^5.7.27",
  721. "squizlabs/php_codesniffer": "^2.7",
  722. "symfony/var-dumper": "^2.8|^3|^4",
  723. "victorjonsson/markdowndocs": "^1.3"
  724. },
  725. "suggest": {
  726. "symfony/var-dumper": "For using the var_dump formatter"
  727. },
  728. "type": "library",
  729. "extra": {
  730. "scenarios": {
  731. "symfony4": {
  732. "require": {
  733. "symfony/console": "^4.0"
  734. },
  735. "require-dev": {
  736. "phpunit/phpunit": "^6"
  737. },
  738. "config": {
  739. "platform": {
  740. "php": "7.1.3"
  741. }
  742. }
  743. },
  744. "symfony3": {
  745. "require": {
  746. "symfony/console": "^3.4",
  747. "symfony/finder": "^3.4",
  748. "symfony/var-dumper": "^3.4"
  749. },
  750. "config": {
  751. "platform": {
  752. "php": "5.6.32"
  753. }
  754. }
  755. },
  756. "symfony2": {
  757. "require": {
  758. "symfony/console": "^2.8"
  759. },
  760. "require-dev": {
  761. "phpunit/phpunit": "^4.8.36"
  762. },
  763. "remove": [
  764. "php-coveralls/php-coveralls"
  765. ],
  766. "config": {
  767. "platform": {
  768. "php": "5.4.8"
  769. }
  770. },
  771. "scenario-options": {
  772. "create-lockfile": "false"
  773. }
  774. }
  775. },
  776. "branch-alias": {
  777. "dev-master": "3.x-dev"
  778. }
  779. },
  780. "autoload": {
  781. "psr-4": {
  782. "Consolidation\\OutputFormatters\\": "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": "Format text by applying transformations provided by plug-in formatters.",
  796. "time": "2019-05-30T23:16:01+00:00"
  797. },
  798. {
  799. "name": "consolidation/robo",
  800. "version": "1.4.12",
  801. "source": {
  802. "type": "git",
  803. "url": "https://github.com/consolidation/Robo.git",
  804. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  805. },
  806. "dist": {
  807. "type": "zip",
  808. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  809. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  810. "shasum": ""
  811. },
  812. "require": {
  813. "consolidation/annotated-command": "^2.11.0|^4.1",
  814. "consolidation/config": "^1.2.1",
  815. "consolidation/log": "^1.1.1|^2",
  816. "consolidation/output-formatters": "^3.1.13|^4.1",
  817. "consolidation/self-update": "^1.1.5",
  818. "grasmash/yaml-expander": "^1.4",
  819. "league/container": "^2.4.1",
  820. "php": ">=5.5.0",
  821. "symfony/console": "^2.8|^3|^4",
  822. "symfony/event-dispatcher": "^2.5|^3|^4",
  823. "symfony/filesystem": "^2.5|^3|^4",
  824. "symfony/finder": "^2.5|^3|^4",
  825. "symfony/process": "^2.5|^3|^4"
  826. },
  827. "replace": {
  828. "codegyre/robo": "< 1.0"
  829. },
  830. "require-dev": {
  831. "g1a/composer-test-scenarios": "^3",
  832. "natxet/cssmin": "3.0.4",
  833. "patchwork/jsqueeze": "^2",
  834. "pear/archive_tar": "^1.4.4",
  835. "php-coveralls/php-coveralls": "^1",
  836. "phpunit/phpunit": "^5.7.27",
  837. "squizlabs/php_codesniffer": "^3"
  838. },
  839. "suggest": {
  840. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  841. "natxet/CssMin": "For minifying CSS files in taskMinify",
  842. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  843. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  844. },
  845. "bin": [
  846. "robo"
  847. ],
  848. "type": "library",
  849. "extra": {
  850. "scenarios": {
  851. "symfony4": {
  852. "require": {
  853. "symfony/console": "^4"
  854. },
  855. "config": {
  856. "platform": {
  857. "php": "7.1.3"
  858. }
  859. }
  860. },
  861. "symfony2": {
  862. "require": {
  863. "symfony/console": "^2.8"
  864. },
  865. "require-dev": {
  866. "phpunit/phpunit": "^4.8.36"
  867. },
  868. "remove": [
  869. "php-coveralls/php-coveralls"
  870. ],
  871. "config": {
  872. "platform": {
  873. "php": "5.5.9"
  874. }
  875. },
  876. "scenario-options": {
  877. "create-lockfile": "false"
  878. }
  879. }
  880. },
  881. "branch-alias": {
  882. "dev-master": "1.x-dev"
  883. }
  884. },
  885. "autoload": {
  886. "psr-4": {
  887. "Robo\\": "src"
  888. }
  889. },
  890. "notification-url": "https://packagist.org/downloads/",
  891. "license": [
  892. "MIT"
  893. ],
  894. "authors": [
  895. {
  896. "name": "Davert",
  897. "email": "davert.php@resend.cc"
  898. }
  899. ],
  900. "description": "Modern task runner",
  901. "time": "2020-02-18T17:31:26+00:00"
  902. },
  903. {
  904. "name": "consolidation/self-update",
  905. "version": "1.2.0",
  906. "source": {
  907. "type": "git",
  908. "url": "https://github.com/consolidation/self-update.git",
  909. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  910. },
  911. "dist": {
  912. "type": "zip",
  913. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  914. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  915. "shasum": ""
  916. },
  917. "require": {
  918. "php": ">=5.5.0",
  919. "symfony/console": "^2.8|^3|^4|^5",
  920. "symfony/filesystem": "^2.5|^3|^4|^5"
  921. },
  922. "bin": [
  923. "scripts/release"
  924. ],
  925. "type": "library",
  926. "extra": {
  927. "branch-alias": {
  928. "dev-master": "1.x-dev"
  929. }
  930. },
  931. "autoload": {
  932. "psr-4": {
  933. "SelfUpdate\\": "src"
  934. }
  935. },
  936. "notification-url": "https://packagist.org/downloads/",
  937. "license": [
  938. "MIT"
  939. ],
  940. "authors": [
  941. {
  942. "name": "Alexander Menk",
  943. "email": "menk@mestrona.net"
  944. },
  945. {
  946. "name": "Greg Anderson",
  947. "email": "greg.1.anderson@greenknowe.org"
  948. }
  949. ],
  950. "description": "Provides a self:update command for Symfony Console applications.",
  951. "time": "2020-04-13T02:49:20+00:00"
  952. },
  953. {
  954. "name": "consolidation/site-alias",
  955. "version": "3.0.1",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/consolidation/site-alias.git",
  959. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  964. "reference": "fd40a03f80f8fd4684b10bef8c8c4ec5a9a9bf26",
  965. "shasum": ""
  966. },
  967. "require": {
  968. "consolidation/config": "^1.2.1|^2",
  969. "php": ">=5.5.0"
  970. },
  971. "require-dev": {
  972. "consolidation/robo": "^1.2.3|^2",
  973. "g1a/composer-test-scenarios": "^3",
  974. "knplabs/github-api": "^2.7",
  975. "php-coveralls/php-coveralls": "^2.2",
  976. "php-http/guzzle6-adapter": "^1.1",
  977. "phpunit/phpunit": "^6",
  978. "squizlabs/php_codesniffer": "^2.8",
  979. "symfony/yaml": "~2.3|^3|^4.4|^5"
  980. },
  981. "type": "library",
  982. "extra": {
  983. "scenarios": {
  984. "phpunit5": {
  985. "require-dev": {
  986. "phpunit/phpunit": "^5.7.27"
  987. },
  988. "remove": [
  989. "php-coveralls/php-coveralls"
  990. ],
  991. "config": {
  992. "platform": {
  993. "php": "5.6.33"
  994. }
  995. }
  996. }
  997. },
  998. "branch-alias": {
  999. "dev-master": "3.x-dev"
  1000. }
  1001. },
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Consolidation\\SiteAlias\\": "src"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "authors": [
  1012. {
  1013. "name": "Greg Anderson",
  1014. "email": "greg.1.anderson@greenknowe.org"
  1015. },
  1016. {
  1017. "name": "Moshe Weitzman",
  1018. "email": "weitzman@tejasa.com"
  1019. }
  1020. ],
  1021. "description": "Manage alias records for local and remote sites.",
  1022. "time": "2020-05-28T00:33:41+00:00"
  1023. },
  1024. {
  1025. "name": "consolidation/site-process",
  1026. "version": "2.1.0",
  1027. "source": {
  1028. "type": "git",
  1029. "url": "https://github.com/consolidation/site-process.git",
  1030. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  1031. },
  1032. "dist": {
  1033. "type": "zip",
  1034. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  1035. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  1036. "shasum": ""
  1037. },
  1038. "require": {
  1039. "consolidation/config": "^1.2.1",
  1040. "consolidation/site-alias": "^3",
  1041. "php": ">=5.6.0",
  1042. "symfony/process": "^3.4"
  1043. },
  1044. "require-dev": {
  1045. "consolidation/robo": "^1.3",
  1046. "g1a/composer-test-scenarios": "^3",
  1047. "knplabs/github-api": "^2.7",
  1048. "php-coveralls/php-coveralls": "^1",
  1049. "php-http/guzzle6-adapter": "^1.1",
  1050. "phpunit/phpunit": "^6",
  1051. "squizlabs/php_codesniffer": "^2.8"
  1052. },
  1053. "type": "library",
  1054. "extra": {
  1055. "scenarios": {
  1056. "phpunit5": {
  1057. "require-dev": {
  1058. "phpunit/phpunit": "^5.7.27"
  1059. },
  1060. "remove": [
  1061. "php-coveralls/php-coveralls"
  1062. ],
  1063. "config": {
  1064. "platform": {
  1065. "php": "5.6.33"
  1066. }
  1067. }
  1068. }
  1069. },
  1070. "branch-alias": {
  1071. "dev-master": "0.x-dev"
  1072. }
  1073. },
  1074. "autoload": {
  1075. "psr-4": {
  1076. "Consolidation\\SiteProcess\\": "src"
  1077. }
  1078. },
  1079. "notification-url": "https://packagist.org/downloads/",
  1080. "license": [
  1081. "MIT"
  1082. ],
  1083. "authors": [
  1084. {
  1085. "name": "Greg Anderson",
  1086. "email": "greg.1.anderson@greenknowe.org"
  1087. },
  1088. {
  1089. "name": "Moshe Weitzman",
  1090. "email": "weitzman@tejasa.com"
  1091. }
  1092. ],
  1093. "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.",
  1094. "time": "2019-09-10T17:56:24+00:00"
  1095. },
  1096. {
  1097. "name": "container-interop/container-interop",
  1098. "version": "1.2.0",
  1099. "source": {
  1100. "type": "git",
  1101. "url": "https://github.com/container-interop/container-interop.git",
  1102. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8"
  1103. },
  1104. "dist": {
  1105. "type": "zip",
  1106. "url": "https://api.github.com/repos/container-interop/container-interop/zipball/79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1107. "reference": "79cbf1341c22ec75643d841642dd5d6acd83bdb8",
  1108. "shasum": ""
  1109. },
  1110. "require": {
  1111. "psr/container": "^1.0"
  1112. },
  1113. "type": "library",
  1114. "autoload": {
  1115. "psr-4": {
  1116. "Interop\\Container\\": "src/Interop/Container/"
  1117. }
  1118. },
  1119. "notification-url": "https://packagist.org/downloads/",
  1120. "license": [
  1121. "MIT"
  1122. ],
  1123. "description": "Promoting the interoperability of container objects (DIC, SL, etc.)",
  1124. "homepage": "https://github.com/container-interop/container-interop",
  1125. "abandoned": "psr/container",
  1126. "time": "2017-02-14T19:40:03+00:00"
  1127. },
  1128. {
  1129. "name": "cweagans/composer-patches",
  1130. "version": "1.6.7",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/cweagans/composer-patches.git",
  1134. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1139. "reference": "2e6f72a2ad8d59cd7e2b729f218bf42adb14f590",
  1140. "shasum": ""
  1141. },
  1142. "require": {
  1143. "composer-plugin-api": "^1.0",
  1144. "php": ">=5.3.0"
  1145. },
  1146. "require-dev": {
  1147. "composer/composer": "~1.0",
  1148. "phpunit/phpunit": "~4.6"
  1149. },
  1150. "type": "composer-plugin",
  1151. "extra": {
  1152. "class": "cweagans\\Composer\\Patches"
  1153. },
  1154. "autoload": {
  1155. "psr-4": {
  1156. "cweagans\\Composer\\": "src"
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "BSD-3-Clause"
  1162. ],
  1163. "authors": [
  1164. {
  1165. "name": "Cameron Eagans",
  1166. "email": "me@cweagans.net"
  1167. }
  1168. ],
  1169. "description": "Provides a way to patch Composer packages.",
  1170. "time": "2019-08-29T20:11:49+00:00"
  1171. },
  1172. {
  1173. "name": "dflydev/dot-access-data",
  1174. "version": "v1.1.0",
  1175. "source": {
  1176. "type": "git",
  1177. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1178. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1179. },
  1180. "dist": {
  1181. "type": "zip",
  1182. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1183. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1184. "shasum": ""
  1185. },
  1186. "require": {
  1187. "php": ">=5.3.2"
  1188. },
  1189. "type": "library",
  1190. "extra": {
  1191. "branch-alias": {
  1192. "dev-master": "1.0-dev"
  1193. }
  1194. },
  1195. "autoload": {
  1196. "psr-0": {
  1197. "Dflydev\\DotAccessData": "src"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "MIT"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Dragonfly Development Inc.",
  1207. "email": "info@dflydev.com",
  1208. "homepage": "http://dflydev.com"
  1209. },
  1210. {
  1211. "name": "Beau Simensen",
  1212. "email": "beau@dflydev.com",
  1213. "homepage": "http://beausimensen.com"
  1214. },
  1215. {
  1216. "name": "Carlos Frutos",
  1217. "email": "carlos@kiwing.it",
  1218. "homepage": "https://github.com/cfrutos"
  1219. }
  1220. ],
  1221. "description": "Given a deep data structure, access data by dot notation.",
  1222. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1223. "keywords": [
  1224. "access",
  1225. "data",
  1226. "dot",
  1227. "notation"
  1228. ],
  1229. "time": "2017-01-20T21:14:22+00:00"
  1230. },
  1231. {
  1232. "name": "dnoegel/php-xdg-base-dir",
  1233. "version": "v0.1.1",
  1234. "source": {
  1235. "type": "git",
  1236. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1237. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1238. },
  1239. "dist": {
  1240. "type": "zip",
  1241. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1242. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1243. "shasum": ""
  1244. },
  1245. "require": {
  1246. "php": ">=5.3.2"
  1247. },
  1248. "require-dev": {
  1249. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1250. },
  1251. "type": "library",
  1252. "autoload": {
  1253. "psr-4": {
  1254. "XdgBaseDir\\": "src/"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "description": "implementation of xdg base directory specification for php",
  1262. "time": "2019-12-04T15:06:13+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/annotations",
  1266. "version": "v1.4.0",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/annotations.git",
  1270. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1275. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "doctrine/lexer": "1.*",
  1280. "php": "^5.6 || ^7.0"
  1281. },
  1282. "require-dev": {
  1283. "doctrine/cache": "1.*",
  1284. "phpunit/phpunit": "^5.7"
  1285. },
  1286. "type": "library",
  1287. "extra": {
  1288. "branch-alias": {
  1289. "dev-master": "1.4.x-dev"
  1290. }
  1291. },
  1292. "autoload": {
  1293. "psr-4": {
  1294. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Roman Borschel",
  1304. "email": "roman@code-factory.org"
  1305. },
  1306. {
  1307. "name": "Benjamin Eberlei",
  1308. "email": "kontakt@beberlei.de"
  1309. },
  1310. {
  1311. "name": "Guilherme Blanco",
  1312. "email": "guilhermeblanco@gmail.com"
  1313. },
  1314. {
  1315. "name": "Jonathan Wage",
  1316. "email": "jonwage@gmail.com"
  1317. },
  1318. {
  1319. "name": "Johannes Schmitt",
  1320. "email": "schmittjoh@gmail.com"
  1321. }
  1322. ],
  1323. "description": "Docblock Annotations Parser",
  1324. "homepage": "http://www.doctrine-project.org",
  1325. "keywords": [
  1326. "annotations",
  1327. "docblock",
  1328. "parser"
  1329. ],
  1330. "time": "2017-02-24T16:22:25+00:00"
  1331. },
  1332. {
  1333. "name": "doctrine/cache",
  1334. "version": "v1.6.2",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/doctrine/cache.git",
  1338. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1343. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1344. "shasum": ""
  1345. },
  1346. "require": {
  1347. "php": "~5.5|~7.0"
  1348. },
  1349. "conflict": {
  1350. "doctrine/common": ">2.2,<2.4"
  1351. },
  1352. "require-dev": {
  1353. "phpunit/phpunit": "~4.8|~5.0",
  1354. "predis/predis": "~1.0",
  1355. "satooshi/php-coveralls": "~0.6"
  1356. },
  1357. "type": "library",
  1358. "extra": {
  1359. "branch-alias": {
  1360. "dev-master": "1.6.x-dev"
  1361. }
  1362. },
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "authors": [
  1373. {
  1374. "name": "Roman Borschel",
  1375. "email": "roman@code-factory.org"
  1376. },
  1377. {
  1378. "name": "Benjamin Eberlei",
  1379. "email": "kontakt@beberlei.de"
  1380. },
  1381. {
  1382. "name": "Guilherme Blanco",
  1383. "email": "guilhermeblanco@gmail.com"
  1384. },
  1385. {
  1386. "name": "Jonathan Wage",
  1387. "email": "jonwage@gmail.com"
  1388. },
  1389. {
  1390. "name": "Johannes Schmitt",
  1391. "email": "schmittjoh@gmail.com"
  1392. }
  1393. ],
  1394. "description": "Caching library offering an object-oriented API for many cache backends",
  1395. "homepage": "http://www.doctrine-project.org",
  1396. "keywords": [
  1397. "cache",
  1398. "caching"
  1399. ],
  1400. "time": "2017-07-22T12:49:21+00:00"
  1401. },
  1402. {
  1403. "name": "doctrine/collections",
  1404. "version": "v1.4.0",
  1405. "source": {
  1406. "type": "git",
  1407. "url": "https://github.com/doctrine/collections.git",
  1408. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1409. },
  1410. "dist": {
  1411. "type": "zip",
  1412. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1413. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1414. "shasum": ""
  1415. },
  1416. "require": {
  1417. "php": "^5.6 || ^7.0"
  1418. },
  1419. "require-dev": {
  1420. "doctrine/coding-standard": "~0.1@dev",
  1421. "phpunit/phpunit": "^5.7"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "1.3.x-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-0": {
  1431. "Doctrine\\Common\\Collections\\": "lib/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Roman Borschel",
  1441. "email": "roman@code-factory.org"
  1442. },
  1443. {
  1444. "name": "Benjamin Eberlei",
  1445. "email": "kontakt@beberlei.de"
  1446. },
  1447. {
  1448. "name": "Guilherme Blanco",
  1449. "email": "guilhermeblanco@gmail.com"
  1450. },
  1451. {
  1452. "name": "Jonathan Wage",
  1453. "email": "jonwage@gmail.com"
  1454. },
  1455. {
  1456. "name": "Johannes Schmitt",
  1457. "email": "schmittjoh@gmail.com"
  1458. }
  1459. ],
  1460. "description": "Collections Abstraction library",
  1461. "homepage": "http://www.doctrine-project.org",
  1462. "keywords": [
  1463. "array",
  1464. "collections",
  1465. "iterator"
  1466. ],
  1467. "time": "2017-01-03T10:49:41+00:00"
  1468. },
  1469. {
  1470. "name": "doctrine/common",
  1471. "version": "v2.7.3",
  1472. "source": {
  1473. "type": "git",
  1474. "url": "https://github.com/doctrine/common.git",
  1475. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1476. },
  1477. "dist": {
  1478. "type": "zip",
  1479. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1480. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1481. "shasum": ""
  1482. },
  1483. "require": {
  1484. "doctrine/annotations": "1.*",
  1485. "doctrine/cache": "1.*",
  1486. "doctrine/collections": "1.*",
  1487. "doctrine/inflector": "1.*",
  1488. "doctrine/lexer": "1.*",
  1489. "php": "~5.6|~7.0"
  1490. },
  1491. "require-dev": {
  1492. "phpunit/phpunit": "^5.4.6"
  1493. },
  1494. "type": "library",
  1495. "extra": {
  1496. "branch-alias": {
  1497. "dev-master": "2.7.x-dev"
  1498. }
  1499. },
  1500. "autoload": {
  1501. "psr-4": {
  1502. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1503. }
  1504. },
  1505. "notification-url": "https://packagist.org/downloads/",
  1506. "license": [
  1507. "MIT"
  1508. ],
  1509. "authors": [
  1510. {
  1511. "name": "Roman Borschel",
  1512. "email": "roman@code-factory.org"
  1513. },
  1514. {
  1515. "name": "Benjamin Eberlei",
  1516. "email": "kontakt@beberlei.de"
  1517. },
  1518. {
  1519. "name": "Guilherme Blanco",
  1520. "email": "guilhermeblanco@gmail.com"
  1521. },
  1522. {
  1523. "name": "Jonathan Wage",
  1524. "email": "jonwage@gmail.com"
  1525. },
  1526. {
  1527. "name": "Johannes Schmitt",
  1528. "email": "schmittjoh@gmail.com"
  1529. }
  1530. ],
  1531. "description": "Common Library for Doctrine projects",
  1532. "homepage": "http://www.doctrine-project.org",
  1533. "keywords": [
  1534. "annotations",
  1535. "collections",
  1536. "eventmanager",
  1537. "persistence",
  1538. "spl"
  1539. ],
  1540. "time": "2017-07-22T08:35:12+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/inflector",
  1544. "version": "v1.2.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/inflector.git",
  1548. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1553. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "php": "^7.0"
  1558. },
  1559. "require-dev": {
  1560. "phpunit/phpunit": "^6.2"
  1561. },
  1562. "type": "library",
  1563. "extra": {
  1564. "branch-alias": {
  1565. "dev-master": "1.2.x-dev"
  1566. }
  1567. },
  1568. "autoload": {
  1569. "psr-4": {
  1570. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Roman Borschel",
  1580. "email": "roman@code-factory.org"
  1581. },
  1582. {
  1583. "name": "Benjamin Eberlei",
  1584. "email": "kontakt@beberlei.de"
  1585. },
  1586. {
  1587. "name": "Guilherme Blanco",
  1588. "email": "guilhermeblanco@gmail.com"
  1589. },
  1590. {
  1591. "name": "Jonathan Wage",
  1592. "email": "jonwage@gmail.com"
  1593. },
  1594. {
  1595. "name": "Johannes Schmitt",
  1596. "email": "schmittjoh@gmail.com"
  1597. }
  1598. ],
  1599. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1600. "homepage": "http://www.doctrine-project.org",
  1601. "keywords": [
  1602. "inflection",
  1603. "pluralize",
  1604. "singularize",
  1605. "string"
  1606. ],
  1607. "time": "2017-07-22T12:18:28+00:00"
  1608. },
  1609. {
  1610. "name": "doctrine/lexer",
  1611. "version": "1.0.2",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/doctrine/lexer.git",
  1615. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1620. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "php": ">=5.3.2"
  1625. },
  1626. "require-dev": {
  1627. "phpunit/phpunit": "^4.5"
  1628. },
  1629. "type": "library",
  1630. "extra": {
  1631. "branch-alias": {
  1632. "dev-master": "1.0.x-dev"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "psr-4": {
  1637. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "MIT"
  1643. ],
  1644. "authors": [
  1645. {
  1646. "name": "Roman Borschel",
  1647. "email": "roman@code-factory.org"
  1648. },
  1649. {
  1650. "name": "Guilherme Blanco",
  1651. "email": "guilhermeblanco@gmail.com"
  1652. },
  1653. {
  1654. "name": "Johannes Schmitt",
  1655. "email": "schmittjoh@gmail.com"
  1656. }
  1657. ],
  1658. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1659. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1660. "keywords": [
  1661. "annotations",
  1662. "docblock",
  1663. "lexer",
  1664. "parser",
  1665. "php"
  1666. ],
  1667. "time": "2019-06-08T11:03:04+00:00"
  1668. },
  1669. {
  1670. "name": "drupal/address",
  1671. "version": "1.8.0",
  1672. "source": {
  1673. "type": "git",
  1674. "url": "https://git.drupalcode.org/project/address.git",
  1675. "reference": "8.x-1.8"
  1676. },
  1677. "dist": {
  1678. "type": "zip",
  1679. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.8.zip",
  1680. "reference": "8.x-1.8",
  1681. "shasum": "ded73be392ba9257fca9289719757928a8826275"
  1682. },
  1683. "require": {
  1684. "commerceguys/addressing": "^1.0.7",
  1685. "drupal/core": "^8.7.7 || ^9"
  1686. },
  1687. "require-dev": {
  1688. "drupal/token": "^1.0"
  1689. },
  1690. "type": "drupal-module",
  1691. "extra": {
  1692. "drupal": {
  1693. "version": "8.x-1.8",
  1694. "datestamp": "1583988119",
  1695. "security-coverage": {
  1696. "status": "covered",
  1697. "message": "Covered by Drupal's security advisory policy"
  1698. }
  1699. }
  1700. },
  1701. "notification-url": "https://packages.drupal.org/8/downloads",
  1702. "license": [
  1703. "GPL-2.0+"
  1704. ],
  1705. "authors": [
  1706. {
  1707. "name": "bojanz",
  1708. "homepage": "https://www.drupal.org/user/86106"
  1709. },
  1710. {
  1711. "name": "dww",
  1712. "homepage": "https://www.drupal.org/user/46549"
  1713. },
  1714. {
  1715. "name": "googletorp",
  1716. "homepage": "https://www.drupal.org/user/386230"
  1717. },
  1718. {
  1719. "name": "jsacksick",
  1720. "homepage": "https://www.drupal.org/user/972218"
  1721. },
  1722. {
  1723. "name": "mglaman",
  1724. "homepage": "https://www.drupal.org/user/2416470"
  1725. },
  1726. {
  1727. "name": "rszrama",
  1728. "homepage": "https://www.drupal.org/user/49344"
  1729. }
  1730. ],
  1731. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1732. "homepage": "http://drupal.org/project/address",
  1733. "support": {
  1734. "source": "https://git.drupalcode.org/project/address"
  1735. }
  1736. },
  1737. {
  1738. "name": "drupal/audiofield",
  1739. "version": "1.9.0",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://git.drupalcode.org/project/audiofield.git",
  1743. "reference": "8.x-1.9"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.9.zip",
  1748. "reference": "8.x-1.9",
  1749. "shasum": "ddb2ca8dd5125a2bd0104e0001037c6fa2716682"
  1750. },
  1751. "require": {
  1752. "drupal/core": "~8.0"
  1753. },
  1754. "type": "drupal-module",
  1755. "extra": {
  1756. "drupal": {
  1757. "version": "8.x-1.9",
  1758. "datestamp": "1553712781",
  1759. "security-coverage": {
  1760. "status": "covered",
  1761. "message": "Covered by Drupal's security advisory policy"
  1762. }
  1763. },
  1764. "drush": {
  1765. "services": {
  1766. "drush.services.yml": "^9"
  1767. }
  1768. }
  1769. },
  1770. "notification-url": "https://packages.drupal.org/8/downloads",
  1771. "license": [
  1772. "GPL-2.0+"
  1773. ],
  1774. "authors": [
  1775. {
  1776. "name": "Daniel Moberly",
  1777. "homepage": "https://www.drupal.org/u/danielmoberly",
  1778. "role": "Maintainer"
  1779. },
  1780. {
  1781. "name": "josipsaric",
  1782. "homepage": "https://www.drupal.org/user/3063287"
  1783. },
  1784. {
  1785. "name": "tamerzg",
  1786. "homepage": "https://www.drupal.org/user/464564"
  1787. }
  1788. ],
  1789. "description": "AudioField Module",
  1790. "homepage": "https://www.drupal.org/project/audiofield",
  1791. "support": {
  1792. "source": "https://git.drupalcode.org/project/audiofield",
  1793. "issues": "https://www.drupal.org/project/issues/audiofield"
  1794. }
  1795. },
  1796. {
  1797. "name": "drupal/backup_migrate",
  1798. "version": "4.1.0",
  1799. "source": {
  1800. "type": "git",
  1801. "url": "https://git.drupalcode.org/project/backup_migrate.git",
  1802. "reference": "8.x-4.1"
  1803. },
  1804. "dist": {
  1805. "type": "zip",
  1806. "url": "https://ftp.drupal.org/files/projects/backup_migrate-8.x-4.1.zip",
  1807. "reference": "8.x-4.1",
  1808. "shasum": "5ee3b9a1131e6dd1ad4bc65cdef8248c7784dc51"
  1809. },
  1810. "require": {
  1811. "drupal/core": "~8.0"
  1812. },
  1813. "type": "drupal-module",
  1814. "extra": {
  1815. "drupal": {
  1816. "version": "8.x-4.1",
  1817. "datestamp": "1576877587",
  1818. "security-coverage": {
  1819. "status": "covered",
  1820. "message": "Covered by Drupal's security advisory policy"
  1821. }
  1822. }
  1823. },
  1824. "notification-url": "https://packages.drupal.org/8/downloads",
  1825. "license": [
  1826. "GPL-2.0+"
  1827. ],
  1828. "authors": [
  1829. {
  1830. "name": "Ronan Dowling",
  1831. "homepage": "https://www.drupal.org/u/ronan",
  1832. "role": "Maintainer"
  1833. },
  1834. {
  1835. "name": "Alex Andrascu",
  1836. "homepage": "https://www.drupal.org/u/alex-andrascu",
  1837. "role": "Maintainer"
  1838. },
  1839. {
  1840. "name": "dgorton",
  1841. "homepage": "https://www.drupal.org/user/19044"
  1842. },
  1843. {
  1844. "name": "ikit-claw",
  1845. "homepage": "https://www.drupal.org/user/3285813"
  1846. },
  1847. {
  1848. "name": "ronan",
  1849. "homepage": "https://www.drupal.org/user/72815"
  1850. }
  1851. ],
  1852. "description": "Backup and Migrate Drupal Module",
  1853. "homepage": "https://www.drupal.org/project/backup_migrate",
  1854. "support": {
  1855. "source": "http://cgit.drupalcode.org/backup_migrate",
  1856. "issues": "https://www.drupal.org/project/issues/backup_migrate",
  1857. "slack": "https://drupal.slack.com/messages/C7C4M4QJV/details/"
  1858. }
  1859. },
  1860. {
  1861. "name": "drupal/charts",
  1862. "version": "3.2.0",
  1863. "source": {
  1864. "type": "git",
  1865. "url": "https://git.drupalcode.org/project/charts.git",
  1866. "reference": "8.x-3.2"
  1867. },
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://ftp.drupal.org/files/projects/charts-8.x-3.2.zip",
  1871. "reference": "8.x-3.2",
  1872. "shasum": "7caf427ce981962036f8335e94f41fc88f36db72"
  1873. },
  1874. "require": {
  1875. "drupal/core": "^8 || ^9"
  1876. },
  1877. "type": "drupal-module",
  1878. "extra": {
  1879. "drupal": {
  1880. "version": "8.x-3.2",
  1881. "datestamp": "1588134278",
  1882. "security-coverage": {
  1883. "status": "covered",
  1884. "message": "Covered by Drupal's security advisory policy"
  1885. }
  1886. }
  1887. },
  1888. "notification-url": "https://packages.drupal.org/8/downloads",
  1889. "license": [
  1890. "GPL-2.0-or-later"
  1891. ],
  1892. "authors": [
  1893. {
  1894. "name": "Pierre.Vriens",
  1895. "homepage": "https://www.drupal.org/user/1689304"
  1896. },
  1897. {
  1898. "name": "andileco",
  1899. "homepage": "https://www.drupal.org/user/2054544"
  1900. },
  1901. {
  1902. "name": "brmassa",
  1903. "homepage": "https://www.drupal.org/user/67164"
  1904. },
  1905. {
  1906. "name": "kenorb",
  1907. "homepage": "https://www.drupal.org/user/191974"
  1908. },
  1909. {
  1910. "name": "quicksketch",
  1911. "homepage": "https://www.drupal.org/user/35821"
  1912. },
  1913. {
  1914. "name": "rashad612",
  1915. "homepage": "https://www.drupal.org/user/319686"
  1916. }
  1917. ],
  1918. "description": "A charting API for Drupal that provides chart elements and integration with Views.",
  1919. "homepage": "https://www.drupal.org/project/charts",
  1920. "support": {
  1921. "source": "https://git.drupalcode.org/project/charts"
  1922. }
  1923. },
  1924. {
  1925. "name": "drupal/core",
  1926. "version": "8.9.2",
  1927. "source": {
  1928. "type": "git",
  1929. "url": "https://github.com/drupal/core.git",
  1930. "reference": "8f0e24555c093669ce41edbb30637fe19df16802"
  1931. },
  1932. "dist": {
  1933. "type": "zip",
  1934. "url": "https://api.github.com/repos/drupal/core/zipball/8f0e24555c093669ce41edbb30637fe19df16802",
  1935. "reference": "8f0e24555c093669ce41edbb30637fe19df16802",
  1936. "shasum": ""
  1937. },
  1938. "require": {
  1939. "asm89/stack-cors": "^1.1",
  1940. "composer/semver": "^1.0",
  1941. "doctrine/annotations": "^1.4",
  1942. "doctrine/common": "^2.7",
  1943. "easyrdf/easyrdf": "^0.9",
  1944. "egulias/email-validator": "^2.0",
  1945. "ext-date": "*",
  1946. "ext-dom": "*",
  1947. "ext-filter": "*",
  1948. "ext-gd": "*",
  1949. "ext-hash": "*",
  1950. "ext-json": "*",
  1951. "ext-pcre": "*",
  1952. "ext-pdo": "*",
  1953. "ext-session": "*",
  1954. "ext-simplexml": "*",
  1955. "ext-spl": "*",
  1956. "ext-tokenizer": "*",
  1957. "ext-xml": "*",
  1958. "guzzlehttp/guzzle": "^6.3",
  1959. "laminas/laminas-diactoros": "^1.8",
  1960. "laminas/laminas-feed": "^2.12",
  1961. "masterminds/html5": "^2.1",
  1962. "pear/archive_tar": "^1.4.9",
  1963. "php": ">=7.0.8",
  1964. "psr/log": "^1.0",
  1965. "stack/builder": "^1.0",
  1966. "symfony-cmf/routing": "^1.4",
  1967. "symfony/class-loader": "~3.4.0",
  1968. "symfony/console": "~3.4.0",
  1969. "symfony/dependency-injection": "~3.4.26",
  1970. "symfony/event-dispatcher": "~3.4.0",
  1971. "symfony/http-foundation": "~3.4.35",
  1972. "symfony/http-kernel": "~3.4.14",
  1973. "symfony/polyfill-iconv": "^1.0",
  1974. "symfony/process": "~3.4.0",
  1975. "symfony/psr-http-message-bridge": "^1.1.2",
  1976. "symfony/routing": "~3.4.0",
  1977. "symfony/serializer": "~3.4.0",
  1978. "symfony/translation": "~3.4.0",
  1979. "symfony/validator": "~3.4.0",
  1980. "symfony/yaml": "~3.4.5",
  1981. "twig/twig": "^1.38.2",
  1982. "typo3/phar-stream-wrapper": "^3.1.3"
  1983. },
  1984. "conflict": {
  1985. "drupal/pathauto": "<1.6",
  1986. "drush/drush": "<8.1.10"
  1987. },
  1988. "replace": {
  1989. "drupal/action": "self.version",
  1990. "drupal/aggregator": "self.version",
  1991. "drupal/automated_cron": "self.version",
  1992. "drupal/ban": "self.version",
  1993. "drupal/bartik": "self.version",
  1994. "drupal/basic_auth": "self.version",
  1995. "drupal/big_pipe": "self.version",
  1996. "drupal/block": "self.version",
  1997. "drupal/block_content": "self.version",
  1998. "drupal/block_place": "self.version",
  1999. "drupal/book": "self.version",
  2000. "drupal/breakpoint": "self.version",
  2001. "drupal/ckeditor": "self.version",
  2002. "drupal/claro": "self.version",
  2003. "drupal/classy": "self.version",
  2004. "drupal/color": "self.version",
  2005. "drupal/comment": "self.version",
  2006. "drupal/config": "self.version",
  2007. "drupal/config_translation": "self.version",
  2008. "drupal/contact": "self.version",
  2009. "drupal/content_moderation": "self.version",
  2010. "drupal/content_translation": "self.version",
  2011. "drupal/contextual": "self.version",
  2012. "drupal/core-annotation": "self.version",
  2013. "drupal/core-assertion": "self.version",
  2014. "drupal/core-bridge": "self.version",
  2015. "drupal/core-class-finder": "self.version",
  2016. "drupal/core-datetime": "self.version",
  2017. "drupal/core-dependency-injection": "self.version",
  2018. "drupal/core-diff": "self.version",
  2019. "drupal/core-discovery": "self.version",
  2020. "drupal/core-event-dispatcher": "self.version",
  2021. "drupal/core-file-cache": "self.version",
  2022. "drupal/core-file-security": "self.version",
  2023. "drupal/core-filesystem": "self.version",
  2024. "drupal/core-gettext": "self.version",
  2025. "drupal/core-graph": "self.version",
  2026. "drupal/core-http-foundation": "self.version",
  2027. "drupal/core-php-storage": "self.version",
  2028. "drupal/core-plugin": "self.version",
  2029. "drupal/core-proxy-builder": "self.version",
  2030. "drupal/core-render": "self.version",
  2031. "drupal/core-serialization": "self.version",
  2032. "drupal/core-transliteration": "self.version",
  2033. "drupal/core-utility": "self.version",
  2034. "drupal/core-uuid": "self.version",
  2035. "drupal/core-version": "self.version",
  2036. "drupal/datetime": "self.version",
  2037. "drupal/datetime_range": "self.version",
  2038. "drupal/dblog": "self.version",
  2039. "drupal/dynamic_page_cache": "self.version",
  2040. "drupal/editor": "self.version",
  2041. "drupal/entity_reference": "self.version",
  2042. "drupal/field": "self.version",
  2043. "drupal/field_layout": "self.version",
  2044. "drupal/field_ui": "self.version",
  2045. "drupal/file": "self.version",
  2046. "drupal/filter": "self.version",
  2047. "drupal/forum": "self.version",
  2048. "drupal/hal": "self.version",
  2049. "drupal/help": "self.version",
  2050. "drupal/help_topics": "self.version",
  2051. "drupal/history": "self.version",
  2052. "drupal/image": "self.version",
  2053. "drupal/inline_form_errors": "self.version",
  2054. "drupal/jsonapi": "self.version",
  2055. "drupal/language": "self.version",
  2056. "drupal/layout_builder": "self.version",
  2057. "drupal/layout_discovery": "self.version",
  2058. "drupal/link": "self.version",
  2059. "drupal/locale": "self.version",
  2060. "drupal/media": "self.version",
  2061. "drupal/media_library": "self.version",
  2062. "drupal/menu_link_content": "self.version",
  2063. "drupal/menu_ui": "self.version",
  2064. "drupal/migrate": "self.version",
  2065. "drupal/migrate_drupal": "self.version",
  2066. "drupal/migrate_drupal_multilingual": "self.version",
  2067. "drupal/migrate_drupal_ui": "self.version",
  2068. "drupal/minimal": "self.version",
  2069. "drupal/node": "self.version",
  2070. "drupal/options": "self.version",
  2071. "drupal/page_cache": "self.version",
  2072. "drupal/path": "self.version",
  2073. "drupal/path_alias": "self.version",
  2074. "drupal/quickedit": "self.version",
  2075. "drupal/rdf": "self.version",
  2076. "drupal/responsive_image": "self.version",
  2077. "drupal/rest": "self.version",
  2078. "drupal/search": "self.version",
  2079. "drupal/serialization": "self.version",
  2080. "drupal/settings_tray": "self.version",
  2081. "drupal/seven": "self.version",
  2082. "drupal/shortcut": "self.version",
  2083. "drupal/simpletest": "self.version",
  2084. "drupal/standard": "self.version",
  2085. "drupal/stark": "self.version",
  2086. "drupal/statistics": "self.version",
  2087. "drupal/syslog": "self.version",
  2088. "drupal/system": "self.version",
  2089. "drupal/taxonomy": "self.version",
  2090. "drupal/telephone": "self.version",
  2091. "drupal/text": "self.version",
  2092. "drupal/toolbar": "self.version",
  2093. "drupal/tour": "self.version",
  2094. "drupal/tracker": "self.version",
  2095. "drupal/update": "self.version",
  2096. "drupal/user": "self.version",
  2097. "drupal/views": "self.version",
  2098. "drupal/views_ui": "self.version",
  2099. "drupal/workflows": "self.version",
  2100. "drupal/workspaces": "self.version"
  2101. },
  2102. "type": "drupal-core",
  2103. "extra": {
  2104. "drupal-scaffold": {
  2105. "file-mapping": {
  2106. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2107. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2108. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2109. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2110. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2111. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2112. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2113. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2114. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2115. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2116. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2117. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2118. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2119. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2120. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2121. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2122. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2123. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2124. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2125. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2126. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2127. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2128. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2129. }
  2130. }
  2131. },
  2132. "autoload": {
  2133. "psr-4": {
  2134. "Drupal\\Core\\": "lib/Drupal/Core",
  2135. "Drupal\\Component\\": "lib/Drupal/Component",
  2136. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver"
  2137. },
  2138. "classmap": [
  2139. "lib/Drupal.php",
  2140. "lib/Drupal/Component/Utility/Timer.php",
  2141. "lib/Drupal/Component/Utility/Unicode.php",
  2142. "lib/Drupal/Core/Database/Database.php",
  2143. "lib/Drupal/Core/DrupalKernel.php",
  2144. "lib/Drupal/Core/DrupalKernelInterface.php",
  2145. "lib/Drupal/Core/Site/Settings.php"
  2146. ]
  2147. },
  2148. "notification-url": "https://packagist.org/downloads/",
  2149. "license": [
  2150. "GPL-2.0-or-later"
  2151. ],
  2152. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2153. "time": "2020-07-08T18:53:45+00:00"
  2154. },
  2155. {
  2156. "name": "drupal/core-composer-scaffold",
  2157. "version": "8.9.2",
  2158. "source": {
  2159. "type": "git",
  2160. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2161. "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece"
  2162. },
  2163. "dist": {
  2164. "type": "zip",
  2165. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece",
  2166. "reference": "07cdfe2799789fc0c2d0e3e1ba64cb5e2a973ece",
  2167. "shasum": ""
  2168. },
  2169. "require": {
  2170. "composer-plugin-api": "^1 || ^2",
  2171. "php": ">=7.0.8"
  2172. },
  2173. "conflict": {
  2174. "drupal-composer/drupal-scaffold": "*"
  2175. },
  2176. "require-dev": {
  2177. "composer/composer": "^1.8@stable"
  2178. },
  2179. "type": "composer-plugin",
  2180. "extra": {
  2181. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2182. "branch-alias": {
  2183. "dev-master": "1.0.x-dev"
  2184. }
  2185. },
  2186. "autoload": {
  2187. "psr-4": {
  2188. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2189. }
  2190. },
  2191. "notification-url": "https://packagist.org/downloads/",
  2192. "license": [
  2193. "GPL-2.0-or-later"
  2194. ],
  2195. "description": "A flexible Composer project scaffold builder.",
  2196. "homepage": "https://www.drupal.org/project/drupal",
  2197. "keywords": [
  2198. "drupal"
  2199. ],
  2200. "time": "2020-05-29T11:36:27+00:00"
  2201. },
  2202. {
  2203. "name": "drupal/core-recommended",
  2204. "version": "8.9.2",
  2205. "source": {
  2206. "type": "git",
  2207. "url": "https://github.com/drupal/core-recommended.git",
  2208. "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6"
  2209. },
  2210. "dist": {
  2211. "type": "zip",
  2212. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/8301ff766f17ce8a9eb36d3ffd183cbfff01dad6",
  2213. "reference": "8301ff766f17ce8a9eb36d3ffd183cbfff01dad6",
  2214. "shasum": ""
  2215. },
  2216. "require": {
  2217. "asm89/stack-cors": "1.3.0",
  2218. "composer/semver": "1.5.1",
  2219. "doctrine/annotations": "v1.4.0",
  2220. "doctrine/cache": "v1.6.2",
  2221. "doctrine/collections": "v1.4.0",
  2222. "doctrine/common": "v2.7.3",
  2223. "doctrine/inflector": "v1.2.0",
  2224. "doctrine/lexer": "1.0.2",
  2225. "drupal/core": "8.9.2",
  2226. "easyrdf/easyrdf": "0.9.1",
  2227. "egulias/email-validator": "2.1.17",
  2228. "guzzlehttp/guzzle": "6.5.4",
  2229. "guzzlehttp/promises": "v1.3.1",
  2230. "guzzlehttp/psr7": "1.6.1",
  2231. "laminas/laminas-diactoros": "1.8.7p2",
  2232. "laminas/laminas-escaper": "2.6.1",
  2233. "laminas/laminas-feed": "2.12.2",
  2234. "laminas/laminas-stdlib": "3.2.1",
  2235. "laminas/laminas-zendframework-bridge": "1.0.4",
  2236. "masterminds/html5": "2.3.0",
  2237. "paragonie/random_compat": "v9.99.99",
  2238. "pear/archive_tar": "1.4.9",
  2239. "pear/console_getopt": "v1.4.3",
  2240. "pear/pear-core-minimal": "v1.10.10",
  2241. "pear/pear_exception": "v1.0.1",
  2242. "psr/container": "1.0.0",
  2243. "psr/http-message": "1.0.1",
  2244. "psr/log": "1.1.3",
  2245. "ralouphie/getallheaders": "3.0.3",
  2246. "stack/builder": "v1.0.5",
  2247. "symfony-cmf/routing": "1.4.1",
  2248. "symfony/class-loader": "v3.4.41",
  2249. "symfony/console": "v3.4.41",
  2250. "symfony/debug": "v3.4.41",
  2251. "symfony/dependency-injection": "v3.4.41",
  2252. "symfony/event-dispatcher": "v3.4.41",
  2253. "symfony/http-foundation": "v3.4.41",
  2254. "symfony/http-kernel": "v3.4.41",
  2255. "symfony/polyfill-ctype": "v1.17.0",
  2256. "symfony/polyfill-iconv": "v1.17.0",
  2257. "symfony/polyfill-intl-idn": "v1.17.0",
  2258. "symfony/polyfill-mbstring": "v1.17.0",
  2259. "symfony/polyfill-php56": "v1.17.0",
  2260. "symfony/polyfill-php70": "v1.17.0",
  2261. "symfony/polyfill-php72": "v1.17.0",
  2262. "symfony/polyfill-util": "v1.17.0",
  2263. "symfony/process": "v3.4.41",
  2264. "symfony/psr-http-message-bridge": "v1.1.2",
  2265. "symfony/routing": "v3.4.41",
  2266. "symfony/serializer": "v3.4.41",
  2267. "symfony/translation": "v3.4.41",
  2268. "symfony/validator": "v3.4.41",
  2269. "symfony/yaml": "v3.4.41",
  2270. "twig/twig": "v1.42.5",
  2271. "typo3/phar-stream-wrapper": "v3.1.4"
  2272. },
  2273. "conflict": {
  2274. "webflo/drupal-core-strict": "*"
  2275. },
  2276. "type": "metapackage",
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "GPL-2.0-or-later"
  2280. ],
  2281. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2282. "time": "2020-07-08T18:53:45+00:00"
  2283. },
  2284. {
  2285. "name": "drupal/ctools",
  2286. "version": "3.4.0",
  2287. "source": {
  2288. "type": "git",
  2289. "url": "https://git.drupalcode.org/project/ctools.git",
  2290. "reference": "8.x-3.4"
  2291. },
  2292. "dist": {
  2293. "type": "zip",
  2294. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2295. "reference": "8.x-3.4",
  2296. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2297. },
  2298. "require": {
  2299. "drupal/core": "^8.7.7 || ^9"
  2300. },
  2301. "type": "drupal-module",
  2302. "extra": {
  2303. "drupal": {
  2304. "version": "8.x-3.4",
  2305. "datestamp": "1585763383",
  2306. "security-coverage": {
  2307. "status": "covered",
  2308. "message": "Covered by Drupal's security advisory policy"
  2309. }
  2310. }
  2311. },
  2312. "notification-url": "https://packages.drupal.org/8/downloads",
  2313. "license": [
  2314. "GPL-2.0+"
  2315. ],
  2316. "authors": [
  2317. {
  2318. "name": "Kris Vanderwater (EclipseGc)",
  2319. "homepage": "https://www.drupal.org/u/eclipsegc",
  2320. "role": "Maintainer"
  2321. },
  2322. {
  2323. "name": "Jakob Perry (japerry)",
  2324. "homepage": "https://www.drupal.org/u/japerry",
  2325. "role": "Maintainer"
  2326. },
  2327. {
  2328. "name": "Tim Plunkett (tim.plunkett)",
  2329. "homepage": "https://www.drupal.org/u/timplunkett",
  2330. "role": "Maintainer"
  2331. },
  2332. {
  2333. "name": "James Gilliland (neclimdul)",
  2334. "homepage": "https://www.drupal.org/u/neclimdul",
  2335. "role": "Maintainer"
  2336. },
  2337. {
  2338. "name": "Daniel Wehner (dawehner)",
  2339. "homepage": "https://www.drupal.org/u/dawehner",
  2340. "role": "Maintainer"
  2341. },
  2342. {
  2343. "name": "joelpittet",
  2344. "homepage": "https://www.drupal.org/user/160302"
  2345. },
  2346. {
  2347. "name": "merlinofchaos",
  2348. "homepage": "https://www.drupal.org/user/26979"
  2349. },
  2350. {
  2351. "name": "neclimdul",
  2352. "homepage": "https://www.drupal.org/user/48673"
  2353. },
  2354. {
  2355. "name": "sdboyer",
  2356. "homepage": "https://www.drupal.org/user/146719"
  2357. },
  2358. {
  2359. "name": "sun",
  2360. "homepage": "https://www.drupal.org/user/54136"
  2361. },
  2362. {
  2363. "name": "tim.plunkett",
  2364. "homepage": "https://www.drupal.org/user/241634"
  2365. }
  2366. ],
  2367. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2368. "homepage": "https://www.drupal.org/project/ctools",
  2369. "support": {
  2370. "source": "https://git.drupalcode.org/project/ctools",
  2371. "issues": "https://www.drupal.org/project/issues/ctools"
  2372. }
  2373. },
  2374. {
  2375. "name": "drupal/drupal-library-installer-plugin",
  2376. "version": "0.3",
  2377. "source": {
  2378. "type": "git",
  2379. "url": "https://github.com/promet/drupal-libraries-installer-plugin.git",
  2380. "reference": "6d4eb744a1f244dfc290976104ecf522466a768b"
  2381. },
  2382. "dist": {
  2383. "type": "zip",
  2384. "url": "https://api.github.com/repos/promet/drupal-libraries-installer-plugin/zipball/6d4eb744a1f244dfc290976104ecf522466a768b",
  2385. "reference": "6d4eb744a1f244dfc290976104ecf522466a768b",
  2386. "shasum": ""
  2387. },
  2388. "require": {
  2389. "composer-plugin-api": "^1.0"
  2390. },
  2391. "type": "composer-plugin",
  2392. "extra": {
  2393. "class": "Drupal\\Composer\\DrupalLibraryInstallerPlugin"
  2394. },
  2395. "autoload": {
  2396. "psr-0": {
  2397. "Drupal\\Composer": "src/"
  2398. }
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "authors": [
  2402. {
  2403. "name": "Allan Chappell",
  2404. "email": "generalredneck@gmail.com"
  2405. }
  2406. ],
  2407. "time": "2015-12-04T21:39:03+00:00"
  2408. },
  2409. {
  2410. "name": "drupal/entity_browser",
  2411. "version": "2.5.0",
  2412. "source": {
  2413. "type": "git",
  2414. "url": "https://git.drupalcode.org/project/entity_browser.git",
  2415. "reference": "8.x-2.5"
  2416. },
  2417. "dist": {
  2418. "type": "zip",
  2419. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.5.zip",
  2420. "reference": "8.x-2.5",
  2421. "shasum": "29456b961f0f90ff064601ab8a382446a8143774"
  2422. },
  2423. "require": {
  2424. "drupal/core": "^8.8 || ^9"
  2425. },
  2426. "require-dev": {
  2427. "drupal/embed": "~1.0",
  2428. "drupal/entity_embed": "1.x-dev",
  2429. "drupal/entity_reference_revisions": "1.x-dev",
  2430. "drupal/entityqueue": "1.x-dev",
  2431. "drupal/inline_entity_form": "1.x-dev",
  2432. "drupal/paragraphs": "1.x-dev",
  2433. "drupal/token": "~1.0"
  2434. },
  2435. "type": "drupal-module",
  2436. "extra": {
  2437. "drupal": {
  2438. "version": "8.x-2.5",
  2439. "datestamp": "1588015429",
  2440. "security-coverage": {
  2441. "status": "covered",
  2442. "message": "Covered by Drupal's security advisory policy"
  2443. }
  2444. }
  2445. },
  2446. "notification-url": "https://packages.drupal.org/8/downloads",
  2447. "license": [
  2448. "GPL-2.0+"
  2449. ],
  2450. "authors": [
  2451. {
  2452. "name": "Janez Urevc",
  2453. "homepage": "https://github.com/slashrsm",
  2454. "role": "Maintainer"
  2455. },
  2456. {
  2457. "name": "Primoz Hmeljak",
  2458. "homepage": "https://github.com/primsi",
  2459. "role": "Maintainer"
  2460. },
  2461. {
  2462. "name": "See other contributors",
  2463. "homepage": "https://www.drupal.org/node/1943336/committers",
  2464. "role": "contributor"
  2465. },
  2466. {
  2467. "name": "Drupal Media Team",
  2468. "homepage": "https://www.drupal.org/user/3260690"
  2469. },
  2470. {
  2471. "name": "Primsi",
  2472. "homepage": "https://www.drupal.org/user/282629"
  2473. },
  2474. {
  2475. "name": "marcingy",
  2476. "homepage": "https://www.drupal.org/user/77320"
  2477. },
  2478. {
  2479. "name": "oknate",
  2480. "homepage": "https://www.drupal.org/user/471638"
  2481. },
  2482. {
  2483. "name": "samuel.mortenson",
  2484. "homepage": "https://www.drupal.org/user/2582268"
  2485. },
  2486. {
  2487. "name": "slashrsm",
  2488. "homepage": "https://www.drupal.org/user/744628"
  2489. }
  2490. ],
  2491. "description": "Entity browsing and selecting component.",
  2492. "homepage": "http://drupal.org/project/entity_browser",
  2493. "support": {
  2494. "source": "https://git.drupalcode.org/project/entity_browser",
  2495. "issues": "https://www.drupal.org/project/issues/entity_browser",
  2496. "irc": "irc://irc.freenode.org/drupal-contribute"
  2497. }
  2498. },
  2499. {
  2500. "name": "drupal/entity_browser_enhanced",
  2501. "version": "1.0.0",
  2502. "source": {
  2503. "type": "git",
  2504. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  2505. "reference": "8.x-1.0"
  2506. },
  2507. "dist": {
  2508. "type": "zip",
  2509. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-8.x-1.0.zip",
  2510. "reference": "8.x-1.0",
  2511. "shasum": "c309e3c3eb65c358fafc577de68f3cbb8c118865"
  2512. },
  2513. "require": {
  2514. "drupal/core": "^8 || ^9",
  2515. "drupal/entity_browser": "~2.0"
  2516. },
  2517. "type": "drupal-module",
  2518. "extra": {
  2519. "drupal": {
  2520. "version": "8.x-1.0",
  2521. "datestamp": "1581940931",
  2522. "security-coverage": {
  2523. "status": "covered",
  2524. "message": "Covered by Drupal's security advisory policy"
  2525. }
  2526. },
  2527. "branch-alias": {
  2528. "dev-8.x-1.x": "8.1.x-dev"
  2529. }
  2530. },
  2531. "notification-url": "https://packages.drupal.org/8/downloads",
  2532. "license": [
  2533. "GPL-2.0-or-later"
  2534. ],
  2535. "authors": [
  2536. {
  2537. "name": "Vardot",
  2538. "homepage": "https://www.drupal.org/vardot",
  2539. "role": "Maintainer"
  2540. },
  2541. {
  2542. "name": "RajabNatshah",
  2543. "homepage": "https://www.drupal.org/user/1414312"
  2544. }
  2545. ],
  2546. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  2547. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  2548. "support": {
  2549. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  2550. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  2551. }
  2552. },
  2553. {
  2554. "name": "drupal/entity_reference_revisions",
  2555. "version": "1.8.0",
  2556. "source": {
  2557. "type": "git",
  2558. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  2559. "reference": "8.x-1.8"
  2560. },
  2561. "dist": {
  2562. "type": "zip",
  2563. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.8.zip",
  2564. "reference": "8.x-1.8",
  2565. "shasum": "c1279e6c683edc2dbccedba8de1505340c8a62b6"
  2566. },
  2567. "require": {
  2568. "drupal/core": "^8.7.7 || ^9"
  2569. },
  2570. "require-dev": {
  2571. "drupal/diff": "1.x-dev"
  2572. },
  2573. "type": "drupal-module",
  2574. "extra": {
  2575. "branch-alias": {
  2576. "dev-1.x": "1.x-dev"
  2577. },
  2578. "drupal": {
  2579. "version": "8.x-1.8",
  2580. "datestamp": "1583961846",
  2581. "security-coverage": {
  2582. "status": "covered",
  2583. "message": "Covered by Drupal's security advisory policy"
  2584. }
  2585. }
  2586. },
  2587. "notification-url": "https://packages.drupal.org/8/downloads",
  2588. "license": [
  2589. "GPL-2.0"
  2590. ],
  2591. "authors": [
  2592. {
  2593. "name": "Berdir",
  2594. "homepage": "https://www.drupal.org/user/214652"
  2595. },
  2596. {
  2597. "name": "Frans",
  2598. "homepage": "https://www.drupal.org/user/514222"
  2599. },
  2600. {
  2601. "name": "jeroen.b",
  2602. "homepage": "https://www.drupal.org/user/1853532"
  2603. },
  2604. {
  2605. "name": "miro_dietiker",
  2606. "homepage": "https://www.drupal.org/user/227761"
  2607. }
  2608. ],
  2609. "description": "Entity Reference Revisions",
  2610. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  2611. "support": {
  2612. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  2613. }
  2614. },
  2615. {
  2616. "name": "drupal/field_group",
  2617. "version": "3.1.0",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://git.drupalcode.org/project/field_group.git",
  2621. "reference": "8.x-3.1"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  2626. "reference": "8.x-3.1",
  2627. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  2628. },
  2629. "require": {
  2630. "drupal/core": "^8.8 || ^9"
  2631. },
  2632. "require-dev": {
  2633. "drupal/jquery_ui_accordion": "^1.0"
  2634. },
  2635. "type": "drupal-module",
  2636. "extra": {
  2637. "drupal": {
  2638. "version": "8.x-3.1",
  2639. "datestamp": "1591772567",
  2640. "security-coverage": {
  2641. "status": "covered",
  2642. "message": "Covered by Drupal's security advisory policy"
  2643. }
  2644. }
  2645. },
  2646. "notification-url": "https://packages.drupal.org/8/downloads",
  2647. "license": [
  2648. "GPL-2.0-or-later"
  2649. ],
  2650. "authors": [
  2651. {
  2652. "name": "Hydra",
  2653. "homepage": "https://www.drupal.org/user/647364"
  2654. },
  2655. {
  2656. "name": "Stalski",
  2657. "homepage": "https://www.drupal.org/user/322618"
  2658. },
  2659. {
  2660. "name": "jyve",
  2661. "homepage": "https://www.drupal.org/user/591438"
  2662. },
  2663. {
  2664. "name": "nils.destoop",
  2665. "homepage": "https://www.drupal.org/user/361625"
  2666. },
  2667. {
  2668. "name": "swentel",
  2669. "homepage": "https://www.drupal.org/user/107403"
  2670. }
  2671. ],
  2672. "description": "Provides the field_group module.",
  2673. "homepage": "https://www.drupal.org/project/field_group",
  2674. "support": {
  2675. "source": "https://git.drupalcode.org/project/field_group",
  2676. "issues": "https://www.drupal.org/project/issues/field_group"
  2677. }
  2678. },
  2679. {
  2680. "name": "drupal/field_token_value",
  2681. "version": "1.0.0",
  2682. "source": {
  2683. "type": "git",
  2684. "url": "https://git.drupalcode.org/project/field_token_value.git",
  2685. "reference": "8.x-1.0"
  2686. },
  2687. "dist": {
  2688. "type": "zip",
  2689. "url": "https://ftp.drupal.org/files/projects/field_token_value-8.x-1.0.zip",
  2690. "reference": "8.x-1.0",
  2691. "shasum": "ba0c70108ca09589b9fa2ecce4c7a7194cdca897"
  2692. },
  2693. "require": {
  2694. "drupal/core": "~8.0",
  2695. "drupal/token": "*"
  2696. },
  2697. "type": "drupal-module",
  2698. "extra": {
  2699. "branch-alias": {
  2700. "dev-1.x": "1.x-dev"
  2701. },
  2702. "drupal": {
  2703. "version": "8.x-1.0",
  2704. "datestamp": "1503548344",
  2705. "security-coverage": {
  2706. "status": "covered",
  2707. "message": "Covered by Drupal's security advisory policy"
  2708. }
  2709. }
  2710. },
  2711. "notification-url": "https://packages.drupal.org/8/downloads",
  2712. "license": [
  2713. "GPL-2.0-or-later"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "haydent",
  2718. "homepage": "https://www.drupal.org/user/2763191"
  2719. }
  2720. ],
  2721. "description": "Provides a field allowing the value to be set using a string containing tokens.",
  2722. "homepage": "https://www.drupal.org/project/field_token_value",
  2723. "support": {
  2724. "source": "https://git.drupalcode.org/project/field_token_value"
  2725. }
  2726. },
  2727. {
  2728. "name": "drupal/google_analytics_reports",
  2729. "version": "3.0.0-rc2",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://git.drupalcode.org/project/google_analytics_reports.git",
  2733. "reference": "8.x-3.0-rc2"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://ftp.drupal.org/files/projects/google_analytics_reports-8.x-3.0-rc2.zip",
  2738. "reference": "8.x-3.0-rc2",
  2739. "shasum": "fbe050883db8f1264973e420e42e555f6539f436"
  2740. },
  2741. "require": {
  2742. "drupal/core": "^8 || ^9",
  2743. "drupal/google_analytics_reports_api": "*"
  2744. },
  2745. "type": "drupal-module",
  2746. "extra": {
  2747. "drupal": {
  2748. "version": "8.x-3.0-rc2",
  2749. "datestamp": "1591782424",
  2750. "security-coverage": {
  2751. "status": "not-covered",
  2752. "message": "RC releases are not covered by Drupal security advisories."
  2753. }
  2754. }
  2755. },
  2756. "notification-url": "https://packages.drupal.org/8/downloads",
  2757. "license": [
  2758. "GPL-2.0-or-later"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "Mohammed J. Razem",
  2763. "homepage": "https://www.drupal.org/user/255384"
  2764. },
  2765. {
  2766. "name": "Plazik",
  2767. "homepage": "https://www.drupal.org/user/982724"
  2768. },
  2769. {
  2770. "name": "RajabNatshah",
  2771. "homepage": "https://www.drupal.org/user/1414312"
  2772. },
  2773. {
  2774. "name": "grendzy",
  2775. "homepage": "https://www.drupal.org/user/96647"
  2776. },
  2777. {
  2778. "name": "jantoine",
  2779. "homepage": "https://www.drupal.org/user/192192"
  2780. },
  2781. {
  2782. "name": "jkitching",
  2783. "homepage": "https://www.drupal.org/user/159067"
  2784. },
  2785. {
  2786. "name": "jojonaloha",
  2787. "homepage": "https://www.drupal.org/user/1579186"
  2788. },
  2789. {
  2790. "name": "raspberryman",
  2791. "homepage": "https://www.drupal.org/user/71464"
  2792. }
  2793. ],
  2794. "description": "Display statistics from Google Analytics using Views.",
  2795. "homepage": "https://www.drupal.org/project/google_analytics_reports",
  2796. "support": {
  2797. "source": "https://git.drupalcode.org/project/google_analytics_reports"
  2798. }
  2799. },
  2800. {
  2801. "name": "drupal/google_analytics_reports_api",
  2802. "version": "3.0.0-rc2",
  2803. "require": {
  2804. "drupal/core": "^8 || ^9",
  2805. "drupal/google_analytics_reports": "self.version"
  2806. },
  2807. "type": "metapackage",
  2808. "extra": {
  2809. "drupal": {
  2810. "version": "8.x-3.0-rc2",
  2811. "datestamp": "1591782424",
  2812. "security-coverage": {
  2813. "status": "not-covered",
  2814. "message": "RC releases are not covered by Drupal security advisories."
  2815. }
  2816. }
  2817. },
  2818. "notification-url": "https://packages.drupal.org/8/downloads",
  2819. "license": [
  2820. "GPL-2.0-or-later"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "Mohammed J. Razem",
  2825. "homepage": "https://www.drupal.org/user/255384"
  2826. },
  2827. {
  2828. "name": "Plazik",
  2829. "homepage": "https://www.drupal.org/user/982724"
  2830. },
  2831. {
  2832. "name": "RajabNatshah",
  2833. "homepage": "https://www.drupal.org/user/1414312"
  2834. },
  2835. {
  2836. "name": "grendzy",
  2837. "homepage": "https://www.drupal.org/user/96647"
  2838. },
  2839. {
  2840. "name": "jantoine",
  2841. "homepage": "https://www.drupal.org/user/192192"
  2842. },
  2843. {
  2844. "name": "jkitching",
  2845. "homepage": "https://www.drupal.org/user/159067"
  2846. },
  2847. {
  2848. "name": "jojonaloha",
  2849. "homepage": "https://www.drupal.org/user/1579186"
  2850. },
  2851. {
  2852. "name": "raspberryman",
  2853. "homepage": "https://www.drupal.org/user/71464"
  2854. }
  2855. ],
  2856. "description": "API to access statistics from the <a href=\"https://developers.google.com/analytics/devguides/reporting/core/v3/\">Google Analytics Core Reporting API</a>.",
  2857. "homepage": "https://www.drupal.org/project/google_analytics_reports",
  2858. "support": {
  2859. "source": "https://git.drupalcode.org/project/google_analytics_reports"
  2860. }
  2861. },
  2862. {
  2863. "name": "drupal/jquery_ui",
  2864. "version": "1.4.0",
  2865. "source": {
  2866. "type": "git",
  2867. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  2868. "reference": "8.x-1.4"
  2869. },
  2870. "dist": {
  2871. "type": "zip",
  2872. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  2873. "reference": "8.x-1.4",
  2874. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  2875. },
  2876. "require": {
  2877. "drupal/core": "^8 || ^9"
  2878. },
  2879. "type": "drupal-module",
  2880. "extra": {
  2881. "drupal": {
  2882. "version": "8.x-1.4",
  2883. "datestamp": "1582149957",
  2884. "security-coverage": {
  2885. "status": "covered",
  2886. "message": "Covered by Drupal's security advisory policy"
  2887. }
  2888. }
  2889. },
  2890. "notification-url": "https://packages.drupal.org/8/downloads",
  2891. "license": [
  2892. "GPL-2.0-or-later"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "RobLoach",
  2897. "homepage": "https://www.drupal.org/user/61114"
  2898. },
  2899. {
  2900. "name": "jjeff",
  2901. "homepage": "https://www.drupal.org/user/17190"
  2902. },
  2903. {
  2904. "name": "lauriii",
  2905. "homepage": "https://www.drupal.org/user/1078742"
  2906. },
  2907. {
  2908. "name": "litwol",
  2909. "homepage": "https://www.drupal.org/user/78134"
  2910. },
  2911. {
  2912. "name": "mfb",
  2913. "homepage": "https://www.drupal.org/user/12302"
  2914. },
  2915. {
  2916. "name": "mfer",
  2917. "homepage": "https://www.drupal.org/user/25701"
  2918. },
  2919. {
  2920. "name": "mikelutz",
  2921. "homepage": "https://www.drupal.org/user/2972409"
  2922. },
  2923. {
  2924. "name": "sun",
  2925. "homepage": "https://www.drupal.org/user/54136"
  2926. },
  2927. {
  2928. "name": "webchick",
  2929. "homepage": "https://www.drupal.org/user/24967"
  2930. },
  2931. {
  2932. "name": "zrpnr",
  2933. "homepage": "https://www.drupal.org/user/1448368"
  2934. }
  2935. ],
  2936. "description": "Provides jQuery UI library.",
  2937. "homepage": "https://www.drupal.org/project/jquery_ui",
  2938. "support": {
  2939. "source": "https://git.drupalcode.org/project/jquery_ui"
  2940. }
  2941. },
  2942. {
  2943. "name": "drupal/jquery_ui_draggable",
  2944. "version": "1.2.0",
  2945. "source": {
  2946. "type": "git",
  2947. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  2948. "reference": "8.x-1.2"
  2949. },
  2950. "dist": {
  2951. "type": "zip",
  2952. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  2953. "reference": "8.x-1.2",
  2954. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  2955. },
  2956. "require": {
  2957. "drupal/core": "^8 || ^9",
  2958. "drupal/jquery_ui": "*"
  2959. },
  2960. "type": "drupal-module",
  2961. "extra": {
  2962. "drupal": {
  2963. "version": "8.x-1.2",
  2964. "datestamp": "1582150027",
  2965. "security-coverage": {
  2966. "status": "covered",
  2967. "message": "Covered by Drupal's security advisory policy"
  2968. }
  2969. }
  2970. },
  2971. "notification-url": "https://packages.drupal.org/8/downloads",
  2972. "license": [
  2973. "GPL-2.0-or-later"
  2974. ],
  2975. "authors": [
  2976. {
  2977. "name": "bnjmnm",
  2978. "homepage": "https://www.drupal.org/user/2369194"
  2979. },
  2980. {
  2981. "name": "lauriii",
  2982. "homepage": "https://www.drupal.org/user/1078742"
  2983. },
  2984. {
  2985. "name": "zrpnr",
  2986. "homepage": "https://www.drupal.org/user/1448368"
  2987. }
  2988. ],
  2989. "description": "Provides jQuery UI Draggable library.",
  2990. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  2991. "support": {
  2992. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  2993. }
  2994. },
  2995. {
  2996. "name": "drupal/jquery_ui_droppable",
  2997. "version": "1.2.0",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3001. "reference": "8.x-1.2"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  3006. "reference": "8.x-1.2",
  3007. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  3008. },
  3009. "require": {
  3010. "drupal/core": "^8 || ^9",
  3011. "drupal/jquery_ui": "*",
  3012. "drupal/jquery_ui_draggable": "*"
  3013. },
  3014. "type": "drupal-module",
  3015. "extra": {
  3016. "drupal": {
  3017. "version": "8.x-1.2",
  3018. "datestamp": "1582150071",
  3019. "security-coverage": {
  3020. "status": "covered",
  3021. "message": "Covered by Drupal's security advisory policy"
  3022. }
  3023. }
  3024. },
  3025. "notification-url": "https://packages.drupal.org/8/downloads",
  3026. "license": [
  3027. "GPL-2.0-or-later"
  3028. ],
  3029. "authors": [
  3030. {
  3031. "name": "bnjmnm",
  3032. "homepage": "https://www.drupal.org/user/2369194"
  3033. },
  3034. {
  3035. "name": "lauriii",
  3036. "homepage": "https://www.drupal.org/user/1078742"
  3037. },
  3038. {
  3039. "name": "zrpnr",
  3040. "homepage": "https://www.drupal.org/user/1448368"
  3041. }
  3042. ],
  3043. "description": "Provides jQuery UI Droppable library.",
  3044. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3045. "support": {
  3046. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3047. }
  3048. },
  3049. {
  3050. "name": "drupal/linkit",
  3051. "version": "4.3.0",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://git.drupalcode.org/project/linkit.git",
  3055. "reference": "8.x-4.3"
  3056. },
  3057. "dist": {
  3058. "type": "zip",
  3059. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-4.3.zip",
  3060. "reference": "8.x-4.3",
  3061. "shasum": "e624ea2f18a6100b76a8337e24f7c08df6e2235e"
  3062. },
  3063. "require": {
  3064. "drupal/core": "~8.0"
  3065. },
  3066. "type": "drupal-module",
  3067. "extra": {
  3068. "drupal": {
  3069. "version": "8.x-4.3",
  3070. "datestamp": "1490205830",
  3071. "security-coverage": {
  3072. "status": "covered",
  3073. "message": "Covered by Drupal's security advisory policy"
  3074. }
  3075. }
  3076. },
  3077. "notification-url": "https://packages.drupal.org/8/downloads",
  3078. "license": [
  3079. "GPL-2.0+"
  3080. ],
  3081. "authors": [
  3082. {
  3083. "name": "Emil Stjerneman",
  3084. "homepage": "https://stjerneman.com",
  3085. "email": "emil@stjerneman.com",
  3086. "role": "Maintainer"
  3087. }
  3088. ],
  3089. "description": "Linkit - Enriched linking experience",
  3090. "homepage": "http://drupal.org/project/linkit",
  3091. "support": {
  3092. "source": "http://cgit.drupalcode.org/linkit",
  3093. "issues": "http://drupal.org/project/linkit"
  3094. }
  3095. },
  3096. {
  3097. "name": "drupal/masonry",
  3098. "version": "1.1.0",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://git.drupalcode.org/project/masonry.git",
  3102. "reference": "8.x-1.1"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://ftp.drupal.org/files/projects/masonry-8.x-1.1.zip",
  3107. "reference": "8.x-1.1",
  3108. "shasum": "c45e4b21e08b5fa3998bb1852282131ec8761c74"
  3109. },
  3110. "require": {
  3111. "drupal/core": "^8 || ^9"
  3112. },
  3113. "type": "drupal-module",
  3114. "extra": {
  3115. "drupal": {
  3116. "version": "8.x-1.1",
  3117. "datestamp": "1594537870",
  3118. "security-coverage": {
  3119. "status": "covered",
  3120. "message": "Covered by Drupal's security advisory policy"
  3121. }
  3122. }
  3123. },
  3124. "notification-url": "https://packages.drupal.org/8/downloads",
  3125. "license": [
  3126. "GPL-2.0-or-later"
  3127. ],
  3128. "authors": [
  3129. {
  3130. "name": "Dominique Clause (Dom.)",
  3131. "homepage": "https://www.drupal.org/u/dom",
  3132. "role": "Maintainer"
  3133. },
  3134. {
  3135. "name": "Dom.",
  3136. "homepage": "https://www.drupal.org/user/801982"
  3137. }
  3138. ],
  3139. "description": "Masonry integrates with Masonry library",
  3140. "homepage": "https://www.drupal.org/project/masonry",
  3141. "support": {
  3142. "source": "https://git.drupalcode.org/project/masonry",
  3143. "issues": "https://www.drupal.org/project/issues/masonry?version=8.x"
  3144. }
  3145. },
  3146. {
  3147. "name": "drupal/mediteran",
  3148. "version": "1.11.0",
  3149. "source": {
  3150. "type": "git",
  3151. "url": "https://git.drupalcode.org/project/mediteran.git",
  3152. "reference": "8.x-1.11"
  3153. },
  3154. "dist": {
  3155. "type": "zip",
  3156. "url": "https://ftp.drupal.org/files/projects/mediteran-8.x-1.11.zip",
  3157. "reference": "8.x-1.11",
  3158. "shasum": "93a72f234b862f73ec0fa43dc3a9d5fd5857f163"
  3159. },
  3160. "require": {
  3161. "drupal/core": "^8 || ^9"
  3162. },
  3163. "type": "drupal-theme",
  3164. "extra": {
  3165. "drupal": {
  3166. "version": "8.x-1.11",
  3167. "datestamp": "1594537822",
  3168. "security-coverage": {
  3169. "status": "covered",
  3170. "message": "Covered by Drupal's security advisory policy"
  3171. }
  3172. }
  3173. },
  3174. "notification-url": "https://packages.drupal.org/8/downloads",
  3175. "license": [
  3176. "GPL-2.0-or-later"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "bataboza",
  3181. "homepage": "https://www.drupal.org/user/3581173"
  3182. },
  3183. {
  3184. "name": "diqidoq",
  3185. "homepage": "https://www.drupal.org/user/1001934"
  3186. },
  3187. {
  3188. "name": "doxigo",
  3189. "homepage": "https://www.drupal.org/user/1331334"
  3190. }
  3191. ],
  3192. "description": "Mediteran administrator is responsive theme for Drupal 8 with clean and modern design.",
  3193. "homepage": "https://www.drupal.org/project/mediteran",
  3194. "support": {
  3195. "source": "https://git.drupalcode.org/project/mediteran"
  3196. }
  3197. },
  3198. {
  3199. "name": "drupal/metatag",
  3200. "version": "1.13.0",
  3201. "source": {
  3202. "type": "git",
  3203. "url": "https://git.drupalcode.org/project/metatag.git",
  3204. "reference": "8.x-1.13"
  3205. },
  3206. "dist": {
  3207. "type": "zip",
  3208. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.13.zip",
  3209. "reference": "8.x-1.13",
  3210. "shasum": "c471d9982a6540fd7baccc94572947923634fb6b"
  3211. },
  3212. "require": {
  3213. "drupal/core": "^8 || ^9",
  3214. "drupal/token": "^1.0"
  3215. },
  3216. "require-dev": {
  3217. "drupal/metatag_dc": "*",
  3218. "drupal/metatag_open_graph": "*",
  3219. "drupal/page_manager": "4.x-dev",
  3220. "drupal/redirect": "1.x-dev"
  3221. },
  3222. "type": "drupal-module",
  3223. "extra": {
  3224. "drupal": {
  3225. "version": "8.x-1.13",
  3226. "datestamp": "1587478404",
  3227. "security-coverage": {
  3228. "status": "covered",
  3229. "message": "Covered by Drupal's security advisory policy"
  3230. }
  3231. }
  3232. },
  3233. "notification-url": "https://packages.drupal.org/8/downloads",
  3234. "license": [
  3235. "GPL-2.0+"
  3236. ],
  3237. "authors": [
  3238. {
  3239. "name": "See contributors",
  3240. "homepage": "https://www.drupal.org/node/640498/committers",
  3241. "role": "Developer"
  3242. },
  3243. {
  3244. "name": "Dave Reid",
  3245. "homepage": "https://www.drupal.org/user/53892"
  3246. }
  3247. ],
  3248. "description": "Manage meta tags for all entities.",
  3249. "homepage": "https://www.drupal.org/project/metatag",
  3250. "keywords": [
  3251. "Drupal",
  3252. "seo"
  3253. ],
  3254. "support": {
  3255. "source": "https://git.drupalcode.org/project/metatag",
  3256. "issues": "https://www.drupal.org/project/issues/metatag",
  3257. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  3258. }
  3259. },
  3260. {
  3261. "name": "drupal/page_manager",
  3262. "version": "4.0.0-beta6",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://git.drupalcode.org/project/page_manager.git",
  3266. "reference": "8.x-4.0-beta6"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-beta6.zip",
  3271. "reference": "8.x-4.0-beta6",
  3272. "shasum": "bf0ac07177b1cd6c1a3da80f727f1448221ee98a"
  3273. },
  3274. "require": {
  3275. "drupal/core": "^8.8 || ^9",
  3276. "drupal/ctools": "^3.1"
  3277. },
  3278. "type": "drupal-module",
  3279. "extra": {
  3280. "drupal": {
  3281. "version": "8.x-4.0-beta6",
  3282. "datestamp": "1591125562",
  3283. "security-coverage": {
  3284. "status": "not-covered",
  3285. "message": "Project has not opted into security advisory coverage!"
  3286. }
  3287. },
  3288. "branch-alias": {
  3289. "dev-8.x-4.x": "4.x-dev"
  3290. }
  3291. },
  3292. "notification-url": "https://packages.drupal.org/8/downloads",
  3293. "license": [
  3294. "GPL-2.0-or-later"
  3295. ],
  3296. "authors": [
  3297. {
  3298. "name": "Tim Plunkett",
  3299. "homepage": "https://www.drupal.org/u/tim.plunkett",
  3300. "role": "Maintainer"
  3301. },
  3302. {
  3303. "name": "dsnopek",
  3304. "homepage": "https://www.drupal.org/user/266527"
  3305. },
  3306. {
  3307. "name": "japerry",
  3308. "homepage": "https://www.drupal.org/user/45640"
  3309. },
  3310. {
  3311. "name": "manuel.adan",
  3312. "homepage": "https://www.drupal.org/user/516420"
  3313. },
  3314. {
  3315. "name": "phenaproxima",
  3316. "homepage": "https://www.drupal.org/user/205645"
  3317. }
  3318. ],
  3319. "description": "Provides a way to place blocks on a custom page.",
  3320. "homepage": "https://www.drupal.org/project/page_manager",
  3321. "support": {
  3322. "source": "https://git.drupal.org/project/page_manager.git",
  3323. "issues": "https://www.drupal.org/project/issues/page_manager",
  3324. "irc": "irc://irc.freenode.org/drupal-contribute"
  3325. }
  3326. },
  3327. {
  3328. "name": "drupal/panels",
  3329. "version": "4.6.0",
  3330. "source": {
  3331. "type": "git",
  3332. "url": "https://git.drupalcode.org/project/panels.git",
  3333. "reference": "8.x-4.6"
  3334. },
  3335. "dist": {
  3336. "type": "zip",
  3337. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.6.zip",
  3338. "reference": "8.x-4.6",
  3339. "shasum": "6430436a4d8fb64f8c113729dd92505a1e46b794"
  3340. },
  3341. "require": {
  3342. "drupal/core": "^8.8 || ^9",
  3343. "drupal/ctools": ">=3.0.0",
  3344. "drupal/jquery_ui_droppable": "^1.2"
  3345. },
  3346. "require-dev": {
  3347. "drupal/jquery_ui_droppable": "*",
  3348. "drupal/page_manager": "^4"
  3349. },
  3350. "type": "drupal-module",
  3351. "extra": {
  3352. "drupal": {
  3353. "version": "8.x-4.6",
  3354. "datestamp": "1585870866",
  3355. "security-coverage": {
  3356. "status": "covered",
  3357. "message": "Covered by Drupal's security advisory policy"
  3358. }
  3359. },
  3360. "branch-alias": {
  3361. "dev-8.x-4.x": "4.x-dev"
  3362. }
  3363. },
  3364. "notification-url": "https://packages.drupal.org/8/downloads",
  3365. "license": [
  3366. "GPL-2.0+"
  3367. ],
  3368. "authors": [
  3369. {
  3370. "name": "Jakob Perry",
  3371. "homepage": "https://www.drupal.org/u/japerry"
  3372. },
  3373. {
  3374. "name": "Samuel Mortenson",
  3375. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  3376. },
  3377. {
  3378. "name": "See other contributors",
  3379. "homepage": "https://www.drupal.org/node/74958/committers"
  3380. },
  3381. {
  3382. "name": "japerry",
  3383. "homepage": "https://www.drupal.org/user/45640"
  3384. },
  3385. {
  3386. "name": "joelpittet",
  3387. "homepage": "https://www.drupal.org/user/160302"
  3388. },
  3389. {
  3390. "name": "merlinofchaos",
  3391. "homepage": "https://www.drupal.org/user/26979"
  3392. },
  3393. {
  3394. "name": "neclimdul",
  3395. "homepage": "https://www.drupal.org/user/48673"
  3396. },
  3397. {
  3398. "name": "phenaproxima",
  3399. "homepage": "https://www.drupal.org/user/205645"
  3400. },
  3401. {
  3402. "name": "samuel.mortenson",
  3403. "homepage": "https://www.drupal.org/user/2582268"
  3404. },
  3405. {
  3406. "name": "tim.plunkett",
  3407. "homepage": "https://www.drupal.org/user/241634"
  3408. }
  3409. ],
  3410. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  3411. "homepage": "https://www.drupal.org/project/panels",
  3412. "support": {
  3413. "source": "http://git.drupal.org/project/panels.git",
  3414. "issues": "https://www.drupal.org/project/issues/panels",
  3415. "irc": "irc://irc.freenode.org/drupal-scotch"
  3416. }
  3417. },
  3418. {
  3419. "name": "drupal/paragraphs",
  3420. "version": "1.12.0",
  3421. "source": {
  3422. "type": "git",
  3423. "url": "https://git.drupalcode.org/project/paragraphs.git",
  3424. "reference": "8.x-1.12"
  3425. },
  3426. "dist": {
  3427. "type": "zip",
  3428. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.12.zip",
  3429. "reference": "8.x-1.12",
  3430. "shasum": "3b67d8af1160af42d93a4610be1e02869e428965"
  3431. },
  3432. "require": {
  3433. "drupal/core": "^8.8 || ^9",
  3434. "drupal/entity_reference_revisions": "~1.3"
  3435. },
  3436. "require-dev": {
  3437. "drupal/block_field": "~1.0",
  3438. "drupal/ctools": "3.x-dev",
  3439. "drupal/diff": "~1.0",
  3440. "drupal/entity_browser": "2.x-dev",
  3441. "drupal/entity_usage": "2.x-dev",
  3442. "drupal/field_group": "3.x-dev",
  3443. "drupal/inline_entity_form": "~1.0",
  3444. "drupal/paragraphs-paragraphs_library": "*",
  3445. "drupal/replicate": "~1.0",
  3446. "drupal/search_api": "~1.0",
  3447. "drupal/search_api_db": "*"
  3448. },
  3449. "suggest": {
  3450. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  3451. },
  3452. "type": "drupal-module",
  3453. "extra": {
  3454. "drupal": {
  3455. "version": "8.x-1.12",
  3456. "datestamp": "1590140081",
  3457. "security-coverage": {
  3458. "status": "covered",
  3459. "message": "Covered by Drupal's security advisory policy"
  3460. }
  3461. }
  3462. },
  3463. "notification-url": "https://packages.drupal.org/8/downloads",
  3464. "license": [
  3465. "GPL-2.0-or-later"
  3466. ],
  3467. "authors": [
  3468. {
  3469. "name": "Berdir",
  3470. "homepage": "https://www.drupal.org/user/214652"
  3471. },
  3472. {
  3473. "name": "Frans",
  3474. "homepage": "https://www.drupal.org/user/514222"
  3475. },
  3476. {
  3477. "name": "Primsi",
  3478. "homepage": "https://www.drupal.org/user/282629"
  3479. },
  3480. {
  3481. "name": "jeroen.b",
  3482. "homepage": "https://www.drupal.org/user/1853532"
  3483. },
  3484. {
  3485. "name": "jstoller",
  3486. "homepage": "https://www.drupal.org/user/99012"
  3487. },
  3488. {
  3489. "name": "miro_dietiker",
  3490. "homepage": "https://www.drupal.org/user/227761"
  3491. }
  3492. ],
  3493. "description": "Enables the creation of Paragraphs entities.",
  3494. "homepage": "https://www.drupal.org/project/paragraphs",
  3495. "support": {
  3496. "source": "https://git.drupalcode.org/project/paragraphs"
  3497. }
  3498. },
  3499. {
  3500. "name": "drupal/pathauto",
  3501. "version": "1.8.0",
  3502. "source": {
  3503. "type": "git",
  3504. "url": "https://git.drupalcode.org/project/pathauto.git",
  3505. "reference": "8.x-1.8"
  3506. },
  3507. "dist": {
  3508. "type": "zip",
  3509. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  3510. "reference": "8.x-1.8",
  3511. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  3512. },
  3513. "require": {
  3514. "drupal/core": "^8.8 || ^9",
  3515. "drupal/ctools": "*",
  3516. "drupal/token": "*"
  3517. },
  3518. "suggest": {
  3519. "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
  3520. },
  3521. "type": "drupal-module",
  3522. "extra": {
  3523. "drupal": {
  3524. "version": "8.x-1.8",
  3525. "datestamp": "1588103046",
  3526. "security-coverage": {
  3527. "status": "covered",
  3528. "message": "Covered by Drupal's security advisory policy"
  3529. }
  3530. },
  3531. "drush": {
  3532. "services": {
  3533. "drush.services.yml": "^9 || ^10"
  3534. }
  3535. }
  3536. },
  3537. "notification-url": "https://packages.drupal.org/8/downloads",
  3538. "license": [
  3539. "GPL-2.0-or-later"
  3540. ],
  3541. "authors": [
  3542. {
  3543. "name": "Berdir",
  3544. "homepage": "https://www.drupal.org/user/214652"
  3545. },
  3546. {
  3547. "name": "Dave Reid",
  3548. "homepage": "https://www.drupal.org/user/53892"
  3549. },
  3550. {
  3551. "name": "Freso",
  3552. "homepage": "https://www.drupal.org/user/27504"
  3553. },
  3554. {
  3555. "name": "greggles",
  3556. "homepage": "https://www.drupal.org/user/36762"
  3557. }
  3558. ],
  3559. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  3560. "homepage": "https://www.drupal.org/project/pathauto",
  3561. "support": {
  3562. "source": "https://cgit.drupalcode.org/pathauto",
  3563. "issues": "https://www.drupal.org/project/issues/pathauto",
  3564. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  3565. }
  3566. },
  3567. {
  3568. "name": "drupal/schema_metatag",
  3569. "version": "1.6.0",
  3570. "source": {
  3571. "type": "git",
  3572. "url": "https://git.drupalcode.org/project/schema_metatag.git",
  3573. "reference": "8.x-1.6"
  3574. },
  3575. "dist": {
  3576. "type": "zip",
  3577. "url": "https://ftp.drupal.org/files/projects/schema_metatag-8.x-1.6.zip",
  3578. "reference": "8.x-1.6",
  3579. "shasum": "89816975afc0345b57c3b0550c88a8f371ba56c9"
  3580. },
  3581. "require": {
  3582. "drupal/core": "^8 || ^9",
  3583. "drupal/metatag": "*"
  3584. },
  3585. "require-dev": {
  3586. "drupal/metatag_views": "*",
  3587. "drupal/schema_article": "*",
  3588. "drupal/schema_organization": "*"
  3589. },
  3590. "type": "drupal-module",
  3591. "extra": {
  3592. "drupal": {
  3593. "version": "8.x-1.6",
  3594. "datestamp": "1592573603",
  3595. "security-coverage": {
  3596. "status": "covered",
  3597. "message": "Covered by Drupal's security advisory policy"
  3598. }
  3599. }
  3600. },
  3601. "notification-url": "https://packages.drupal.org/8/downloads",
  3602. "license": [
  3603. "GPL-2.0+"
  3604. ],
  3605. "authors": [
  3606. {
  3607. "name": "KarenS",
  3608. "homepage": "https://www.drupal.org/user/45874"
  3609. }
  3610. ],
  3611. "description": "Metatag implementation of Schema.org structured data (JSON-LD)",
  3612. "homepage": "https://www.drupal.org/project/schema_metatag",
  3613. "keywords": [
  3614. "Drupal"
  3615. ],
  3616. "support": {
  3617. "source": "http://cgit.drupalcode.org/schema_metatag",
  3618. "issues": "https://www.drupal.org/project/issues/schema_metatag"
  3619. }
  3620. },
  3621. {
  3622. "name": "drupal/site_settings",
  3623. "version": "1.19.0",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://git.drupalcode.org/project/site_settings.git",
  3627. "reference": "8.x-1.19"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://ftp.drupal.org/files/projects/site_settings-8.x-1.19.zip",
  3632. "reference": "8.x-1.19",
  3633. "shasum": "93977299549d33c4fbaad7a332fe7d3e1e2648b8"
  3634. },
  3635. "require": {
  3636. "drupal/core": "^8 || ^9"
  3637. },
  3638. "type": "drupal-module",
  3639. "extra": {
  3640. "drupal": {
  3641. "version": "8.x-1.19",
  3642. "datestamp": "1590234916",
  3643. "security-coverage": {
  3644. "status": "covered",
  3645. "message": "Covered by Drupal's security advisory policy"
  3646. }
  3647. }
  3648. },
  3649. "notification-url": "https://packages.drupal.org/8/downloads",
  3650. "license": [
  3651. "GPL-2.0+"
  3652. ],
  3653. "authors": [
  3654. {
  3655. "name": "scott_euser",
  3656. "homepage": "https://www.drupal.org/user/3267594"
  3657. },
  3658. {
  3659. "name": "stuart.wilkes@actionaid.org",
  3660. "homepage": "https://www.drupal.org/user/3584735"
  3661. }
  3662. ],
  3663. "description": "Provides a site settings entity",
  3664. "homepage": "https://www.drupal.org/project/site_settings",
  3665. "keywords": [
  3666. "Drupal"
  3667. ],
  3668. "support": {
  3669. "source": "http://cgit.drupalcode.org/site_settings",
  3670. "issues": "http://drupal.org/project/issues/site_settings"
  3671. }
  3672. },
  3673. {
  3674. "name": "drupal/subpathauto",
  3675. "version": "1.1.0",
  3676. "source": {
  3677. "type": "git",
  3678. "url": "https://git.drupalcode.org/project/subpathauto.git",
  3679. "reference": "8.x-1.1"
  3680. },
  3681. "dist": {
  3682. "type": "zip",
  3683. "url": "https://ftp.drupal.org/files/projects/subpathauto-8.x-1.1.zip",
  3684. "reference": "8.x-1.1",
  3685. "shasum": "1d027be84e82705c65669f5717b148562be3e766"
  3686. },
  3687. "require": {
  3688. "drupal/core": "^8.8 || ^9"
  3689. },
  3690. "type": "drupal-module",
  3691. "extra": {
  3692. "drupal": {
  3693. "version": "8.x-1.1",
  3694. "datestamp": "1590076268",
  3695. "security-coverage": {
  3696. "status": "covered",
  3697. "message": "Covered by Drupal's security advisory policy"
  3698. }
  3699. }
  3700. },
  3701. "notification-url": "https://packages.drupal.org/8/downloads",
  3702. "license": [
  3703. "GPL-2.0-or-later"
  3704. ],
  3705. "authors": [
  3706. {
  3707. "name": "Dave Reid",
  3708. "homepage": "https://www.drupal.org/user/53892"
  3709. },
  3710. {
  3711. "name": "lauriii",
  3712. "homepage": "https://www.drupal.org/user/1078742"
  3713. }
  3714. ],
  3715. "description": "Provides support for extending sub-paths of URL aliases.",
  3716. "homepage": "https://www.drupal.org/project/subpathauto",
  3717. "support": {
  3718. "source": "https://git.drupalcode.org/project/subpathauto"
  3719. }
  3720. },
  3721. {
  3722. "name": "drupal/time_range",
  3723. "version": "8.1.3",
  3724. "source": {
  3725. "type": "git",
  3726. "url": "https://git.drupalcode.org/project/time_range.git",
  3727. "reference": "8.1.3"
  3728. },
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://ftp.drupal.org/files/projects/time_range-8.1.3.zip",
  3732. "reference": "8.1.3",
  3733. "shasum": "404597e00e2e972c32647e8c1963efb0d7566d90"
  3734. },
  3735. "require": {
  3736. "drupal/core": "^8 || ^9"
  3737. },
  3738. "type": "drupal-module",
  3739. "extra": {
  3740. "drupal": {
  3741. "version": "8.1.3",
  3742. "datestamp": "1591497359",
  3743. "security-coverage": {
  3744. "status": "covered",
  3745. "message": "Covered by Drupal's security advisory policy"
  3746. }
  3747. }
  3748. },
  3749. "notification-url": "https://packages.drupal.org/8/downloads",
  3750. "license": [
  3751. "GPL-2.0+"
  3752. ],
  3753. "authors": [
  3754. {
  3755. "name": "dravenk",
  3756. "homepage": "https://www.drupal.org/user/3452417"
  3757. }
  3758. ],
  3759. "description": "Provides the form widget to fill in time range.",
  3760. "homepage": "https://github.com/DravenK/time-range.git",
  3761. "support": {
  3762. "source": "https://github.com/DravenK/time-range.git",
  3763. "issues": "https://github.com/DravenK/time-range/issues"
  3764. }
  3765. },
  3766. {
  3767. "name": "drupal/token",
  3768. "version": "1.7.0",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://git.drupalcode.org/project/token.git",
  3772. "reference": "8.x-1.7"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  3777. "reference": "8.x-1.7",
  3778. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  3779. },
  3780. "require": {
  3781. "drupal/core": "^8.8 || ^9"
  3782. },
  3783. "type": "drupal-module",
  3784. "extra": {
  3785. "drupal": {
  3786. "version": "8.x-1.7",
  3787. "datestamp": "1589314266",
  3788. "security-coverage": {
  3789. "status": "covered",
  3790. "message": "Covered by Drupal's security advisory policy"
  3791. }
  3792. },
  3793. "drush": {
  3794. "services": {
  3795. "drush.services.yml": "^9 || ^10"
  3796. }
  3797. }
  3798. },
  3799. "notification-url": "https://packages.drupal.org/8/downloads",
  3800. "license": [
  3801. "GPL-2.0+"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Berdir",
  3806. "homepage": "https://www.drupal.org/user/214652"
  3807. },
  3808. {
  3809. "name": "Dave Reid",
  3810. "homepage": "https://www.drupal.org/user/53892"
  3811. },
  3812. {
  3813. "name": "eaton",
  3814. "homepage": "https://www.drupal.org/user/16496"
  3815. },
  3816. {
  3817. "name": "fago",
  3818. "homepage": "https://www.drupal.org/user/16747"
  3819. },
  3820. {
  3821. "name": "greggles",
  3822. "homepage": "https://www.drupal.org/user/36762"
  3823. },
  3824. {
  3825. "name": "mikeryan",
  3826. "homepage": "https://www.drupal.org/user/4420"
  3827. }
  3828. ],
  3829. "description": "Provides a user interface for the Token API, some missing core tokens.",
  3830. "homepage": "https://www.drupal.org/project/token",
  3831. "support": {
  3832. "source": "https://git.drupalcode.org/project/token"
  3833. }
  3834. },
  3835. {
  3836. "name": "drupal/total_control",
  3837. "version": "2.0.0",
  3838. "source": {
  3839. "type": "git",
  3840. "url": "https://git.drupalcode.org/project/total_control.git",
  3841. "reference": "8.x-2.0"
  3842. },
  3843. "dist": {
  3844. "type": "zip",
  3845. "url": "https://ftp.drupal.org/files/projects/total_control-8.x-2.0.zip",
  3846. "reference": "8.x-2.0",
  3847. "shasum": "67e4bcf348fbc4647402de7903b48fc6414beece"
  3848. },
  3849. "require": {
  3850. "drupal/core": "^8 || ^9",
  3851. "drupal/ctools": "~3.0",
  3852. "drupal/page_manager": "~4.0",
  3853. "drupal/panels": "~4.0"
  3854. },
  3855. "type": "drupal-module",
  3856. "extra": {
  3857. "drupal": {
  3858. "version": "8.x-2.0",
  3859. "datestamp": "1583399169",
  3860. "security-coverage": {
  3861. "status": "covered",
  3862. "message": "Covered by Drupal's security advisory policy"
  3863. }
  3864. },
  3865. "branch-alias": {
  3866. "dev-8.x-2.x": "8.2.x-dev"
  3867. }
  3868. },
  3869. "notification-url": "https://packages.drupal.org/8/downloads",
  3870. "license": [
  3871. "GPL-2.0-or-later"
  3872. ],
  3873. "authors": [
  3874. {
  3875. "name": "Jen Lampton",
  3876. "homepage": "https://www.drupal.org/u/jenlampton",
  3877. "role": "Maintainer"
  3878. },
  3879. {
  3880. "name": "Mohammed J. Razem",
  3881. "homepage": "https://www.drupal.org/u/mohammed-j-razem",
  3882. "role": "Maintainer"
  3883. },
  3884. {
  3885. "name": "Abdulla Abu-Zakham",
  3886. "homepage": "https://www.drupal.org/u/abu-zakham",
  3887. "role": "Maintainer"
  3888. },
  3889. {
  3890. "name": "Rajab Natshah",
  3891. "homepage": "https://www.drupal.org/u/rajabnatshah",
  3892. "role": "Maintainer"
  3893. },
  3894. {
  3895. "name": "populist",
  3896. "homepage": "https://www.drupal.org/user/58600"
  3897. },
  3898. {
  3899. "name": "squiggy",
  3900. "homepage": "https://www.drupal.org/user/44299"
  3901. }
  3902. ],
  3903. "description": "Total Control Administration Dashboard",
  3904. "homepage": "https://www.drupal.org/project/total_control",
  3905. "support": {
  3906. "source": "https://git.drupalcode.org/project/total_control/tree/8.x-2.x",
  3907. "issues": "https://www.drupal.org/project/issues/total_control"
  3908. }
  3909. },
  3910. {
  3911. "name": "drupal/transliterate_filenames",
  3912. "version": "1.4.0",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://git.drupalcode.org/project/transliterate_filenames.git",
  3916. "reference": "8.x-1.4"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://ftp.drupal.org/files/projects/transliterate_filenames-8.x-1.4.zip",
  3921. "reference": "8.x-1.4",
  3922. "shasum": "de190ae6d1923f95c61e597a00ef50d64cfd982b"
  3923. },
  3924. "require": {
  3925. "drupal/core": "^8 || ^9"
  3926. },
  3927. "type": "drupal-module",
  3928. "extra": {
  3929. "drupal": {
  3930. "version": "8.x-1.4",
  3931. "datestamp": "1589218989",
  3932. "security-coverage": {
  3933. "status": "covered",
  3934. "message": "Covered by Drupal's security advisory policy"
  3935. }
  3936. }
  3937. },
  3938. "notification-url": "https://packages.drupal.org/8/downloads",
  3939. "license": [
  3940. "GPL-2.0-or-later"
  3941. ],
  3942. "authors": [
  3943. {
  3944. "name": "Alexander Dubovskoy",
  3945. "homepage": "https://www.drupal.org/u/adubovskoy",
  3946. "role": "Maintainer"
  3947. },
  3948. {
  3949. "name": "Andrei Ivnitskii",
  3950. "homepage": "https://www.drupal.org/u/ivnish",
  3951. "role": "Maintainer"
  3952. },
  3953. {
  3954. "name": "ivnish",
  3955. "homepage": "https://www.drupal.org/user/3547706"
  3956. }
  3957. ],
  3958. "description": "Transliteration for all uploading files (includes fields and ckeditor inline upload)",
  3959. "homepage": "https://www.drupal.org/project/transliterate_filenames",
  3960. "support": {
  3961. "source": "https://git.drupalcode.org/project/transliterate_filenames",
  3962. "issues": "https://www.drupal.org/project/issues/transliterate_filenames"
  3963. }
  3964. },
  3965. {
  3966. "name": "drupal/varbase_total_control",
  3967. "version": "6.11.0",
  3968. "source": {
  3969. "type": "git",
  3970. "url": "https://git.drupalcode.org/project/varbase_total_control.git",
  3971. "reference": "8.x-6.11"
  3972. },
  3973. "dist": {
  3974. "type": "zip",
  3975. "url": "https://ftp.drupal.org/files/projects/varbase_total_control-8.x-6.11.zip",
  3976. "reference": "8.x-6.11",
  3977. "shasum": "ce01ed87c8733433f3b129ae040d03e14bcdd3db"
  3978. },
  3979. "require": {
  3980. "composer/installers": "~1.0",
  3981. "cweagans/composer-patches": "~1.0",
  3982. "drupal/charts": "~3.0",
  3983. "drupal/core": "^8.8.0 || ~9.0.0",
  3984. "drupal/drupal-library-installer-plugin": "^0.3",
  3985. "drupal/google_analytics_reports": "~3.0",
  3986. "drupal/masonry": "~1.0",
  3987. "drupal/total_control": "~2.0",
  3988. "oomphinc/composer-installers-extender": "~1.0"
  3989. },
  3990. "suggest": {
  3991. "bower-asset/c3": "0.4.*: Provides JavaScript library necessary for C3",
  3992. "bower-asset/chartjs": "2.7.*: Provides JavaScript library necessary for Chart JS",
  3993. "bower-asset/d3": "3.5.*: Provides JavaScript library necessary for D3",
  3994. "npm-asset/imagesloaded": "~4.0: Provides JavaScript library necessary for Image Loaded",
  3995. "npm-asset/masonry-layout": "~4.0: Provides JavaScript library necessary for Masonry Layout"
  3996. },
  3997. "type": "drupal-module",
  3998. "extra": {
  3999. "drupal": {
  4000. "version": "8.x-6.11",
  4001. "datestamp": "1591080576",
  4002. "security-coverage": {
  4003. "status": "covered",
  4004. "message": "Covered by Drupal's security advisory policy"
  4005. }
  4006. },
  4007. "branch-alias": {
  4008. "dev-8.x-6.x": "8.6.x-dev"
  4009. },
  4010. "installer-types": [
  4011. "bower-asset",
  4012. "npm-asset"
  4013. ],
  4014. "drupal-libraries": {
  4015. "libraries": [
  4016. {
  4017. "name": "chartjs",
  4018. "package": "bower-asset/chartjs"
  4019. },
  4020. {
  4021. "name": "c3",
  4022. "package": "bower-asset/c3"
  4023. },
  4024. {
  4025. "name": "d3",
  4026. "package": "bower-asset/d3"
  4027. },
  4028. {
  4029. "name": "masonry",
  4030. "package": "npm-asset/masonry-layout"
  4031. },
  4032. {
  4033. "name": "imagesloaded",
  4034. "package": "npm-asset/imagesloaded"
  4035. }
  4036. ]
  4037. },
  4038. "enable-patching": true,
  4039. "composer-exit-on-patch-failure": true
  4040. },
  4041. "notification-url": "https://packages.drupal.org/8/downloads",
  4042. "license": [
  4043. "GPL-2.0-or-later"
  4044. ],
  4045. "authors": [
  4046. {
  4047. "name": "Vardot",
  4048. "homepage": "https://www.drupal.org/vardot",
  4049. "role": "Maintainer"
  4050. },
  4051. {
  4052. "name": "RajabNatshah",
  4053. "homepage": "https://www.drupal.org/user/1414312"
  4054. },
  4055. {
  4056. "name": "abu-zakham",
  4057. "homepage": "https://www.drupal.org/user/2836067"
  4058. }
  4059. ],
  4060. "description": "Varbase Total Control Dashboard: A dashboard is what is missing for better Drupal administration experience. This dashboard is built on top of Total Control Admin Dashboard module, utilizing Panels, Google Analytics Reports, and several enhanced blocks and widgets for an intuitive and flexible administration experience.",
  4061. "homepage": "https://github.com/Vardot/varbase_total_control",
  4062. "support": {
  4063. "source": "http://cgit.drupalcode.org/varbase_total_control",
  4064. "issues": "https://www.drupal.org/project/issues/varbase_total_control"
  4065. }
  4066. },
  4067. {
  4068. "name": "drupal/video_embed_field",
  4069. "version": "2.4.0",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  4073. "reference": "8.x-2.4"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.4.zip",
  4078. "reference": "8.x-2.4",
  4079. "shasum": "96b14bb93c1bb6a07b84315a4f87367870f8b574"
  4080. },
  4081. "require": {
  4082. "drupal/core": "^8.8 || ^9"
  4083. },
  4084. "require-dev": {
  4085. "drupal/colorbox": "^1.0",
  4086. "drupal/video_embed_media": "*"
  4087. },
  4088. "type": "drupal-module",
  4089. "extra": {
  4090. "drupal": {
  4091. "version": "8.x-2.4",
  4092. "datestamp": "1587686284",
  4093. "security-coverage": {
  4094. "status": "covered",
  4095. "message": "Covered by Drupal's security advisory policy"
  4096. }
  4097. }
  4098. },
  4099. "notification-url": "https://packages.drupal.org/8/downloads",
  4100. "license": [
  4101. "GPL-2.0+"
  4102. ],
  4103. "authors": [
  4104. {
  4105. "name": "Sam152",
  4106. "homepage": "https://www.drupal.org/user/1485048"
  4107. },
  4108. {
  4109. "name": "jec006",
  4110. "homepage": "https://www.drupal.org/user/855980"
  4111. },
  4112. {
  4113. "name": "plopesc",
  4114. "homepage": "https://www.drupal.org/user/282415"
  4115. }
  4116. ],
  4117. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  4118. "homepage": "https://www.drupal.org/project/video_embed_field",
  4119. "support": {
  4120. "source": "https://git.drupalcode.org/project/video_embed_field"
  4121. }
  4122. },
  4123. {
  4124. "name": "drupal/views_url_path_arguments",
  4125. "version": "1.1.0",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://git.drupalcode.org/project/views_url_path_arguments.git",
  4129. "reference": "8.x-1.1"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://ftp.drupal.org/files/projects/views_url_path_arguments-8.x-1.1.zip",
  4134. "reference": "8.x-1.1",
  4135. "shasum": "55f38957395ae8f35bcdbc44a0f12822e844c73e"
  4136. },
  4137. "require": {
  4138. "drupal/core": "^8 || ^9"
  4139. },
  4140. "type": "drupal-module",
  4141. "extra": {
  4142. "drupal": {
  4143. "version": "8.x-1.1",
  4144. "datestamp": "1586279325",
  4145. "security-coverage": {
  4146. "status": "covered",
  4147. "message": "Covered by Drupal's security advisory policy"
  4148. }
  4149. }
  4150. },
  4151. "notification-url": "https://packages.drupal.org/8/downloads",
  4152. "license": [
  4153. "GPL-2.0+"
  4154. ],
  4155. "authors": [
  4156. {
  4157. "name": "heddn",
  4158. "homepage": "https://www.drupal.org/user/1463982"
  4159. }
  4160. ],
  4161. "description": "Simple module to convert a view argument's entity id into its url path.",
  4162. "homepage": "https://www.drupal.org/project/views_url_path_arguments",
  4163. "keywords": [
  4164. "Drupal"
  4165. ],
  4166. "support": {
  4167. "source": "http://cgit.drupalcode.org/views_url_path_arguments",
  4168. "issues": "https://www.drupal.org/project/issues/views_url_path_arguments"
  4169. }
  4170. },
  4171. {
  4172. "name": "drush/drush",
  4173. "version": "10.3.1",
  4174. "source": {
  4175. "type": "git",
  4176. "url": "https://github.com/drush-ops/drush.git",
  4177. "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80"
  4178. },
  4179. "dist": {
  4180. "type": "zip",
  4181. "url": "https://api.github.com/repos/drush-ops/drush/zipball/aad2b17ad34801d9b55cff903e3e7db65d754b80",
  4182. "reference": "aad2b17ad34801d9b55cff903e3e7db65d754b80",
  4183. "shasum": ""
  4184. },
  4185. "require": {
  4186. "chi-teck/drupal-code-generator": "^1.30.5",
  4187. "composer/semver": "^1.4",
  4188. "consolidation/config": "^1.2",
  4189. "consolidation/filter-via-dot-access-data": "^1",
  4190. "consolidation/robo": "^1.4.11 || ^2",
  4191. "consolidation/site-alias": "^3.0.0@stable",
  4192. "consolidation/site-process": "^2.1 || ^4",
  4193. "ext-dom": "*",
  4194. "grasmash/yaml-expander": "^1.1.1",
  4195. "league/container": "~2",
  4196. "php": ">=7.1.3",
  4197. "psr/log": "~1.0",
  4198. "psy/psysh": "~0.6",
  4199. "symfony/event-dispatcher": "^3.4 || ^4.0",
  4200. "symfony/finder": "^3.4 || ^4.0",
  4201. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0",
  4202. "symfony/yaml": "^3.4 || ^4.0",
  4203. "webflo/drupal-finder": "^1.2",
  4204. "webmozart/path-util": "^2.1.0"
  4205. },
  4206. "require-dev": {
  4207. "composer/installers": "^1.7",
  4208. "cweagans/composer-patches": "~1.0",
  4209. "david-garcia/phpwhois": "4.3.0",
  4210. "drupal/alinks": "1.0.0",
  4211. "drupal/core-recommended": "^8.8",
  4212. "g1a/composer-test-scenarios": "^3",
  4213. "lox/xhprof": "dev-master",
  4214. "phpunit/phpunit": "^4.8.36 || ^6.1",
  4215. "squizlabs/php_codesniffer": "^2.7 || ^3",
  4216. "vlucas/phpdotenv": "^2.4"
  4217. },
  4218. "bin": [
  4219. "drush"
  4220. ],
  4221. "type": "library",
  4222. "extra": {
  4223. "installer-paths": {
  4224. "sut/core": [
  4225. "type:drupal-core"
  4226. ],
  4227. "sut/libraries/{$name}": [
  4228. "type:drupal-library"
  4229. ],
  4230. "sut/modules/unish/{$name}": [
  4231. "drupal/devel"
  4232. ],
  4233. "sut/themes/unish/{$name}": [
  4234. "drupal/empty_theme"
  4235. ],
  4236. "sut/modules/contrib/{$name}": [
  4237. "type:drupal-module"
  4238. ],
  4239. "sut/profiles/contrib/{$name}": [
  4240. "type:drupal-profile"
  4241. ],
  4242. "sut/themes/contrib/{$name}": [
  4243. "type:drupal-theme"
  4244. ],
  4245. "sut/drush/contrib/{$name}": [
  4246. "type:drupal-drush"
  4247. ]
  4248. },
  4249. "branch-alias": {
  4250. "dev-master": "10.x-dev"
  4251. }
  4252. },
  4253. "autoload": {
  4254. "psr-4": {
  4255. "Drush\\": "src/",
  4256. "Drush\\Internal\\": "src/internal-forks"
  4257. }
  4258. },
  4259. "notification-url": "https://packagist.org/downloads/",
  4260. "license": [
  4261. "GPL-2.0-or-later"
  4262. ],
  4263. "authors": [
  4264. {
  4265. "name": "Moshe Weitzman",
  4266. "email": "weitzman@tejasa.com"
  4267. },
  4268. {
  4269. "name": "Owen Barton",
  4270. "email": "drupal@owenbarton.com"
  4271. },
  4272. {
  4273. "name": "Greg Anderson",
  4274. "email": "greg.1.anderson@greenknowe.org"
  4275. },
  4276. {
  4277. "name": "Jonathan Araña Cruz",
  4278. "email": "jonhattan@faita.net"
  4279. },
  4280. {
  4281. "name": "Jonathan Hedstrom",
  4282. "email": "jhedstrom@gmail.com"
  4283. },
  4284. {
  4285. "name": "Christopher Gervais",
  4286. "email": "chris@ergonlogic.com"
  4287. },
  4288. {
  4289. "name": "Dave Reid",
  4290. "email": "dave@davereid.net"
  4291. },
  4292. {
  4293. "name": "Damian Lee",
  4294. "email": "damiankloip@googlemail.com"
  4295. }
  4296. ],
  4297. "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.",
  4298. "homepage": "http://www.drush.org",
  4299. "funding": [
  4300. {
  4301. "url": "https://github.com/weitzman",
  4302. "type": "github"
  4303. }
  4304. ],
  4305. "time": "2020-06-30T19:43:45+00:00"
  4306. },
  4307. {
  4308. "name": "easyrdf/easyrdf",
  4309. "version": "0.9.1",
  4310. "source": {
  4311. "type": "git",
  4312. "url": "https://github.com/easyrdf/easyrdf.git",
  4313. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  4314. },
  4315. "dist": {
  4316. "type": "zip",
  4317. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  4318. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  4319. "shasum": ""
  4320. },
  4321. "require": {
  4322. "ext-mbstring": "*",
  4323. "ext-pcre": "*",
  4324. "php": ">=5.2.8"
  4325. },
  4326. "require-dev": {
  4327. "phpunit/phpunit": "~3.5",
  4328. "sami/sami": "~1.4",
  4329. "squizlabs/php_codesniffer": "~1.4.3"
  4330. },
  4331. "suggest": {
  4332. "ml/json-ld": "~1.0"
  4333. },
  4334. "type": "library",
  4335. "autoload": {
  4336. "psr-0": {
  4337. "EasyRdf_": "lib/"
  4338. }
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "BSD-3-Clause"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "Nicholas Humfrey",
  4347. "email": "njh@aelius.com",
  4348. "homepage": "http://www.aelius.com/njh/",
  4349. "role": "Developer"
  4350. },
  4351. {
  4352. "name": "Alexey Zakhlestin",
  4353. "email": "indeyets@gmail.com",
  4354. "role": "Developer"
  4355. }
  4356. ],
  4357. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  4358. "homepage": "http://www.easyrdf.org/",
  4359. "keywords": [
  4360. "Linked Data",
  4361. "RDF",
  4362. "Semantic Web",
  4363. "Turtle",
  4364. "rdfa",
  4365. "sparql"
  4366. ],
  4367. "time": "2015-02-27T09:45:49+00:00"
  4368. },
  4369. {
  4370. "name": "egulias/email-validator",
  4371. "version": "2.1.17",
  4372. "source": {
  4373. "type": "git",
  4374. "url": "https://github.com/egulias/EmailValidator.git",
  4375. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  4376. },
  4377. "dist": {
  4378. "type": "zip",
  4379. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  4380. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  4381. "shasum": ""
  4382. },
  4383. "require": {
  4384. "doctrine/lexer": "^1.0.1",
  4385. "php": ">=5.5",
  4386. "symfony/polyfill-intl-idn": "^1.10"
  4387. },
  4388. "require-dev": {
  4389. "dominicsayers/isemail": "^3.0.7",
  4390. "phpunit/phpunit": "^4.8.36|^7.5.15",
  4391. "satooshi/php-coveralls": "^1.0.1"
  4392. },
  4393. "suggest": {
  4394. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  4395. },
  4396. "type": "library",
  4397. "extra": {
  4398. "branch-alias": {
  4399. "dev-master": "2.1.x-dev"
  4400. }
  4401. },
  4402. "autoload": {
  4403. "psr-4": {
  4404. "Egulias\\EmailValidator\\": "EmailValidator"
  4405. }
  4406. },
  4407. "notification-url": "https://packagist.org/downloads/",
  4408. "license": [
  4409. "MIT"
  4410. ],
  4411. "authors": [
  4412. {
  4413. "name": "Eduardo Gulias Davis"
  4414. }
  4415. ],
  4416. "description": "A library for validating emails against several RFCs",
  4417. "homepage": "https://github.com/egulias/EmailValidator",
  4418. "keywords": [
  4419. "email",
  4420. "emailvalidation",
  4421. "emailvalidator",
  4422. "validation",
  4423. "validator"
  4424. ],
  4425. "time": "2020-02-13T22:36:52+00:00"
  4426. },
  4427. {
  4428. "name": "grasmash/expander",
  4429. "version": "1.0.0",
  4430. "source": {
  4431. "type": "git",
  4432. "url": "https://github.com/grasmash/expander.git",
  4433. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  4434. },
  4435. "dist": {
  4436. "type": "zip",
  4437. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  4438. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  4439. "shasum": ""
  4440. },
  4441. "require": {
  4442. "dflydev/dot-access-data": "^1.1.0",
  4443. "php": ">=5.4"
  4444. },
  4445. "require-dev": {
  4446. "greg-1-anderson/composer-test-scenarios": "^1",
  4447. "phpunit/phpunit": "^4|^5.5.4",
  4448. "satooshi/php-coveralls": "^1.0.2|dev-master",
  4449. "squizlabs/php_codesniffer": "^2.7"
  4450. },
  4451. "type": "library",
  4452. "extra": {
  4453. "branch-alias": {
  4454. "dev-master": "1.x-dev"
  4455. }
  4456. },
  4457. "autoload": {
  4458. "psr-4": {
  4459. "Grasmash\\Expander\\": "src/"
  4460. }
  4461. },
  4462. "notification-url": "https://packagist.org/downloads/",
  4463. "license": [
  4464. "MIT"
  4465. ],
  4466. "authors": [
  4467. {
  4468. "name": "Matthew Grasmick"
  4469. }
  4470. ],
  4471. "description": "Expands internal property references in PHP arrays file.",
  4472. "time": "2017-12-21T22:14:55+00:00"
  4473. },
  4474. {
  4475. "name": "grasmash/yaml-expander",
  4476. "version": "1.4.0",
  4477. "source": {
  4478. "type": "git",
  4479. "url": "https://github.com/grasmash/yaml-expander.git",
  4480. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  4481. },
  4482. "dist": {
  4483. "type": "zip",
  4484. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  4485. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  4486. "shasum": ""
  4487. },
  4488. "require": {
  4489. "dflydev/dot-access-data": "^1.1.0",
  4490. "php": ">=5.4",
  4491. "symfony/yaml": "^2.8.11|^3|^4"
  4492. },
  4493. "require-dev": {
  4494. "greg-1-anderson/composer-test-scenarios": "^1",
  4495. "phpunit/phpunit": "^4.8|^5.5.4",
  4496. "satooshi/php-coveralls": "^1.0.2|dev-master",
  4497. "squizlabs/php_codesniffer": "^2.7"
  4498. },
  4499. "type": "library",
  4500. "extra": {
  4501. "branch-alias": {
  4502. "dev-master": "1.x-dev"
  4503. }
  4504. },
  4505. "autoload": {
  4506. "psr-4": {
  4507. "Grasmash\\YamlExpander\\": "src/"
  4508. }
  4509. },
  4510. "notification-url": "https://packagist.org/downloads/",
  4511. "license": [
  4512. "MIT"
  4513. ],
  4514. "authors": [
  4515. {
  4516. "name": "Matthew Grasmick"
  4517. }
  4518. ],
  4519. "description": "Expands internal property references in a yaml file.",
  4520. "time": "2017-12-16T16:06:03+00:00"
  4521. },
  4522. {
  4523. "name": "guzzlehttp/guzzle",
  4524. "version": "6.5.4",
  4525. "source": {
  4526. "type": "git",
  4527. "url": "https://github.com/guzzle/guzzle.git",
  4528. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  4529. },
  4530. "dist": {
  4531. "type": "zip",
  4532. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  4533. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  4534. "shasum": ""
  4535. },
  4536. "require": {
  4537. "ext-json": "*",
  4538. "guzzlehttp/promises": "^1.0",
  4539. "guzzlehttp/psr7": "^1.6.1",
  4540. "php": ">=5.5",
  4541. "symfony/polyfill-intl-idn": "1.17.0"
  4542. },
  4543. "require-dev": {
  4544. "ext-curl": "*",
  4545. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  4546. "psr/log": "^1.1"
  4547. },
  4548. "suggest": {
  4549. "psr/log": "Required for using the Log middleware"
  4550. },
  4551. "type": "library",
  4552. "extra": {
  4553. "branch-alias": {
  4554. "dev-master": "6.5-dev"
  4555. }
  4556. },
  4557. "autoload": {
  4558. "psr-4": {
  4559. "GuzzleHttp\\": "src/"
  4560. },
  4561. "files": [
  4562. "src/functions_include.php"
  4563. ]
  4564. },
  4565. "notification-url": "https://packagist.org/downloads/",
  4566. "license": [
  4567. "MIT"
  4568. ],
  4569. "authors": [
  4570. {
  4571. "name": "Michael Dowling",
  4572. "email": "mtdowling@gmail.com",
  4573. "homepage": "https://github.com/mtdowling"
  4574. }
  4575. ],
  4576. "description": "Guzzle is a PHP HTTP client library",
  4577. "homepage": "http://guzzlephp.org/",
  4578. "keywords": [
  4579. "client",
  4580. "curl",
  4581. "framework",
  4582. "http",
  4583. "http client",
  4584. "rest",
  4585. "web service"
  4586. ],
  4587. "time": "2020-05-25T19:35:05+00:00"
  4588. },
  4589. {
  4590. "name": "guzzlehttp/promises",
  4591. "version": "v1.3.1",
  4592. "source": {
  4593. "type": "git",
  4594. "url": "https://github.com/guzzle/promises.git",
  4595. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  4596. },
  4597. "dist": {
  4598. "type": "zip",
  4599. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  4600. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  4601. "shasum": ""
  4602. },
  4603. "require": {
  4604. "php": ">=5.5.0"
  4605. },
  4606. "require-dev": {
  4607. "phpunit/phpunit": "^4.0"
  4608. },
  4609. "type": "library",
  4610. "extra": {
  4611. "branch-alias": {
  4612. "dev-master": "1.4-dev"
  4613. }
  4614. },
  4615. "autoload": {
  4616. "psr-4": {
  4617. "GuzzleHttp\\Promise\\": "src/"
  4618. },
  4619. "files": [
  4620. "src/functions_include.php"
  4621. ]
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Michael Dowling",
  4630. "email": "mtdowling@gmail.com",
  4631. "homepage": "https://github.com/mtdowling"
  4632. }
  4633. ],
  4634. "description": "Guzzle promises library",
  4635. "keywords": [
  4636. "promise"
  4637. ],
  4638. "time": "2016-12-20T10:07:11+00:00"
  4639. },
  4640. {
  4641. "name": "guzzlehttp/psr7",
  4642. "version": "1.6.1",
  4643. "source": {
  4644. "type": "git",
  4645. "url": "https://github.com/guzzle/psr7.git",
  4646. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  4647. },
  4648. "dist": {
  4649. "type": "zip",
  4650. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  4651. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  4652. "shasum": ""
  4653. },
  4654. "require": {
  4655. "php": ">=5.4.0",
  4656. "psr/http-message": "~1.0",
  4657. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  4658. },
  4659. "provide": {
  4660. "psr/http-message-implementation": "1.0"
  4661. },
  4662. "require-dev": {
  4663. "ext-zlib": "*",
  4664. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  4665. },
  4666. "suggest": {
  4667. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  4668. },
  4669. "type": "library",
  4670. "extra": {
  4671. "branch-alias": {
  4672. "dev-master": "1.6-dev"
  4673. }
  4674. },
  4675. "autoload": {
  4676. "psr-4": {
  4677. "GuzzleHttp\\Psr7\\": "src/"
  4678. },
  4679. "files": [
  4680. "src/functions_include.php"
  4681. ]
  4682. },
  4683. "notification-url": "https://packagist.org/downloads/",
  4684. "license": [
  4685. "MIT"
  4686. ],
  4687. "authors": [
  4688. {
  4689. "name": "Michael Dowling",
  4690. "email": "mtdowling@gmail.com",
  4691. "homepage": "https://github.com/mtdowling"
  4692. },
  4693. {
  4694. "name": "Tobias Schultze",
  4695. "homepage": "https://github.com/Tobion"
  4696. }
  4697. ],
  4698. "description": "PSR-7 message implementation that also provides common utility methods",
  4699. "keywords": [
  4700. "http",
  4701. "message",
  4702. "psr-7",
  4703. "request",
  4704. "response",
  4705. "stream",
  4706. "uri",
  4707. "url"
  4708. ],
  4709. "time": "2019-07-01T23:21:34+00:00"
  4710. },
  4711. {
  4712. "name": "laminas/laminas-diactoros",
  4713. "version": "1.8.7p2",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/laminas/laminas-diactoros.git",
  4717. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  4722. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  4723. "shasum": ""
  4724. },
  4725. "require": {
  4726. "laminas/laminas-zendframework-bridge": "^1.0",
  4727. "php": "^5.6 || ^7.0",
  4728. "psr/http-message": "^1.0"
  4729. },
  4730. "provide": {
  4731. "psr/http-message-implementation": "1.0"
  4732. },
  4733. "replace": {
  4734. "zendframework/zend-diactoros": "~1.8.7.0"
  4735. },
  4736. "require-dev": {
  4737. "ext-dom": "*",
  4738. "ext-libxml": "*",
  4739. "laminas/laminas-coding-standard": "~1.0",
  4740. "php-http/psr7-integration-tests": "dev-master",
  4741. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  4742. },
  4743. "type": "library",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-release-1.8": "1.8.x-dev"
  4747. }
  4748. },
  4749. "autoload": {
  4750. "files": [
  4751. "src/functions/create_uploaded_file.php",
  4752. "src/functions/marshal_headers_from_sapi.php",
  4753. "src/functions/marshal_method_from_sapi.php",
  4754. "src/functions/marshal_protocol_version_from_sapi.php",
  4755. "src/functions/marshal_uri_from_sapi.php",
  4756. "src/functions/normalize_server.php",
  4757. "src/functions/normalize_uploaded_files.php",
  4758. "src/functions/parse_cookie_header.php",
  4759. "src/functions/create_uploaded_file.legacy.php",
  4760. "src/functions/marshal_headers_from_sapi.legacy.php",
  4761. "src/functions/marshal_method_from_sapi.legacy.php",
  4762. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  4763. "src/functions/marshal_uri_from_sapi.legacy.php",
  4764. "src/functions/normalize_server.legacy.php",
  4765. "src/functions/normalize_uploaded_files.legacy.php",
  4766. "src/functions/parse_cookie_header.legacy.php"
  4767. ],
  4768. "psr-4": {
  4769. "Laminas\\Diactoros\\": "src/"
  4770. }
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "BSD-3-Clause"
  4775. ],
  4776. "description": "PSR HTTP Message implementations",
  4777. "homepage": "https://laminas.dev",
  4778. "keywords": [
  4779. "http",
  4780. "laminas",
  4781. "psr",
  4782. "psr-7"
  4783. ],
  4784. "time": "2020-03-23T15:28:28+00:00"
  4785. },
  4786. {
  4787. "name": "laminas/laminas-escaper",
  4788. "version": "2.6.1",
  4789. "source": {
  4790. "type": "git",
  4791. "url": "https://github.com/laminas/laminas-escaper.git",
  4792. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  4793. },
  4794. "dist": {
  4795. "type": "zip",
  4796. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  4797. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  4798. "shasum": ""
  4799. },
  4800. "require": {
  4801. "laminas/laminas-zendframework-bridge": "^1.0",
  4802. "php": "^5.6 || ^7.0"
  4803. },
  4804. "replace": {
  4805. "zendframework/zend-escaper": "self.version"
  4806. },
  4807. "require-dev": {
  4808. "laminas/laminas-coding-standard": "~1.0.0",
  4809. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "2.6.x-dev",
  4815. "dev-develop": "2.7.x-dev"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "psr-4": {
  4820. "Laminas\\Escaper\\": "src/"
  4821. }
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "BSD-3-Clause"
  4826. ],
  4827. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  4828. "homepage": "https://laminas.dev",
  4829. "keywords": [
  4830. "escaper",
  4831. "laminas"
  4832. ],
  4833. "time": "2019-12-31T16:43:30+00:00"
  4834. },
  4835. {
  4836. "name": "laminas/laminas-feed",
  4837. "version": "2.12.2",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://github.com/laminas/laminas-feed.git",
  4841. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  4846. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  4847. "shasum": ""
  4848. },
  4849. "require": {
  4850. "ext-dom": "*",
  4851. "ext-libxml": "*",
  4852. "laminas/laminas-escaper": "^2.5.2",
  4853. "laminas/laminas-stdlib": "^3.2.1",
  4854. "laminas/laminas-zendframework-bridge": "^1.0",
  4855. "php": "^5.6 || ^7.0"
  4856. },
  4857. "replace": {
  4858. "zendframework/zend-feed": "^2.12.0"
  4859. },
  4860. "require-dev": {
  4861. "laminas/laminas-cache": "^2.7.2",
  4862. "laminas/laminas-coding-standard": "~1.0.0",
  4863. "laminas/laminas-db": "^2.8.2",
  4864. "laminas/laminas-http": "^2.7",
  4865. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  4866. "laminas/laminas-validator": "^2.10.1",
  4867. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  4868. "psr/http-message": "^1.0.1"
  4869. },
  4870. "suggest": {
  4871. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  4872. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  4873. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  4874. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  4875. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  4876. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  4877. },
  4878. "type": "library",
  4879. "extra": {
  4880. "branch-alias": {
  4881. "dev-master": "2.12.x-dev",
  4882. "dev-develop": "2.13.x-dev"
  4883. }
  4884. },
  4885. "autoload": {
  4886. "psr-4": {
  4887. "Laminas\\Feed\\": "src/"
  4888. }
  4889. },
  4890. "notification-url": "https://packagist.org/downloads/",
  4891. "license": [
  4892. "BSD-3-Clause"
  4893. ],
  4894. "description": "provides functionality for consuming RSS and Atom feeds",
  4895. "homepage": "https://laminas.dev",
  4896. "keywords": [
  4897. "feed",
  4898. "laminas"
  4899. ],
  4900. "time": "2020-03-29T12:36:29+00:00"
  4901. },
  4902. {
  4903. "name": "laminas/laminas-stdlib",
  4904. "version": "3.2.1",
  4905. "source": {
  4906. "type": "git",
  4907. "url": "https://github.com/laminas/laminas-stdlib.git",
  4908. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  4909. },
  4910. "dist": {
  4911. "type": "zip",
  4912. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  4913. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  4914. "shasum": ""
  4915. },
  4916. "require": {
  4917. "laminas/laminas-zendframework-bridge": "^1.0",
  4918. "php": "^5.6 || ^7.0"
  4919. },
  4920. "replace": {
  4921. "zendframework/zend-stdlib": "self.version"
  4922. },
  4923. "require-dev": {
  4924. "laminas/laminas-coding-standard": "~1.0.0",
  4925. "phpbench/phpbench": "^0.13",
  4926. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  4927. },
  4928. "type": "library",
  4929. "extra": {
  4930. "branch-alias": {
  4931. "dev-master": "3.2.x-dev",
  4932. "dev-develop": "3.3.x-dev"
  4933. }
  4934. },
  4935. "autoload": {
  4936. "psr-4": {
  4937. "Laminas\\Stdlib\\": "src/"
  4938. }
  4939. },
  4940. "notification-url": "https://packagist.org/downloads/",
  4941. "license": [
  4942. "BSD-3-Clause"
  4943. ],
  4944. "description": "SPL extensions, array utilities, error handlers, and more",
  4945. "homepage": "https://laminas.dev",
  4946. "keywords": [
  4947. "laminas",
  4948. "stdlib"
  4949. ],
  4950. "time": "2019-12-31T17:51:15+00:00"
  4951. },
  4952. {
  4953. "name": "laminas/laminas-zendframework-bridge",
  4954. "version": "1.0.4",
  4955. "source": {
  4956. "type": "git",
  4957. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  4958. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  4959. },
  4960. "dist": {
  4961. "type": "zip",
  4962. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  4963. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  4964. "shasum": ""
  4965. },
  4966. "require": {
  4967. "php": "^5.6 || ^7.0"
  4968. },
  4969. "require-dev": {
  4970. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  4971. "squizlabs/php_codesniffer": "^3.5"
  4972. },
  4973. "type": "library",
  4974. "extra": {
  4975. "branch-alias": {
  4976. "dev-master": "1.0.x-dev",
  4977. "dev-develop": "1.1.x-dev"
  4978. },
  4979. "laminas": {
  4980. "module": "Laminas\\ZendFrameworkBridge"
  4981. }
  4982. },
  4983. "autoload": {
  4984. "files": [
  4985. "src/autoload.php"
  4986. ],
  4987. "psr-4": {
  4988. "Laminas\\ZendFrameworkBridge\\": "src//"
  4989. }
  4990. },
  4991. "notification-url": "https://packagist.org/downloads/",
  4992. "license": [
  4993. "BSD-3-Clause"
  4994. ],
  4995. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  4996. "keywords": [
  4997. "ZendFramework",
  4998. "autoloading",
  4999. "laminas",
  5000. "zf"
  5001. ],
  5002. "funding": [
  5003. {
  5004. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5005. "type": "community_bridge"
  5006. }
  5007. ],
  5008. "time": "2020-05-20T16:45:56+00:00"
  5009. },
  5010. {
  5011. "name": "league/container",
  5012. "version": "2.4.1",
  5013. "source": {
  5014. "type": "git",
  5015. "url": "https://github.com/thephpleague/container.git",
  5016. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  5017. },
  5018. "dist": {
  5019. "type": "zip",
  5020. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  5021. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  5022. "shasum": ""
  5023. },
  5024. "require": {
  5025. "container-interop/container-interop": "^1.2",
  5026. "php": "^5.4.0 || ^7.0"
  5027. },
  5028. "provide": {
  5029. "container-interop/container-interop-implementation": "^1.2",
  5030. "psr/container-implementation": "^1.0"
  5031. },
  5032. "replace": {
  5033. "orno/di": "~2.0"
  5034. },
  5035. "require-dev": {
  5036. "phpunit/phpunit": "4.*"
  5037. },
  5038. "type": "library",
  5039. "extra": {
  5040. "branch-alias": {
  5041. "dev-2.x": "2.x-dev",
  5042. "dev-1.x": "1.x-dev"
  5043. }
  5044. },
  5045. "autoload": {
  5046. "psr-4": {
  5047. "League\\Container\\": "src"
  5048. }
  5049. },
  5050. "notification-url": "https://packagist.org/downloads/",
  5051. "license": [
  5052. "MIT"
  5053. ],
  5054. "authors": [
  5055. {
  5056. "name": "Phil Bennett",
  5057. "email": "philipobenito@gmail.com",
  5058. "homepage": "http://www.philipobenito.com",
  5059. "role": "Developer"
  5060. }
  5061. ],
  5062. "description": "A fast and intuitive dependency injection container.",
  5063. "homepage": "https://github.com/thephpleague/container",
  5064. "keywords": [
  5065. "container",
  5066. "dependency",
  5067. "di",
  5068. "injection",
  5069. "league",
  5070. "provider",
  5071. "service"
  5072. ],
  5073. "time": "2017-05-10T09:20:27+00:00"
  5074. },
  5075. {
  5076. "name": "masterminds/html5",
  5077. "version": "2.3.0",
  5078. "source": {
  5079. "type": "git",
  5080. "url": "https://github.com/Masterminds/html5-php.git",
  5081. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  5082. },
  5083. "dist": {
  5084. "type": "zip",
  5085. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  5086. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  5087. "shasum": ""
  5088. },
  5089. "require": {
  5090. "ext-libxml": "*",
  5091. "php": ">=5.3.0"
  5092. },
  5093. "require-dev": {
  5094. "phpunit/phpunit": "4.*",
  5095. "sami/sami": "~2.0",
  5096. "satooshi/php-coveralls": "1.0.*"
  5097. },
  5098. "type": "library",
  5099. "extra": {
  5100. "branch-alias": {
  5101. "dev-master": "2.2-dev"
  5102. }
  5103. },
  5104. "autoload": {
  5105. "psr-4": {
  5106. "Masterminds\\": "src"
  5107. }
  5108. },
  5109. "notification-url": "https://packagist.org/downloads/",
  5110. "license": [
  5111. "MIT"
  5112. ],
  5113. "authors": [
  5114. {
  5115. "name": "Matt Butcher",
  5116. "email": "technosophos@gmail.com"
  5117. },
  5118. {
  5119. "name": "Asmir Mustafic",
  5120. "email": "goetas@gmail.com"
  5121. },
  5122. {
  5123. "name": "Matt Farina",
  5124. "email": "matt@mattfarina.com"
  5125. }
  5126. ],
  5127. "description": "An HTML5 parser and serializer.",
  5128. "homepage": "http://masterminds.github.io/html5-php",
  5129. "keywords": [
  5130. "HTML5",
  5131. "dom",
  5132. "html",
  5133. "parser",
  5134. "querypath",
  5135. "serializer",
  5136. "xml"
  5137. ],
  5138. "time": "2017-09-04T12:26:28+00:00"
  5139. },
  5140. {
  5141. "name": "nikic/php-parser",
  5142. "version": "v4.6.0",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://github.com/nikic/PHP-Parser.git",
  5146. "reference": "c346bbfafe2ff60680258b631afb730d186ed864"
  5147. },
  5148. "dist": {
  5149. "type": "zip",
  5150. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c346bbfafe2ff60680258b631afb730d186ed864",
  5151. "reference": "c346bbfafe2ff60680258b631afb730d186ed864",
  5152. "shasum": ""
  5153. },
  5154. "require": {
  5155. "ext-tokenizer": "*",
  5156. "php": ">=7.0"
  5157. },
  5158. "require-dev": {
  5159. "ircmaxell/php-yacc": "0.0.5",
  5160. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  5161. },
  5162. "bin": [
  5163. "bin/php-parse"
  5164. ],
  5165. "type": "library",
  5166. "extra": {
  5167. "branch-alias": {
  5168. "dev-master": "4.3-dev"
  5169. }
  5170. },
  5171. "autoload": {
  5172. "psr-4": {
  5173. "PhpParser\\": "lib/PhpParser"
  5174. }
  5175. },
  5176. "notification-url": "https://packagist.org/downloads/",
  5177. "license": [
  5178. "BSD-3-Clause"
  5179. ],
  5180. "authors": [
  5181. {
  5182. "name": "Nikita Popov"
  5183. }
  5184. ],
  5185. "description": "A PHP parser written in PHP",
  5186. "keywords": [
  5187. "parser",
  5188. "php"
  5189. ],
  5190. "time": "2020-07-02T17:12:47+00:00"
  5191. },
  5192. {
  5193. "name": "oomphinc/composer-installers-extender",
  5194. "version": "v1.1.2",
  5195. "source": {
  5196. "type": "git",
  5197. "url": "https://github.com/oomphinc/composer-installers-extender.git",
  5198. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56"
  5199. },
  5200. "dist": {
  5201. "type": "zip",
  5202. "url": "https://api.github.com/repos/oomphinc/composer-installers-extender/zipball/ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  5203. "reference": "ca1c4b16b0905c81d1e77e608f36a2eff1a56f56",
  5204. "shasum": ""
  5205. },
  5206. "require": {
  5207. "composer-plugin-api": "^1.0",
  5208. "composer/installers": "^1.0"
  5209. },
  5210. "type": "composer-plugin",
  5211. "extra": {
  5212. "class": "OomphInc\\ComposerInstallersExtender\\Plugin"
  5213. },
  5214. "autoload": {
  5215. "psr-4": {
  5216. "OomphInc\\ComposerInstallersExtender\\": "src/"
  5217. }
  5218. },
  5219. "notification-url": "https://packagist.org/downloads/",
  5220. "license": [
  5221. "MIT"
  5222. ],
  5223. "authors": [
  5224. {
  5225. "name": "Stephen Beemsterboer",
  5226. "email": "stephen@oomphinc.com",
  5227. "homepage": "https://github.com/balbuf"
  5228. }
  5229. ],
  5230. "description": "Extend the composer/installers plugin to accept any arbitrary package type.",
  5231. "homepage": "http://www.oomphinc.com/",
  5232. "time": "2017-03-31T16:57:39+00:00"
  5233. },
  5234. {
  5235. "name": "paragonie/random_compat",
  5236. "version": "v9.99.99",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://github.com/paragonie/random_compat.git",
  5240. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  5245. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  5246. "shasum": ""
  5247. },
  5248. "require": {
  5249. "php": "^7"
  5250. },
  5251. "require-dev": {
  5252. "phpunit/phpunit": "4.*|5.*",
  5253. "vimeo/psalm": "^1"
  5254. },
  5255. "suggest": {
  5256. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5257. },
  5258. "type": "library",
  5259. "notification-url": "https://packagist.org/downloads/",
  5260. "license": [
  5261. "MIT"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Paragon Initiative Enterprises",
  5266. "email": "security@paragonie.com",
  5267. "homepage": "https://paragonie.com"
  5268. }
  5269. ],
  5270. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5271. "keywords": [
  5272. "csprng",
  5273. "polyfill",
  5274. "pseudorandom",
  5275. "random"
  5276. ],
  5277. "time": "2018-07-02T15:55:56+00:00"
  5278. },
  5279. {
  5280. "name": "pear/archive_tar",
  5281. "version": "1.4.9",
  5282. "source": {
  5283. "type": "git",
  5284. "url": "https://github.com/pear/Archive_Tar.git",
  5285. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0"
  5286. },
  5287. "dist": {
  5288. "type": "zip",
  5289. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/c5b00053770e1d72128252c62c2c1a12c26639f0",
  5290. "reference": "c5b00053770e1d72128252c62c2c1a12c26639f0",
  5291. "shasum": ""
  5292. },
  5293. "require": {
  5294. "pear/pear-core-minimal": "^1.10.0alpha2",
  5295. "php": ">=5.2.0"
  5296. },
  5297. "require-dev": {
  5298. "phpunit/phpunit": "*"
  5299. },
  5300. "suggest": {
  5301. "ext-bz2": "Bz2 compression support.",
  5302. "ext-xz": "Lzma2 compression support.",
  5303. "ext-zlib": "Gzip compression support."
  5304. },
  5305. "type": "library",
  5306. "extra": {
  5307. "branch-alias": {
  5308. "dev-master": "1.4.x-dev"
  5309. }
  5310. },
  5311. "autoload": {
  5312. "psr-0": {
  5313. "Archive_Tar": ""
  5314. }
  5315. },
  5316. "notification-url": "https://packagist.org/downloads/",
  5317. "include-path": [
  5318. "./"
  5319. ],
  5320. "license": [
  5321. "BSD-3-Clause"
  5322. ],
  5323. "authors": [
  5324. {
  5325. "name": "Vincent Blavet",
  5326. "email": "vincent@phpconcept.net"
  5327. },
  5328. {
  5329. "name": "Greg Beaver",
  5330. "email": "greg@chiaraquartet.net"
  5331. },
  5332. {
  5333. "name": "Michiel Rook",
  5334. "email": "mrook@php.net"
  5335. }
  5336. ],
  5337. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  5338. "homepage": "https://github.com/pear/Archive_Tar",
  5339. "keywords": [
  5340. "archive",
  5341. "tar"
  5342. ],
  5343. "time": "2019-12-04T10:17:28+00:00"
  5344. },
  5345. {
  5346. "name": "pear/console_getopt",
  5347. "version": "v1.4.3",
  5348. "source": {
  5349. "type": "git",
  5350. "url": "https://github.com/pear/Console_Getopt.git",
  5351. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  5352. },
  5353. "dist": {
  5354. "type": "zip",
  5355. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5356. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  5357. "shasum": ""
  5358. },
  5359. "type": "library",
  5360. "autoload": {
  5361. "psr-0": {
  5362. "Console": "./"
  5363. }
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "include-path": [
  5367. "./"
  5368. ],
  5369. "license": [
  5370. "BSD-2-Clause"
  5371. ],
  5372. "authors": [
  5373. {
  5374. "name": "Andrei Zmievski",
  5375. "email": "andrei@php.net",
  5376. "role": "Lead"
  5377. },
  5378. {
  5379. "name": "Stig Bakken",
  5380. "email": "stig@php.net",
  5381. "role": "Developer"
  5382. },
  5383. {
  5384. "name": "Greg Beaver",
  5385. "email": "cellog@php.net",
  5386. "role": "Helper"
  5387. }
  5388. ],
  5389. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  5390. "time": "2019-11-20T18:27:48+00:00"
  5391. },
  5392. {
  5393. "name": "pear/pear-core-minimal",
  5394. "version": "v1.10.10",
  5395. "source": {
  5396. "type": "git",
  5397. "url": "https://github.com/pear/pear-core-minimal.git",
  5398. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  5399. },
  5400. "dist": {
  5401. "type": "zip",
  5402. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  5403. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  5404. "shasum": ""
  5405. },
  5406. "require": {
  5407. "pear/console_getopt": "~1.4",
  5408. "pear/pear_exception": "~1.0"
  5409. },
  5410. "replace": {
  5411. "rsky/pear-core-min": "self.version"
  5412. },
  5413. "type": "library",
  5414. "autoload": {
  5415. "psr-0": {
  5416. "": "src/"
  5417. }
  5418. },
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "include-path": [
  5421. "src/"
  5422. ],
  5423. "license": [
  5424. "BSD-3-Clause"
  5425. ],
  5426. "authors": [
  5427. {
  5428. "name": "Christian Weiske",
  5429. "email": "cweiske@php.net",
  5430. "role": "Lead"
  5431. }
  5432. ],
  5433. "description": "Minimal set of PEAR core files to be used as composer dependency",
  5434. "time": "2019-11-19T19:00:24+00:00"
  5435. },
  5436. {
  5437. "name": "pear/pear_exception",
  5438. "version": "v1.0.1",
  5439. "source": {
  5440. "type": "git",
  5441. "url": "https://github.com/pear/PEAR_Exception.git",
  5442. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  5443. },
  5444. "dist": {
  5445. "type": "zip",
  5446. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  5447. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  5448. "shasum": ""
  5449. },
  5450. "require": {
  5451. "php": ">=4.4.0"
  5452. },
  5453. "require-dev": {
  5454. "phpunit/phpunit": "*"
  5455. },
  5456. "type": "class",
  5457. "extra": {
  5458. "branch-alias": {
  5459. "dev-master": "1.0.x-dev"
  5460. }
  5461. },
  5462. "autoload": {
  5463. "classmap": [
  5464. "PEAR/"
  5465. ]
  5466. },
  5467. "notification-url": "https://packagist.org/downloads/",
  5468. "include-path": [
  5469. "."
  5470. ],
  5471. "license": [
  5472. "BSD-2-Clause"
  5473. ],
  5474. "authors": [
  5475. {
  5476. "name": "Helgi Thormar",
  5477. "email": "dufuz@php.net"
  5478. },
  5479. {
  5480. "name": "Greg Beaver",
  5481. "email": "cellog@php.net"
  5482. }
  5483. ],
  5484. "description": "The PEAR Exception base class.",
  5485. "homepage": "https://github.com/pear/PEAR_Exception",
  5486. "keywords": [
  5487. "exception"
  5488. ],
  5489. "time": "2019-12-10T10:24:42+00:00"
  5490. },
  5491. {
  5492. "name": "psr/container",
  5493. "version": "1.0.0",
  5494. "source": {
  5495. "type": "git",
  5496. "url": "https://github.com/php-fig/container.git",
  5497. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  5498. },
  5499. "dist": {
  5500. "type": "zip",
  5501. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  5502. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  5503. "shasum": ""
  5504. },
  5505. "require": {
  5506. "php": ">=5.3.0"
  5507. },
  5508. "type": "library",
  5509. "extra": {
  5510. "branch-alias": {
  5511. "dev-master": "1.0.x-dev"
  5512. }
  5513. },
  5514. "autoload": {
  5515. "psr-4": {
  5516. "Psr\\Container\\": "src/"
  5517. }
  5518. },
  5519. "notification-url": "https://packagist.org/downloads/",
  5520. "license": [
  5521. "MIT"
  5522. ],
  5523. "authors": [
  5524. {
  5525. "name": "PHP-FIG",
  5526. "homepage": "http://www.php-fig.org/"
  5527. }
  5528. ],
  5529. "description": "Common Container Interface (PHP FIG PSR-11)",
  5530. "homepage": "https://github.com/php-fig/container",
  5531. "keywords": [
  5532. "PSR-11",
  5533. "container",
  5534. "container-interface",
  5535. "container-interop",
  5536. "psr"
  5537. ],
  5538. "time": "2017-02-14T16:28:37+00:00"
  5539. },
  5540. {
  5541. "name": "psr/http-message",
  5542. "version": "1.0.1",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/php-fig/http-message.git",
  5546. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  5551. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "php": ">=5.3.0"
  5556. },
  5557. "type": "library",
  5558. "extra": {
  5559. "branch-alias": {
  5560. "dev-master": "1.0.x-dev"
  5561. }
  5562. },
  5563. "autoload": {
  5564. "psr-4": {
  5565. "Psr\\Http\\Message\\": "src/"
  5566. }
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "MIT"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "PHP-FIG",
  5575. "homepage": "http://www.php-fig.org/"
  5576. }
  5577. ],
  5578. "description": "Common interface for HTTP messages",
  5579. "homepage": "https://github.com/php-fig/http-message",
  5580. "keywords": [
  5581. "http",
  5582. "http-message",
  5583. "psr",
  5584. "psr-7",
  5585. "request",
  5586. "response"
  5587. ],
  5588. "time": "2016-08-06T14:39:51+00:00"
  5589. },
  5590. {
  5591. "name": "psr/log",
  5592. "version": "1.1.3",
  5593. "source": {
  5594. "type": "git",
  5595. "url": "https://github.com/php-fig/log.git",
  5596. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  5597. },
  5598. "dist": {
  5599. "type": "zip",
  5600. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  5601. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  5602. "shasum": ""
  5603. },
  5604. "require": {
  5605. "php": ">=5.3.0"
  5606. },
  5607. "type": "library",
  5608. "extra": {
  5609. "branch-alias": {
  5610. "dev-master": "1.1.x-dev"
  5611. }
  5612. },
  5613. "autoload": {
  5614. "psr-4": {
  5615. "Psr\\Log\\": "Psr/Log/"
  5616. }
  5617. },
  5618. "notification-url": "https://packagist.org/downloads/",
  5619. "license": [
  5620. "MIT"
  5621. ],
  5622. "authors": [
  5623. {
  5624. "name": "PHP-FIG",
  5625. "homepage": "http://www.php-fig.org/"
  5626. }
  5627. ],
  5628. "description": "Common interface for logging libraries",
  5629. "homepage": "https://github.com/php-fig/log",
  5630. "keywords": [
  5631. "log",
  5632. "psr",
  5633. "psr-3"
  5634. ],
  5635. "time": "2020-03-23T09:12:05+00:00"
  5636. },
  5637. {
  5638. "name": "psy/psysh",
  5639. "version": "v0.10.4",
  5640. "source": {
  5641. "type": "git",
  5642. "url": "https://github.com/bobthecow/psysh.git",
  5643. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  5644. },
  5645. "dist": {
  5646. "type": "zip",
  5647. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  5648. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  5649. "shasum": ""
  5650. },
  5651. "require": {
  5652. "dnoegel/php-xdg-base-dir": "0.1.*",
  5653. "ext-json": "*",
  5654. "ext-tokenizer": "*",
  5655. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  5656. "php": "^8.0 || ^7.0 || ^5.5.9",
  5657. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  5658. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  5659. },
  5660. "require-dev": {
  5661. "bamarni/composer-bin-plugin": "^1.2",
  5662. "hoa/console": "3.17.*"
  5663. },
  5664. "suggest": {
  5665. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5666. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5667. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5668. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  5669. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  5670. },
  5671. "bin": [
  5672. "bin/psysh"
  5673. ],
  5674. "type": "library",
  5675. "extra": {
  5676. "branch-alias": {
  5677. "dev-master": "0.10.x-dev"
  5678. }
  5679. },
  5680. "autoload": {
  5681. "files": [
  5682. "src/functions.php"
  5683. ],
  5684. "psr-4": {
  5685. "Psy\\": "src/"
  5686. }
  5687. },
  5688. "notification-url": "https://packagist.org/downloads/",
  5689. "license": [
  5690. "MIT"
  5691. ],
  5692. "authors": [
  5693. {
  5694. "name": "Justin Hileman",
  5695. "email": "justin@justinhileman.info",
  5696. "homepage": "http://justinhileman.com"
  5697. }
  5698. ],
  5699. "description": "An interactive shell for modern PHP.",
  5700. "homepage": "http://psysh.org",
  5701. "keywords": [
  5702. "REPL",
  5703. "console",
  5704. "interactive",
  5705. "shell"
  5706. ],
  5707. "time": "2020-05-03T19:32:03+00:00"
  5708. },
  5709. {
  5710. "name": "ralouphie/getallheaders",
  5711. "version": "3.0.3",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/ralouphie/getallheaders.git",
  5715. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5720. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5721. "shasum": ""
  5722. },
  5723. "require": {
  5724. "php": ">=5.6"
  5725. },
  5726. "require-dev": {
  5727. "php-coveralls/php-coveralls": "^2.1",
  5728. "phpunit/phpunit": "^5 || ^6.5"
  5729. },
  5730. "type": "library",
  5731. "autoload": {
  5732. "files": [
  5733. "src/getallheaders.php"
  5734. ]
  5735. },
  5736. "notification-url": "https://packagist.org/downloads/",
  5737. "license": [
  5738. "MIT"
  5739. ],
  5740. "authors": [
  5741. {
  5742. "name": "Ralph Khattar",
  5743. "email": "ralph.khattar@gmail.com"
  5744. }
  5745. ],
  5746. "description": "A polyfill for getallheaders.",
  5747. "time": "2019-03-08T08:55:37+00:00"
  5748. },
  5749. {
  5750. "name": "stack/builder",
  5751. "version": "v1.0.5",
  5752. "source": {
  5753. "type": "git",
  5754. "url": "https://github.com/stackphp/builder.git",
  5755. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  5756. },
  5757. "dist": {
  5758. "type": "zip",
  5759. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  5760. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  5761. "shasum": ""
  5762. },
  5763. "require": {
  5764. "php": ">=5.3.0",
  5765. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  5766. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  5767. },
  5768. "require-dev": {
  5769. "silex/silex": "~1.0"
  5770. },
  5771. "type": "library",
  5772. "extra": {
  5773. "branch-alias": {
  5774. "dev-master": "1.0-dev"
  5775. }
  5776. },
  5777. "autoload": {
  5778. "psr-0": {
  5779. "Stack": "src"
  5780. }
  5781. },
  5782. "notification-url": "https://packagist.org/downloads/",
  5783. "license": [
  5784. "MIT"
  5785. ],
  5786. "authors": [
  5787. {
  5788. "name": "Igor Wiedler",
  5789. "email": "igor@wiedler.ch"
  5790. }
  5791. ],
  5792. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  5793. "keywords": [
  5794. "stack"
  5795. ],
  5796. "time": "2017-11-18T14:57:29+00:00"
  5797. },
  5798. {
  5799. "name": "symfony-cmf/routing",
  5800. "version": "1.4.1",
  5801. "source": {
  5802. "type": "git",
  5803. "url": "https://github.com/symfony-cmf/routing.git",
  5804. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  5805. },
  5806. "dist": {
  5807. "type": "zip",
  5808. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  5809. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  5810. "shasum": ""
  5811. },
  5812. "require": {
  5813. "php": "^5.3.9|^7.0",
  5814. "psr/log": "1.*",
  5815. "symfony/http-kernel": "^2.2|3.*",
  5816. "symfony/routing": "^2.2|3.*"
  5817. },
  5818. "require-dev": {
  5819. "friendsofsymfony/jsrouting-bundle": "^1.1",
  5820. "symfony-cmf/testing": "^1.3",
  5821. "symfony/config": "^2.2|3.*",
  5822. "symfony/dependency-injection": "^2.0.5|3.*",
  5823. "symfony/event-dispatcher": "^2.1|3.*"
  5824. },
  5825. "suggest": {
  5826. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  5827. },
  5828. "type": "library",
  5829. "extra": {
  5830. "branch-alias": {
  5831. "dev-master": "1.4-dev"
  5832. }
  5833. },
  5834. "autoload": {
  5835. "psr-4": {
  5836. "Symfony\\Cmf\\Component\\Routing\\": ""
  5837. }
  5838. },
  5839. "notification-url": "https://packagist.org/downloads/",
  5840. "license": [
  5841. "MIT"
  5842. ],
  5843. "authors": [
  5844. {
  5845. "name": "Symfony CMF Community",
  5846. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  5847. }
  5848. ],
  5849. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  5850. "homepage": "http://cmf.symfony.com",
  5851. "keywords": [
  5852. "database",
  5853. "routing"
  5854. ],
  5855. "time": "2017-05-09T08:10:41+00:00"
  5856. },
  5857. {
  5858. "name": "symfony/class-loader",
  5859. "version": "v3.4.41",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/symfony/class-loader.git",
  5863. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  5868. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  5869. "shasum": ""
  5870. },
  5871. "require": {
  5872. "php": "^5.5.9|>=7.0.8"
  5873. },
  5874. "require-dev": {
  5875. "symfony/finder": "~2.8|~3.0|~4.0",
  5876. "symfony/polyfill-apcu": "~1.1"
  5877. },
  5878. "suggest": {
  5879. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  5880. },
  5881. "type": "library",
  5882. "extra": {
  5883. "branch-alias": {
  5884. "dev-master": "3.4-dev"
  5885. }
  5886. },
  5887. "autoload": {
  5888. "psr-4": {
  5889. "Symfony\\Component\\ClassLoader\\": ""
  5890. },
  5891. "exclude-from-classmap": [
  5892. "/Tests/"
  5893. ]
  5894. },
  5895. "notification-url": "https://packagist.org/downloads/",
  5896. "license": [
  5897. "MIT"
  5898. ],
  5899. "authors": [
  5900. {
  5901. "name": "Fabien Potencier",
  5902. "email": "fabien@symfony.com"
  5903. },
  5904. {
  5905. "name": "Symfony Community",
  5906. "homepage": "https://symfony.com/contributors"
  5907. }
  5908. ],
  5909. "description": "Symfony ClassLoader Component",
  5910. "homepage": "https://symfony.com",
  5911. "funding": [
  5912. {
  5913. "url": "https://symfony.com/sponsor",
  5914. "type": "custom"
  5915. },
  5916. {
  5917. "url": "https://github.com/fabpot",
  5918. "type": "github"
  5919. },
  5920. {
  5921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5922. "type": "tidelift"
  5923. }
  5924. ],
  5925. "time": "2020-03-15T09:38:08+00:00"
  5926. },
  5927. {
  5928. "name": "symfony/console",
  5929. "version": "v3.4.41",
  5930. "source": {
  5931. "type": "git",
  5932. "url": "https://github.com/symfony/console.git",
  5933. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  5934. },
  5935. "dist": {
  5936. "type": "zip",
  5937. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  5938. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  5939. "shasum": ""
  5940. },
  5941. "require": {
  5942. "php": "^5.5.9|>=7.0.8",
  5943. "symfony/debug": "~2.8|~3.0|~4.0",
  5944. "symfony/polyfill-mbstring": "~1.0"
  5945. },
  5946. "conflict": {
  5947. "symfony/dependency-injection": "<3.4",
  5948. "symfony/process": "<3.3"
  5949. },
  5950. "provide": {
  5951. "psr/log-implementation": "1.0"
  5952. },
  5953. "require-dev": {
  5954. "psr/log": "~1.0",
  5955. "symfony/config": "~3.3|~4.0",
  5956. "symfony/dependency-injection": "~3.4|~4.0",
  5957. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  5958. "symfony/lock": "~3.4|~4.0",
  5959. "symfony/process": "~3.3|~4.0"
  5960. },
  5961. "suggest": {
  5962. "psr/log": "For using the console logger",
  5963. "symfony/event-dispatcher": "",
  5964. "symfony/lock": "",
  5965. "symfony/process": ""
  5966. },
  5967. "type": "library",
  5968. "extra": {
  5969. "branch-alias": {
  5970. "dev-master": "3.4-dev"
  5971. }
  5972. },
  5973. "autoload": {
  5974. "psr-4": {
  5975. "Symfony\\Component\\Console\\": ""
  5976. },
  5977. "exclude-from-classmap": [
  5978. "/Tests/"
  5979. ]
  5980. },
  5981. "notification-url": "https://packagist.org/downloads/",
  5982. "license": [
  5983. "MIT"
  5984. ],
  5985. "authors": [
  5986. {
  5987. "name": "Fabien Potencier",
  5988. "email": "fabien@symfony.com"
  5989. },
  5990. {
  5991. "name": "Symfony Community",
  5992. "homepage": "https://symfony.com/contributors"
  5993. }
  5994. ],
  5995. "description": "Symfony Console Component",
  5996. "homepage": "https://symfony.com",
  5997. "funding": [
  5998. {
  5999. "url": "https://symfony.com/sponsor",
  6000. "type": "custom"
  6001. },
  6002. {
  6003. "url": "https://github.com/fabpot",
  6004. "type": "github"
  6005. },
  6006. {
  6007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6008. "type": "tidelift"
  6009. }
  6010. ],
  6011. "time": "2020-05-30T18:58:05+00:00"
  6012. },
  6013. {
  6014. "name": "symfony/debug",
  6015. "version": "v3.4.41",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/symfony/debug.git",
  6019. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  6024. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "php": "^5.5.9|>=7.0.8",
  6029. "psr/log": "~1.0"
  6030. },
  6031. "conflict": {
  6032. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  6033. },
  6034. "require-dev": {
  6035. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  6036. },
  6037. "type": "library",
  6038. "extra": {
  6039. "branch-alias": {
  6040. "dev-master": "3.4-dev"
  6041. }
  6042. },
  6043. "autoload": {
  6044. "psr-4": {
  6045. "Symfony\\Component\\Debug\\": ""
  6046. },
  6047. "exclude-from-classmap": [
  6048. "/Tests/"
  6049. ]
  6050. },
  6051. "notification-url": "https://packagist.org/downloads/",
  6052. "license": [
  6053. "MIT"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Fabien Potencier",
  6058. "email": "fabien@symfony.com"
  6059. },
  6060. {
  6061. "name": "Symfony Community",
  6062. "homepage": "https://symfony.com/contributors"
  6063. }
  6064. ],
  6065. "description": "Symfony Debug Component",
  6066. "homepage": "https://symfony.com",
  6067. "funding": [
  6068. {
  6069. "url": "https://symfony.com/sponsor",
  6070. "type": "custom"
  6071. },
  6072. {
  6073. "url": "https://github.com/fabpot",
  6074. "type": "github"
  6075. },
  6076. {
  6077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6078. "type": "tidelift"
  6079. }
  6080. ],
  6081. "time": "2020-05-22T18:25:20+00:00"
  6082. },
  6083. {
  6084. "name": "symfony/dependency-injection",
  6085. "version": "v3.4.41",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://github.com/symfony/dependency-injection.git",
  6089. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  6094. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  6095. "shasum": ""
  6096. },
  6097. "require": {
  6098. "php": "^5.5.9|>=7.0.8",
  6099. "psr/container": "^1.0"
  6100. },
  6101. "conflict": {
  6102. "symfony/config": "<3.3.7",
  6103. "symfony/finder": "<3.3",
  6104. "symfony/proxy-manager-bridge": "<3.4",
  6105. "symfony/yaml": "<3.4"
  6106. },
  6107. "provide": {
  6108. "psr/container-implementation": "1.0"
  6109. },
  6110. "require-dev": {
  6111. "symfony/config": "~3.3|~4.0",
  6112. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6113. "symfony/yaml": "~3.4|~4.0"
  6114. },
  6115. "suggest": {
  6116. "symfony/config": "",
  6117. "symfony/expression-language": "For using expressions in service container configuration",
  6118. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  6119. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  6120. "symfony/yaml": ""
  6121. },
  6122. "type": "library",
  6123. "extra": {
  6124. "branch-alias": {
  6125. "dev-master": "3.4-dev"
  6126. }
  6127. },
  6128. "autoload": {
  6129. "psr-4": {
  6130. "Symfony\\Component\\DependencyInjection\\": ""
  6131. },
  6132. "exclude-from-classmap": [
  6133. "/Tests/"
  6134. ]
  6135. },
  6136. "notification-url": "https://packagist.org/downloads/",
  6137. "license": [
  6138. "MIT"
  6139. ],
  6140. "authors": [
  6141. {
  6142. "name": "Fabien Potencier",
  6143. "email": "fabien@symfony.com"
  6144. },
  6145. {
  6146. "name": "Symfony Community",
  6147. "homepage": "https://symfony.com/contributors"
  6148. }
  6149. ],
  6150. "description": "Symfony DependencyInjection Component",
  6151. "homepage": "https://symfony.com",
  6152. "funding": [
  6153. {
  6154. "url": "https://symfony.com/sponsor",
  6155. "type": "custom"
  6156. },
  6157. {
  6158. "url": "https://github.com/fabpot",
  6159. "type": "github"
  6160. },
  6161. {
  6162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6163. "type": "tidelift"
  6164. }
  6165. ],
  6166. "time": "2020-05-30T21:06:01+00:00"
  6167. },
  6168. {
  6169. "name": "symfony/event-dispatcher",
  6170. "version": "v3.4.41",
  6171. "source": {
  6172. "type": "git",
  6173. "url": "https://github.com/symfony/event-dispatcher.git",
  6174. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  6175. },
  6176. "dist": {
  6177. "type": "zip",
  6178. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  6179. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  6180. "shasum": ""
  6181. },
  6182. "require": {
  6183. "php": "^5.5.9|>=7.0.8"
  6184. },
  6185. "conflict": {
  6186. "symfony/dependency-injection": "<3.3"
  6187. },
  6188. "require-dev": {
  6189. "psr/log": "~1.0",
  6190. "symfony/config": "~2.8|~3.0|~4.0",
  6191. "symfony/dependency-injection": "~3.3|~4.0",
  6192. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6193. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  6194. },
  6195. "suggest": {
  6196. "symfony/dependency-injection": "",
  6197. "symfony/http-kernel": ""
  6198. },
  6199. "type": "library",
  6200. "extra": {
  6201. "branch-alias": {
  6202. "dev-master": "3.4-dev"
  6203. }
  6204. },
  6205. "autoload": {
  6206. "psr-4": {
  6207. "Symfony\\Component\\EventDispatcher\\": ""
  6208. },
  6209. "exclude-from-classmap": [
  6210. "/Tests/"
  6211. ]
  6212. },
  6213. "notification-url": "https://packagist.org/downloads/",
  6214. "license": [
  6215. "MIT"
  6216. ],
  6217. "authors": [
  6218. {
  6219. "name": "Fabien Potencier",
  6220. "email": "fabien@symfony.com"
  6221. },
  6222. {
  6223. "name": "Symfony Community",
  6224. "homepage": "https://symfony.com/contributors"
  6225. }
  6226. ],
  6227. "description": "Symfony EventDispatcher Component",
  6228. "homepage": "https://symfony.com",
  6229. "funding": [
  6230. {
  6231. "url": "https://symfony.com/sponsor",
  6232. "type": "custom"
  6233. },
  6234. {
  6235. "url": "https://github.com/fabpot",
  6236. "type": "github"
  6237. },
  6238. {
  6239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6240. "type": "tidelift"
  6241. }
  6242. ],
  6243. "time": "2020-05-05T15:06:23+00:00"
  6244. },
  6245. {
  6246. "name": "symfony/filesystem",
  6247. "version": "v4.4.10",
  6248. "source": {
  6249. "type": "git",
  6250. "url": "https://github.com/symfony/filesystem.git",
  6251. "reference": "b27f491309db5757816db672b256ea2e03677d30"
  6252. },
  6253. "dist": {
  6254. "type": "zip",
  6255. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b27f491309db5757816db672b256ea2e03677d30",
  6256. "reference": "b27f491309db5757816db672b256ea2e03677d30",
  6257. "shasum": ""
  6258. },
  6259. "require": {
  6260. "php": ">=7.1.3",
  6261. "symfony/polyfill-ctype": "~1.8"
  6262. },
  6263. "type": "library",
  6264. "extra": {
  6265. "branch-alias": {
  6266. "dev-master": "4.4-dev"
  6267. }
  6268. },
  6269. "autoload": {
  6270. "psr-4": {
  6271. "Symfony\\Component\\Filesystem\\": ""
  6272. },
  6273. "exclude-from-classmap": [
  6274. "/Tests/"
  6275. ]
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Fabien Potencier",
  6284. "email": "fabien@symfony.com"
  6285. },
  6286. {
  6287. "name": "Symfony Community",
  6288. "homepage": "https://symfony.com/contributors"
  6289. }
  6290. ],
  6291. "description": "Symfony Filesystem Component",
  6292. "homepage": "https://symfony.com",
  6293. "funding": [
  6294. {
  6295. "url": "https://symfony.com/sponsor",
  6296. "type": "custom"
  6297. },
  6298. {
  6299. "url": "https://github.com/fabpot",
  6300. "type": "github"
  6301. },
  6302. {
  6303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6304. "type": "tidelift"
  6305. }
  6306. ],
  6307. "time": "2020-05-30T18:50:54+00:00"
  6308. },
  6309. {
  6310. "name": "symfony/finder",
  6311. "version": "v4.4.10",
  6312. "source": {
  6313. "type": "git",
  6314. "url": "https://github.com/symfony/finder.git",
  6315. "reference": "5729f943f9854c5781984ed4907bbb817735776b"
  6316. },
  6317. "dist": {
  6318. "type": "zip",
  6319. "url": "https://api.github.com/repos/symfony/finder/zipball/5729f943f9854c5781984ed4907bbb817735776b",
  6320. "reference": "5729f943f9854c5781984ed4907bbb817735776b",
  6321. "shasum": ""
  6322. },
  6323. "require": {
  6324. "php": "^7.1.3"
  6325. },
  6326. "type": "library",
  6327. "extra": {
  6328. "branch-alias": {
  6329. "dev-master": "4.4-dev"
  6330. }
  6331. },
  6332. "autoload": {
  6333. "psr-4": {
  6334. "Symfony\\Component\\Finder\\": ""
  6335. },
  6336. "exclude-from-classmap": [
  6337. "/Tests/"
  6338. ]
  6339. },
  6340. "notification-url": "https://packagist.org/downloads/",
  6341. "license": [
  6342. "MIT"
  6343. ],
  6344. "authors": [
  6345. {
  6346. "name": "Fabien Potencier",
  6347. "email": "fabien@symfony.com"
  6348. },
  6349. {
  6350. "name": "Symfony Community",
  6351. "homepage": "https://symfony.com/contributors"
  6352. }
  6353. ],
  6354. "description": "Symfony Finder Component",
  6355. "homepage": "https://symfony.com",
  6356. "funding": [
  6357. {
  6358. "url": "https://symfony.com/sponsor",
  6359. "type": "custom"
  6360. },
  6361. {
  6362. "url": "https://github.com/fabpot",
  6363. "type": "github"
  6364. },
  6365. {
  6366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6367. "type": "tidelift"
  6368. }
  6369. ],
  6370. "time": "2020-03-27T16:54:36+00:00"
  6371. },
  6372. {
  6373. "name": "symfony/http-foundation",
  6374. "version": "v3.4.41",
  6375. "source": {
  6376. "type": "git",
  6377. "url": "https://github.com/symfony/http-foundation.git",
  6378. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  6379. },
  6380. "dist": {
  6381. "type": "zip",
  6382. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  6383. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  6384. "shasum": ""
  6385. },
  6386. "require": {
  6387. "php": "^5.5.9|>=7.0.8",
  6388. "symfony/polyfill-mbstring": "~1.1",
  6389. "symfony/polyfill-php70": "~1.6"
  6390. },
  6391. "require-dev": {
  6392. "symfony/expression-language": "~2.8|~3.0|~4.0"
  6393. },
  6394. "type": "library",
  6395. "extra": {
  6396. "branch-alias": {
  6397. "dev-master": "3.4-dev"
  6398. }
  6399. },
  6400. "autoload": {
  6401. "psr-4": {
  6402. "Symfony\\Component\\HttpFoundation\\": ""
  6403. },
  6404. "exclude-from-classmap": [
  6405. "/Tests/"
  6406. ]
  6407. },
  6408. "notification-url": "https://packagist.org/downloads/",
  6409. "license": [
  6410. "MIT"
  6411. ],
  6412. "authors": [
  6413. {
  6414. "name": "Fabien Potencier",
  6415. "email": "fabien@symfony.com"
  6416. },
  6417. {
  6418. "name": "Symfony Community",
  6419. "homepage": "https://symfony.com/contributors"
  6420. }
  6421. ],
  6422. "description": "Symfony HttpFoundation Component",
  6423. "homepage": "https://symfony.com",
  6424. "funding": [
  6425. {
  6426. "url": "https://symfony.com/sponsor",
  6427. "type": "custom"
  6428. },
  6429. {
  6430. "url": "https://github.com/fabpot",
  6431. "type": "github"
  6432. },
  6433. {
  6434. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6435. "type": "tidelift"
  6436. }
  6437. ],
  6438. "time": "2020-05-16T13:15:54+00:00"
  6439. },
  6440. {
  6441. "name": "symfony/http-kernel",
  6442. "version": "v3.4.41",
  6443. "source": {
  6444. "type": "git",
  6445. "url": "https://github.com/symfony/http-kernel.git",
  6446. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df"
  6447. },
  6448. "dist": {
  6449. "type": "zip",
  6450. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  6451. "reference": "e4e4ed6c008c983645b4eee6b67d8f258cde54df",
  6452. "shasum": ""
  6453. },
  6454. "require": {
  6455. "php": "^5.5.9|>=7.0.8",
  6456. "psr/log": "~1.0",
  6457. "symfony/debug": "^3.3.3|~4.0",
  6458. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  6459. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  6460. "symfony/polyfill-ctype": "~1.8",
  6461. "symfony/polyfill-php56": "~1.8"
  6462. },
  6463. "conflict": {
  6464. "symfony/config": "<2.8",
  6465. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  6466. "symfony/var-dumper": "<3.3",
  6467. "twig/twig": "<1.34|<2.4,>=2"
  6468. },
  6469. "provide": {
  6470. "psr/log-implementation": "1.0"
  6471. },
  6472. "require-dev": {
  6473. "psr/cache": "~1.0",
  6474. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  6475. "symfony/class-loader": "~2.8|~3.0",
  6476. "symfony/config": "~2.8|~3.0|~4.0",
  6477. "symfony/console": "~2.8|~3.0|~4.0",
  6478. "symfony/css-selector": "~2.8|~3.0|~4.0",
  6479. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  6480. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  6481. "symfony/expression-language": "~2.8|~3.0|~4.0",
  6482. "symfony/finder": "~2.8|~3.0|~4.0",
  6483. "symfony/process": "~2.8|~3.0|~4.0",
  6484. "symfony/routing": "~3.4|~4.0",
  6485. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  6486. "symfony/templating": "~2.8|~3.0|~4.0",
  6487. "symfony/translation": "~2.8|~3.0|~4.0",
  6488. "symfony/var-dumper": "~3.3|~4.0"
  6489. },
  6490. "suggest": {
  6491. "symfony/browser-kit": "",
  6492. "symfony/config": "",
  6493. "symfony/console": "",
  6494. "symfony/dependency-injection": "",
  6495. "symfony/finder": "",
  6496. "symfony/var-dumper": ""
  6497. },
  6498. "type": "library",
  6499. "extra": {
  6500. "branch-alias": {
  6501. "dev-master": "3.4-dev"
  6502. }
  6503. },
  6504. "autoload": {
  6505. "psr-4": {
  6506. "Symfony\\Component\\HttpKernel\\": ""
  6507. },
  6508. "exclude-from-classmap": [
  6509. "/Tests/"
  6510. ]
  6511. },
  6512. "notification-url": "https://packagist.org/downloads/",
  6513. "license": [
  6514. "MIT"
  6515. ],
  6516. "authors": [
  6517. {
  6518. "name": "Fabien Potencier",
  6519. "email": "fabien@symfony.com"
  6520. },
  6521. {
  6522. "name": "Symfony Community",
  6523. "homepage": "https://symfony.com/contributors"
  6524. }
  6525. ],
  6526. "description": "Symfony HttpKernel Component",
  6527. "homepage": "https://symfony.com",
  6528. "funding": [
  6529. {
  6530. "url": "https://symfony.com/sponsor",
  6531. "type": "custom"
  6532. },
  6533. {
  6534. "url": "https://github.com/fabpot",
  6535. "type": "github"
  6536. },
  6537. {
  6538. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6539. "type": "tidelift"
  6540. }
  6541. ],
  6542. "time": "2020-05-31T05:14:17+00:00"
  6543. },
  6544. {
  6545. "name": "symfony/polyfill-ctype",
  6546. "version": "v1.17.0",
  6547. "source": {
  6548. "type": "git",
  6549. "url": "https://github.com/symfony/polyfill-ctype.git",
  6550. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  6551. },
  6552. "dist": {
  6553. "type": "zip",
  6554. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  6555. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  6556. "shasum": ""
  6557. },
  6558. "require": {
  6559. "php": ">=5.3.3"
  6560. },
  6561. "suggest": {
  6562. "ext-ctype": "For best performance"
  6563. },
  6564. "type": "library",
  6565. "extra": {
  6566. "branch-alias": {
  6567. "dev-master": "1.17-dev"
  6568. }
  6569. },
  6570. "autoload": {
  6571. "psr-4": {
  6572. "Symfony\\Polyfill\\Ctype\\": ""
  6573. },
  6574. "files": [
  6575. "bootstrap.php"
  6576. ]
  6577. },
  6578. "notification-url": "https://packagist.org/downloads/",
  6579. "license": [
  6580. "MIT"
  6581. ],
  6582. "authors": [
  6583. {
  6584. "name": "Gert de Pagter",
  6585. "email": "BackEndTea@gmail.com"
  6586. },
  6587. {
  6588. "name": "Symfony Community",
  6589. "homepage": "https://symfony.com/contributors"
  6590. }
  6591. ],
  6592. "description": "Symfony polyfill for ctype functions",
  6593. "homepage": "https://symfony.com",
  6594. "keywords": [
  6595. "compatibility",
  6596. "ctype",
  6597. "polyfill",
  6598. "portable"
  6599. ],
  6600. "funding": [
  6601. {
  6602. "url": "https://symfony.com/sponsor",
  6603. "type": "custom"
  6604. },
  6605. {
  6606. "url": "https://github.com/fabpot",
  6607. "type": "github"
  6608. },
  6609. {
  6610. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6611. "type": "tidelift"
  6612. }
  6613. ],
  6614. "time": "2020-05-12T16:14:59+00:00"
  6615. },
  6616. {
  6617. "name": "symfony/polyfill-iconv",
  6618. "version": "v1.17.0",
  6619. "source": {
  6620. "type": "git",
  6621. "url": "https://github.com/symfony/polyfill-iconv.git",
  6622. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  6623. },
  6624. "dist": {
  6625. "type": "zip",
  6626. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  6627. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  6628. "shasum": ""
  6629. },
  6630. "require": {
  6631. "php": ">=5.3.3"
  6632. },
  6633. "suggest": {
  6634. "ext-iconv": "For best performance"
  6635. },
  6636. "type": "library",
  6637. "extra": {
  6638. "branch-alias": {
  6639. "dev-master": "1.17-dev"
  6640. }
  6641. },
  6642. "autoload": {
  6643. "psr-4": {
  6644. "Symfony\\Polyfill\\Iconv\\": ""
  6645. },
  6646. "files": [
  6647. "bootstrap.php"
  6648. ]
  6649. },
  6650. "notification-url": "https://packagist.org/downloads/",
  6651. "license": [
  6652. "MIT"
  6653. ],
  6654. "authors": [
  6655. {
  6656. "name": "Nicolas Grekas",
  6657. "email": "p@tchwork.com"
  6658. },
  6659. {
  6660. "name": "Symfony Community",
  6661. "homepage": "https://symfony.com/contributors"
  6662. }
  6663. ],
  6664. "description": "Symfony polyfill for the Iconv extension",
  6665. "homepage": "https://symfony.com",
  6666. "keywords": [
  6667. "compatibility",
  6668. "iconv",
  6669. "polyfill",
  6670. "portable",
  6671. "shim"
  6672. ],
  6673. "funding": [
  6674. {
  6675. "url": "https://symfony.com/sponsor",
  6676. "type": "custom"
  6677. },
  6678. {
  6679. "url": "https://github.com/fabpot",
  6680. "type": "github"
  6681. },
  6682. {
  6683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6684. "type": "tidelift"
  6685. }
  6686. ],
  6687. "time": "2020-05-12T16:47:27+00:00"
  6688. },
  6689. {
  6690. "name": "symfony/polyfill-intl-idn",
  6691. "version": "v1.17.0",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6695. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  6700. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  6701. "shasum": ""
  6702. },
  6703. "require": {
  6704. "php": ">=5.3.3",
  6705. "symfony/polyfill-mbstring": "^1.3",
  6706. "symfony/polyfill-php72": "^1.10"
  6707. },
  6708. "suggest": {
  6709. "ext-intl": "For best performance"
  6710. },
  6711. "type": "library",
  6712. "extra": {
  6713. "branch-alias": {
  6714. "dev-master": "1.17-dev"
  6715. }
  6716. },
  6717. "autoload": {
  6718. "psr-4": {
  6719. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6720. },
  6721. "files": [
  6722. "bootstrap.php"
  6723. ]
  6724. },
  6725. "notification-url": "https://packagist.org/downloads/",
  6726. "license": [
  6727. "MIT"
  6728. ],
  6729. "authors": [
  6730. {
  6731. "name": "Laurent Bassin",
  6732. "email": "laurent@bassin.info"
  6733. },
  6734. {
  6735. "name": "Symfony Community",
  6736. "homepage": "https://symfony.com/contributors"
  6737. }
  6738. ],
  6739. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6740. "homepage": "https://symfony.com",
  6741. "keywords": [
  6742. "compatibility",
  6743. "idn",
  6744. "intl",
  6745. "polyfill",
  6746. "portable",
  6747. "shim"
  6748. ],
  6749. "funding": [
  6750. {
  6751. "url": "https://symfony.com/sponsor",
  6752. "type": "custom"
  6753. },
  6754. {
  6755. "url": "https://github.com/fabpot",
  6756. "type": "github"
  6757. },
  6758. {
  6759. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6760. "type": "tidelift"
  6761. }
  6762. ],
  6763. "time": "2020-05-12T16:47:27+00:00"
  6764. },
  6765. {
  6766. "name": "symfony/polyfill-mbstring",
  6767. "version": "v1.17.0",
  6768. "source": {
  6769. "type": "git",
  6770. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6771. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  6772. },
  6773. "dist": {
  6774. "type": "zip",
  6775. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  6776. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  6777. "shasum": ""
  6778. },
  6779. "require": {
  6780. "php": ">=5.3.3"
  6781. },
  6782. "suggest": {
  6783. "ext-mbstring": "For best performance"
  6784. },
  6785. "type": "library",
  6786. "extra": {
  6787. "branch-alias": {
  6788. "dev-master": "1.17-dev"
  6789. }
  6790. },
  6791. "autoload": {
  6792. "psr-4": {
  6793. "Symfony\\Polyfill\\Mbstring\\": ""
  6794. },
  6795. "files": [
  6796. "bootstrap.php"
  6797. ]
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Nicolas Grekas",
  6806. "email": "p@tchwork.com"
  6807. },
  6808. {
  6809. "name": "Symfony Community",
  6810. "homepage": "https://symfony.com/contributors"
  6811. }
  6812. ],
  6813. "description": "Symfony polyfill for the Mbstring extension",
  6814. "homepage": "https://symfony.com",
  6815. "keywords": [
  6816. "compatibility",
  6817. "mbstring",
  6818. "polyfill",
  6819. "portable",
  6820. "shim"
  6821. ],
  6822. "funding": [
  6823. {
  6824. "url": "https://symfony.com/sponsor",
  6825. "type": "custom"
  6826. },
  6827. {
  6828. "url": "https://github.com/fabpot",
  6829. "type": "github"
  6830. },
  6831. {
  6832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6833. "type": "tidelift"
  6834. }
  6835. ],
  6836. "time": "2020-05-12T16:47:27+00:00"
  6837. },
  6838. {
  6839. "name": "symfony/polyfill-php56",
  6840. "version": "v1.17.0",
  6841. "source": {
  6842. "type": "git",
  6843. "url": "https://github.com/symfony/polyfill-php56.git",
  6844. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  6845. },
  6846. "dist": {
  6847. "type": "zip",
  6848. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  6849. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  6850. "shasum": ""
  6851. },
  6852. "require": {
  6853. "php": ">=5.3.3",
  6854. "symfony/polyfill-util": "~1.0"
  6855. },
  6856. "type": "library",
  6857. "extra": {
  6858. "branch-alias": {
  6859. "dev-master": "1.17-dev"
  6860. }
  6861. },
  6862. "autoload": {
  6863. "psr-4": {
  6864. "Symfony\\Polyfill\\Php56\\": ""
  6865. },
  6866. "files": [
  6867. "bootstrap.php"
  6868. ]
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Nicolas Grekas",
  6877. "email": "p@tchwork.com"
  6878. },
  6879. {
  6880. "name": "Symfony Community",
  6881. "homepage": "https://symfony.com/contributors"
  6882. }
  6883. ],
  6884. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6885. "homepage": "https://symfony.com",
  6886. "keywords": [
  6887. "compatibility",
  6888. "polyfill",
  6889. "portable",
  6890. "shim"
  6891. ],
  6892. "funding": [
  6893. {
  6894. "url": "https://symfony.com/sponsor",
  6895. "type": "custom"
  6896. },
  6897. {
  6898. "url": "https://github.com/fabpot",
  6899. "type": "github"
  6900. },
  6901. {
  6902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6903. "type": "tidelift"
  6904. }
  6905. ],
  6906. "time": "2020-05-12T16:47:27+00:00"
  6907. },
  6908. {
  6909. "name": "symfony/polyfill-php70",
  6910. "version": "v1.17.0",
  6911. "source": {
  6912. "type": "git",
  6913. "url": "https://github.com/symfony/polyfill-php70.git",
  6914. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  6915. },
  6916. "dist": {
  6917. "type": "zip",
  6918. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  6919. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  6920. "shasum": ""
  6921. },
  6922. "require": {
  6923. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  6924. "php": ">=5.3.3"
  6925. },
  6926. "type": "library",
  6927. "extra": {
  6928. "branch-alias": {
  6929. "dev-master": "1.17-dev"
  6930. }
  6931. },
  6932. "autoload": {
  6933. "psr-4": {
  6934. "Symfony\\Polyfill\\Php70\\": ""
  6935. },
  6936. "files": [
  6937. "bootstrap.php"
  6938. ],
  6939. "classmap": [
  6940. "Resources/stubs"
  6941. ]
  6942. },
  6943. "notification-url": "https://packagist.org/downloads/",
  6944. "license": [
  6945. "MIT"
  6946. ],
  6947. "authors": [
  6948. {
  6949. "name": "Nicolas Grekas",
  6950. "email": "p@tchwork.com"
  6951. },
  6952. {
  6953. "name": "Symfony Community",
  6954. "homepage": "https://symfony.com/contributors"
  6955. }
  6956. ],
  6957. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  6958. "homepage": "https://symfony.com",
  6959. "keywords": [
  6960. "compatibility",
  6961. "polyfill",
  6962. "portable",
  6963. "shim"
  6964. ],
  6965. "funding": [
  6966. {
  6967. "url": "https://symfony.com/sponsor",
  6968. "type": "custom"
  6969. },
  6970. {
  6971. "url": "https://github.com/fabpot",
  6972. "type": "github"
  6973. },
  6974. {
  6975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6976. "type": "tidelift"
  6977. }
  6978. ],
  6979. "time": "2020-05-12T16:47:27+00:00"
  6980. },
  6981. {
  6982. "name": "symfony/polyfill-php72",
  6983. "version": "v1.17.0",
  6984. "source": {
  6985. "type": "git",
  6986. "url": "https://github.com/symfony/polyfill-php72.git",
  6987. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  6988. },
  6989. "dist": {
  6990. "type": "zip",
  6991. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  6992. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  6993. "shasum": ""
  6994. },
  6995. "require": {
  6996. "php": ">=5.3.3"
  6997. },
  6998. "type": "library",
  6999. "extra": {
  7000. "branch-alias": {
  7001. "dev-master": "1.17-dev"
  7002. }
  7003. },
  7004. "autoload": {
  7005. "psr-4": {
  7006. "Symfony\\Polyfill\\Php72\\": ""
  7007. },
  7008. "files": [
  7009. "bootstrap.php"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Nicolas Grekas",
  7019. "email": "p@tchwork.com"
  7020. },
  7021. {
  7022. "name": "Symfony Community",
  7023. "homepage": "https://symfony.com/contributors"
  7024. }
  7025. ],
  7026. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7027. "homepage": "https://symfony.com",
  7028. "keywords": [
  7029. "compatibility",
  7030. "polyfill",
  7031. "portable",
  7032. "shim"
  7033. ],
  7034. "funding": [
  7035. {
  7036. "url": "https://symfony.com/sponsor",
  7037. "type": "custom"
  7038. },
  7039. {
  7040. "url": "https://github.com/fabpot",
  7041. "type": "github"
  7042. },
  7043. {
  7044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7045. "type": "tidelift"
  7046. }
  7047. ],
  7048. "time": "2020-05-12T16:47:27+00:00"
  7049. },
  7050. {
  7051. "name": "symfony/polyfill-php80",
  7052. "version": "v1.17.1",
  7053. "source": {
  7054. "type": "git",
  7055. "url": "https://github.com/symfony/polyfill-php80.git",
  7056. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2"
  7057. },
  7058. "dist": {
  7059. "type": "zip",
  7060. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  7061. "reference": "4a5b6bba3259902e386eb80dd1956181ee90b5b2",
  7062. "shasum": ""
  7063. },
  7064. "require": {
  7065. "php": ">=7.0.8"
  7066. },
  7067. "type": "library",
  7068. "extra": {
  7069. "branch-alias": {
  7070. "dev-master": "1.17-dev"
  7071. },
  7072. "thanks": {
  7073. "name": "symfony/polyfill",
  7074. "url": "https://github.com/symfony/polyfill"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "psr-4": {
  7079. "Symfony\\Polyfill\\Php80\\": ""
  7080. },
  7081. "files": [
  7082. "bootstrap.php"
  7083. ],
  7084. "classmap": [
  7085. "Resources/stubs"
  7086. ]
  7087. },
  7088. "notification-url": "https://packagist.org/downloads/",
  7089. "license": [
  7090. "MIT"
  7091. ],
  7092. "authors": [
  7093. {
  7094. "name": "Ion Bazan",
  7095. "email": "ion.bazan@gmail.com"
  7096. },
  7097. {
  7098. "name": "Nicolas Grekas",
  7099. "email": "p@tchwork.com"
  7100. },
  7101. {
  7102. "name": "Symfony Community",
  7103. "homepage": "https://symfony.com/contributors"
  7104. }
  7105. ],
  7106. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7107. "homepage": "https://symfony.com",
  7108. "keywords": [
  7109. "compatibility",
  7110. "polyfill",
  7111. "portable",
  7112. "shim"
  7113. ],
  7114. "funding": [
  7115. {
  7116. "url": "https://symfony.com/sponsor",
  7117. "type": "custom"
  7118. },
  7119. {
  7120. "url": "https://github.com/fabpot",
  7121. "type": "github"
  7122. },
  7123. {
  7124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7125. "type": "tidelift"
  7126. }
  7127. ],
  7128. "time": "2020-06-06T08:46:27+00:00"
  7129. },
  7130. {
  7131. "name": "symfony/polyfill-util",
  7132. "version": "v1.17.0",
  7133. "source": {
  7134. "type": "git",
  7135. "url": "https://github.com/symfony/polyfill-util.git",
  7136. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  7137. },
  7138. "dist": {
  7139. "type": "zip",
  7140. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  7141. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  7142. "shasum": ""
  7143. },
  7144. "require": {
  7145. "php": ">=5.3.3"
  7146. },
  7147. "type": "library",
  7148. "extra": {
  7149. "branch-alias": {
  7150. "dev-master": "1.17-dev"
  7151. }
  7152. },
  7153. "autoload": {
  7154. "psr-4": {
  7155. "Symfony\\Polyfill\\Util\\": ""
  7156. }
  7157. },
  7158. "notification-url": "https://packagist.org/downloads/",
  7159. "license": [
  7160. "MIT"
  7161. ],
  7162. "authors": [
  7163. {
  7164. "name": "Nicolas Grekas",
  7165. "email": "p@tchwork.com"
  7166. },
  7167. {
  7168. "name": "Symfony Community",
  7169. "homepage": "https://symfony.com/contributors"
  7170. }
  7171. ],
  7172. "description": "Symfony utilities for portability of PHP codes",
  7173. "homepage": "https://symfony.com",
  7174. "keywords": [
  7175. "compat",
  7176. "compatibility",
  7177. "polyfill",
  7178. "shim"
  7179. ],
  7180. "funding": [
  7181. {
  7182. "url": "https://symfony.com/sponsor",
  7183. "type": "custom"
  7184. },
  7185. {
  7186. "url": "https://github.com/fabpot",
  7187. "type": "github"
  7188. },
  7189. {
  7190. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7191. "type": "tidelift"
  7192. }
  7193. ],
  7194. "time": "2020-05-12T16:14:59+00:00"
  7195. },
  7196. {
  7197. "name": "symfony/process",
  7198. "version": "v3.4.41",
  7199. "source": {
  7200. "type": "git",
  7201. "url": "https://github.com/symfony/process.git",
  7202. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  7203. },
  7204. "dist": {
  7205. "type": "zip",
  7206. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  7207. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  7208. "shasum": ""
  7209. },
  7210. "require": {
  7211. "php": "^5.5.9|>=7.0.8"
  7212. },
  7213. "type": "library",
  7214. "extra": {
  7215. "branch-alias": {
  7216. "dev-master": "3.4-dev"
  7217. }
  7218. },
  7219. "autoload": {
  7220. "psr-4": {
  7221. "Symfony\\Component\\Process\\": ""
  7222. },
  7223. "exclude-from-classmap": [
  7224. "/Tests/"
  7225. ]
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "MIT"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "Fabien Potencier",
  7234. "email": "fabien@symfony.com"
  7235. },
  7236. {
  7237. "name": "Symfony Community",
  7238. "homepage": "https://symfony.com/contributors"
  7239. }
  7240. ],
  7241. "description": "Symfony Process Component",
  7242. "homepage": "https://symfony.com",
  7243. "funding": [
  7244. {
  7245. "url": "https://symfony.com/sponsor",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/fabpot",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2020-05-23T17:05:51+00:00"
  7258. },
  7259. {
  7260. "name": "symfony/psr-http-message-bridge",
  7261. "version": "v1.1.2",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7265. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  7270. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": "^5.3.3 || ^7.0",
  7275. "psr/http-message": "^1.0",
  7276. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  7277. },
  7278. "require-dev": {
  7279. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  7280. },
  7281. "suggest": {
  7282. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7283. },
  7284. "type": "symfony-bridge",
  7285. "extra": {
  7286. "branch-alias": {
  7287. "dev-master": "1.1-dev"
  7288. }
  7289. },
  7290. "autoload": {
  7291. "psr-4": {
  7292. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7293. },
  7294. "exclude-from-classmap": [
  7295. "/Tests/"
  7296. ]
  7297. },
  7298. "notification-url": "https://packagist.org/downloads/",
  7299. "license": [
  7300. "MIT"
  7301. ],
  7302. "authors": [
  7303. {
  7304. "name": "Symfony Community",
  7305. "homepage": "http://symfony.com/contributors"
  7306. },
  7307. {
  7308. "name": "Fabien Potencier",
  7309. "email": "fabien@symfony.com"
  7310. }
  7311. ],
  7312. "description": "PSR HTTP message bridge",
  7313. "homepage": "http://symfony.com",
  7314. "keywords": [
  7315. "http",
  7316. "http-message",
  7317. "psr-17",
  7318. "psr-7"
  7319. ],
  7320. "time": "2019-04-03T17:09:40+00:00"
  7321. },
  7322. {
  7323. "name": "symfony/routing",
  7324. "version": "v3.4.41",
  7325. "source": {
  7326. "type": "git",
  7327. "url": "https://github.com/symfony/routing.git",
  7328. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  7329. },
  7330. "dist": {
  7331. "type": "zip",
  7332. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  7333. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  7334. "shasum": ""
  7335. },
  7336. "require": {
  7337. "php": "^5.5.9|>=7.0.8"
  7338. },
  7339. "conflict": {
  7340. "symfony/config": "<3.3.1",
  7341. "symfony/dependency-injection": "<3.3",
  7342. "symfony/yaml": "<3.4"
  7343. },
  7344. "require-dev": {
  7345. "doctrine/annotations": "~1.0",
  7346. "psr/log": "~1.0",
  7347. "symfony/config": "^3.3.1|~4.0",
  7348. "symfony/dependency-injection": "~3.3|~4.0",
  7349. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7350. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  7351. "symfony/yaml": "~3.4|~4.0"
  7352. },
  7353. "suggest": {
  7354. "doctrine/annotations": "For using the annotation loader",
  7355. "symfony/config": "For using the all-in-one router or any loader",
  7356. "symfony/expression-language": "For using expression matching",
  7357. "symfony/http-foundation": "For using a Symfony Request object",
  7358. "symfony/yaml": "For using the YAML loader"
  7359. },
  7360. "type": "library",
  7361. "extra": {
  7362. "branch-alias": {
  7363. "dev-master": "3.4-dev"
  7364. }
  7365. },
  7366. "autoload": {
  7367. "psr-4": {
  7368. "Symfony\\Component\\Routing\\": ""
  7369. },
  7370. "exclude-from-classmap": [
  7371. "/Tests/"
  7372. ]
  7373. },
  7374. "notification-url": "https://packagist.org/downloads/",
  7375. "license": [
  7376. "MIT"
  7377. ],
  7378. "authors": [
  7379. {
  7380. "name": "Fabien Potencier",
  7381. "email": "fabien@symfony.com"
  7382. },
  7383. {
  7384. "name": "Symfony Community",
  7385. "homepage": "https://symfony.com/contributors"
  7386. }
  7387. ],
  7388. "description": "Symfony Routing Component",
  7389. "homepage": "https://symfony.com",
  7390. "keywords": [
  7391. "router",
  7392. "routing",
  7393. "uri",
  7394. "url"
  7395. ],
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7407. "type": "tidelift"
  7408. }
  7409. ],
  7410. "time": "2020-05-30T19:50:06+00:00"
  7411. },
  7412. {
  7413. "name": "symfony/serializer",
  7414. "version": "v3.4.41",
  7415. "source": {
  7416. "type": "git",
  7417. "url": "https://github.com/symfony/serializer.git",
  7418. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  7419. },
  7420. "dist": {
  7421. "type": "zip",
  7422. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  7423. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  7424. "shasum": ""
  7425. },
  7426. "require": {
  7427. "php": "^5.5.9|>=7.0.8",
  7428. "symfony/polyfill-ctype": "~1.8"
  7429. },
  7430. "conflict": {
  7431. "phpdocumentor/type-resolver": "<0.2.1",
  7432. "symfony/dependency-injection": "<3.2",
  7433. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  7434. "symfony/property-info": "<3.1",
  7435. "symfony/yaml": "<3.4"
  7436. },
  7437. "require-dev": {
  7438. "doctrine/annotations": "~1.0",
  7439. "doctrine/cache": "~1.0",
  7440. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  7441. "symfony/cache": "~3.1|~4.0",
  7442. "symfony/config": "~2.8|~3.0|~4.0",
  7443. "symfony/dependency-injection": "~3.2|~4.0",
  7444. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  7445. "symfony/property-access": "~2.8|~3.0|~4.0",
  7446. "symfony/property-info": "^3.4.13|~4.0",
  7447. "symfony/yaml": "~3.4|~4.0"
  7448. },
  7449. "suggest": {
  7450. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7451. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7452. "psr/cache-implementation": "For using the metadata cache.",
  7453. "symfony/config": "For using the XML mapping loader.",
  7454. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  7455. "symfony/property-access": "For using the ObjectNormalizer.",
  7456. "symfony/property-info": "To deserialize relations.",
  7457. "symfony/yaml": "For using the default YAML mapping loader."
  7458. },
  7459. "type": "library",
  7460. "extra": {
  7461. "branch-alias": {
  7462. "dev-master": "3.4-dev"
  7463. }
  7464. },
  7465. "autoload": {
  7466. "psr-4": {
  7467. "Symfony\\Component\\Serializer\\": ""
  7468. },
  7469. "exclude-from-classmap": [
  7470. "/Tests/"
  7471. ]
  7472. },
  7473. "notification-url": "https://packagist.org/downloads/",
  7474. "license": [
  7475. "MIT"
  7476. ],
  7477. "authors": [
  7478. {
  7479. "name": "Fabien Potencier",
  7480. "email": "fabien@symfony.com"
  7481. },
  7482. {
  7483. "name": "Symfony Community",
  7484. "homepage": "https://symfony.com/contributors"
  7485. }
  7486. ],
  7487. "description": "Symfony Serializer Component",
  7488. "homepage": "https://symfony.com",
  7489. "funding": [
  7490. {
  7491. "url": "https://symfony.com/sponsor",
  7492. "type": "custom"
  7493. },
  7494. {
  7495. "url": "https://github.com/fabpot",
  7496. "type": "github"
  7497. },
  7498. {
  7499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7500. "type": "tidelift"
  7501. }
  7502. ],
  7503. "time": "2020-05-30T18:58:05+00:00"
  7504. },
  7505. {
  7506. "name": "symfony/translation",
  7507. "version": "v3.4.41",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/symfony/translation.git",
  7511. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  7516. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  7517. "shasum": ""
  7518. },
  7519. "require": {
  7520. "php": "^5.5.9|>=7.0.8",
  7521. "symfony/polyfill-mbstring": "~1.0"
  7522. },
  7523. "conflict": {
  7524. "symfony/config": "<2.8",
  7525. "symfony/dependency-injection": "<3.4",
  7526. "symfony/yaml": "<3.4"
  7527. },
  7528. "require-dev": {
  7529. "psr/log": "~1.0",
  7530. "symfony/config": "~2.8|~3.0|~4.0",
  7531. "symfony/dependency-injection": "~3.4|~4.0",
  7532. "symfony/finder": "~2.8|~3.0|~4.0",
  7533. "symfony/http-kernel": "~3.4|~4.0",
  7534. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  7535. "symfony/var-dumper": "~3.4|~4.0",
  7536. "symfony/yaml": "~3.4|~4.0"
  7537. },
  7538. "suggest": {
  7539. "psr/log-implementation": "To use logging capability in translator",
  7540. "symfony/config": "",
  7541. "symfony/yaml": ""
  7542. },
  7543. "type": "library",
  7544. "extra": {
  7545. "branch-alias": {
  7546. "dev-master": "3.4-dev"
  7547. }
  7548. },
  7549. "autoload": {
  7550. "psr-4": {
  7551. "Symfony\\Component\\Translation\\": ""
  7552. },
  7553. "exclude-from-classmap": [
  7554. "/Tests/"
  7555. ]
  7556. },
  7557. "notification-url": "https://packagist.org/downloads/",
  7558. "license": [
  7559. "MIT"
  7560. ],
  7561. "authors": [
  7562. {
  7563. "name": "Fabien Potencier",
  7564. "email": "fabien@symfony.com"
  7565. },
  7566. {
  7567. "name": "Symfony Community",
  7568. "homepage": "https://symfony.com/contributors"
  7569. }
  7570. ],
  7571. "description": "Symfony Translation Component",
  7572. "homepage": "https://symfony.com",
  7573. "funding": [
  7574. {
  7575. "url": "https://symfony.com/sponsor",
  7576. "type": "custom"
  7577. },
  7578. {
  7579. "url": "https://github.com/fabpot",
  7580. "type": "github"
  7581. },
  7582. {
  7583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7584. "type": "tidelift"
  7585. }
  7586. ],
  7587. "time": "2020-05-30T18:58:05+00:00"
  7588. },
  7589. {
  7590. "name": "symfony/validator",
  7591. "version": "v3.4.41",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/symfony/validator.git",
  7595. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  7600. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "php": "^5.5.9|>=7.0.8",
  7605. "symfony/polyfill-ctype": "~1.8",
  7606. "symfony/polyfill-mbstring": "~1.0",
  7607. "symfony/translation": "~2.8|~3.0|~4.0"
  7608. },
  7609. "conflict": {
  7610. "doctrine/lexer": "<1.0.2",
  7611. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7612. "symfony/dependency-injection": "<3.3",
  7613. "symfony/http-kernel": "<3.3.5",
  7614. "symfony/yaml": "<3.4"
  7615. },
  7616. "require-dev": {
  7617. "doctrine/annotations": "~1.7",
  7618. "doctrine/cache": "~1.0",
  7619. "egulias/email-validator": "^2.1.10",
  7620. "symfony/cache": "~3.1|~4.0",
  7621. "symfony/config": "~2.8|~3.0|~4.0",
  7622. "symfony/dependency-injection": "~3.3|~4.0",
  7623. "symfony/expression-language": "~2.8|~3.0|~4.0",
  7624. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  7625. "symfony/http-kernel": "^3.3.5|~4.0",
  7626. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  7627. "symfony/property-access": "~2.8|~3.0|~4.0",
  7628. "symfony/var-dumper": "~3.3|~4.0",
  7629. "symfony/yaml": "~3.4|~4.0"
  7630. },
  7631. "suggest": {
  7632. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  7633. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  7634. "egulias/email-validator": "Strict (RFC compliant) email validation",
  7635. "psr/cache-implementation": "For using the metadata cache.",
  7636. "symfony/config": "",
  7637. "symfony/expression-language": "For using the Expression validator",
  7638. "symfony/http-foundation": "",
  7639. "symfony/intl": "",
  7640. "symfony/property-access": "For accessing properties within comparison constraints",
  7641. "symfony/yaml": ""
  7642. },
  7643. "type": "library",
  7644. "extra": {
  7645. "branch-alias": {
  7646. "dev-master": "3.4-dev"
  7647. }
  7648. },
  7649. "autoload": {
  7650. "psr-4": {
  7651. "Symfony\\Component\\Validator\\": ""
  7652. },
  7653. "exclude-from-classmap": [
  7654. "/Tests/"
  7655. ]
  7656. },
  7657. "notification-url": "https://packagist.org/downloads/",
  7658. "license": [
  7659. "MIT"
  7660. ],
  7661. "authors": [
  7662. {
  7663. "name": "Fabien Potencier",
  7664. "email": "fabien@symfony.com"
  7665. },
  7666. {
  7667. "name": "Symfony Community",
  7668. "homepage": "https://symfony.com/contributors"
  7669. }
  7670. ],
  7671. "description": "Symfony Validator Component",
  7672. "homepage": "https://symfony.com",
  7673. "funding": [
  7674. {
  7675. "url": "https://symfony.com/sponsor",
  7676. "type": "custom"
  7677. },
  7678. {
  7679. "url": "https://github.com/fabpot",
  7680. "type": "github"
  7681. },
  7682. {
  7683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7684. "type": "tidelift"
  7685. }
  7686. ],
  7687. "time": "2020-05-30T18:43:38+00:00"
  7688. },
  7689. {
  7690. "name": "symfony/var-dumper",
  7691. "version": "v4.4.10",
  7692. "source": {
  7693. "type": "git",
  7694. "url": "https://github.com/symfony/var-dumper.git",
  7695. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac"
  7696. },
  7697. "dist": {
  7698. "type": "zip",
  7699. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  7700. "reference": "56b3aa5eab0ac6720dcd559fd1d590ce301594ac",
  7701. "shasum": ""
  7702. },
  7703. "require": {
  7704. "php": ">=7.1.3",
  7705. "symfony/polyfill-mbstring": "~1.0",
  7706. "symfony/polyfill-php72": "~1.5",
  7707. "symfony/polyfill-php80": "^1.15"
  7708. },
  7709. "conflict": {
  7710. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7711. "symfony/console": "<3.4"
  7712. },
  7713. "require-dev": {
  7714. "ext-iconv": "*",
  7715. "symfony/console": "^3.4|^4.0|^5.0",
  7716. "symfony/process": "^4.4|^5.0",
  7717. "twig/twig": "^1.34|^2.4|^3.0"
  7718. },
  7719. "suggest": {
  7720. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7721. "ext-intl": "To show region name in time zone dump",
  7722. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7723. },
  7724. "bin": [
  7725. "Resources/bin/var-dump-server"
  7726. ],
  7727. "type": "library",
  7728. "extra": {
  7729. "branch-alias": {
  7730. "dev-master": "4.4-dev"
  7731. }
  7732. },
  7733. "autoload": {
  7734. "files": [
  7735. "Resources/functions/dump.php"
  7736. ],
  7737. "psr-4": {
  7738. "Symfony\\Component\\VarDumper\\": ""
  7739. },
  7740. "exclude-from-classmap": [
  7741. "/Tests/"
  7742. ]
  7743. },
  7744. "notification-url": "https://packagist.org/downloads/",
  7745. "license": [
  7746. "MIT"
  7747. ],
  7748. "authors": [
  7749. {
  7750. "name": "Nicolas Grekas",
  7751. "email": "p@tchwork.com"
  7752. },
  7753. {
  7754. "name": "Symfony Community",
  7755. "homepage": "https://symfony.com/contributors"
  7756. }
  7757. ],
  7758. "description": "Symfony mechanism for exploring and dumping PHP variables",
  7759. "homepage": "https://symfony.com",
  7760. "keywords": [
  7761. "debug",
  7762. "dump"
  7763. ],
  7764. "funding": [
  7765. {
  7766. "url": "https://symfony.com/sponsor",
  7767. "type": "custom"
  7768. },
  7769. {
  7770. "url": "https://github.com/fabpot",
  7771. "type": "github"
  7772. },
  7773. {
  7774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7775. "type": "tidelift"
  7776. }
  7777. ],
  7778. "time": "2020-05-30T20:06:45+00:00"
  7779. },
  7780. {
  7781. "name": "symfony/yaml",
  7782. "version": "v3.4.41",
  7783. "source": {
  7784. "type": "git",
  7785. "url": "https://github.com/symfony/yaml.git",
  7786. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  7787. },
  7788. "dist": {
  7789. "type": "zip",
  7790. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  7791. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  7792. "shasum": ""
  7793. },
  7794. "require": {
  7795. "php": "^5.5.9|>=7.0.8",
  7796. "symfony/polyfill-ctype": "~1.8"
  7797. },
  7798. "conflict": {
  7799. "symfony/console": "<3.4"
  7800. },
  7801. "require-dev": {
  7802. "symfony/console": "~3.4|~4.0"
  7803. },
  7804. "suggest": {
  7805. "symfony/console": "For validating YAML files using the lint command"
  7806. },
  7807. "type": "library",
  7808. "extra": {
  7809. "branch-alias": {
  7810. "dev-master": "3.4-dev"
  7811. }
  7812. },
  7813. "autoload": {
  7814. "psr-4": {
  7815. "Symfony\\Component\\Yaml\\": ""
  7816. },
  7817. "exclude-from-classmap": [
  7818. "/Tests/"
  7819. ]
  7820. },
  7821. "notification-url": "https://packagist.org/downloads/",
  7822. "license": [
  7823. "MIT"
  7824. ],
  7825. "authors": [
  7826. {
  7827. "name": "Fabien Potencier",
  7828. "email": "fabien@symfony.com"
  7829. },
  7830. {
  7831. "name": "Symfony Community",
  7832. "homepage": "https://symfony.com/contributors"
  7833. }
  7834. ],
  7835. "description": "Symfony Yaml Component",
  7836. "homepage": "https://symfony.com",
  7837. "funding": [
  7838. {
  7839. "url": "https://symfony.com/sponsor",
  7840. "type": "custom"
  7841. },
  7842. {
  7843. "url": "https://github.com/fabpot",
  7844. "type": "github"
  7845. },
  7846. {
  7847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7848. "type": "tidelift"
  7849. }
  7850. ],
  7851. "time": "2020-05-11T07:51:54+00:00"
  7852. },
  7853. {
  7854. "name": "twbs/bootstrap",
  7855. "version": "v4.5.0",
  7856. "source": {
  7857. "type": "git",
  7858. "url": "https://github.com/twbs/bootstrap.git",
  7859. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965"
  7860. },
  7861. "dist": {
  7862. "type": "zip",
  7863. "url": "https://api.github.com/repos/twbs/bootstrap/zipball/7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  7864. "reference": "7a6da5e3e7ad7c749dde806546a35d4d4259d965",
  7865. "shasum": ""
  7866. },
  7867. "replace": {
  7868. "twitter/bootstrap": "self.version"
  7869. },
  7870. "type": "library",
  7871. "extra": {
  7872. "branch-alias": {
  7873. "dev-master": "3.3.x-dev"
  7874. }
  7875. },
  7876. "notification-url": "https://packagist.org/downloads/",
  7877. "license": [
  7878. "MIT"
  7879. ],
  7880. "authors": [
  7881. {
  7882. "name": "Mark Otto",
  7883. "email": "markdotto@gmail.com"
  7884. },
  7885. {
  7886. "name": "Jacob Thornton",
  7887. "email": "jacobthornton@gmail.com"
  7888. }
  7889. ],
  7890. "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
  7891. "homepage": "https://getbootstrap.com/",
  7892. "keywords": [
  7893. "JS",
  7894. "css",
  7895. "framework",
  7896. "front-end",
  7897. "mobile-first",
  7898. "responsive",
  7899. "sass",
  7900. "web"
  7901. ],
  7902. "funding": [
  7903. {
  7904. "url": "https://opencollective.com/bootstrap",
  7905. "type": "open_collective"
  7906. }
  7907. ],
  7908. "time": "2020-05-12T17:44:42+00:00"
  7909. },
  7910. {
  7911. "name": "twig/twig",
  7912. "version": "v1.42.5",
  7913. "source": {
  7914. "type": "git",
  7915. "url": "https://github.com/twigphp/Twig.git",
  7916. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  7917. },
  7918. "dist": {
  7919. "type": "zip",
  7920. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  7921. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  7922. "shasum": ""
  7923. },
  7924. "require": {
  7925. "php": ">=5.5.0",
  7926. "symfony/polyfill-ctype": "^1.8"
  7927. },
  7928. "require-dev": {
  7929. "psr/container": "^1.0",
  7930. "symfony/phpunit-bridge": "^4.4|^5.0"
  7931. },
  7932. "type": "library",
  7933. "extra": {
  7934. "branch-alias": {
  7935. "dev-master": "1.42-dev"
  7936. }
  7937. },
  7938. "autoload": {
  7939. "psr-0": {
  7940. "Twig_": "lib/"
  7941. },
  7942. "psr-4": {
  7943. "Twig\\": "src/"
  7944. }
  7945. },
  7946. "notification-url": "https://packagist.org/downloads/",
  7947. "license": [
  7948. "BSD-3-Clause"
  7949. ],
  7950. "authors": [
  7951. {
  7952. "name": "Fabien Potencier",
  7953. "email": "fabien@symfony.com",
  7954. "homepage": "http://fabien.potencier.org",
  7955. "role": "Lead Developer"
  7956. },
  7957. {
  7958. "name": "Twig Team",
  7959. "role": "Contributors"
  7960. },
  7961. {
  7962. "name": "Armin Ronacher",
  7963. "email": "armin.ronacher@active-4.com",
  7964. "role": "Project Founder"
  7965. }
  7966. ],
  7967. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7968. "homepage": "https://twig.symfony.com",
  7969. "keywords": [
  7970. "templating"
  7971. ],
  7972. "time": "2020-02-11T05:59:23+00:00"
  7973. },
  7974. {
  7975. "name": "typo3/phar-stream-wrapper",
  7976. "version": "v3.1.4",
  7977. "source": {
  7978. "type": "git",
  7979. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  7980. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  7981. },
  7982. "dist": {
  7983. "type": "zip",
  7984. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  7985. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  7986. "shasum": ""
  7987. },
  7988. "require": {
  7989. "ext-json": "*",
  7990. "php": "^7.0"
  7991. },
  7992. "require-dev": {
  7993. "ext-xdebug": "*",
  7994. "phpunit/phpunit": "^6.5"
  7995. },
  7996. "suggest": {
  7997. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  7998. },
  7999. "type": "library",
  8000. "extra": {
  8001. "branch-alias": {
  8002. "dev-master": "v3.x-dev"
  8003. }
  8004. },
  8005. "autoload": {
  8006. "psr-4": {
  8007. "TYPO3\\PharStreamWrapper\\": "src/"
  8008. }
  8009. },
  8010. "notification-url": "https://packagist.org/downloads/",
  8011. "license": [
  8012. "MIT"
  8013. ],
  8014. "description": "Interceptors for PHP's native phar:// stream handling",
  8015. "homepage": "https://typo3.org/",
  8016. "keywords": [
  8017. "phar",
  8018. "php",
  8019. "security",
  8020. "stream-wrapper"
  8021. ],
  8022. "time": "2019-12-10T11:53:27+00:00"
  8023. },
  8024. {
  8025. "name": "webflo/drupal-finder",
  8026. "version": "1.2.0",
  8027. "source": {
  8028. "type": "git",
  8029. "url": "https://github.com/webflo/drupal-finder.git",
  8030. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  8031. },
  8032. "dist": {
  8033. "type": "zip",
  8034. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  8035. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  8036. "shasum": ""
  8037. },
  8038. "require": {
  8039. "ext-json": "*"
  8040. },
  8041. "require-dev": {
  8042. "mikey179/vfsstream": "^1.6",
  8043. "phpunit/phpunit": "^4.8"
  8044. },
  8045. "type": "library",
  8046. "autoload": {
  8047. "classmap": [
  8048. "src/DrupalFinder.php"
  8049. ]
  8050. },
  8051. "notification-url": "https://packagist.org/downloads/",
  8052. "license": [
  8053. "GPL-2.0+"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "Florian Weber",
  8058. "email": "florian@webflo.org"
  8059. }
  8060. ],
  8061. "description": "Helper class to locate a Drupal installation from a given path.",
  8062. "time": "2019-08-02T08:06:18+00:00"
  8063. },
  8064. {
  8065. "name": "webmozart/assert",
  8066. "version": "1.9.1",
  8067. "source": {
  8068. "type": "git",
  8069. "url": "https://github.com/webmozart/assert.git",
  8070. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
  8071. },
  8072. "dist": {
  8073. "type": "zip",
  8074. "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8075. "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
  8076. "shasum": ""
  8077. },
  8078. "require": {
  8079. "php": "^5.3.3 || ^7.0 || ^8.0",
  8080. "symfony/polyfill-ctype": "^1.8"
  8081. },
  8082. "conflict": {
  8083. "phpstan/phpstan": "<0.12.20",
  8084. "vimeo/psalm": "<3.9.1"
  8085. },
  8086. "require-dev": {
  8087. "phpunit/phpunit": "^4.8.36 || ^7.5.13"
  8088. },
  8089. "type": "library",
  8090. "autoload": {
  8091. "psr-4": {
  8092. "Webmozart\\Assert\\": "src/"
  8093. }
  8094. },
  8095. "notification-url": "https://packagist.org/downloads/",
  8096. "license": [
  8097. "MIT"
  8098. ],
  8099. "authors": [
  8100. {
  8101. "name": "Bernhard Schussek",
  8102. "email": "bschussek@gmail.com"
  8103. }
  8104. ],
  8105. "description": "Assertions to validate method input/output with nice error messages.",
  8106. "keywords": [
  8107. "assert",
  8108. "check",
  8109. "validate"
  8110. ],
  8111. "time": "2020-07-08T17:02:28+00:00"
  8112. },
  8113. {
  8114. "name": "webmozart/path-util",
  8115. "version": "2.3.0",
  8116. "source": {
  8117. "type": "git",
  8118. "url": "https://github.com/webmozart/path-util.git",
  8119. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  8120. },
  8121. "dist": {
  8122. "type": "zip",
  8123. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8124. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  8125. "shasum": ""
  8126. },
  8127. "require": {
  8128. "php": ">=5.3.3",
  8129. "webmozart/assert": "~1.0"
  8130. },
  8131. "require-dev": {
  8132. "phpunit/phpunit": "^4.6",
  8133. "sebastian/version": "^1.0.1"
  8134. },
  8135. "type": "library",
  8136. "extra": {
  8137. "branch-alias": {
  8138. "dev-master": "2.3-dev"
  8139. }
  8140. },
  8141. "autoload": {
  8142. "psr-4": {
  8143. "Webmozart\\PathUtil\\": "src/"
  8144. }
  8145. },
  8146. "notification-url": "https://packagist.org/downloads/",
  8147. "license": [
  8148. "MIT"
  8149. ],
  8150. "authors": [
  8151. {
  8152. "name": "Bernhard Schussek",
  8153. "email": "bschussek@gmail.com"
  8154. }
  8155. ],
  8156. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  8157. "time": "2015-12-17T08:42:14+00:00"
  8158. }
  8159. ],
  8160. "packages-dev": [],
  8161. "aliases": [],
  8162. "minimum-stability": "dev",
  8163. "stability-flags": [],
  8164. "prefer-stable": true,
  8165. "prefer-lowest": false,
  8166. "platform": [],
  8167. "platform-dev": [],
  8168. "plugin-api-version": "1.1.0"
  8169. }