composer.lock 376 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314
  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": "a7c09338fd57079a02b74cdce8354d8f",
  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. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/1.3.0"
  62. },
  63. "time": "2019-12-24T22:41:47+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "1.32.0",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/0e045f7a7e747af3d8f603156bf4d73be5768246",
  76. "reference": "0e045f7a7e747af3d8f603156bf4d73be5768246",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=5.5.9",
  82. "symfony/console": "^3.4 || ^4.0",
  83. "symfony/filesystem": "^2.7 || ^3.4 || ^4.0",
  84. "twig/twig": "^1.41 || ^2.12"
  85. },
  86. "bin": [
  87. "bin/dcg"
  88. ],
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "1.x-dev"
  93. }
  94. },
  95. "autoload": {
  96. "files": [
  97. "src/bootstrap.php"
  98. ],
  99. "psr-4": {
  100. "DrupalCodeGenerator\\": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "GPL-2.0-or-later"
  106. ],
  107. "description": "Drupal code generator",
  108. "time": "2020-04-16T06:45:06+00:00"
  109. },
  110. {
  111. "name": "composer/installers",
  112. "version": "v1.11.0",
  113. "source": {
  114. "type": "git",
  115. "url": "https://github.com/composer/installers.git",
  116. "reference": "ae03311f45dfe194412081526be2e003960df74b"
  117. },
  118. "dist": {
  119. "type": "zip",
  120. "url": "https://api.github.com/repos/composer/installers/zipball/ae03311f45dfe194412081526be2e003960df74b",
  121. "reference": "ae03311f45dfe194412081526be2e003960df74b",
  122. "shasum": ""
  123. },
  124. "require": {
  125. "composer-plugin-api": "^1.0 || ^2.0"
  126. },
  127. "replace": {
  128. "roundcube/plugin-installer": "*",
  129. "shama/baton": "*"
  130. },
  131. "require-dev": {
  132. "composer/composer": "1.6.* || ^2.0",
  133. "composer/semver": "^1 || ^3",
  134. "phpstan/phpstan": "^0.12.55",
  135. "phpstan/phpstan-phpunit": "^0.12.16",
  136. "symfony/phpunit-bridge": "^4.2 || ^5",
  137. "symfony/process": "^2.3"
  138. },
  139. "type": "composer-plugin",
  140. "extra": {
  141. "class": "Composer\\Installers\\Plugin",
  142. "branch-alias": {
  143. "dev-main": "1.x-dev"
  144. }
  145. },
  146. "autoload": {
  147. "psr-4": {
  148. "Composer\\Installers\\": "src/Composer/Installers"
  149. }
  150. },
  151. "notification-url": "https://packagist.org/downloads/",
  152. "license": [
  153. "MIT"
  154. ],
  155. "authors": [
  156. {
  157. "name": "Kyle Robinson Young",
  158. "email": "kyle@dontkry.com",
  159. "homepage": "https://github.com/shama"
  160. }
  161. ],
  162. "description": "A multi-framework Composer library installer",
  163. "homepage": "https://composer.github.io/installers/",
  164. "keywords": [
  165. "Craft",
  166. "Dolibarr",
  167. "Eliasis",
  168. "Hurad",
  169. "ImageCMS",
  170. "Kanboard",
  171. "Lan Management System",
  172. "MODX Evo",
  173. "MantisBT",
  174. "Mautic",
  175. "Maya",
  176. "OXID",
  177. "Plentymarkets",
  178. "Porto",
  179. "RadPHP",
  180. "SMF",
  181. "Starbug",
  182. "Thelia",
  183. "Whmcs",
  184. "WolfCMS",
  185. "agl",
  186. "aimeos",
  187. "annotatecms",
  188. "attogram",
  189. "bitrix",
  190. "cakephp",
  191. "chef",
  192. "cockpit",
  193. "codeigniter",
  194. "concrete5",
  195. "croogo",
  196. "dokuwiki",
  197. "drupal",
  198. "eZ Platform",
  199. "elgg",
  200. "expressionengine",
  201. "fuelphp",
  202. "grav",
  203. "installer",
  204. "itop",
  205. "joomla",
  206. "known",
  207. "kohana",
  208. "laravel",
  209. "lavalite",
  210. "lithium",
  211. "magento",
  212. "majima",
  213. "mako",
  214. "mediawiki",
  215. "miaoxing",
  216. "modulework",
  217. "modx",
  218. "moodle",
  219. "osclass",
  220. "phpbb",
  221. "piwik",
  222. "ppi",
  223. "processwire",
  224. "puppet",
  225. "pxcms",
  226. "reindex",
  227. "roundcube",
  228. "shopware",
  229. "silverstripe",
  230. "sydes",
  231. "sylius",
  232. "symfony",
  233. "tastyigniter",
  234. "typo3",
  235. "wordpress",
  236. "yawik",
  237. "zend",
  238. "zikula"
  239. ],
  240. "funding": [
  241. {
  242. "url": "https://packagist.com",
  243. "type": "custom"
  244. },
  245. {
  246. "url": "https://github.com/composer",
  247. "type": "github"
  248. },
  249. {
  250. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  251. "type": "tidelift"
  252. }
  253. ],
  254. "time": "2021-04-28T06:42:17+00:00"
  255. },
  256. {
  257. "name": "composer/semver",
  258. "version": "1.5.1",
  259. "source": {
  260. "type": "git",
  261. "url": "https://github.com/composer/semver.git",
  262. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
  263. },
  264. "dist": {
  265. "type": "zip",
  266. "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  267. "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
  268. "shasum": ""
  269. },
  270. "require": {
  271. "php": "^5.3.2 || ^7.0"
  272. },
  273. "require-dev": {
  274. "phpunit/phpunit": "^4.5 || ^5.0.5"
  275. },
  276. "type": "library",
  277. "extra": {
  278. "branch-alias": {
  279. "dev-master": "1.x-dev"
  280. }
  281. },
  282. "autoload": {
  283. "psr-4": {
  284. "Composer\\Semver\\": "src"
  285. }
  286. },
  287. "notification-url": "https://packagist.org/downloads/",
  288. "license": [
  289. "MIT"
  290. ],
  291. "authors": [
  292. {
  293. "name": "Nils Adermann",
  294. "email": "naderman@naderman.de",
  295. "homepage": "http://www.naderman.de"
  296. },
  297. {
  298. "name": "Jordi Boggiano",
  299. "email": "j.boggiano@seld.be",
  300. "homepage": "http://seld.be"
  301. },
  302. {
  303. "name": "Rob Bast",
  304. "email": "rob.bast@gmail.com",
  305. "homepage": "http://robbast.nl"
  306. }
  307. ],
  308. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  309. "keywords": [
  310. "semantic",
  311. "semver",
  312. "validation",
  313. "versioning"
  314. ],
  315. "support": {
  316. "irc": "irc://irc.freenode.org/composer",
  317. "issues": "https://github.com/composer/semver/issues",
  318. "source": "https://github.com/composer/semver/tree/1.5.1"
  319. },
  320. "time": "2020-01-13T12:06:48+00:00"
  321. },
  322. {
  323. "name": "consolidation/annotated-command",
  324. "version": "2.12.0",
  325. "source": {
  326. "type": "git",
  327. "url": "https://github.com/consolidation/annotated-command.git",
  328. "reference": "512a2e54c98f3af377589de76c43b24652bcb789"
  329. },
  330. "dist": {
  331. "type": "zip",
  332. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/512a2e54c98f3af377589de76c43b24652bcb789",
  333. "reference": "512a2e54c98f3af377589de76c43b24652bcb789",
  334. "shasum": ""
  335. },
  336. "require": {
  337. "consolidation/output-formatters": "^3.4",
  338. "php": ">=5.4.5",
  339. "psr/log": "^1",
  340. "symfony/console": "^2.8|^3|^4",
  341. "symfony/event-dispatcher": "^2.5|^3|^4",
  342. "symfony/finder": "^2.5|^3|^4"
  343. },
  344. "require-dev": {
  345. "g1a/composer-test-scenarios": "^3",
  346. "php-coveralls/php-coveralls": "^1",
  347. "phpunit/phpunit": "^6",
  348. "squizlabs/php_codesniffer": "^2.7"
  349. },
  350. "type": "library",
  351. "extra": {
  352. "scenarios": {
  353. "symfony4": {
  354. "require": {
  355. "symfony/console": "^4.0"
  356. },
  357. "config": {
  358. "platform": {
  359. "php": "7.1.3"
  360. }
  361. }
  362. },
  363. "symfony2": {
  364. "require": {
  365. "symfony/console": "^2.8"
  366. },
  367. "require-dev": {
  368. "phpunit/phpunit": "^4.8.36"
  369. },
  370. "remove": [
  371. "php-coveralls/php-coveralls"
  372. ],
  373. "config": {
  374. "platform": {
  375. "php": "5.4.8"
  376. }
  377. },
  378. "scenario-options": {
  379. "create-lockfile": "false"
  380. }
  381. },
  382. "phpunit4": {
  383. "require-dev": {
  384. "phpunit/phpunit": "^4.8.36"
  385. },
  386. "remove": [
  387. "php-coveralls/php-coveralls"
  388. ],
  389. "config": {
  390. "platform": {
  391. "php": "5.4.8"
  392. }
  393. }
  394. }
  395. },
  396. "branch-alias": {
  397. "dev-master": "2.x-dev"
  398. }
  399. },
  400. "autoload": {
  401. "psr-4": {
  402. "Consolidation\\AnnotatedCommand\\": "src"
  403. }
  404. },
  405. "notification-url": "https://packagist.org/downloads/",
  406. "license": [
  407. "MIT"
  408. ],
  409. "authors": [
  410. {
  411. "name": "Greg Anderson",
  412. "email": "greg.1.anderson@greenknowe.org"
  413. }
  414. ],
  415. "description": "Initialize Symfony Console commands from annotated command class methods.",
  416. "time": "2019-03-08T16:55:03+00:00"
  417. },
  418. {
  419. "name": "consolidation/config",
  420. "version": "1.2.1",
  421. "source": {
  422. "type": "git",
  423. "url": "https://github.com/consolidation/config.git",
  424. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1"
  425. },
  426. "dist": {
  427. "type": "zip",
  428. "url": "https://api.github.com/repos/consolidation/config/zipball/cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  429. "reference": "cac1279bae7efb5c7fb2ca4c3ba4b8eb741a96c1",
  430. "shasum": ""
  431. },
  432. "require": {
  433. "dflydev/dot-access-data": "^1.1.0",
  434. "grasmash/expander": "^1",
  435. "php": ">=5.4.0"
  436. },
  437. "require-dev": {
  438. "g1a/composer-test-scenarios": "^3",
  439. "php-coveralls/php-coveralls": "^1",
  440. "phpunit/phpunit": "^5",
  441. "squizlabs/php_codesniffer": "2.*",
  442. "symfony/console": "^2.5|^3|^4",
  443. "symfony/yaml": "^2.8.11|^3|^4"
  444. },
  445. "suggest": {
  446. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  447. },
  448. "type": "library",
  449. "extra": {
  450. "scenarios": {
  451. "symfony4": {
  452. "require-dev": {
  453. "symfony/console": "^4.0"
  454. },
  455. "config": {
  456. "platform": {
  457. "php": "7.1.3"
  458. }
  459. }
  460. },
  461. "symfony2": {
  462. "require-dev": {
  463. "symfony/console": "^2.8",
  464. "symfony/event-dispatcher": "^2.8",
  465. "phpunit/phpunit": "^4.8.36"
  466. },
  467. "remove": [
  468. "php-coveralls/php-coveralls"
  469. ],
  470. "config": {
  471. "platform": {
  472. "php": "5.4.8"
  473. }
  474. }
  475. }
  476. },
  477. "branch-alias": {
  478. "dev-master": "1.x-dev"
  479. }
  480. },
  481. "autoload": {
  482. "psr-4": {
  483. "Consolidation\\Config\\": "src"
  484. }
  485. },
  486. "notification-url": "https://packagist.org/downloads/",
  487. "license": [
  488. "MIT"
  489. ],
  490. "authors": [
  491. {
  492. "name": "Greg Anderson",
  493. "email": "greg.1.anderson@greenknowe.org"
  494. }
  495. ],
  496. "description": "Provide configuration services for a commandline tool.",
  497. "time": "2019-03-03T19:37:04+00:00"
  498. },
  499. {
  500. "name": "consolidation/filter-via-dot-access-data",
  501. "version": "1.0.0",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  505. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  510. "reference": "a53e96c6b9f7f042f5e085bf911f3493cea823c6",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "dflydev/dot-access-data": "^1.1.0",
  515. "php": ">=5.5.0"
  516. },
  517. "require-dev": {
  518. "consolidation/robo": "^1.2.3",
  519. "g1a/composer-test-scenarios": "^3",
  520. "knplabs/github-api": "^2.7",
  521. "php-coveralls/php-coveralls": "^1",
  522. "php-http/guzzle6-adapter": "^1.1",
  523. "phpunit/phpunit": "^5",
  524. "squizlabs/php_codesniffer": "^2.8",
  525. "symfony/console": "^2.8|^3|^4"
  526. },
  527. "type": "library",
  528. "extra": {
  529. "scenarios": {
  530. "phpunit5": {
  531. "require-dev": {
  532. "phpunit/phpunit": "^5.7.27"
  533. },
  534. "remove": [
  535. "php-coveralls/php-coveralls"
  536. ],
  537. "config": {
  538. "platform": {
  539. "php": "5.6.33"
  540. }
  541. }
  542. }
  543. },
  544. "branch-alias": {
  545. "dev-master": "1.x-dev"
  546. }
  547. },
  548. "autoload": {
  549. "psr-4": {
  550. "Consolidation\\Filter\\": "src"
  551. }
  552. },
  553. "notification-url": "https://packagist.org/downloads/",
  554. "license": [
  555. "MIT"
  556. ],
  557. "authors": [
  558. {
  559. "name": "Greg Anderson",
  560. "email": "greg.1.anderson@greenknowe.org"
  561. }
  562. ],
  563. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  564. "time": "2019-01-18T06:05:07+00:00"
  565. },
  566. {
  567. "name": "consolidation/log",
  568. "version": "1.1.1",
  569. "source": {
  570. "type": "git",
  571. "url": "https://github.com/consolidation/log.git",
  572. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a"
  573. },
  574. "dist": {
  575. "type": "zip",
  576. "url": "https://api.github.com/repos/consolidation/log/zipball/b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  577. "reference": "b2e887325ee90abc96b0a8b7b474cd9e7c896e3a",
  578. "shasum": ""
  579. },
  580. "require": {
  581. "php": ">=5.4.5",
  582. "psr/log": "^1.0",
  583. "symfony/console": "^2.8|^3|^4"
  584. },
  585. "require-dev": {
  586. "g1a/composer-test-scenarios": "^3",
  587. "php-coveralls/php-coveralls": "^1",
  588. "phpunit/phpunit": "^6",
  589. "squizlabs/php_codesniffer": "^2"
  590. },
  591. "type": "library",
  592. "extra": {
  593. "scenarios": {
  594. "symfony4": {
  595. "require": {
  596. "symfony/console": "^4.0"
  597. },
  598. "config": {
  599. "platform": {
  600. "php": "7.1.3"
  601. }
  602. }
  603. },
  604. "symfony2": {
  605. "require": {
  606. "symfony/console": "^2.8"
  607. },
  608. "require-dev": {
  609. "phpunit/phpunit": "^4.8.36"
  610. },
  611. "remove": [
  612. "php-coveralls/php-coveralls"
  613. ],
  614. "config": {
  615. "platform": {
  616. "php": "5.4.8"
  617. }
  618. }
  619. },
  620. "phpunit4": {
  621. "require-dev": {
  622. "phpunit/phpunit": "^4.8.36"
  623. },
  624. "remove": [
  625. "php-coveralls/php-coveralls"
  626. ],
  627. "config": {
  628. "platform": {
  629. "php": "5.4.8"
  630. }
  631. }
  632. }
  633. },
  634. "branch-alias": {
  635. "dev-master": "1.x-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Consolidation\\Log\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "MIT"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Greg Anderson",
  650. "email": "greg.1.anderson@greenknowe.org"
  651. }
  652. ],
  653. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  654. "time": "2019-01-01T17:30:51+00:00"
  655. },
  656. {
  657. "name": "consolidation/output-formatters",
  658. "version": "3.5.0",
  659. "source": {
  660. "type": "git",
  661. "url": "https://github.com/consolidation/output-formatters.git",
  662. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605"
  663. },
  664. "dist": {
  665. "type": "zip",
  666. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/99ec998ffb697e0eada5aacf81feebfb13023605",
  667. "reference": "99ec998ffb697e0eada5aacf81feebfb13023605",
  668. "shasum": ""
  669. },
  670. "require": {
  671. "dflydev/dot-access-data": "^1.1.0",
  672. "php": ">=5.4.0",
  673. "symfony/console": "^2.8|^3|^4",
  674. "symfony/finder": "^2.5|^3|^4"
  675. },
  676. "require-dev": {
  677. "g1a/composer-test-scenarios": "^3",
  678. "php-coveralls/php-coveralls": "^1",
  679. "phpunit/phpunit": "^5.7.27",
  680. "squizlabs/php_codesniffer": "^2.7",
  681. "symfony/var-dumper": "^2.8|^3|^4",
  682. "victorjonsson/markdowndocs": "^1.3"
  683. },
  684. "suggest": {
  685. "symfony/var-dumper": "For using the var_dump formatter"
  686. },
  687. "type": "library",
  688. "extra": {
  689. "scenarios": {
  690. "symfony4": {
  691. "require": {
  692. "symfony/console": "^4.0"
  693. },
  694. "require-dev": {
  695. "phpunit/phpunit": "^6"
  696. },
  697. "config": {
  698. "platform": {
  699. "php": "7.1.3"
  700. }
  701. }
  702. },
  703. "symfony3": {
  704. "require": {
  705. "symfony/console": "^3.4",
  706. "symfony/finder": "^3.4",
  707. "symfony/var-dumper": "^3.4"
  708. },
  709. "config": {
  710. "platform": {
  711. "php": "5.6.32"
  712. }
  713. }
  714. },
  715. "symfony2": {
  716. "require": {
  717. "symfony/console": "^2.8"
  718. },
  719. "require-dev": {
  720. "phpunit/phpunit": "^4.8.36"
  721. },
  722. "remove": [
  723. "php-coveralls/php-coveralls"
  724. ],
  725. "config": {
  726. "platform": {
  727. "php": "5.4.8"
  728. }
  729. },
  730. "scenario-options": {
  731. "create-lockfile": "false"
  732. }
  733. }
  734. },
  735. "branch-alias": {
  736. "dev-master": "3.x-dev"
  737. }
  738. },
  739. "autoload": {
  740. "psr-4": {
  741. "Consolidation\\OutputFormatters\\": "src"
  742. }
  743. },
  744. "notification-url": "https://packagist.org/downloads/",
  745. "license": [
  746. "MIT"
  747. ],
  748. "authors": [
  749. {
  750. "name": "Greg Anderson",
  751. "email": "greg.1.anderson@greenknowe.org"
  752. }
  753. ],
  754. "description": "Format text by applying transformations provided by plug-in formatters.",
  755. "time": "2019-05-30T23:16:01+00:00"
  756. },
  757. {
  758. "name": "consolidation/robo",
  759. "version": "1.4.12",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/Robo.git",
  763. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/Robo/zipball/eb45606f498b3426b9a98b7c85e300666a968e51",
  768. "reference": "eb45606f498b3426b9a98b7c85e300666a968e51",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/annotated-command": "^2.11.0|^4.1",
  773. "consolidation/config": "^1.2.1",
  774. "consolidation/log": "^1.1.1|^2",
  775. "consolidation/output-formatters": "^3.1.13|^4.1",
  776. "consolidation/self-update": "^1.1.5",
  777. "grasmash/yaml-expander": "^1.4",
  778. "league/container": "^2.4.1",
  779. "php": ">=5.5.0",
  780. "symfony/console": "^2.8|^3|^4",
  781. "symfony/event-dispatcher": "^2.5|^3|^4",
  782. "symfony/filesystem": "^2.5|^3|^4",
  783. "symfony/finder": "^2.5|^3|^4",
  784. "symfony/process": "^2.5|^3|^4"
  785. },
  786. "replace": {
  787. "codegyre/robo": "< 1.0"
  788. },
  789. "require-dev": {
  790. "g1a/composer-test-scenarios": "^3",
  791. "natxet/cssmin": "3.0.4",
  792. "patchwork/jsqueeze": "^2",
  793. "pear/archive_tar": "^1.4.4",
  794. "php-coveralls/php-coveralls": "^1",
  795. "phpunit/phpunit": "^5.7.27",
  796. "squizlabs/php_codesniffer": "^3"
  797. },
  798. "suggest": {
  799. "henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
  800. "natxet/CssMin": "For minifying CSS files in taskMinify",
  801. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  802. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively."
  803. },
  804. "bin": [
  805. "robo"
  806. ],
  807. "type": "library",
  808. "extra": {
  809. "scenarios": {
  810. "symfony4": {
  811. "require": {
  812. "symfony/console": "^4"
  813. },
  814. "config": {
  815. "platform": {
  816. "php": "7.1.3"
  817. }
  818. }
  819. },
  820. "symfony2": {
  821. "require": {
  822. "symfony/console": "^2.8"
  823. },
  824. "require-dev": {
  825. "phpunit/phpunit": "^4.8.36"
  826. },
  827. "remove": [
  828. "php-coveralls/php-coveralls"
  829. ],
  830. "config": {
  831. "platform": {
  832. "php": "5.5.9"
  833. }
  834. },
  835. "scenario-options": {
  836. "create-lockfile": "false"
  837. }
  838. }
  839. },
  840. "branch-alias": {
  841. "dev-master": "1.x-dev"
  842. }
  843. },
  844. "autoload": {
  845. "psr-4": {
  846. "Robo\\": "src"
  847. }
  848. },
  849. "notification-url": "https://packagist.org/downloads/",
  850. "license": [
  851. "MIT"
  852. ],
  853. "authors": [
  854. {
  855. "name": "Davert",
  856. "email": "davert.php@resend.cc"
  857. }
  858. ],
  859. "description": "Modern task runner",
  860. "time": "2020-02-18T17:31:26+00:00"
  861. },
  862. {
  863. "name": "consolidation/self-update",
  864. "version": "1.2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/consolidation/self-update.git",
  868. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/consolidation/self-update/zipball/dba6b2c0708f20fa3ba8008a2353b637578849b4",
  873. "reference": "dba6b2c0708f20fa3ba8008a2353b637578849b4",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "php": ">=5.5.0",
  878. "symfony/console": "^2.8|^3|^4|^5",
  879. "symfony/filesystem": "^2.5|^3|^4|^5"
  880. },
  881. "bin": [
  882. "scripts/release"
  883. ],
  884. "type": "library",
  885. "extra": {
  886. "branch-alias": {
  887. "dev-master": "1.x-dev"
  888. }
  889. },
  890. "autoload": {
  891. "psr-4": {
  892. "SelfUpdate\\": "src"
  893. }
  894. },
  895. "notification-url": "https://packagist.org/downloads/",
  896. "license": [
  897. "MIT"
  898. ],
  899. "authors": [
  900. {
  901. "name": "Alexander Menk",
  902. "email": "menk@mestrona.net"
  903. },
  904. {
  905. "name": "Greg Anderson",
  906. "email": "greg.1.anderson@greenknowe.org"
  907. }
  908. ],
  909. "description": "Provides a self:update command for Symfony Console applications.",
  910. "time": "2020-04-13T02:49:20+00:00"
  911. },
  912. {
  913. "name": "consolidation/site-alias",
  914. "version": "3.0.0",
  915. "source": {
  916. "type": "git",
  917. "url": "https://github.com/consolidation/site-alias.git",
  918. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f"
  919. },
  920. "dist": {
  921. "type": "zip",
  922. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/8cfd3b6ab6d541086fc970bf850864293b284e6f",
  923. "reference": "8cfd3b6ab6d541086fc970bf850864293b284e6f",
  924. "shasum": ""
  925. },
  926. "require": {
  927. "consolidation/config": "^1.2.1",
  928. "php": ">=5.5.0"
  929. },
  930. "require-dev": {
  931. "consolidation/robo": "^1.2.3",
  932. "g1a/composer-test-scenarios": "^3",
  933. "knplabs/github-api": "^2.7",
  934. "php-coveralls/php-coveralls": "^1",
  935. "php-http/guzzle6-adapter": "^1.1",
  936. "phpunit/phpunit": "^6",
  937. "squizlabs/php_codesniffer": "^2.8",
  938. "symfony/console": "^2.8|^3|^4",
  939. "symfony/yaml": "~2.3|^3"
  940. },
  941. "type": "library",
  942. "extra": {
  943. "scenarios": {
  944. "phpunit5": {
  945. "require-dev": {
  946. "phpunit/phpunit": "^5.7.27"
  947. },
  948. "remove": [
  949. "php-coveralls/php-coveralls"
  950. ],
  951. "config": {
  952. "platform": {
  953. "php": "5.6.33"
  954. }
  955. }
  956. }
  957. },
  958. "branch-alias": {
  959. "dev-master": "3.x-dev"
  960. }
  961. },
  962. "autoload": {
  963. "psr-4": {
  964. "Consolidation\\SiteAlias\\": "src"
  965. }
  966. },
  967. "notification-url": "https://packagist.org/downloads/",
  968. "license": [
  969. "MIT"
  970. ],
  971. "authors": [
  972. {
  973. "name": "Moshe Weitzman",
  974. "email": "weitzman@tejasa.com"
  975. },
  976. {
  977. "name": "Greg Anderson",
  978. "email": "greg.1.anderson@greenknowe.org"
  979. }
  980. ],
  981. "description": "Manage alias records for local and remote sites.",
  982. "time": "2019-03-12T17:31:48+00:00"
  983. },
  984. {
  985. "name": "consolidation/site-process",
  986. "version": "2.1.0",
  987. "source": {
  988. "type": "git",
  989. "url": "https://github.com/consolidation/site-process.git",
  990. "reference": "f3211fa4c60671c6f068184221f06f932556e443"
  991. },
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://api.github.com/repos/consolidation/site-process/zipball/f3211fa4c60671c6f068184221f06f932556e443",
  995. "reference": "f3211fa4c60671c6f068184221f06f932556e443",
  996. "shasum": ""
  997. },
  998. "require": {
  999. "consolidation/config": "^1.2.1",
  1000. "consolidation/site-alias": "^3",
  1001. "php": ">=5.6.0",
  1002. "symfony/process": "^3.4"
  1003. },
  1004. "require-dev": {
  1005. "consolidation/robo": "^1.3",
  1006. "g1a/composer-test-scenarios": "^3",
  1007. "knplabs/github-api": "^2.7",
  1008. "php-coveralls/php-coveralls": "^1",
  1009. "php-http/guzzle6-adapter": "^1.1",
  1010. "phpunit/phpunit": "^6",
  1011. "squizlabs/php_codesniffer": "^2.8"
  1012. },
  1013. "type": "library",
  1014. "extra": {
  1015. "scenarios": {
  1016. "phpunit5": {
  1017. "require-dev": {
  1018. "phpunit/phpunit": "^5.7.27"
  1019. },
  1020. "remove": [
  1021. "php-coveralls/php-coveralls"
  1022. ],
  1023. "config": {
  1024. "platform": {
  1025. "php": "5.6.33"
  1026. }
  1027. }
  1028. }
  1029. },
  1030. "branch-alias": {
  1031. "dev-master": "0.x-dev"
  1032. }
  1033. },
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Consolidation\\SiteProcess\\": "src"
  1037. }
  1038. },
  1039. "notification-url": "https://packagist.org/downloads/",
  1040. "license": [
  1041. "MIT"
  1042. ],
  1043. "authors": [
  1044. {
  1045. "name": "Greg Anderson",
  1046. "email": "greg.1.anderson@greenknowe.org"
  1047. },
  1048. {
  1049. "name": "Moshe Weitzman",
  1050. "email": "weitzman@tejasa.com"
  1051. }
  1052. ],
  1053. "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.",
  1054. "time": "2019-09-10T17:56:24+00:00"
  1055. },
  1056. {
  1057. "name": "cweagans/composer-patches",
  1058. "version": "1.7.1",
  1059. "source": {
  1060. "type": "git",
  1061. "url": "https://github.com/cweagans/composer-patches.git",
  1062. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c"
  1063. },
  1064. "dist": {
  1065. "type": "zip",
  1066. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1067. "reference": "9888dcc74993c030b75f3dd548bb5e20cdbd740c",
  1068. "shasum": ""
  1069. },
  1070. "require": {
  1071. "composer-plugin-api": "^1.0 || ^2.0",
  1072. "php": ">=5.3.0"
  1073. },
  1074. "require-dev": {
  1075. "composer/composer": "~1.0 || ~2.0",
  1076. "phpunit/phpunit": "~4.6"
  1077. },
  1078. "type": "composer-plugin",
  1079. "extra": {
  1080. "class": "cweagans\\Composer\\Patches"
  1081. },
  1082. "autoload": {
  1083. "psr-4": {
  1084. "cweagans\\Composer\\": "src"
  1085. }
  1086. },
  1087. "notification-url": "https://packagist.org/downloads/",
  1088. "license": [
  1089. "BSD-3-Clause"
  1090. ],
  1091. "authors": [
  1092. {
  1093. "name": "Cameron Eagans",
  1094. "email": "me@cweagans.net"
  1095. }
  1096. ],
  1097. "description": "Provides a way to patch Composer packages.",
  1098. "time": "2021-06-08T15:12:46+00:00"
  1099. },
  1100. {
  1101. "name": "dflydev/dot-access-data",
  1102. "version": "v1.1.0",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1106. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
  1111. "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "php": ">=5.3.2"
  1116. },
  1117. "type": "library",
  1118. "extra": {
  1119. "branch-alias": {
  1120. "dev-master": "1.0-dev"
  1121. }
  1122. },
  1123. "autoload": {
  1124. "psr-0": {
  1125. "Dflydev\\DotAccessData": "src"
  1126. }
  1127. },
  1128. "notification-url": "https://packagist.org/downloads/",
  1129. "license": [
  1130. "MIT"
  1131. ],
  1132. "authors": [
  1133. {
  1134. "name": "Dragonfly Development Inc.",
  1135. "email": "info@dflydev.com",
  1136. "homepage": "http://dflydev.com"
  1137. },
  1138. {
  1139. "name": "Beau Simensen",
  1140. "email": "beau@dflydev.com",
  1141. "homepage": "http://beausimensen.com"
  1142. },
  1143. {
  1144. "name": "Carlos Frutos",
  1145. "email": "carlos@kiwing.it",
  1146. "homepage": "https://github.com/cfrutos"
  1147. }
  1148. ],
  1149. "description": "Given a deep data structure, access data by dot notation.",
  1150. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1151. "keywords": [
  1152. "access",
  1153. "data",
  1154. "dot",
  1155. "notation"
  1156. ],
  1157. "time": "2017-01-20T21:14:22+00:00"
  1158. },
  1159. {
  1160. "name": "dnoegel/php-xdg-base-dir",
  1161. "version": "v0.1.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/dnoegel/php-xdg-base-dir.git",
  1165. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1170. "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "php": ">=5.3.2"
  1175. },
  1176. "require-dev": {
  1177. "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
  1178. },
  1179. "type": "library",
  1180. "autoload": {
  1181. "psr-4": {
  1182. "XdgBaseDir\\": "src/"
  1183. }
  1184. },
  1185. "notification-url": "https://packagist.org/downloads/",
  1186. "license": [
  1187. "MIT"
  1188. ],
  1189. "description": "implementation of xdg base directory specification for php",
  1190. "time": "2019-12-04T15:06:13+00:00"
  1191. },
  1192. {
  1193. "name": "doctrine/annotations",
  1194. "version": "v1.4.0",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/doctrine/annotations.git",
  1198. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97",
  1203. "reference": "54cacc9b81758b14e3ce750f205a393d52339e97",
  1204. "shasum": ""
  1205. },
  1206. "require": {
  1207. "doctrine/lexer": "1.*",
  1208. "php": "^5.6 || ^7.0"
  1209. },
  1210. "require-dev": {
  1211. "doctrine/cache": "1.*",
  1212. "phpunit/phpunit": "^5.7"
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "1.4.x-dev"
  1218. }
  1219. },
  1220. "autoload": {
  1221. "psr-4": {
  1222. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1223. }
  1224. },
  1225. "notification-url": "https://packagist.org/downloads/",
  1226. "license": [
  1227. "MIT"
  1228. ],
  1229. "authors": [
  1230. {
  1231. "name": "Roman Borschel",
  1232. "email": "roman@code-factory.org"
  1233. },
  1234. {
  1235. "name": "Benjamin Eberlei",
  1236. "email": "kontakt@beberlei.de"
  1237. },
  1238. {
  1239. "name": "Guilherme Blanco",
  1240. "email": "guilhermeblanco@gmail.com"
  1241. },
  1242. {
  1243. "name": "Jonathan Wage",
  1244. "email": "jonwage@gmail.com"
  1245. },
  1246. {
  1247. "name": "Johannes Schmitt",
  1248. "email": "schmittjoh@gmail.com"
  1249. }
  1250. ],
  1251. "description": "Docblock Annotations Parser",
  1252. "homepage": "http://www.doctrine-project.org",
  1253. "keywords": [
  1254. "annotations",
  1255. "docblock",
  1256. "parser"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/doctrine/annotations/issues",
  1260. "source": "https://github.com/doctrine/annotations/tree/v1.4.0"
  1261. },
  1262. "time": "2017-02-24T16:22:25+00:00"
  1263. },
  1264. {
  1265. "name": "doctrine/cache",
  1266. "version": "v1.6.2",
  1267. "source": {
  1268. "type": "git",
  1269. "url": "https://github.com/doctrine/cache.git",
  1270. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b"
  1271. },
  1272. "dist": {
  1273. "type": "zip",
  1274. "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1275. "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b",
  1276. "shasum": ""
  1277. },
  1278. "require": {
  1279. "php": "~5.5|~7.0"
  1280. },
  1281. "conflict": {
  1282. "doctrine/common": ">2.2,<2.4"
  1283. },
  1284. "require-dev": {
  1285. "phpunit/phpunit": "~4.8|~5.0",
  1286. "predis/predis": "~1.0",
  1287. "satooshi/php-coveralls": "~0.6"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "1.6.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Roman Borschel",
  1307. "email": "roman@code-factory.org"
  1308. },
  1309. {
  1310. "name": "Benjamin Eberlei",
  1311. "email": "kontakt@beberlei.de"
  1312. },
  1313. {
  1314. "name": "Guilherme Blanco",
  1315. "email": "guilhermeblanco@gmail.com"
  1316. },
  1317. {
  1318. "name": "Jonathan Wage",
  1319. "email": "jonwage@gmail.com"
  1320. },
  1321. {
  1322. "name": "Johannes Schmitt",
  1323. "email": "schmittjoh@gmail.com"
  1324. }
  1325. ],
  1326. "description": "Caching library offering an object-oriented API for many cache backends",
  1327. "homepage": "http://www.doctrine-project.org",
  1328. "keywords": [
  1329. "cache",
  1330. "caching"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/doctrine/cache/issues",
  1334. "source": "https://github.com/doctrine/cache/tree/1.6.x"
  1335. },
  1336. "time": "2017-07-22T12:49:21+00:00"
  1337. },
  1338. {
  1339. "name": "doctrine/collections",
  1340. "version": "v1.4.0",
  1341. "source": {
  1342. "type": "git",
  1343. "url": "https://github.com/doctrine/collections.git",
  1344. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
  1345. },
  1346. "dist": {
  1347. "type": "zip",
  1348. "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
  1349. "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
  1350. "shasum": ""
  1351. },
  1352. "require": {
  1353. "php": "^5.6 || ^7.0"
  1354. },
  1355. "require-dev": {
  1356. "doctrine/coding-standard": "~0.1@dev",
  1357. "phpunit/phpunit": "^5.7"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "branch-alias": {
  1362. "dev-master": "1.3.x-dev"
  1363. }
  1364. },
  1365. "autoload": {
  1366. "psr-0": {
  1367. "Doctrine\\Common\\Collections\\": "lib/"
  1368. }
  1369. },
  1370. "notification-url": "https://packagist.org/downloads/",
  1371. "license": [
  1372. "MIT"
  1373. ],
  1374. "authors": [
  1375. {
  1376. "name": "Roman Borschel",
  1377. "email": "roman@code-factory.org"
  1378. },
  1379. {
  1380. "name": "Benjamin Eberlei",
  1381. "email": "kontakt@beberlei.de"
  1382. },
  1383. {
  1384. "name": "Guilherme Blanco",
  1385. "email": "guilhermeblanco@gmail.com"
  1386. },
  1387. {
  1388. "name": "Jonathan Wage",
  1389. "email": "jonwage@gmail.com"
  1390. },
  1391. {
  1392. "name": "Johannes Schmitt",
  1393. "email": "schmittjoh@gmail.com"
  1394. }
  1395. ],
  1396. "description": "Collections Abstraction library",
  1397. "homepage": "http://www.doctrine-project.org",
  1398. "keywords": [
  1399. "array",
  1400. "collections",
  1401. "iterator"
  1402. ],
  1403. "support": {
  1404. "issues": "https://github.com/doctrine/collections/issues",
  1405. "source": "https://github.com/doctrine/collections/tree/master"
  1406. },
  1407. "time": "2017-01-03T10:49:41+00:00"
  1408. },
  1409. {
  1410. "name": "doctrine/common",
  1411. "version": "v2.7.3",
  1412. "source": {
  1413. "type": "git",
  1414. "url": "https://github.com/doctrine/common.git",
  1415. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9"
  1416. },
  1417. "dist": {
  1418. "type": "zip",
  1419. "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9",
  1420. "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9",
  1421. "shasum": ""
  1422. },
  1423. "require": {
  1424. "doctrine/annotations": "1.*",
  1425. "doctrine/cache": "1.*",
  1426. "doctrine/collections": "1.*",
  1427. "doctrine/inflector": "1.*",
  1428. "doctrine/lexer": "1.*",
  1429. "php": "~5.6|~7.0"
  1430. },
  1431. "require-dev": {
  1432. "phpunit/phpunit": "^5.4.6"
  1433. },
  1434. "type": "library",
  1435. "extra": {
  1436. "branch-alias": {
  1437. "dev-master": "2.7.x-dev"
  1438. }
  1439. },
  1440. "autoload": {
  1441. "psr-4": {
  1442. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1443. }
  1444. },
  1445. "notification-url": "https://packagist.org/downloads/",
  1446. "license": [
  1447. "MIT"
  1448. ],
  1449. "authors": [
  1450. {
  1451. "name": "Roman Borschel",
  1452. "email": "roman@code-factory.org"
  1453. },
  1454. {
  1455. "name": "Benjamin Eberlei",
  1456. "email": "kontakt@beberlei.de"
  1457. },
  1458. {
  1459. "name": "Guilherme Blanco",
  1460. "email": "guilhermeblanco@gmail.com"
  1461. },
  1462. {
  1463. "name": "Jonathan Wage",
  1464. "email": "jonwage@gmail.com"
  1465. },
  1466. {
  1467. "name": "Johannes Schmitt",
  1468. "email": "schmittjoh@gmail.com"
  1469. }
  1470. ],
  1471. "description": "Common Library for Doctrine projects",
  1472. "homepage": "http://www.doctrine-project.org",
  1473. "keywords": [
  1474. "annotations",
  1475. "collections",
  1476. "eventmanager",
  1477. "persistence",
  1478. "spl"
  1479. ],
  1480. "support": {
  1481. "issues": "https://github.com/doctrine/common/issues",
  1482. "source": "https://github.com/doctrine/common/tree/v2.7.3"
  1483. },
  1484. "time": "2017-07-22T08:35:12+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "v1.2.0",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462",
  1497. "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.0"
  1502. },
  1503. "require-dev": {
  1504. "phpunit/phpunit": "^6.2"
  1505. },
  1506. "type": "library",
  1507. "extra": {
  1508. "branch-alias": {
  1509. "dev-master": "1.2.x-dev"
  1510. }
  1511. },
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Roman Borschel",
  1524. "email": "roman@code-factory.org"
  1525. },
  1526. {
  1527. "name": "Benjamin Eberlei",
  1528. "email": "kontakt@beberlei.de"
  1529. },
  1530. {
  1531. "name": "Guilherme Blanco",
  1532. "email": "guilhermeblanco@gmail.com"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "Common String Manipulations with regard to casing and singular/plural rules.",
  1544. "homepage": "http://www.doctrine-project.org",
  1545. "keywords": [
  1546. "inflection",
  1547. "pluralize",
  1548. "singularize",
  1549. "string"
  1550. ],
  1551. "support": {
  1552. "source": "https://github.com/doctrine/inflector/tree/master"
  1553. },
  1554. "time": "2017-07-22T12:18:28+00:00"
  1555. },
  1556. {
  1557. "name": "doctrine/lexer",
  1558. "version": "1.0.2",
  1559. "source": {
  1560. "type": "git",
  1561. "url": "https://github.com/doctrine/lexer.git",
  1562. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8"
  1563. },
  1564. "dist": {
  1565. "type": "zip",
  1566. "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1567. "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8",
  1568. "shasum": ""
  1569. },
  1570. "require": {
  1571. "php": ">=5.3.2"
  1572. },
  1573. "require-dev": {
  1574. "phpunit/phpunit": "^4.5"
  1575. },
  1576. "type": "library",
  1577. "extra": {
  1578. "branch-alias": {
  1579. "dev-master": "1.0.x-dev"
  1580. }
  1581. },
  1582. "autoload": {
  1583. "psr-4": {
  1584. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Roman Borschel",
  1594. "email": "roman@code-factory.org"
  1595. },
  1596. {
  1597. "name": "Guilherme Blanco",
  1598. "email": "guilhermeblanco@gmail.com"
  1599. },
  1600. {
  1601. "name": "Johannes Schmitt",
  1602. "email": "schmittjoh@gmail.com"
  1603. }
  1604. ],
  1605. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1606. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1607. "keywords": [
  1608. "annotations",
  1609. "docblock",
  1610. "lexer",
  1611. "parser",
  1612. "php"
  1613. ],
  1614. "support": {
  1615. "issues": "https://github.com/doctrine/lexer/issues",
  1616. "source": "https://github.com/doctrine/lexer/tree/1.0.2"
  1617. },
  1618. "time": "2019-06-08T11:03:04+00:00"
  1619. },
  1620. {
  1621. "name": "drupal/addtoany",
  1622. "version": "1.14.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.14"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.14.zip",
  1631. "reference": "8.x-1.14",
  1632. "shasum": "269ec4d1cfaf93132d5945edebf691ec7c04901a"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.14",
  1641. "datestamp": "1589571718",
  1642. "security-coverage": {
  1643. "status": "covered",
  1644. "message": "Covered by Drupal's security advisory policy"
  1645. }
  1646. }
  1647. },
  1648. "notification-url": "https://packages.drupal.org/8/downloads",
  1649. "license": [
  1650. "GPL-2.0-or-later"
  1651. ],
  1652. "authors": [
  1653. {
  1654. "name": "AddToAny",
  1655. "homepage": "https://www.drupal.org/user/2640913"
  1656. },
  1657. {
  1658. "name": "micropat",
  1659. "homepage": "https://www.drupal.org/user/260224"
  1660. }
  1661. ],
  1662. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Twitter, Pinterest, WhatsApp and many more.",
  1663. "homepage": "https://www.drupal.org/project/addtoany",
  1664. "keywords": [
  1665. "Drupal"
  1666. ],
  1667. "support": {
  1668. "source": "https://git.drupalcode.org/project/addtoany",
  1669. "issues": "https://www.drupal.org/project/issues/addtoany"
  1670. }
  1671. },
  1672. {
  1673. "name": "drupal/admin_toolbar",
  1674. "version": "2.3.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.3"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.3.zip",
  1683. "reference": "8.x-2.3",
  1684. "shasum": "cf8ee1aa8adfc604db4394655e3ba4c423d5f24a"
  1685. },
  1686. "require": {
  1687. "drupal/core": "^8.8.0 || ^9.0"
  1688. },
  1689. "type": "drupal-module",
  1690. "extra": {
  1691. "drupal": {
  1692. "version": "8.x-2.3",
  1693. "datestamp": "1592535714",
  1694. "security-coverage": {
  1695. "status": "covered",
  1696. "message": "Covered by Drupal's security advisory policy"
  1697. }
  1698. }
  1699. },
  1700. "notification-url": "https://packages.drupal.org/8/downloads",
  1701. "license": [
  1702. "GPL-2.0-or-later"
  1703. ],
  1704. "authors": [
  1705. {
  1706. "name": "Wilfrid Roze (eme)",
  1707. "homepage": "https://www.drupal.org/u/eme",
  1708. "role": "Maintainer"
  1709. },
  1710. {
  1711. "name": "Romain Jarraud (romainj)",
  1712. "homepage": "https://www.drupal.org/u/romainj",
  1713. "role": "Maintainer"
  1714. },
  1715. {
  1716. "name": "Adrian Cid Almaguer (adriancid)",
  1717. "homepage": "https://www.drupal.org/u/adriancid",
  1718. "email": "adriancid@gmail.com",
  1719. "role": "Maintainer"
  1720. },
  1721. {
  1722. "name": "Mohamed Anis Taktak (matio89)",
  1723. "homepage": "https://www.drupal.org/u/matio89",
  1724. "role": "Maintainer"
  1725. },
  1726. {
  1727. "name": "fethi.krout",
  1728. "homepage": "https://www.drupal.org/user/3206765"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "romainj",
  1736. "homepage": "https://www.drupal.org/user/370706"
  1737. }
  1738. ],
  1739. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1740. "homepage": "http://drupal.org/project/admin_toolbar",
  1741. "keywords": [
  1742. "Drupal",
  1743. "Toolbar"
  1744. ],
  1745. "support": {
  1746. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1747. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1748. }
  1749. },
  1750. {
  1751. "name": "drupal/adminimal_theme",
  1752. "version": "1.6.0",
  1753. "source": {
  1754. "type": "git",
  1755. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1756. "reference": "8.x-1.6"
  1757. },
  1758. "dist": {
  1759. "type": "zip",
  1760. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1761. "reference": "8.x-1.6",
  1762. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1763. },
  1764. "require": {
  1765. "drupal/core": "^8.8 || ^9"
  1766. },
  1767. "type": "drupal-theme",
  1768. "extra": {
  1769. "drupal": {
  1770. "version": "8.x-1.6",
  1771. "datestamp": "1602006937",
  1772. "security-coverage": {
  1773. "status": "covered",
  1774. "message": "Covered by Drupal's security advisory policy"
  1775. }
  1776. }
  1777. },
  1778. "notification-url": "https://packages.drupal.org/8/downloads",
  1779. "license": [
  1780. "GPL-2.0+"
  1781. ],
  1782. "authors": [
  1783. {
  1784. "name": "ANDiTKO",
  1785. "homepage": "https://www.drupal.org/user/1428124"
  1786. },
  1787. {
  1788. "name": "andrey.troeglazov",
  1789. "homepage": "https://www.drupal.org/user/3145389"
  1790. },
  1791. {
  1792. "name": "realityloop",
  1793. "homepage": "https://www.drupal.org/user/139189"
  1794. },
  1795. {
  1796. "name": "rjjakes",
  1797. "homepage": "https://www.drupal.org/user/3457245"
  1798. }
  1799. ],
  1800. "description": "Drupal administration theme with modern minimalist design.",
  1801. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1802. "support": {
  1803. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1804. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1805. }
  1806. },
  1807. {
  1808. "name": "drupal/audiofield",
  1809. "version": "1.13.0",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://git.drupalcode.org/project/audiofield.git",
  1813. "reference": "8.x-1.13"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1818. "reference": "8.x-1.13",
  1819. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1820. },
  1821. "require": {
  1822. "drupal/core": "^8 || ^9 || ^10"
  1823. },
  1824. "type": "drupal-module",
  1825. "extra": {
  1826. "drupal": {
  1827. "version": "8.x-1.13",
  1828. "datestamp": "1681143245",
  1829. "security-coverage": {
  1830. "status": "covered",
  1831. "message": "Covered by Drupal's security advisory policy"
  1832. }
  1833. },
  1834. "drush": {
  1835. "services": {
  1836. "drush.services.yml": "^9"
  1837. }
  1838. }
  1839. },
  1840. "notification-url": "https://packages.drupal.org/8/downloads",
  1841. "license": [
  1842. "GPL-2.0-or-later"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "Daniel Moberly",
  1847. "homepage": "https://www.drupal.org/u/danielmoberly",
  1848. "role": "Maintainer"
  1849. },
  1850. {
  1851. "name": "tamerzg",
  1852. "homepage": "https://www.drupal.org/user/464564"
  1853. }
  1854. ],
  1855. "description": "AudioField Module",
  1856. "homepage": "https://www.drupal.org/project/audiofield",
  1857. "support": {
  1858. "source": "https://git.drupalcode.org/project/audiofield",
  1859. "issues": "https://www.drupal.org/project/issues/audiofield"
  1860. }
  1861. },
  1862. {
  1863. "name": "drupal/autologout",
  1864. "version": "1.3.0",
  1865. "source": {
  1866. "type": "git",
  1867. "url": "https://git.drupalcode.org/project/autologout.git",
  1868. "reference": "8.x-1.3"
  1869. },
  1870. "dist": {
  1871. "type": "zip",
  1872. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1873. "reference": "8.x-1.3",
  1874. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1875. },
  1876. "require": {
  1877. "drupal/core": "^8 || ^9"
  1878. },
  1879. "type": "drupal-module",
  1880. "extra": {
  1881. "drupal": {
  1882. "version": "8.x-1.3",
  1883. "datestamp": "1587193798",
  1884. "security-coverage": {
  1885. "status": "covered",
  1886. "message": "Covered by Drupal's security advisory policy"
  1887. }
  1888. },
  1889. "patches_applied": {
  1890. "AutologoutManager class incompatible with interface https://www.drupal.org/project/autologout/issues/3121214": "https://www.drupal.org/files/issues/2020-03-20/3121214-autologout_manager_incompatible_interface.patch"
  1891. }
  1892. },
  1893. "notification-url": "https://packages.drupal.org/8/downloads",
  1894. "license": [
  1895. "GPL-2.0+"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "AjK",
  1900. "homepage": "https://www.drupal.org/user/39030"
  1901. },
  1902. {
  1903. "name": "AjitS",
  1904. "homepage": "https://www.drupal.org/user/981944"
  1905. },
  1906. {
  1907. "name": "boshtian",
  1908. "homepage": "https://www.drupal.org/user/1773456"
  1909. },
  1910. {
  1911. "name": "dandrews",
  1912. "homepage": "https://www.drupal.org/user/2014490"
  1913. },
  1914. {
  1915. "name": "darksnow",
  1916. "homepage": "https://www.drupal.org/user/391915"
  1917. },
  1918. {
  1919. "name": "johnennew",
  1920. "homepage": "https://www.drupal.org/user/1150042"
  1921. },
  1922. {
  1923. "name": "jrglasgow",
  1924. "homepage": "https://www.drupal.org/user/36590"
  1925. },
  1926. {
  1927. "name": "kmasood",
  1928. "homepage": "https://www.drupal.org/user/1262860"
  1929. },
  1930. {
  1931. "name": "levelos",
  1932. "homepage": "https://www.drupal.org/user/54135"
  1933. },
  1934. {
  1935. "name": "prabeen.giri",
  1936. "homepage": "https://www.drupal.org/user/913078"
  1937. },
  1938. {
  1939. "name": "str8",
  1940. "homepage": "https://www.drupal.org/user/2865063"
  1941. }
  1942. ],
  1943. "description": "Adds automated timed logout.",
  1944. "homepage": "http://drupal.org/project/autologout",
  1945. "support": {
  1946. "source": "https://git.drupalcode.org/project/autologout"
  1947. }
  1948. },
  1949. {
  1950. "name": "drupal/basic",
  1951. "version": "2.1.0",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://git.drupalcode.org/project/basic.git",
  1955. "reference": "8.x-2.1"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1960. "reference": "8.x-2.1",
  1961. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1962. },
  1963. "require": {
  1964. "drupal/core": "^8.8 || ^9"
  1965. },
  1966. "type": "drupal-theme",
  1967. "extra": {
  1968. "drupal": {
  1969. "version": "8.x-2.1",
  1970. "datestamp": "1612916291",
  1971. "security-coverage": {
  1972. "status": "covered",
  1973. "message": "Covered by Drupal's security advisory policy"
  1974. }
  1975. }
  1976. },
  1977. "notification-url": "https://packages.drupal.org/8/downloads",
  1978. "license": [
  1979. "GPL-2.0+"
  1980. ],
  1981. "authors": [
  1982. {
  1983. "name": "Steve Krueger",
  1984. "homepage": "http://thejibe.com",
  1985. "email": "steve@thejibe.com",
  1986. "role": "Maintainer"
  1987. },
  1988. {
  1989. "name": "Joël Pittet",
  1990. "homepage": "https://www.drupal.org/u/joelpittet",
  1991. "email": "joel@pittet.ca",
  1992. "role": "Maintainer"
  1993. },
  1994. {
  1995. "name": "Leah Wagner",
  1996. "homepage": "http://thejibe.com",
  1997. "email": "leah@thejibe.com",
  1998. "role": "Maintainer"
  1999. },
  2000. {
  2001. "name": "Catherine Winters",
  2002. "homepage": "http://www.catherinewinters.com",
  2003. "email": "catherine@catherinewinters.com",
  2004. "role": "Maintainer"
  2005. },
  2006. {
  2007. "name": "Johannes Schmidt",
  2008. "homepage": "http://2tabs.com",
  2009. "email": "mail@2tabs.com",
  2010. "role": "Maintainer"
  2011. },
  2012. {
  2013. "name": "Chuck Kosman",
  2014. "homepage": "http://thejibe.com",
  2015. "email": "chuck@thejibe.com",
  2016. "role": "Maintainer"
  2017. },
  2018. {
  2019. "name": "SteveK",
  2020. "homepage": "https://www.drupal.org/user/111656"
  2021. }
  2022. ],
  2023. "description": "HTML5, SASS, Responsive grid starter theme.",
  2024. "homepage": "http://drupal.org/project/basic",
  2025. "support": {
  2026. "source": "http://cgit.drupalcode.org/basic",
  2027. "issues": "https://www.drupal.org/project/issues/basic",
  2028. "irc": "irc://irc.freenode.org/drupal-contribute"
  2029. }
  2030. },
  2031. {
  2032. "name": "drupal/better_messages",
  2033. "version": "2.0.0-alpha2",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://git.drupalcode.org/project/better_messages.git",
  2037. "reference": "2.0.0-alpha2"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2042. "reference": "2.0.0-alpha2",
  2043. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2044. },
  2045. "require": {
  2046. "drupal/core": "^8 || ^9"
  2047. },
  2048. "type": "drupal-module",
  2049. "extra": {
  2050. "drupal": {
  2051. "version": "2.0.0-alpha2",
  2052. "datestamp": "1644241962",
  2053. "security-coverage": {
  2054. "status": "not-covered",
  2055. "message": "Alpha releases are not covered by Drupal security advisories."
  2056. }
  2057. }
  2058. },
  2059. "notification-url": "https://packages.drupal.org/8/downloads",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "bucefal91",
  2066. "homepage": "https://www.drupal.org/user/504128"
  2067. },
  2068. {
  2069. "name": "le72",
  2070. "homepage": "https://www.drupal.org/user/1866896"
  2071. },
  2072. {
  2073. "name": "mohammed j. razem",
  2074. "homepage": "https://www.drupal.org/user/255384"
  2075. },
  2076. {
  2077. "name": "usingsession",
  2078. "homepage": "https://www.drupal.org/user/3582050"
  2079. }
  2080. ],
  2081. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2082. "homepage": "https://www.drupal.org/project/better_messages",
  2083. "support": {
  2084. "source": "https://git.drupalcode.org/project/better_messages"
  2085. }
  2086. },
  2087. {
  2088. "name": "drupal/bulkdelete",
  2089. "version": "dev-1.x",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2093. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2094. },
  2095. "require": {
  2096. "drupal/core": "^8.7.7 || ^9"
  2097. },
  2098. "type": "drupal-module",
  2099. "extra": {
  2100. "branch-alias": {
  2101. "dev-1.x": "1.x-dev"
  2102. },
  2103. "drupal": {
  2104. "version": "8.x-1.x-dev",
  2105. "datestamp": "1569586386",
  2106. "security-coverage": {
  2107. "status": "not-covered",
  2108. "message": "Dev releases are not covered by Drupal security advisories."
  2109. }
  2110. }
  2111. },
  2112. "notification-url": "https://packages.drupal.org/8/downloads",
  2113. "license": [
  2114. "GPL-2.0-or-later"
  2115. ],
  2116. "authors": [
  2117. {
  2118. "name": "Kars-T",
  2119. "homepage": "https://www.drupal.org/user/224499"
  2120. },
  2121. {
  2122. "name": "Rahul Seth",
  2123. "homepage": "https://www.drupal.org/user/2694359"
  2124. },
  2125. {
  2126. "name": "adriancid",
  2127. "homepage": "https://www.drupal.org/user/1962106"
  2128. },
  2129. {
  2130. "name": "robertDouglass",
  2131. "homepage": "https://www.drupal.org/user/5449"
  2132. }
  2133. ],
  2134. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2135. "homepage": "https://www.drupal.org/project/bulkdelete",
  2136. "support": {
  2137. "source": "https://git.drupalcode.org/project/bulkdelete"
  2138. },
  2139. "time": "2020-05-24T06:01:38+00:00"
  2140. },
  2141. {
  2142. "name": "drupal/color_field",
  2143. "version": "2.4.0",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://git.drupalcode.org/project/color_field.git",
  2147. "reference": "8.x-2.4"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.4.zip",
  2152. "reference": "8.x-2.4",
  2153. "shasum": "11c163a409f4f70083f188d917fecc6052c53a2f"
  2154. },
  2155. "require": {
  2156. "drupal/core": "^8 || ^9"
  2157. },
  2158. "require-dev": {
  2159. "drupal/token": "~1.3",
  2160. "nickwilde1990/php-composter-phpcs-drupal": "^2.0"
  2161. },
  2162. "suggest": {
  2163. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2164. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2165. },
  2166. "type": "drupal-module",
  2167. "extra": {
  2168. "drupal": {
  2169. "version": "8.x-2.4",
  2170. "datestamp": "1596479692",
  2171. "security-coverage": {
  2172. "status": "covered",
  2173. "message": "Covered by Drupal's security advisory policy"
  2174. }
  2175. }
  2176. },
  2177. "notification-url": "https://packages.drupal.org/8/downloads",
  2178. "license": [
  2179. "GPL-2.0-or-later"
  2180. ],
  2181. "authors": [
  2182. {
  2183. "name": "targoo",
  2184. "homepage": "https://www.drupal.org/user/431910",
  2185. "role": "Maintainer"
  2186. },
  2187. {
  2188. "name": "Nick Wilde",
  2189. "homepage": "https://www.drupal.org/user/nickwilde",
  2190. "role": "Maintainer"
  2191. }
  2192. ],
  2193. "description": "Provides a color field type to store the color value and opacity",
  2194. "homepage": "https://www.drupal.org/project/color_field",
  2195. "support": {
  2196. "source": "https://git.drupalcode.org/project/color_field",
  2197. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2198. }
  2199. },
  2200. {
  2201. "name": "drupal/config_devel",
  2202. "version": "1.8.0",
  2203. "source": {
  2204. "type": "git",
  2205. "url": "https://git.drupalcode.org/project/config_devel.git",
  2206. "reference": "8.x-1.8"
  2207. },
  2208. "dist": {
  2209. "type": "zip",
  2210. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2211. "reference": "8.x-1.8",
  2212. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2213. },
  2214. "require": {
  2215. "drupal/core": "^8 || ^9"
  2216. },
  2217. "type": "drupal-module",
  2218. "extra": {
  2219. "drupal": {
  2220. "version": "8.x-1.8",
  2221. "datestamp": "1609324318",
  2222. "security-coverage": {
  2223. "status": "covered",
  2224. "message": "Covered by Drupal's security advisory policy"
  2225. }
  2226. }
  2227. },
  2228. "notification-url": "https://packages.drupal.org/8/downloads",
  2229. "license": [
  2230. "GPL-2.0+"
  2231. ],
  2232. "authors": [
  2233. {
  2234. "name": "alexpott",
  2235. "homepage": "https://www.drupal.org/user/157725"
  2236. },
  2237. {
  2238. "name": "benjy",
  2239. "homepage": "https://www.drupal.org/user/1852732"
  2240. },
  2241. {
  2242. "name": "chx",
  2243. "homepage": "https://www.drupal.org/user/9446"
  2244. },
  2245. {
  2246. "name": "joachim",
  2247. "homepage": "https://www.drupal.org/user/107701"
  2248. },
  2249. {
  2250. "name": "vijaycs85",
  2251. "homepage": "https://www.drupal.org/user/93488"
  2252. }
  2253. ],
  2254. "description": "Helps developers work with configuration.",
  2255. "homepage": "https://www.drupal.org/project/config_devel",
  2256. "support": {
  2257. "source": "https://git.drupalcode.org/project/config_devel"
  2258. }
  2259. },
  2260. {
  2261. "name": "drupal/config_filter",
  2262. "version": "1.12.0",
  2263. "source": {
  2264. "type": "git",
  2265. "url": "https://git.drupalcode.org/project/config_filter.git",
  2266. "reference": "8.x-1.12"
  2267. },
  2268. "dist": {
  2269. "type": "zip",
  2270. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2271. "reference": "8.x-1.12",
  2272. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2273. },
  2274. "require": {
  2275. "drupal/core": "^8.8 || ^9 || ^10"
  2276. },
  2277. "suggest": {
  2278. "drupal/config_split": "Split site configuration for different environments."
  2279. },
  2280. "type": "drupal-module",
  2281. "extra": {
  2282. "drupal": {
  2283. "version": "8.x-1.12",
  2284. "datestamp": "1698308496",
  2285. "security-coverage": {
  2286. "status": "covered",
  2287. "message": "Covered by Drupal's security advisory policy"
  2288. }
  2289. }
  2290. },
  2291. "notification-url": "https://packages.drupal.org/8/downloads",
  2292. "license": [
  2293. "GPL-2.0-or-later"
  2294. ],
  2295. "authors": [
  2296. {
  2297. "name": "Fabian Bircher",
  2298. "homepage": "https://www.drupal.org/u/bircher",
  2299. "email": "opensource@fabianbircher.com",
  2300. "role": "Maintainer"
  2301. },
  2302. {
  2303. "name": "Nuvole Web",
  2304. "homepage": "http://nuvole.org",
  2305. "email": "info@nuvole.org",
  2306. "role": "Maintainer"
  2307. },
  2308. {
  2309. "name": "pescetti",
  2310. "homepage": "https://www.drupal.org/user/436244"
  2311. }
  2312. ],
  2313. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2314. "homepage": "https://www.drupal.org/project/config_filter",
  2315. "keywords": [
  2316. "Drupal",
  2317. "configuration",
  2318. "configuration management"
  2319. ],
  2320. "support": {
  2321. "source": "https://git.drupalcode.org/project/config_filter",
  2322. "issues": "https://www.drupal.org/project/issues/config_filter",
  2323. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2324. }
  2325. },
  2326. {
  2327. "name": "drupal/config_ignore",
  2328. "version": "2.4.0",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2332. "reference": "8.x-2.4"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2337. "reference": "8.x-2.4",
  2338. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2339. },
  2340. "require": {
  2341. "drupal/config_filter": "^1 || ^2",
  2342. "drupal/core": "^8 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "drupal": {
  2347. "version": "8.x-2.4",
  2348. "datestamp": "1676045435",
  2349. "security-coverage": {
  2350. "status": "covered",
  2351. "message": "Covered by Drupal's security advisory policy"
  2352. }
  2353. }
  2354. },
  2355. "notification-url": "https://packages.drupal.org/8/downloads",
  2356. "license": [
  2357. "GPL-2.0-or-later"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Tommy Lynge Jørgensen",
  2362. "homepage": "https://www.drupal.org/u/tlyngej",
  2363. "email": "tlyngej@gmail.com",
  2364. "role": "Maintainer"
  2365. },
  2366. {
  2367. "name": "Fabian Bircher",
  2368. "homepage": "https://www.drupal.org/u/bircher",
  2369. "role": "Maintainer"
  2370. },
  2371. {
  2372. "name": "tlyngej",
  2373. "homepage": "https://www.drupal.org/user/413139"
  2374. }
  2375. ],
  2376. "description": "Ignore certain configuration during import.",
  2377. "homepage": "http://drupal.org/project/config_ignore",
  2378. "support": {
  2379. "source": "https://git.drupalcode.org/project/config_ignore",
  2380. "issues": "https://drupal.org/project/config_ignore",
  2381. "irc": "irc://irc.freenode.org/drupal-contribute"
  2382. }
  2383. },
  2384. {
  2385. "name": "drupal/config_update",
  2386. "version": "1.7.0",
  2387. "source": {
  2388. "type": "git",
  2389. "url": "https://git.drupalcode.org/project/config_update.git",
  2390. "reference": "8.x-1.7"
  2391. },
  2392. "dist": {
  2393. "type": "zip",
  2394. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2395. "reference": "8.x-1.7",
  2396. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2397. },
  2398. "require": {
  2399. "drupal/core": "^8 || ^9"
  2400. },
  2401. "type": "drupal-module",
  2402. "extra": {
  2403. "drupal": {
  2404. "version": "8.x-1.7",
  2405. "datestamp": "1586355587",
  2406. "security-coverage": {
  2407. "status": "covered",
  2408. "message": "Covered by Drupal's security advisory policy"
  2409. }
  2410. }
  2411. },
  2412. "notification-url": "https://packages.drupal.org/8/downloads",
  2413. "license": [
  2414. "GPL-2.0-or-later"
  2415. ],
  2416. "authors": [
  2417. {
  2418. "name": "jhodgdon",
  2419. "homepage": "https://www.drupal.org/user/155601"
  2420. },
  2421. {
  2422. "name": "nedjo",
  2423. "homepage": "https://www.drupal.org/user/4481"
  2424. }
  2425. ],
  2426. "description": "Provides basic revert and update functionality for other modules",
  2427. "homepage": "https://www.drupal.org/project/config_update",
  2428. "support": {
  2429. "source": "https://git.drupalcode.org/project/config_update"
  2430. }
  2431. },
  2432. {
  2433. "name": "drupal/context",
  2434. "version": "4.1.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://git.drupalcode.org/project/context.git",
  2438. "reference": "8.x-4.1"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2443. "reference": "8.x-4.1",
  2444. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2445. },
  2446. "require": {
  2447. "drupal/core": "^8.8 || ^9"
  2448. },
  2449. "type": "drupal-module",
  2450. "extra": {
  2451. "drupal": {
  2452. "version": "8.x-4.1",
  2453. "datestamp": "1628187190",
  2454. "security-coverage": {
  2455. "status": "covered",
  2456. "message": "Covered by Drupal's security advisory policy"
  2457. }
  2458. }
  2459. },
  2460. "notification-url": "https://packages.drupal.org/8/downloads",
  2461. "license": [
  2462. "MIT"
  2463. ],
  2464. "authors": [
  2465. {
  2466. "name": "Christoffer Palm",
  2467. "homepage": "http://www.oddhill.se/",
  2468. "email": "christoffer.palm@oddhill.se",
  2469. "role": "Developer"
  2470. },
  2471. {
  2472. "name": "boshtian",
  2473. "homepage": "https://www.drupal.org/user/1773456"
  2474. },
  2475. {
  2476. "name": "colan",
  2477. "homepage": "https://www.drupal.org/user/58704"
  2478. },
  2479. {
  2480. "name": "emanaton",
  2481. "homepage": "https://www.drupal.org/user/120853"
  2482. },
  2483. {
  2484. "name": "febbraro",
  2485. "homepage": "https://www.drupal.org/user/43670"
  2486. },
  2487. {
  2488. "name": "fizk",
  2489. "homepage": "https://www.drupal.org/user/473174"
  2490. },
  2491. {
  2492. "name": "hass",
  2493. "homepage": "https://www.drupal.org/user/85918"
  2494. },
  2495. {
  2496. "name": "hefox",
  2497. "homepage": "https://www.drupal.org/user/426416"
  2498. },
  2499. {
  2500. "name": "jmiccolis",
  2501. "homepage": "https://www.drupal.org/user/31731"
  2502. },
  2503. {
  2504. "name": "Kristen Pol",
  2505. "homepage": "https://www.drupal.org/user/8389"
  2506. },
  2507. {
  2508. "name": "nedjo",
  2509. "homepage": "https://www.drupal.org/user/4481"
  2510. },
  2511. {
  2512. "name": "NormySan",
  2513. "homepage": "https://www.drupal.org/user/112352"
  2514. },
  2515. {
  2516. "name": "patricksettle",
  2517. "homepage": "https://www.drupal.org/user/26618"
  2518. },
  2519. {
  2520. "name": "paulocs",
  2521. "homepage": "https://www.drupal.org/user/3640109"
  2522. },
  2523. {
  2524. "name": "Steven Jones",
  2525. "homepage": "https://www.drupal.org/user/99644"
  2526. },
  2527. {
  2528. "name": "tekante",
  2529. "homepage": "https://www.drupal.org/user/640024"
  2530. },
  2531. {
  2532. "name": "yhahn",
  2533. "homepage": "https://www.drupal.org/user/264833"
  2534. }
  2535. ],
  2536. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2537. "homepage": "https://github.com/oddhill/context",
  2538. "keywords": [
  2539. "Drupal",
  2540. "block",
  2541. "conditions",
  2542. "context",
  2543. "visibility"
  2544. ],
  2545. "support": {
  2546. "source": "https://github.com/oddhill/context",
  2547. "issues": "https://github.com/oddhill/context/issues",
  2548. "docs": "https://github.com/oddhill/context"
  2549. }
  2550. },
  2551. {
  2552. "name": "drupal/core",
  2553. "version": "8.9.20",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://github.com/drupal/core.git",
  2557. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2562. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2563. "shasum": ""
  2564. },
  2565. "require": {
  2566. "asm89/stack-cors": "^1.1",
  2567. "composer/semver": "^1.0",
  2568. "doctrine/annotations": "^1.4",
  2569. "doctrine/common": "^2.7",
  2570. "easyrdf/easyrdf": "^0.9",
  2571. "egulias/email-validator": "^2.0",
  2572. "ext-date": "*",
  2573. "ext-dom": "*",
  2574. "ext-filter": "*",
  2575. "ext-gd": "*",
  2576. "ext-hash": "*",
  2577. "ext-json": "*",
  2578. "ext-pcre": "*",
  2579. "ext-pdo": "*",
  2580. "ext-session": "*",
  2581. "ext-simplexml": "*",
  2582. "ext-spl": "*",
  2583. "ext-tokenizer": "*",
  2584. "ext-xml": "*",
  2585. "guzzlehttp/guzzle": "^6.3",
  2586. "laminas/laminas-diactoros": "^1.8",
  2587. "laminas/laminas-feed": "^2.12",
  2588. "masterminds/html5": "^2.1",
  2589. "pear/archive_tar": "^1.4.14",
  2590. "php": "^7.0.8",
  2591. "psr/log": "^1.0",
  2592. "stack/builder": "^1.0",
  2593. "symfony-cmf/routing": "^1.4",
  2594. "symfony/class-loader": "~3.4.0",
  2595. "symfony/console": "~3.4.0",
  2596. "symfony/dependency-injection": "~3.4.26",
  2597. "symfony/event-dispatcher": "~3.4.0",
  2598. "symfony/http-foundation": "~3.4.35",
  2599. "symfony/http-kernel": "~3.4.14",
  2600. "symfony/polyfill-iconv": "^1.0",
  2601. "symfony/process": "~3.4.0",
  2602. "symfony/psr-http-message-bridge": "^1.1.2",
  2603. "symfony/routing": "~3.4.0",
  2604. "symfony/serializer": "~3.4.0",
  2605. "symfony/translation": "~3.4.0",
  2606. "symfony/validator": "~3.4.0",
  2607. "symfony/yaml": "~3.4.5",
  2608. "twig/twig": "^1.38.2",
  2609. "typo3/phar-stream-wrapper": "^3.1.3"
  2610. },
  2611. "conflict": {
  2612. "drupal/pathauto": "<1.6",
  2613. "drush/drush": "<8.1.10"
  2614. },
  2615. "replace": {
  2616. "drupal/action": "self.version",
  2617. "drupal/aggregator": "self.version",
  2618. "drupal/automated_cron": "self.version",
  2619. "drupal/ban": "self.version",
  2620. "drupal/bartik": "self.version",
  2621. "drupal/basic_auth": "self.version",
  2622. "drupal/big_pipe": "self.version",
  2623. "drupal/block": "self.version",
  2624. "drupal/block_content": "self.version",
  2625. "drupal/block_place": "self.version",
  2626. "drupal/book": "self.version",
  2627. "drupal/breakpoint": "self.version",
  2628. "drupal/ckeditor": "self.version",
  2629. "drupal/claro": "self.version",
  2630. "drupal/classy": "self.version",
  2631. "drupal/color": "self.version",
  2632. "drupal/comment": "self.version",
  2633. "drupal/config": "self.version",
  2634. "drupal/config_translation": "self.version",
  2635. "drupal/contact": "self.version",
  2636. "drupal/content_moderation": "self.version",
  2637. "drupal/content_translation": "self.version",
  2638. "drupal/contextual": "self.version",
  2639. "drupal/core-annotation": "self.version",
  2640. "drupal/core-assertion": "self.version",
  2641. "drupal/core-bridge": "self.version",
  2642. "drupal/core-class-finder": "self.version",
  2643. "drupal/core-datetime": "self.version",
  2644. "drupal/core-dependency-injection": "self.version",
  2645. "drupal/core-diff": "self.version",
  2646. "drupal/core-discovery": "self.version",
  2647. "drupal/core-event-dispatcher": "self.version",
  2648. "drupal/core-file-cache": "self.version",
  2649. "drupal/core-file-security": "self.version",
  2650. "drupal/core-filesystem": "self.version",
  2651. "drupal/core-gettext": "self.version",
  2652. "drupal/core-graph": "self.version",
  2653. "drupal/core-http-foundation": "self.version",
  2654. "drupal/core-php-storage": "self.version",
  2655. "drupal/core-plugin": "self.version",
  2656. "drupal/core-proxy-builder": "self.version",
  2657. "drupal/core-render": "self.version",
  2658. "drupal/core-serialization": "self.version",
  2659. "drupal/core-transliteration": "self.version",
  2660. "drupal/core-utility": "self.version",
  2661. "drupal/core-uuid": "self.version",
  2662. "drupal/core-version": "self.version",
  2663. "drupal/datetime": "self.version",
  2664. "drupal/datetime_range": "self.version",
  2665. "drupal/dblog": "self.version",
  2666. "drupal/dynamic_page_cache": "self.version",
  2667. "drupal/editor": "self.version",
  2668. "drupal/entity_reference": "self.version",
  2669. "drupal/field": "self.version",
  2670. "drupal/field_layout": "self.version",
  2671. "drupal/field_ui": "self.version",
  2672. "drupal/file": "self.version",
  2673. "drupal/filter": "self.version",
  2674. "drupal/forum": "self.version",
  2675. "drupal/hal": "self.version",
  2676. "drupal/help": "self.version",
  2677. "drupal/help_topics": "self.version",
  2678. "drupal/history": "self.version",
  2679. "drupal/image": "self.version",
  2680. "drupal/inline_form_errors": "self.version",
  2681. "drupal/jsonapi": "self.version",
  2682. "drupal/language": "self.version",
  2683. "drupal/layout_builder": "self.version",
  2684. "drupal/layout_discovery": "self.version",
  2685. "drupal/link": "self.version",
  2686. "drupal/locale": "self.version",
  2687. "drupal/media": "self.version",
  2688. "drupal/media_library": "self.version",
  2689. "drupal/menu_link_content": "self.version",
  2690. "drupal/menu_ui": "self.version",
  2691. "drupal/migrate": "self.version",
  2692. "drupal/migrate_drupal": "self.version",
  2693. "drupal/migrate_drupal_multilingual": "self.version",
  2694. "drupal/migrate_drupal_ui": "self.version",
  2695. "drupal/minimal": "self.version",
  2696. "drupal/node": "self.version",
  2697. "drupal/options": "self.version",
  2698. "drupal/page_cache": "self.version",
  2699. "drupal/path": "self.version",
  2700. "drupal/path_alias": "self.version",
  2701. "drupal/quickedit": "self.version",
  2702. "drupal/rdf": "self.version",
  2703. "drupal/responsive_image": "self.version",
  2704. "drupal/rest": "self.version",
  2705. "drupal/search": "self.version",
  2706. "drupal/serialization": "self.version",
  2707. "drupal/settings_tray": "self.version",
  2708. "drupal/seven": "self.version",
  2709. "drupal/shortcut": "self.version",
  2710. "drupal/simpletest": "self.version",
  2711. "drupal/standard": "self.version",
  2712. "drupal/stark": "self.version",
  2713. "drupal/statistics": "self.version",
  2714. "drupal/syslog": "self.version",
  2715. "drupal/system": "self.version",
  2716. "drupal/taxonomy": "self.version",
  2717. "drupal/telephone": "self.version",
  2718. "drupal/text": "self.version",
  2719. "drupal/toolbar": "self.version",
  2720. "drupal/tour": "self.version",
  2721. "drupal/tracker": "self.version",
  2722. "drupal/update": "self.version",
  2723. "drupal/user": "self.version",
  2724. "drupal/views": "self.version",
  2725. "drupal/views_ui": "self.version",
  2726. "drupal/workflows": "self.version",
  2727. "drupal/workspaces": "self.version"
  2728. },
  2729. "type": "drupal-core",
  2730. "extra": {
  2731. "drupal-scaffold": {
  2732. "file-mapping": {
  2733. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2734. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2735. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2736. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2737. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2738. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2739. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2740. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2741. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2742. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2743. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2744. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2745. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2746. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2747. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2748. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2749. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2750. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2751. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2752. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2753. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2754. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2755. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2756. }
  2757. }
  2758. },
  2759. "autoload": {
  2760. "psr-4": {
  2761. "Drupal\\Core\\": "lib/Drupal/Core",
  2762. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2763. "Drupal\\Component\\": "lib/Drupal/Component"
  2764. },
  2765. "classmap": [
  2766. "lib/Drupal.php",
  2767. "lib/Drupal/Component/Utility/Timer.php",
  2768. "lib/Drupal/Component/Utility/Unicode.php",
  2769. "lib/Drupal/Core/Database/Database.php",
  2770. "lib/Drupal/Core/DrupalKernel.php",
  2771. "lib/Drupal/Core/DrupalKernelInterface.php",
  2772. "lib/Drupal/Core/Site/Settings.php"
  2773. ]
  2774. },
  2775. "notification-url": "https://packagist.org/downloads/",
  2776. "license": [
  2777. "GPL-2.0-or-later"
  2778. ],
  2779. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2780. "support": {
  2781. "source": "https://github.com/drupal/core/tree/8.9.20"
  2782. },
  2783. "time": "2021-11-17T21:24:28+00:00"
  2784. },
  2785. {
  2786. "name": "drupal/core-composer-scaffold",
  2787. "version": "8.9.20",
  2788. "source": {
  2789. "type": "git",
  2790. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2791. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2792. },
  2793. "dist": {
  2794. "type": "zip",
  2795. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2796. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2797. "shasum": ""
  2798. },
  2799. "require": {
  2800. "composer-plugin-api": "^1 || ^2",
  2801. "php": ">=7.0.8"
  2802. },
  2803. "conflict": {
  2804. "drupal-composer/drupal-scaffold": "*"
  2805. },
  2806. "require-dev": {
  2807. "composer/composer": "^1.8@stable"
  2808. },
  2809. "type": "composer-plugin",
  2810. "extra": {
  2811. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2812. "branch-alias": {
  2813. "dev-master": "1.0.x-dev"
  2814. }
  2815. },
  2816. "autoload": {
  2817. "psr-4": {
  2818. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2819. }
  2820. },
  2821. "notification-url": "https://packagist.org/downloads/",
  2822. "license": [
  2823. "GPL-2.0-or-later"
  2824. ],
  2825. "description": "A flexible Composer project scaffold builder.",
  2826. "homepage": "https://www.drupal.org/project/drupal",
  2827. "keywords": [
  2828. "drupal"
  2829. ],
  2830. "support": {
  2831. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2832. },
  2833. "time": "2020-08-07T22:30:30+00:00"
  2834. },
  2835. {
  2836. "name": "drupal/core-recommended",
  2837. "version": "8.9.20",
  2838. "source": {
  2839. "type": "git",
  2840. "url": "https://github.com/drupal/core-recommended.git",
  2841. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2842. },
  2843. "dist": {
  2844. "type": "zip",
  2845. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2846. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2847. "shasum": ""
  2848. },
  2849. "require": {
  2850. "asm89/stack-cors": "1.3.0",
  2851. "composer/semver": "1.5.1",
  2852. "doctrine/annotations": "v1.4.0",
  2853. "doctrine/cache": "v1.6.2",
  2854. "doctrine/collections": "v1.4.0",
  2855. "doctrine/common": "v2.7.3",
  2856. "doctrine/inflector": "v1.2.0",
  2857. "doctrine/lexer": "1.0.2",
  2858. "drupal/core": "8.9.20",
  2859. "easyrdf/easyrdf": "0.9.1",
  2860. "egulias/email-validator": "2.1.17",
  2861. "guzzlehttp/guzzle": "6.5.4",
  2862. "guzzlehttp/promises": "v1.3.1",
  2863. "guzzlehttp/psr7": "1.6.1",
  2864. "laminas/laminas-diactoros": "1.8.7p2",
  2865. "laminas/laminas-escaper": "2.6.1",
  2866. "laminas/laminas-feed": "2.12.2",
  2867. "laminas/laminas-stdlib": "3.2.1",
  2868. "laminas/laminas-zendframework-bridge": "1.0.4",
  2869. "masterminds/html5": "2.3.0",
  2870. "paragonie/random_compat": "v9.99.99",
  2871. "pear/archive_tar": "1.4.14",
  2872. "pear/console_getopt": "v1.4.3",
  2873. "pear/pear-core-minimal": "v1.10.10",
  2874. "pear/pear_exception": "v1.0.1",
  2875. "psr/container": "1.0.0",
  2876. "psr/http-message": "1.0.1",
  2877. "psr/log": "1.1.3",
  2878. "ralouphie/getallheaders": "3.0.3",
  2879. "stack/builder": "v1.0.5",
  2880. "symfony-cmf/routing": "1.4.1",
  2881. "symfony/class-loader": "v3.4.41",
  2882. "symfony/console": "v3.4.41",
  2883. "symfony/debug": "v3.4.41",
  2884. "symfony/dependency-injection": "v3.4.41",
  2885. "symfony/event-dispatcher": "v3.4.41",
  2886. "symfony/http-foundation": "v3.4.41",
  2887. "symfony/http-kernel": "v3.4.44",
  2888. "symfony/polyfill-ctype": "v1.17.0",
  2889. "symfony/polyfill-iconv": "v1.17.0",
  2890. "symfony/polyfill-intl-idn": "v1.17.0",
  2891. "symfony/polyfill-mbstring": "v1.17.0",
  2892. "symfony/polyfill-php56": "v1.17.0",
  2893. "symfony/polyfill-php70": "v1.17.0",
  2894. "symfony/polyfill-php72": "v1.17.0",
  2895. "symfony/polyfill-util": "v1.17.0",
  2896. "symfony/process": "v3.4.41",
  2897. "symfony/psr-http-message-bridge": "v1.1.2",
  2898. "symfony/routing": "v3.4.41",
  2899. "symfony/serializer": "v3.4.41",
  2900. "symfony/translation": "v3.4.41",
  2901. "symfony/validator": "v3.4.41",
  2902. "symfony/yaml": "v3.4.41",
  2903. "twig/twig": "v1.42.5",
  2904. "typo3/phar-stream-wrapper": "v3.1.4"
  2905. },
  2906. "conflict": {
  2907. "webflo/drupal-core-strict": "*"
  2908. },
  2909. "type": "metapackage",
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "GPL-2.0-or-later"
  2913. ],
  2914. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2915. "support": {
  2916. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2917. },
  2918. "time": "2021-11-17T21:24:28+00:00"
  2919. },
  2920. {
  2921. "name": "drupal/ctools",
  2922. "version": "3.4.0",
  2923. "source": {
  2924. "type": "git",
  2925. "url": "https://git.drupalcode.org/project/ctools.git",
  2926. "reference": "8.x-3.4"
  2927. },
  2928. "dist": {
  2929. "type": "zip",
  2930. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.4.zip",
  2931. "reference": "8.x-3.4",
  2932. "shasum": "016ca5abb7ac4ca720352a72e8989f3ef0e20539"
  2933. },
  2934. "require": {
  2935. "drupal/core": "^8.7.7 || ^9"
  2936. },
  2937. "type": "drupal-module",
  2938. "extra": {
  2939. "drupal": {
  2940. "version": "8.x-3.4",
  2941. "datestamp": "1585763383",
  2942. "security-coverage": {
  2943. "status": "covered",
  2944. "message": "Covered by Drupal's security advisory policy"
  2945. }
  2946. }
  2947. },
  2948. "notification-url": "https://packages.drupal.org/8/downloads",
  2949. "license": [
  2950. "GPL-2.0+"
  2951. ],
  2952. "authors": [
  2953. {
  2954. "name": "Kris Vanderwater (EclipseGc)",
  2955. "homepage": "https://www.drupal.org/u/eclipsegc",
  2956. "role": "Maintainer"
  2957. },
  2958. {
  2959. "name": "Jakob Perry (japerry)",
  2960. "homepage": "https://www.drupal.org/u/japerry",
  2961. "role": "Maintainer"
  2962. },
  2963. {
  2964. "name": "Tim Plunkett (tim.plunkett)",
  2965. "homepage": "https://www.drupal.org/u/timplunkett",
  2966. "role": "Maintainer"
  2967. },
  2968. {
  2969. "name": "James Gilliland (neclimdul)",
  2970. "homepage": "https://www.drupal.org/u/neclimdul",
  2971. "role": "Maintainer"
  2972. },
  2973. {
  2974. "name": "Daniel Wehner (dawehner)",
  2975. "homepage": "https://www.drupal.org/u/dawehner",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "joelpittet",
  2980. "homepage": "https://www.drupal.org/user/160302"
  2981. },
  2982. {
  2983. "name": "merlinofchaos",
  2984. "homepage": "https://www.drupal.org/user/26979"
  2985. },
  2986. {
  2987. "name": "neclimdul",
  2988. "homepage": "https://www.drupal.org/user/48673"
  2989. },
  2990. {
  2991. "name": "sdboyer",
  2992. "homepage": "https://www.drupal.org/user/146719"
  2993. },
  2994. {
  2995. "name": "sun",
  2996. "homepage": "https://www.drupal.org/user/54136"
  2997. },
  2998. {
  2999. "name": "tim.plunkett",
  3000. "homepage": "https://www.drupal.org/user/241634"
  3001. }
  3002. ],
  3003. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3004. "homepage": "https://www.drupal.org/project/ctools",
  3005. "support": {
  3006. "source": "https://git.drupalcode.org/project/ctools",
  3007. "issues": "https://www.drupal.org/project/issues/ctools"
  3008. }
  3009. },
  3010. {
  3011. "name": "drupal/date_range_formatter",
  3012. "version": "4.0.1",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3016. "reference": "4.0.1"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.1.zip",
  3021. "reference": "4.0.1",
  3022. "shasum": "d218f325c9a1e144ede86d34b87002330a4e8709"
  3023. },
  3024. "require": {
  3025. "drupal/core": "^8 || ^9 || ^10"
  3026. },
  3027. "type": "drupal-module",
  3028. "extra": {
  3029. "drupal": {
  3030. "version": "4.0.1",
  3031. "datestamp": "1661752209",
  3032. "security-coverage": {
  3033. "status": "covered",
  3034. "message": "Covered by Drupal's security advisory policy"
  3035. }
  3036. }
  3037. },
  3038. "notification-url": "https://packages.drupal.org/8/downloads",
  3039. "license": [
  3040. "GPL-2.0-or-later"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "maximpodorov",
  3045. "homepage": "https://www.drupal.org/user/515310"
  3046. },
  3047. {
  3048. "name": "sudishth",
  3049. "homepage": "https://www.drupal.org/user/1440562"
  3050. }
  3051. ],
  3052. "description": "Formats date ranges.",
  3053. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3054. "support": {
  3055. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3056. }
  3057. },
  3058. {
  3059. "name": "drupal/devel",
  3060. "version": "4.2.1",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://git.drupalcode.org/project/devel.git",
  3064. "reference": "4.2.1"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3069. "reference": "4.2.1",
  3070. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3071. },
  3072. "require": {
  3073. "doctrine/common": "^2.7",
  3074. "drupal/core": "^8.8 || ^9",
  3075. "symfony/var-dumper": "^4 || ^5"
  3076. },
  3077. "conflict": {
  3078. "kint-php/kint": "<3"
  3079. },
  3080. "require-dev": {
  3081. "drush/drush": "^10"
  3082. },
  3083. "suggest": {
  3084. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3085. },
  3086. "type": "drupal-module",
  3087. "extra": {
  3088. "drupal": {
  3089. "version": "4.2.1",
  3090. "datestamp": "1664317444",
  3091. "security-coverage": {
  3092. "status": "covered",
  3093. "message": "Covered by Drupal's security advisory policy"
  3094. }
  3095. },
  3096. "drush": {
  3097. "services": {
  3098. "drush.services.yml": "^9 || ^10"
  3099. }
  3100. }
  3101. },
  3102. "notification-url": "https://packages.drupal.org/8/downloads",
  3103. "license": [
  3104. "GPL-2.0-or-later"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "moshe weitzman",
  3109. "homepage": "https://www.drupal.org/user/23"
  3110. }
  3111. ],
  3112. "description": "Various blocks, pages, and functions for developers.",
  3113. "homepage": "https://www.drupal.org/project/devel",
  3114. "support": {
  3115. "source": "https://gitlab.com/drupalspoons/devel",
  3116. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3117. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3118. }
  3119. },
  3120. {
  3121. "name": "drupal/domain",
  3122. "version": "1.0.0-beta8",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://git.drupalcode.org/project/domain.git",
  3126. "reference": "8.x-1.0-beta8"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3131. "reference": "8.x-1.0-beta8",
  3132. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3133. },
  3134. "require": {
  3135. "drupal/core": "^8 || ^9"
  3136. },
  3137. "require-dev": {
  3138. "drupal/domain_access": "*",
  3139. "drupal/domain_config": "*"
  3140. },
  3141. "type": "drupal-module",
  3142. "extra": {
  3143. "drupal": {
  3144. "version": "8.x-1.0-beta8",
  3145. "datestamp": "1677511311",
  3146. "security-coverage": {
  3147. "status": "not-covered",
  3148. "message": "Beta releases are not covered by Drupal security advisories."
  3149. }
  3150. }
  3151. },
  3152. "notification-url": "https://packages.drupal.org/8/downloads",
  3153. "license": [
  3154. "GPL-2.0-or-later"
  3155. ],
  3156. "authors": [
  3157. {
  3158. "name": "agentrickard",
  3159. "homepage": "https://www.drupal.org/user/20975"
  3160. },
  3161. {
  3162. "name": "nonsie",
  3163. "homepage": "https://www.drupal.org/user/29899"
  3164. },
  3165. {
  3166. "name": "webflo",
  3167. "homepage": "https://www.drupal.org/user/254778"
  3168. }
  3169. ],
  3170. "description": "Creates domain records within a Drupal installation.",
  3171. "homepage": "https://www.drupal.org/project/domain",
  3172. "support": {
  3173. "source": "https://git.drupalcode.org/project/domain"
  3174. }
  3175. },
  3176. {
  3177. "name": "drupal/domain_access",
  3178. "version": "1.0.0-beta8",
  3179. "require": {
  3180. "drupal/core": "^8 || ^9",
  3181. "drupal/domain": "*"
  3182. },
  3183. "type": "metapackage",
  3184. "extra": {
  3185. "drupal": {
  3186. "version": "8.x-1.0-beta8",
  3187. "datestamp": "1677511311",
  3188. "security-coverage": {
  3189. "status": "not-covered",
  3190. "message": "Beta releases are not covered by Drupal security advisories."
  3191. }
  3192. }
  3193. },
  3194. "notification-url": "https://packages.drupal.org/8/downloads",
  3195. "license": [
  3196. "GPL-2.0-or-later"
  3197. ],
  3198. "authors": [
  3199. {
  3200. "name": "agentrickard",
  3201. "homepage": "https://www.drupal.org/user/20975"
  3202. },
  3203. {
  3204. "name": "nonsie",
  3205. "homepage": "https://www.drupal.org/user/29899"
  3206. },
  3207. {
  3208. "name": "webflo",
  3209. "homepage": "https://www.drupal.org/user/254778"
  3210. }
  3211. ],
  3212. "description": "Domain-based access control for content.",
  3213. "homepage": "https://www.drupal.org/project/domain",
  3214. "support": {
  3215. "source": "https://git.drupalcode.org/project/domain"
  3216. }
  3217. },
  3218. {
  3219. "name": "drupal/domain_config",
  3220. "version": "1.0.0-beta8",
  3221. "require": {
  3222. "drupal/core": "^8 || ^9",
  3223. "drupal/domain": "*"
  3224. },
  3225. "type": "metapackage",
  3226. "extra": {
  3227. "drupal": {
  3228. "version": "8.x-1.0-beta8",
  3229. "datestamp": "1677511311",
  3230. "security-coverage": {
  3231. "status": "not-covered",
  3232. "message": "Beta releases are not covered by Drupal security advisories."
  3233. }
  3234. }
  3235. },
  3236. "notification-url": "https://packages.drupal.org/8/downloads",
  3237. "license": [
  3238. "GPL-2.0-or-later"
  3239. ],
  3240. "authors": [
  3241. {
  3242. "name": "agentrickard",
  3243. "homepage": "https://www.drupal.org/user/20975"
  3244. },
  3245. {
  3246. "name": "nonsie",
  3247. "homepage": "https://www.drupal.org/user/29899"
  3248. },
  3249. {
  3250. "name": "webflo",
  3251. "homepage": "https://www.drupal.org/user/254778"
  3252. }
  3253. ],
  3254. "description": "Allows domain specific configuration.",
  3255. "homepage": "https://www.drupal.org/project/domain",
  3256. "support": {
  3257. "source": "https://git.drupalcode.org/project/domain"
  3258. }
  3259. },
  3260. {
  3261. "name": "drupal/domain_menu_access",
  3262. "version": "1.0.0-alpha2",
  3263. "source": {
  3264. "type": "git",
  3265. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3266. "reference": "8.x-1.0-alpha2"
  3267. },
  3268. "dist": {
  3269. "type": "zip",
  3270. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-8.x-1.0-alpha2.zip",
  3271. "reference": "8.x-1.0-alpha2",
  3272. "shasum": "9382513e0cd172844923686a0bb9f2324ba11709"
  3273. },
  3274. "require": {
  3275. "drupal/core": "~8.0",
  3276. "drupal/domain": "*",
  3277. "drupal/domain_access": "*"
  3278. },
  3279. "type": "drupal-module",
  3280. "extra": {
  3281. "drupal": {
  3282. "version": "8.x-1.0-alpha2",
  3283. "datestamp": "1519214884",
  3284. "security-coverage": {
  3285. "status": "not-covered",
  3286. "message": "Alpha releases are not covered by Drupal security advisories."
  3287. }
  3288. }
  3289. },
  3290. "notification-url": "https://packages.drupal.org/8/downloads",
  3291. "license": [
  3292. "GPL-2.0-or-later"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "maciej.zgadzaj",
  3297. "homepage": "https://www.drupal.org/user/271491"
  3298. },
  3299. {
  3300. "name": "pifagor",
  3301. "homepage": "https://www.drupal.org/user/2375692"
  3302. },
  3303. {
  3304. "name": "Sebastien M.",
  3305. "homepage": "https://www.drupal.org/user/380104"
  3306. },
  3307. {
  3308. "name": "tim-diels",
  3309. "homepage": "https://www.drupal.org/user/2915097"
  3310. }
  3311. ],
  3312. "description": "Domain-based access control for menu link.",
  3313. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3314. "support": {
  3315. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3316. }
  3317. },
  3318. {
  3319. "name": "drupal/domain_site_settings",
  3320. "version": "1.6.0",
  3321. "source": {
  3322. "type": "git",
  3323. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3324. "reference": "8.x-1.6"
  3325. },
  3326. "dist": {
  3327. "type": "zip",
  3328. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3329. "reference": "8.x-1.6",
  3330. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3331. },
  3332. "require": {
  3333. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3334. "drupal/domain": "^1.0 || ^2.0",
  3335. "drupal/domain_config": "*"
  3336. },
  3337. "type": "drupal-module",
  3338. "extra": {
  3339. "drupal": {
  3340. "version": "8.x-1.6",
  3341. "datestamp": "1726238712",
  3342. "security-coverage": {
  3343. "status": "covered",
  3344. "message": "Covered by Drupal's security advisory policy"
  3345. }
  3346. }
  3347. },
  3348. "notification-url": "https://packages.drupal.org/8/downloads",
  3349. "license": [
  3350. "GPL-2.0+"
  3351. ],
  3352. "authors": [
  3353. {
  3354. "name": "aloknarwaria",
  3355. "homepage": "https://www.drupal.org/user/906640"
  3356. },
  3357. {
  3358. "name": "jeroent",
  3359. "homepage": "https://www.drupal.org/user/2228934"
  3360. },
  3361. {
  3362. "name": "malaynayak",
  3363. "homepage": "https://www.drupal.org/user/3529755"
  3364. }
  3365. ],
  3366. "description": "Basic Site Setting for Domains.",
  3367. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3368. "keywords": [
  3369. "Drupal"
  3370. ],
  3371. "support": {
  3372. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3373. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3374. }
  3375. },
  3376. {
  3377. "name": "drupal/email_registration",
  3378. "version": "1.1.0",
  3379. "source": {
  3380. "type": "git",
  3381. "url": "https://git.drupalcode.org/project/email_registration.git",
  3382. "reference": "8.x-1.1"
  3383. },
  3384. "dist": {
  3385. "type": "zip",
  3386. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3387. "reference": "8.x-1.1",
  3388. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3389. },
  3390. "require": {
  3391. "drupal/core": "^8.7.7 || ^9"
  3392. },
  3393. "conflict": {
  3394. "drupal/commerce": "<2.12"
  3395. },
  3396. "require-dev": {
  3397. "drupal/commerce": "^2.0"
  3398. },
  3399. "type": "drupal-module",
  3400. "extra": {
  3401. "drupal": {
  3402. "version": "8.x-1.1",
  3403. "datestamp": "1592317072",
  3404. "security-coverage": {
  3405. "status": "covered",
  3406. "message": "Covered by Drupal's security advisory policy"
  3407. }
  3408. }
  3409. },
  3410. "notification-url": "https://packages.drupal.org/8/downloads",
  3411. "license": [
  3412. "GPL-2.0-or-later"
  3413. ],
  3414. "authors": [
  3415. {
  3416. "name": "Greg Knaddison (greggles)",
  3417. "homepage": "https://www.drupal.org/u/greggles",
  3418. "role": "Maintainer"
  3419. },
  3420. {
  3421. "name": "Andrey Postnikov (andypost)",
  3422. "homepage": "https://www.drupal.org/u/andypost",
  3423. "role": "Maintainer"
  3424. },
  3425. {
  3426. "name": "Chris Herberte",
  3427. "homepage": "https://www.drupal.org/u/chris-herberte",
  3428. "role": "Maintainer"
  3429. },
  3430. {
  3431. "name": "Moshe Weitzman (moshe weitzman)",
  3432. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3433. "role": "Maintainer"
  3434. }
  3435. ],
  3436. "description": "Allows users to register with an email address as their username.",
  3437. "homepage": "https://www.drupal.org/project/email_registration",
  3438. "support": {
  3439. "source": "https://git.drupalcode.org/project/email_registration",
  3440. "issues": "http://drupal.org/project/issues/email_registration"
  3441. }
  3442. },
  3443. {
  3444. "name": "drupal/entity",
  3445. "version": "dev-1.x",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://git.drupalcode.org/project/entity.git",
  3449. "reference": "3d3a99924df1b65564a417e74802bb524691dfd8"
  3450. },
  3451. "require": {
  3452. "drupal/core": "^8.8 || ^9"
  3453. },
  3454. "type": "drupal-module",
  3455. "extra": {
  3456. "branch-alias": {
  3457. "dev-1.x": "1.x-dev"
  3458. },
  3459. "drupal": {
  3460. "version": "8.x-1.0+5-dev",
  3461. "datestamp": "1594294834",
  3462. "security-coverage": {
  3463. "status": "not-covered",
  3464. "message": "Dev releases are not covered by Drupal security advisories."
  3465. }
  3466. }
  3467. },
  3468. "notification-url": "https://packages.drupal.org/8/downloads",
  3469. "license": [
  3470. "GPL-2.0-or-later"
  3471. ],
  3472. "authors": [
  3473. {
  3474. "name": "Berdir",
  3475. "homepage": "https://www.drupal.org/user/214652"
  3476. },
  3477. {
  3478. "name": "bojanz",
  3479. "homepage": "https://www.drupal.org/user/86106"
  3480. },
  3481. {
  3482. "name": "dawehner",
  3483. "homepage": "https://www.drupal.org/user/99340"
  3484. },
  3485. {
  3486. "name": "dixon_",
  3487. "homepage": "https://www.drupal.org/user/239911"
  3488. },
  3489. {
  3490. "name": "fago",
  3491. "homepage": "https://www.drupal.org/user/16747"
  3492. },
  3493. {
  3494. "name": "mglaman",
  3495. "homepage": "https://www.drupal.org/user/2416470"
  3496. }
  3497. ],
  3498. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3499. "homepage": "http://drupal.org/project/entity",
  3500. "support": {
  3501. "source": "https://git.drupalcode.org/project/entity"
  3502. },
  3503. "time": "2020-08-08T09:14:05+00:00"
  3504. },
  3505. {
  3506. "name": "drupal/features",
  3507. "version": "3.11.0",
  3508. "source": {
  3509. "type": "git",
  3510. "url": "https://git.drupalcode.org/project/features.git",
  3511. "reference": "8.x-3.11"
  3512. },
  3513. "dist": {
  3514. "type": "zip",
  3515. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3516. "reference": "8.x-3.11",
  3517. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3518. },
  3519. "require": {
  3520. "drupal/config_update": "^1.4",
  3521. "drupal/core": "^8.8 || ^9"
  3522. },
  3523. "type": "drupal-module",
  3524. "extra": {
  3525. "drupal": {
  3526. "version": "8.x-3.11",
  3527. "datestamp": "1591023154",
  3528. "security-coverage": {
  3529. "status": "covered",
  3530. "message": "Covered by Drupal's security advisory policy"
  3531. }
  3532. },
  3533. "drush": {
  3534. "services": {
  3535. "drush.services.yml": "^9"
  3536. }
  3537. }
  3538. },
  3539. "notification-url": "https://packages.drupal.org/8/downloads",
  3540. "license": [
  3541. "GPL-2.0-or-later"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "dawehner",
  3546. "homepage": "https://www.drupal.org/user/99340"
  3547. },
  3548. {
  3549. "name": "donquixote",
  3550. "homepage": "https://www.drupal.org/user/459338"
  3551. },
  3552. {
  3553. "name": "e2thex",
  3554. "homepage": "https://www.drupal.org/user/189123"
  3555. },
  3556. {
  3557. "name": "febbraro",
  3558. "homepage": "https://www.drupal.org/user/43670"
  3559. },
  3560. {
  3561. "name": "flocondetoile",
  3562. "homepage": "https://www.drupal.org/user/2006064"
  3563. },
  3564. {
  3565. "name": "jmiccolis",
  3566. "homepage": "https://www.drupal.org/user/31731"
  3567. },
  3568. {
  3569. "name": "joseph.olstad",
  3570. "homepage": "https://www.drupal.org/user/1321830"
  3571. },
  3572. {
  3573. "name": "mpotter",
  3574. "homepage": "https://www.drupal.org/user/616192"
  3575. },
  3576. {
  3577. "name": "nedjo",
  3578. "homepage": "https://www.drupal.org/user/4481"
  3579. },
  3580. {
  3581. "name": "tim.plunkett",
  3582. "homepage": "https://www.drupal.org/user/241634"
  3583. }
  3584. ],
  3585. "description": "Enables administrators to package configuration into modules",
  3586. "homepage": "https://www.drupal.org/project/features",
  3587. "support": {
  3588. "source": "https://git.drupalcode.org/project/features"
  3589. }
  3590. },
  3591. {
  3592. "name": "drupal/field_group",
  3593. "version": "3.1.0",
  3594. "source": {
  3595. "type": "git",
  3596. "url": "https://git.drupalcode.org/project/field_group.git",
  3597. "reference": "8.x-3.1"
  3598. },
  3599. "dist": {
  3600. "type": "zip",
  3601. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.1.zip",
  3602. "reference": "8.x-3.1",
  3603. "shasum": "8a719eaea594f0ba874172831cb28da93c66b77a"
  3604. },
  3605. "require": {
  3606. "drupal/core": "^8.8 || ^9"
  3607. },
  3608. "require-dev": {
  3609. "drupal/jquery_ui_accordion": "^1.0"
  3610. },
  3611. "type": "drupal-module",
  3612. "extra": {
  3613. "drupal": {
  3614. "version": "8.x-3.1",
  3615. "datestamp": "1591772567",
  3616. "security-coverage": {
  3617. "status": "covered",
  3618. "message": "Covered by Drupal's security advisory policy"
  3619. }
  3620. }
  3621. },
  3622. "notification-url": "https://packages.drupal.org/8/downloads",
  3623. "license": [
  3624. "GPL-2.0-or-later"
  3625. ],
  3626. "authors": [
  3627. {
  3628. "name": "Hydra",
  3629. "homepage": "https://www.drupal.org/user/647364"
  3630. },
  3631. {
  3632. "name": "Stalski",
  3633. "homepage": "https://www.drupal.org/user/322618"
  3634. },
  3635. {
  3636. "name": "jyve",
  3637. "homepage": "https://www.drupal.org/user/591438"
  3638. },
  3639. {
  3640. "name": "nils.destoop",
  3641. "homepage": "https://www.drupal.org/user/361625"
  3642. },
  3643. {
  3644. "name": "swentel",
  3645. "homepage": "https://www.drupal.org/user/107403"
  3646. }
  3647. ],
  3648. "description": "Provides the field_group module.",
  3649. "homepage": "https://www.drupal.org/project/field_group",
  3650. "support": {
  3651. "source": "https://git.drupalcode.org/project/field_group",
  3652. "issues": "https://www.drupal.org/project/issues/field_group"
  3653. }
  3654. },
  3655. {
  3656. "name": "drupal/filefield_sources",
  3657. "version": "1.0.0-alpha5",
  3658. "source": {
  3659. "type": "git",
  3660. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3661. "reference": "8.x-1.0-alpha5"
  3662. },
  3663. "dist": {
  3664. "type": "zip",
  3665. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3666. "reference": "8.x-1.0-alpha5",
  3667. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3668. },
  3669. "require": {
  3670. "drupal/core": "^8 || ^9"
  3671. },
  3672. "require-dev": {
  3673. "drupal/imce": "^2.3"
  3674. },
  3675. "type": "drupal-module",
  3676. "extra": {
  3677. "drupal": {
  3678. "version": "8.x-1.0-alpha5",
  3679. "datestamp": "1642555269",
  3680. "security-coverage": {
  3681. "status": "not-covered",
  3682. "message": "Alpha releases are not covered by Drupal security advisories."
  3683. }
  3684. }
  3685. },
  3686. "notification-url": "https://packages.drupal.org/8/downloads",
  3687. "license": [
  3688. "GPL-2.0-or-later"
  3689. ],
  3690. "authors": [
  3691. {
  3692. "name": "Nate Lampton (quicksketch)",
  3693. "homepage": "https://www.drupal.org/u/quicksketch",
  3694. "role": "Maintainer"
  3695. },
  3696. {
  3697. "name": "Andrey Khromyshev (profak)",
  3698. "homepage": "https://www.drupal.org/u/profak",
  3699. "role": "Maintainer"
  3700. },
  3701. {
  3702. "name": "David Valdez (gnuget)",
  3703. "homepage": "https://www.drupal.org/u/gnuget",
  3704. "role": "Maintainer"
  3705. },
  3706. {
  3707. "name": "quicksketch",
  3708. "homepage": "https://www.drupal.org/user/35821"
  3709. }
  3710. ],
  3711. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3712. "homepage": "https://www.drupal.org/project/filefield_sources",
  3713. "support": {
  3714. "source": "https://git.drupalcode.org/project/filefield_sources",
  3715. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3716. "irc": "irc://irc.freenode.org/drupal-contribute"
  3717. }
  3718. },
  3719. {
  3720. "name": "drupal/filter_perms",
  3721. "version": "1.0.0-alpha1",
  3722. "source": {
  3723. "type": "git",
  3724. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3725. "reference": "8.x-1.0-alpha1"
  3726. },
  3727. "dist": {
  3728. "type": "zip",
  3729. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3730. "reference": "8.x-1.0-alpha1",
  3731. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3732. },
  3733. "require": {
  3734. "drupal/core": "^8 || ^9"
  3735. },
  3736. "type": "drupal-module",
  3737. "extra": {
  3738. "drupal": {
  3739. "version": "8.x-1.0-alpha1",
  3740. "datestamp": "1595202904",
  3741. "security-coverage": {
  3742. "status": "not-covered",
  3743. "message": "Alpha releases are not covered by Drupal security advisories."
  3744. }
  3745. }
  3746. },
  3747. "notification-url": "https://packages.drupal.org/8/downloads",
  3748. "license": [
  3749. "GPL-2.0-or-later"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "cYu",
  3754. "homepage": "https://www.drupal.org/user/202205"
  3755. },
  3756. {
  3757. "name": "deekayen",
  3758. "homepage": "https://www.drupal.org/user/972"
  3759. },
  3760. {
  3761. "name": "ivavictoria",
  3762. "homepage": "https://www.drupal.org/user/3061533"
  3763. },
  3764. {
  3765. "name": "justcaldwell",
  3766. "homepage": "https://www.drupal.org/user/290069"
  3767. },
  3768. {
  3769. "name": "mgbellaire",
  3770. "homepage": "https://www.drupal.org/user/1831932"
  3771. },
  3772. {
  3773. "name": "willzyx",
  3774. "homepage": "https://www.drupal.org/user/1043862"
  3775. }
  3776. ],
  3777. "description": "Provides role and module filters to simplify the user permissions page.",
  3778. "homepage": "https://www.drupal.org/project/filter_perms",
  3779. "support": {
  3780. "source": "https://git.drupalcode.org/project/filter_perms"
  3781. }
  3782. },
  3783. {
  3784. "name": "drupal/honeypot",
  3785. "version": "2.0.2",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://git.drupalcode.org/project/honeypot.git",
  3789. "reference": "2.0.2"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3794. "reference": "2.0.2",
  3795. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3796. },
  3797. "require": {
  3798. "drupal/core": "^8.8.2 || ^9"
  3799. },
  3800. "type": "drupal-module",
  3801. "extra": {
  3802. "drupal": {
  3803. "version": "2.0.2",
  3804. "datestamp": "1651895165",
  3805. "security-coverage": {
  3806. "status": "covered",
  3807. "message": "Covered by Drupal's security advisory policy"
  3808. }
  3809. }
  3810. },
  3811. "notification-url": "https://packages.drupal.org/8/downloads",
  3812. "license": [
  3813. "GPL-2.0-or-later"
  3814. ],
  3815. "authors": [
  3816. {
  3817. "name": "Jeff Geerling",
  3818. "homepage": "https://www.drupal.org/user/389011",
  3819. "email": "geerlingguy@mac.com"
  3820. },
  3821. {
  3822. "name": "Manuel Garcia",
  3823. "homepage": "https://www.drupal.org/user/213194"
  3824. },
  3825. {
  3826. "name": "TR",
  3827. "homepage": "https://www.drupal.org/user/202830"
  3828. },
  3829. {
  3830. "name": "vijaycs85",
  3831. "homepage": "https://www.drupal.org/user/93488"
  3832. }
  3833. ],
  3834. "description": "Mitigates spam form submissions using the honeypot method.",
  3835. "homepage": "https://www.drupal.org/project/honeypot",
  3836. "keywords": [
  3837. "deterrent",
  3838. "form",
  3839. "honeypot",
  3840. "honeytrap",
  3841. "php",
  3842. "spam"
  3843. ],
  3844. "support": {
  3845. "source": "https://git.drupalcode.org/project/honeypot",
  3846. "issues": "https://www.drupal.org/project/issues/honeypot"
  3847. }
  3848. },
  3849. {
  3850. "name": "drupal/jquery_ui",
  3851. "version": "1.4.0",
  3852. "source": {
  3853. "type": "git",
  3854. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3855. "reference": "8.x-1.4"
  3856. },
  3857. "dist": {
  3858. "type": "zip",
  3859. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3860. "reference": "8.x-1.4",
  3861. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3862. },
  3863. "require": {
  3864. "drupal/core": "^8 || ^9"
  3865. },
  3866. "type": "drupal-module",
  3867. "extra": {
  3868. "drupal": {
  3869. "version": "8.x-1.4",
  3870. "datestamp": "1582149957",
  3871. "security-coverage": {
  3872. "status": "covered",
  3873. "message": "Covered by Drupal's security advisory policy"
  3874. }
  3875. }
  3876. },
  3877. "notification-url": "https://packages.drupal.org/8/downloads",
  3878. "license": [
  3879. "GPL-2.0-or-later"
  3880. ],
  3881. "authors": [
  3882. {
  3883. "name": "bnjmnm",
  3884. "homepage": "https://www.drupal.org/user/2369194"
  3885. },
  3886. {
  3887. "name": "jjeff",
  3888. "homepage": "https://www.drupal.org/user/17190"
  3889. },
  3890. {
  3891. "name": "lauriii",
  3892. "homepage": "https://www.drupal.org/user/1078742"
  3893. },
  3894. {
  3895. "name": "litwol",
  3896. "homepage": "https://www.drupal.org/user/78134"
  3897. },
  3898. {
  3899. "name": "mfb",
  3900. "homepage": "https://www.drupal.org/user/12302"
  3901. },
  3902. {
  3903. "name": "mfer",
  3904. "homepage": "https://www.drupal.org/user/25701"
  3905. },
  3906. {
  3907. "name": "mikelutz",
  3908. "homepage": "https://www.drupal.org/user/2972409"
  3909. },
  3910. {
  3911. "name": "nod_",
  3912. "homepage": "https://www.drupal.org/user/598310"
  3913. },
  3914. {
  3915. "name": "phenaproxima",
  3916. "homepage": "https://www.drupal.org/user/205645"
  3917. },
  3918. {
  3919. "name": "RobLoach",
  3920. "homepage": "https://www.drupal.org/user/61114"
  3921. },
  3922. {
  3923. "name": "sun",
  3924. "homepage": "https://www.drupal.org/user/54136"
  3925. },
  3926. {
  3927. "name": "webchick",
  3928. "homepage": "https://www.drupal.org/user/24967"
  3929. },
  3930. {
  3931. "name": "Wim Leers",
  3932. "homepage": "https://www.drupal.org/user/99777"
  3933. },
  3934. {
  3935. "name": "zrpnr",
  3936. "homepage": "https://www.drupal.org/user/1448368"
  3937. }
  3938. ],
  3939. "description": "Provides jQuery UI library.",
  3940. "homepage": "https://www.drupal.org/project/jquery_ui",
  3941. "support": {
  3942. "source": "https://git.drupalcode.org/project/jquery_ui"
  3943. }
  3944. },
  3945. {
  3946. "name": "drupal/jquery_ui_draggable",
  3947. "version": "1.2.0",
  3948. "source": {
  3949. "type": "git",
  3950. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3951. "reference": "8.x-1.2"
  3952. },
  3953. "dist": {
  3954. "type": "zip",
  3955. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  3956. "reference": "8.x-1.2",
  3957. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  3958. },
  3959. "require": {
  3960. "drupal/core": "^8 || ^9",
  3961. "drupal/jquery_ui": "*"
  3962. },
  3963. "type": "drupal-module",
  3964. "extra": {
  3965. "drupal": {
  3966. "version": "8.x-1.2",
  3967. "datestamp": "1582150027",
  3968. "security-coverage": {
  3969. "status": "covered",
  3970. "message": "Covered by Drupal's security advisory policy"
  3971. }
  3972. }
  3973. },
  3974. "notification-url": "https://packages.drupal.org/8/downloads",
  3975. "license": [
  3976. "GPL-2.0-or-later"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "bnjmnm",
  3981. "homepage": "https://www.drupal.org/user/2369194"
  3982. },
  3983. {
  3984. "name": "lauriii",
  3985. "homepage": "https://www.drupal.org/user/1078742"
  3986. },
  3987. {
  3988. "name": "zrpnr",
  3989. "homepage": "https://www.drupal.org/user/1448368"
  3990. }
  3991. ],
  3992. "description": "Provides jQuery UI Draggable library.",
  3993. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3994. "support": {
  3995. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3996. }
  3997. },
  3998. {
  3999. "name": "drupal/jquery_ui_droppable",
  4000. "version": "1.2.0",
  4001. "source": {
  4002. "type": "git",
  4003. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4004. "reference": "8.x-1.2"
  4005. },
  4006. "dist": {
  4007. "type": "zip",
  4008. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4009. "reference": "8.x-1.2",
  4010. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4011. },
  4012. "require": {
  4013. "drupal/core": "^8 || ^9",
  4014. "drupal/jquery_ui": "*",
  4015. "drupal/jquery_ui_draggable": "*"
  4016. },
  4017. "type": "drupal-module",
  4018. "extra": {
  4019. "drupal": {
  4020. "version": "8.x-1.2",
  4021. "datestamp": "1582150071",
  4022. "security-coverage": {
  4023. "status": "covered",
  4024. "message": "Covered by Drupal's security advisory policy"
  4025. }
  4026. }
  4027. },
  4028. "notification-url": "https://packages.drupal.org/8/downloads",
  4029. "license": [
  4030. "GPL-2.0-or-later"
  4031. ],
  4032. "authors": [
  4033. {
  4034. "name": "bnjmnm",
  4035. "homepage": "https://www.drupal.org/user/2369194"
  4036. },
  4037. {
  4038. "name": "lauriii",
  4039. "homepage": "https://www.drupal.org/user/1078742"
  4040. },
  4041. {
  4042. "name": "zrpnr",
  4043. "homepage": "https://www.drupal.org/user/1448368"
  4044. }
  4045. ],
  4046. "description": "Provides jQuery UI Droppable library.",
  4047. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4048. "support": {
  4049. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4050. }
  4051. },
  4052. {
  4053. "name": "drupal/jquery_ui_sortable",
  4054. "version": "1.1.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4058. "reference": "8.x-1.1"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4063. "reference": "8.x-1.1",
  4064. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4065. },
  4066. "require": {
  4067. "drupal/core": "^8 || ^9",
  4068. "drupal/jquery_ui": "*"
  4069. },
  4070. "type": "drupal-module",
  4071. "extra": {
  4072. "drupal": {
  4073. "version": "8.x-1.1",
  4074. "datestamp": "1583174744",
  4075. "security-coverage": {
  4076. "status": "covered",
  4077. "message": "Covered by Drupal's security advisory policy"
  4078. }
  4079. }
  4080. },
  4081. "notification-url": "https://packages.drupal.org/8/downloads",
  4082. "license": [
  4083. "GPL-2.0-or-later"
  4084. ],
  4085. "authors": [
  4086. {
  4087. "name": "bnjmnm",
  4088. "homepage": "https://www.drupal.org/user/2369194"
  4089. },
  4090. {
  4091. "name": "lauriii",
  4092. "homepage": "https://www.drupal.org/user/1078742"
  4093. },
  4094. {
  4095. "name": "zrpnr",
  4096. "homepage": "https://www.drupal.org/user/1448368"
  4097. }
  4098. ],
  4099. "description": "Provides jQuery UI Sortable library.",
  4100. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4101. "support": {
  4102. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4103. }
  4104. },
  4105. {
  4106. "name": "drupal/linkit",
  4107. "version": "5.0.0-beta11",
  4108. "source": {
  4109. "type": "git",
  4110. "url": "https://git.drupalcode.org/project/linkit.git",
  4111. "reference": "8.x-5.0-beta11"
  4112. },
  4113. "dist": {
  4114. "type": "zip",
  4115. "url": "https://ftp.drupal.org/files/projects/linkit-8.x-5.0-beta11.zip",
  4116. "reference": "8.x-5.0-beta11",
  4117. "shasum": "9133a3e61deafdd6a9d5a8b31a1f42e16051ee97"
  4118. },
  4119. "require": {
  4120. "drupal/core": "^8.7.7 || ^9"
  4121. },
  4122. "require-dev": {
  4123. "drupal/imce": "*"
  4124. },
  4125. "type": "drupal-module",
  4126. "extra": {
  4127. "drupal": {
  4128. "version": "8.x-5.0-beta11",
  4129. "datestamp": "1591971693",
  4130. "security-coverage": {
  4131. "status": "not-covered",
  4132. "message": "Beta releases are not covered by Drupal security advisories."
  4133. }
  4134. }
  4135. },
  4136. "notification-url": "https://packages.drupal.org/8/downloads",
  4137. "license": [
  4138. "GPL-2.0+"
  4139. ],
  4140. "authors": [
  4141. {
  4142. "name": "Emil Stjerneman",
  4143. "homepage": "https://stjerneman.com",
  4144. "email": "emil@stjerneman.com",
  4145. "role": "Maintainer"
  4146. }
  4147. ],
  4148. "description": "Linkit - Enriched linking experience",
  4149. "homepage": "http://drupal.org/project/linkit",
  4150. "support": {
  4151. "source": "http://cgit.drupalcode.org/linkit",
  4152. "issues": "http://drupal.org/project/linkit"
  4153. }
  4154. },
  4155. {
  4156. "name": "drupal/login_emailusername",
  4157. "version": "2.1.0",
  4158. "source": {
  4159. "type": "git",
  4160. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4161. "reference": "2.1.0"
  4162. },
  4163. "dist": {
  4164. "type": "zip",
  4165. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4166. "reference": "2.1.0",
  4167. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4168. },
  4169. "require": {
  4170. "drupal/core": "^8.8 || ^9 || ^10"
  4171. },
  4172. "type": "drupal-module",
  4173. "extra": {
  4174. "drupal": {
  4175. "version": "2.1.0",
  4176. "datestamp": "1677072401",
  4177. "security-coverage": {
  4178. "status": "covered",
  4179. "message": "Covered by Drupal's security advisory policy"
  4180. }
  4181. },
  4182. "branch-alias": {
  4183. "dev-8.x-1.x": "8.1.x-dev"
  4184. }
  4185. },
  4186. "notification-url": "https://packages.drupal.org/8/downloads",
  4187. "license": [
  4188. "GPL-2.0-or-later"
  4189. ],
  4190. "authors": [
  4191. {
  4192. "name": "See contributors",
  4193. "homepage": "https://www.drupal.org/node/2820429/committers",
  4194. "role": "contributor"
  4195. },
  4196. {
  4197. "name": "rjjakes",
  4198. "homepage": "https://www.drupal.org/user/3457245"
  4199. },
  4200. {
  4201. "name": "VladimirAus",
  4202. "homepage": "https://www.drupal.org/user/673120"
  4203. }
  4204. ],
  4205. "description": "Login with the email as username.",
  4206. "homepage": "https://drupal.org/project/login_emailusername",
  4207. "support": {
  4208. "source": "https://git.drupalcode.org/project/login_emailusername",
  4209. "issues": "https://drupal.org/project/issues/login_emailusername"
  4210. }
  4211. },
  4212. {
  4213. "name": "drupal/maillog",
  4214. "version": "1.0.0-beta1",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://git.drupalcode.org/project/maillog.git",
  4218. "reference": "8.x-1.0-beta1"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4223. "reference": "8.x-1.0-beta1",
  4224. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4225. },
  4226. "require": {
  4227. "drupal/core": "^8 || ^9"
  4228. },
  4229. "type": "drupal-module",
  4230. "extra": {
  4231. "drupal": {
  4232. "version": "8.x-1.0-beta1",
  4233. "datestamp": "1600800168",
  4234. "security-coverage": {
  4235. "status": "not-covered",
  4236. "message": "Beta releases are not covered by Drupal security advisories."
  4237. }
  4238. }
  4239. },
  4240. "notification-url": "https://packages.drupal.org/8/downloads",
  4241. "license": [
  4242. "GPL-2.0-or-later"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "berdir",
  4247. "homepage": "https://www.drupal.org/user/214652"
  4248. },
  4249. {
  4250. "name": "damienmckenna",
  4251. "homepage": "https://www.drupal.org/user/108450"
  4252. },
  4253. {
  4254. "name": "miro_dietiker",
  4255. "homepage": "https://www.drupal.org/user/227761"
  4256. },
  4257. {
  4258. "name": "pluess",
  4259. "homepage": "https://www.drupal.org/user/84659"
  4260. }
  4261. ],
  4262. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4263. "homepage": "https://www.drupal.org/project/maillog",
  4264. "support": {
  4265. "source": "https://git.drupalcode.org/project/maillog"
  4266. }
  4267. },
  4268. {
  4269. "name": "drupal/matomo",
  4270. "version": "1.9.0",
  4271. "source": {
  4272. "type": "git",
  4273. "url": "https://git.drupalcode.org/project/matomo.git",
  4274. "reference": "8.x-1.9"
  4275. },
  4276. "dist": {
  4277. "type": "zip",
  4278. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4279. "reference": "8.x-1.9",
  4280. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4281. },
  4282. "require": {
  4283. "drupal/core": "~8.5"
  4284. },
  4285. "require-dev": {
  4286. "drupal/php": "*",
  4287. "drupal/token": "*"
  4288. },
  4289. "type": "drupal-module",
  4290. "extra": {
  4291. "branch-alias": {
  4292. "dev-1.x": "1.x-dev"
  4293. },
  4294. "drupal": {
  4295. "version": "8.x-1.9",
  4296. "datestamp": "1549615080",
  4297. "security-coverage": {
  4298. "status": "covered",
  4299. "message": "Covered by Drupal's security advisory policy"
  4300. }
  4301. }
  4302. },
  4303. "notification-url": "https://packages.drupal.org/8/downloads",
  4304. "license": [
  4305. "GPL-2.0+"
  4306. ],
  4307. "authors": [
  4308. {
  4309. "name": "hass",
  4310. "homepage": "https://www.drupal.org/u/hass"
  4311. },
  4312. {
  4313. "name": "See other contributors",
  4314. "homepage": "https://www.drupal.org/node/247808/committers"
  4315. }
  4316. ],
  4317. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4318. "homepage": "https://www.drupal.org/project/matomo",
  4319. "support": {
  4320. "source": "https://git.drupal.org/project/matomo.git",
  4321. "issues": "https://www.drupal.org/project/issues/matomo"
  4322. }
  4323. },
  4324. {
  4325. "name": "drupal/menu_admin_per_menu",
  4326. "version": "1.1.0",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4330. "reference": "8.x-1.1"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4335. "reference": "8.x-1.1",
  4336. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4337. },
  4338. "require": {
  4339. "drupal/core": "^8 || ^9"
  4340. },
  4341. "type": "drupal-module",
  4342. "extra": {
  4343. "drupal": {
  4344. "version": "8.x-1.1",
  4345. "datestamp": "1591098397",
  4346. "security-coverage": {
  4347. "status": "covered",
  4348. "message": "Covered by Drupal's security advisory policy"
  4349. }
  4350. }
  4351. },
  4352. "notification-url": "https://packages.drupal.org/8/downloads",
  4353. "license": [
  4354. "GPL-2.0-or-later"
  4355. ],
  4356. "authors": [
  4357. {
  4358. "name": "JeroenT",
  4359. "homepage": "https://www.drupal.org/user/2228934"
  4360. },
  4361. {
  4362. "name": "anrikun",
  4363. "homepage": "https://www.drupal.org/user/410199"
  4364. },
  4365. {
  4366. "name": "jonas139",
  4367. "homepage": "https://www.drupal.org/user/2873401"
  4368. },
  4369. {
  4370. "name": "mkdok",
  4371. "homepage": "https://www.drupal.org/user/3308753"
  4372. }
  4373. ],
  4374. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4375. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4376. "support": {
  4377. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4378. }
  4379. },
  4380. {
  4381. "name": "drupal/metatag",
  4382. "version": "1.14.0",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://git.drupalcode.org/project/metatag.git",
  4386. "reference": "8.x-1.14"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.14.zip",
  4391. "reference": "8.x-1.14",
  4392. "shasum": "9bf9f1517ad015d0c93ca1460e284c557624aa90"
  4393. },
  4394. "require": {
  4395. "drupal/core": "^8 || ^9",
  4396. "drupal/token": "^1.0"
  4397. },
  4398. "require-dev": {
  4399. "drupal/metatag_dc": "*",
  4400. "drupal/metatag_open_graph": "*",
  4401. "drupal/page_manager": "4.x-dev",
  4402. "drupal/panelizer": "4.x-dev",
  4403. "drupal/redirect": "1.x-dev"
  4404. },
  4405. "type": "drupal-module",
  4406. "extra": {
  4407. "drupal": {
  4408. "version": "8.x-1.14",
  4409. "datestamp": "1597183852",
  4410. "security-coverage": {
  4411. "status": "covered",
  4412. "message": "Covered by Drupal's security advisory policy"
  4413. }
  4414. }
  4415. },
  4416. "notification-url": "https://packages.drupal.org/8/downloads",
  4417. "license": [
  4418. "GPL-2.0-or-later"
  4419. ],
  4420. "authors": [
  4421. {
  4422. "name": "See contributors",
  4423. "homepage": "https://www.drupal.org/node/640498/committers",
  4424. "role": "Developer"
  4425. },
  4426. {
  4427. "name": "Dave Reid",
  4428. "homepage": "https://www.drupal.org/user/53892"
  4429. }
  4430. ],
  4431. "description": "Manage meta tags for all entities.",
  4432. "homepage": "https://www.drupal.org/project/metatag",
  4433. "keywords": [
  4434. "Drupal",
  4435. "seo"
  4436. ],
  4437. "support": {
  4438. "source": "https://git.drupalcode.org/project/metatag",
  4439. "issues": "https://www.drupal.org/project/issues/metatag",
  4440. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4441. }
  4442. },
  4443. {
  4444. "name": "drupal/migrate_plus",
  4445. "version": "5.0.0",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4449. "reference": "8.x-5.0"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4454. "reference": "8.x-5.0",
  4455. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4456. },
  4457. "require": {
  4458. "drupal/core": "^8 || ^9"
  4459. },
  4460. "require-dev": {
  4461. "drupal/migrate_example_advanced_setup": "*",
  4462. "drupal/migrate_example_setup": "*"
  4463. },
  4464. "suggest": {
  4465. "ext-soap": "*",
  4466. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4467. },
  4468. "type": "drupal-module",
  4469. "extra": {
  4470. "drupal": {
  4471. "version": "8.x-5.0",
  4472. "datestamp": "1586234154",
  4473. "security-coverage": {
  4474. "status": "covered",
  4475. "message": "Covered by Drupal's security advisory policy"
  4476. }
  4477. }
  4478. },
  4479. "notification-url": "https://packages.drupal.org/8/downloads",
  4480. "license": [
  4481. "GPL-2.0+"
  4482. ],
  4483. "authors": [
  4484. {
  4485. "name": "Mike Ryan",
  4486. "homepage": "https://www.drupal.org/u/mikeryan",
  4487. "role": "Maintainer"
  4488. },
  4489. {
  4490. "name": "Lucas Hedding",
  4491. "homepage": "https://www.drupal.org/u/heddn",
  4492. "role": "Maintainer"
  4493. }
  4494. ],
  4495. "description": "Enhancements to core migration support.",
  4496. "homepage": "https://www.drupal.org/project/migrate_plus",
  4497. "support": {
  4498. "source": "https://git.drupalcode.org/project/migrate_plus",
  4499. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4500. "slack": "#migrate"
  4501. }
  4502. },
  4503. {
  4504. "name": "drupal/migrate_tools",
  4505. "version": "4.5.0",
  4506. "source": {
  4507. "type": "git",
  4508. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4509. "reference": "8.x-4.5"
  4510. },
  4511. "dist": {
  4512. "type": "zip",
  4513. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4514. "reference": "8.x-4.5",
  4515. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4516. },
  4517. "require": {
  4518. "drupal/core": "^8 || ^9",
  4519. "drupal/migrate_plus": "^4 || ^5"
  4520. },
  4521. "require-dev": {
  4522. "drupal/migrate_plus": "4.x-dev",
  4523. "drupal/migrate_source_csv": "^2.2",
  4524. "drush/drush": "^10"
  4525. },
  4526. "type": "drupal-module",
  4527. "extra": {
  4528. "drupal": {
  4529. "version": "8.x-4.5",
  4530. "datestamp": "1574693285",
  4531. "security-coverage": {
  4532. "status": "covered",
  4533. "message": "Covered by Drupal's security advisory policy"
  4534. }
  4535. },
  4536. "drush": {
  4537. "services": {
  4538. "drush.services.yml": "^9 || ^10"
  4539. }
  4540. }
  4541. },
  4542. "notification-url": "https://packages.drupal.org/8/downloads",
  4543. "license": [
  4544. "GPL-2.0-or-later"
  4545. ],
  4546. "authors": [
  4547. {
  4548. "name": "heddn",
  4549. "homepage": "https://www.drupal.org/user/1463982"
  4550. },
  4551. {
  4552. "name": "mikeryan",
  4553. "homepage": "https://www.drupal.org/user/4420"
  4554. },
  4555. {
  4556. "name": "moshe weitzman",
  4557. "homepage": "https://www.drupal.org/user/23"
  4558. }
  4559. ],
  4560. "description": "Tools to assist in developing and running migrations.",
  4561. "homepage": "http://drupal.org/project/migrate_tools",
  4562. "support": {
  4563. "source": "http://cgit.drupalcode.org/migrate_tools",
  4564. "issues": "http://drupal.org/project/migrate_tools",
  4565. "irc": "irc://irc.freenode.org/drupal-migrate"
  4566. }
  4567. },
  4568. {
  4569. "name": "drupal/path_alias_xt",
  4570. "version": "dev-1.x",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  4574. "reference": "10ef76dd3eb25bc1342195336291ded3f2d8cc7e"
  4575. },
  4576. "require": {
  4577. "drupal/core": "^8.7.7 || ^9"
  4578. },
  4579. "type": "drupal-module",
  4580. "extra": {
  4581. "branch-alias": {
  4582. "dev-1.x": "1.x-dev"
  4583. },
  4584. "drupal": {
  4585. "version": "8.x-1.x-dev",
  4586. "datestamp": "1582322571",
  4587. "security-coverage": {
  4588. "status": "not-covered",
  4589. "message": "Dev releases are not covered by Drupal security advisories."
  4590. }
  4591. }
  4592. },
  4593. "notification-url": "https://packages.drupal.org/8/downloads",
  4594. "license": [
  4595. "GPL-2.0-or-later"
  4596. ],
  4597. "authors": [
  4598. {
  4599. "name": "RdeBoer",
  4600. "homepage": "https://www.drupal.org/user/404007"
  4601. },
  4602. {
  4603. "name": "adriancid",
  4604. "homepage": "https://www.drupal.org/user/1962106"
  4605. },
  4606. {
  4607. "name": "sdstyles",
  4608. "homepage": "https://www.drupal.org/user/1420228"
  4609. }
  4610. ],
  4611. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  4612. "homepage": "https://www.drupal.org/project/path_alias_xt",
  4613. "support": {
  4614. "source": "https://git.drupalcode.org/project/path_alias_xt"
  4615. },
  4616. "time": "2020-05-24T05:57:09+00:00"
  4617. },
  4618. {
  4619. "name": "drupal/pathauto",
  4620. "version": "1.8.0",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://git.drupalcode.org/project/pathauto.git",
  4624. "reference": "8.x-1.8"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.8.zip",
  4629. "reference": "8.x-1.8",
  4630. "shasum": "ede3216abb9c4f77709338d9147334c595046329"
  4631. },
  4632. "require": {
  4633. "drupal/core": "^8.8 || ^9",
  4634. "drupal/ctools": "*",
  4635. "drupal/token": "*"
  4636. },
  4637. "suggest": {
  4638. "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."
  4639. },
  4640. "type": "drupal-module",
  4641. "extra": {
  4642. "drupal": {
  4643. "version": "8.x-1.8",
  4644. "datestamp": "1588103046",
  4645. "security-coverage": {
  4646. "status": "covered",
  4647. "message": "Covered by Drupal's security advisory policy"
  4648. }
  4649. },
  4650. "drush": {
  4651. "services": {
  4652. "drush.services.yml": "^9 || ^10"
  4653. }
  4654. }
  4655. },
  4656. "notification-url": "https://packages.drupal.org/8/downloads",
  4657. "license": [
  4658. "GPL-2.0-or-later"
  4659. ],
  4660. "authors": [
  4661. {
  4662. "name": "Berdir",
  4663. "homepage": "https://www.drupal.org/user/214652"
  4664. },
  4665. {
  4666. "name": "Dave Reid",
  4667. "homepage": "https://www.drupal.org/user/53892"
  4668. },
  4669. {
  4670. "name": "Freso",
  4671. "homepage": "https://www.drupal.org/user/27504"
  4672. },
  4673. {
  4674. "name": "greggles",
  4675. "homepage": "https://www.drupal.org/user/36762"
  4676. }
  4677. ],
  4678. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4679. "homepage": "https://www.drupal.org/project/pathauto",
  4680. "support": {
  4681. "source": "https://cgit.drupalcode.org/pathauto",
  4682. "issues": "https://www.drupal.org/project/issues/pathauto",
  4683. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4684. }
  4685. },
  4686. {
  4687. "name": "drupal/piwik",
  4688. "version": "1.4.0",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://git.drupalcode.org/project/piwik.git",
  4692. "reference": "8.x-1.4"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://ftp.drupal.org/files/projects/piwik-8.x-1.4.zip",
  4697. "reference": "8.x-1.4",
  4698. "shasum": "3692831f4b3de636e90679fb052ba8f30e49ac97"
  4699. },
  4700. "require": {
  4701. "drupal/core": "~8.0",
  4702. "drupal/matomo": "^1.0"
  4703. },
  4704. "require-dev": {
  4705. "drupal/php": "*",
  4706. "drupal/token": "*"
  4707. },
  4708. "type": "drupal-module",
  4709. "extra": {
  4710. "branch-alias": {
  4711. "dev-1.x": "1.x-dev"
  4712. },
  4713. "drupal": {
  4714. "version": "8.x-1.4",
  4715. "datestamp": "1530437786",
  4716. "security-coverage": {
  4717. "status": "covered",
  4718. "message": "Covered by Drupal's security advisory policy"
  4719. }
  4720. }
  4721. },
  4722. "notification-url": "https://packages.drupal.org/8/downloads",
  4723. "license": [
  4724. "GPL-2.0+"
  4725. ],
  4726. "authors": [
  4727. {
  4728. "name": "hass",
  4729. "homepage": "https://www.drupal.org/u/hass"
  4730. },
  4731. {
  4732. "name": "See other contributors",
  4733. "homepage": "https://www.drupal.org/node/247808/committers"
  4734. }
  4735. ],
  4736. "description": "Adds Piwik javascript tracking code to all your site's pages",
  4737. "homepage": "https://www.drupal.org/project/piwik",
  4738. "support": {
  4739. "source": "http://git.drupal.org/project/piwik.git",
  4740. "issues": "https://www.drupal.org/project/issues/piwik"
  4741. }
  4742. },
  4743. {
  4744. "name": "drupal/profile",
  4745. "version": "1.1.0",
  4746. "source": {
  4747. "type": "git",
  4748. "url": "https://git.drupalcode.org/project/profile.git",
  4749. "reference": "8.x-1.1"
  4750. },
  4751. "dist": {
  4752. "type": "zip",
  4753. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.1.zip",
  4754. "reference": "8.x-1.1",
  4755. "shasum": "b8f6aca4f432228e614dca0a50cb187e936e4825"
  4756. },
  4757. "require": {
  4758. "drupal/core": "^8.7.7 || ^9",
  4759. "drupal/entity": "^1.0-rc2"
  4760. },
  4761. "require-dev": {
  4762. "drupal/token": "^1.0"
  4763. },
  4764. "type": "drupal-module",
  4765. "extra": {
  4766. "drupal": {
  4767. "version": "8.x-1.1",
  4768. "datestamp": "1582134004",
  4769. "security-coverage": {
  4770. "status": "covered",
  4771. "message": "Covered by Drupal's security advisory policy"
  4772. }
  4773. }
  4774. },
  4775. "notification-url": "https://packages.drupal.org/8/downloads",
  4776. "license": [
  4777. "GPL-2.0+"
  4778. ],
  4779. "authors": [
  4780. {
  4781. "name": "bojanz",
  4782. "homepage": "https://www.drupal.org/user/86106"
  4783. },
  4784. {
  4785. "name": "daggerhart",
  4786. "homepage": "https://www.drupal.org/user/167806"
  4787. },
  4788. {
  4789. "name": "fago",
  4790. "homepage": "https://www.drupal.org/user/16747"
  4791. },
  4792. {
  4793. "name": "jsacksick",
  4794. "homepage": "https://www.drupal.org/user/972218"
  4795. },
  4796. {
  4797. "name": "mglaman",
  4798. "homepage": "https://www.drupal.org/user/2416470"
  4799. },
  4800. {
  4801. "name": "pcambra",
  4802. "homepage": "https://www.drupal.org/user/122101"
  4803. }
  4804. ],
  4805. "description": "Provides configurable user profiles.",
  4806. "homepage": "http://drupal.org/project/profile",
  4807. "support": {
  4808. "source": "https://git.drupalcode.org/project/profile"
  4809. }
  4810. },
  4811. {
  4812. "name": "drupal/redirect",
  4813. "version": "1.6.0",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://git.drupalcode.org/project/redirect.git",
  4817. "reference": "8.x-1.6"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4822. "reference": "8.x-1.6",
  4823. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4824. },
  4825. "require": {
  4826. "drupal/core": "^8.8 || ^9"
  4827. },
  4828. "type": "drupal-module",
  4829. "extra": {
  4830. "drupal": {
  4831. "version": "8.x-1.6",
  4832. "datestamp": "1589312204",
  4833. "security-coverage": {
  4834. "status": "covered",
  4835. "message": "Covered by Drupal's security advisory policy"
  4836. }
  4837. }
  4838. },
  4839. "notification-url": "https://packages.drupal.org/8/downloads",
  4840. "license": [
  4841. "GPL-2.0-or-later"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Berdir",
  4846. "homepage": "https://www.drupal.org/user/214652"
  4847. },
  4848. {
  4849. "name": "Dave Reid",
  4850. "homepage": "https://www.drupal.org/user/53892"
  4851. },
  4852. {
  4853. "name": "pifagor",
  4854. "homepage": "https://www.drupal.org/user/2375692"
  4855. }
  4856. ],
  4857. "description": "Allows users to redirect from old URLs to new URLs.",
  4858. "homepage": "https://www.drupal.org/project/redirect",
  4859. "support": {
  4860. "source": "https://git.drupalcode.org/project/redirect"
  4861. }
  4862. },
  4863. {
  4864. "name": "drupal/redis",
  4865. "version": "1.4.0",
  4866. "source": {
  4867. "type": "git",
  4868. "url": "https://git.drupalcode.org/project/redis.git",
  4869. "reference": "8.x-1.4"
  4870. },
  4871. "dist": {
  4872. "type": "zip",
  4873. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.4.zip",
  4874. "reference": "8.x-1.4",
  4875. "shasum": "87165acdda18873c1e3994c670bcb4cdafd3d0ff"
  4876. },
  4877. "require": {
  4878. "drupal/core": "^8.8 || ^9"
  4879. },
  4880. "suggest": {
  4881. "predis/predis": "^1.1.1"
  4882. },
  4883. "type": "drupal-module",
  4884. "extra": {
  4885. "branch-alias": {
  4886. "dev-1.x": "1.x-dev"
  4887. },
  4888. "drupal": {
  4889. "version": "8.x-1.4",
  4890. "datestamp": "1581504947",
  4891. "security-coverage": {
  4892. "status": "covered",
  4893. "message": "Covered by Drupal's security advisory policy"
  4894. }
  4895. }
  4896. },
  4897. "autoload": {
  4898. "psr-4": {
  4899. "Drupal\\redis\\": "src"
  4900. }
  4901. },
  4902. "notification-url": "https://packages.drupal.org/8/downloads",
  4903. "license": [
  4904. "GPL-2.0"
  4905. ],
  4906. "authors": [
  4907. {
  4908. "name": "Berdir",
  4909. "homepage": "https://www.drupal.org/user/214652"
  4910. },
  4911. {
  4912. "name": "pounard",
  4913. "homepage": "https://www.drupal.org/user/240164"
  4914. }
  4915. ],
  4916. "description": "Provide a module placeholder, for using as dependency for module that needs Redis.",
  4917. "homepage": "https://www.drupal.org/project/redis",
  4918. "support": {
  4919. "source": "https://git.drupalcode.org/project/redis"
  4920. }
  4921. },
  4922. {
  4923. "name": "drupal/restui",
  4924. "version": "1.18.0",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://git.drupalcode.org/project/restui.git",
  4928. "reference": "8.x-1.18"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.18.zip",
  4933. "reference": "8.x-1.18",
  4934. "shasum": "40edbe907d5ec6d6c6a00abd219c7305d90d19e5"
  4935. },
  4936. "require": {
  4937. "drupal/core": "^8.7.7 || ^9"
  4938. },
  4939. "type": "drupal-module",
  4940. "extra": {
  4941. "drupal": {
  4942. "version": "8.x-1.18",
  4943. "datestamp": "1586170645",
  4944. "security-coverage": {
  4945. "status": "covered",
  4946. "message": "Covered by Drupal's security advisory policy"
  4947. }
  4948. }
  4949. },
  4950. "notification-url": "https://packages.drupal.org/8/downloads",
  4951. "license": [
  4952. "GPL-2.0-or-later"
  4953. ],
  4954. "authors": [
  4955. {
  4956. "name": "-enzo-",
  4957. "homepage": "https://www.drupal.org/user/294937"
  4958. },
  4959. {
  4960. "name": "clemens.tolboom",
  4961. "homepage": "https://www.drupal.org/user/125814"
  4962. },
  4963. {
  4964. "name": "juampynr",
  4965. "homepage": "https://www.drupal.org/user/682736"
  4966. },
  4967. {
  4968. "name": "klausi",
  4969. "homepage": "https://www.drupal.org/user/262198"
  4970. }
  4971. ],
  4972. "description": "Provides a user interface to manage REST resources.",
  4973. "homepage": "https://www.drupal.org/project/restui",
  4974. "support": {
  4975. "source": "https://git.drupalcode.org/project/restui"
  4976. }
  4977. },
  4978. {
  4979. "name": "drupal/search_api",
  4980. "version": "1.17.0",
  4981. "source": {
  4982. "type": "git",
  4983. "url": "https://git.drupalcode.org/project/search_api.git",
  4984. "reference": "8.x-1.17"
  4985. },
  4986. "dist": {
  4987. "type": "zip",
  4988. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.17.zip",
  4989. "reference": "8.x-1.17",
  4990. "shasum": "a9f3352f1c8c893c7032c11f00a23f76b9733b56"
  4991. },
  4992. "require": {
  4993. "drupal/core": "^8.8 || ^9"
  4994. },
  4995. "conflict": {
  4996. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4997. },
  4998. "require-dev": {
  4999. "drupal/language_fallback_fix": "@dev",
  5000. "drupal/search_api_autocomplete": "@dev",
  5001. "drupal/search_api_db": "*"
  5002. },
  5003. "suggest": {
  5004. "drupal/facets": "Adds the ability to create faceted searches.",
  5005. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5006. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5007. },
  5008. "type": "drupal-module",
  5009. "extra": {
  5010. "drupal": {
  5011. "version": "8.x-1.17",
  5012. "datestamp": "1594482952",
  5013. "security-coverage": {
  5014. "status": "covered",
  5015. "message": "Covered by Drupal's security advisory policy"
  5016. }
  5017. },
  5018. "drush": {
  5019. "services": {
  5020. "drush.services.yml": "^9"
  5021. }
  5022. }
  5023. },
  5024. "notification-url": "https://packages.drupal.org/8/downloads",
  5025. "license": [
  5026. "GPL-2.0+"
  5027. ],
  5028. "authors": [
  5029. {
  5030. "name": "Thomas Seidl",
  5031. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5032. },
  5033. {
  5034. "name": "Nick Veenhof",
  5035. "homepage": "https://www.drupal.org/u/nick_vh"
  5036. },
  5037. {
  5038. "name": "See other contributors",
  5039. "homepage": "https://www.drupal.org/node/790418/committers"
  5040. }
  5041. ],
  5042. "description": "Provides a generic framework for modules offering search capabilities.",
  5043. "homepage": "https://www.drupal.org/project/search_api",
  5044. "support": {
  5045. "source": "https://git.drupalcode.org/project/search_api",
  5046. "issues": "https://www.drupal.org/project/issues/search_api",
  5047. "irc": "irc://irc.freenode.org/drupal-search-api"
  5048. }
  5049. },
  5050. {
  5051. "name": "drupal/simple_sitemap",
  5052. "version": "3.7.0",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5056. "reference": "8.x-3.7"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.7.zip",
  5061. "reference": "8.x-3.7",
  5062. "shasum": "7b23930cc71d37f332c1e836bc18c29ed2ae8cde"
  5063. },
  5064. "require": {
  5065. "drupal/core": "^8 || ^9",
  5066. "ext-xmlwriter": "*"
  5067. },
  5068. "type": "drupal-module",
  5069. "extra": {
  5070. "drupal": {
  5071. "version": "8.x-3.7",
  5072. "datestamp": "1592298918",
  5073. "security-coverage": {
  5074. "status": "covered",
  5075. "message": "Covered by Drupal's security advisory policy"
  5076. }
  5077. },
  5078. "drush": {
  5079. "services": {
  5080. "drush.services.yml": "^9 || ^10"
  5081. }
  5082. }
  5083. },
  5084. "notification-url": "https://packages.drupal.org/8/downloads",
  5085. "license": [
  5086. "GPL-2.0-or-later"
  5087. ],
  5088. "authors": [
  5089. {
  5090. "name": "Pawel Ginalski (gbyte.co)",
  5091. "homepage": "https://www.drupal.org/u/gbyte.co",
  5092. "email": "contact@gbyte.co",
  5093. "role": "Maintainer"
  5094. }
  5095. ],
  5096. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5097. "homepage": "https://drupal.org/project/simple_sitemap",
  5098. "support": {
  5099. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5100. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5101. "irc": "irc://irc.freenode.org/drupal-contribute"
  5102. }
  5103. },
  5104. {
  5105. "name": "drupal/synonyms",
  5106. "version": "1.0.0-alpha3",
  5107. "source": {
  5108. "type": "git",
  5109. "url": "https://git.drupalcode.org/project/synonyms.git",
  5110. "reference": "8.x-1.0-alpha3"
  5111. },
  5112. "dist": {
  5113. "type": "zip",
  5114. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5115. "reference": "8.x-1.0-alpha3",
  5116. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5117. },
  5118. "require": {
  5119. "drupal/core": "^8 || ^9"
  5120. },
  5121. "type": "drupal-module",
  5122. "extra": {
  5123. "drupal": {
  5124. "version": "8.x-1.0-alpha3",
  5125. "datestamp": "1609623594",
  5126. "security-coverage": {
  5127. "status": "not-covered",
  5128. "message": "Alpha releases are not covered by Drupal security advisories."
  5129. }
  5130. }
  5131. },
  5132. "notification-url": "https://packages.drupal.org/8/downloads",
  5133. "license": [
  5134. "GPL-2.0-or-later"
  5135. ],
  5136. "authors": [
  5137. {
  5138. "name": "bojanz",
  5139. "homepage": "https://www.drupal.org/user/86106"
  5140. },
  5141. {
  5142. "name": "bucefal91",
  5143. "homepage": "https://www.drupal.org/user/504128"
  5144. },
  5145. {
  5146. "name": "devad",
  5147. "homepage": "https://www.drupal.org/user/2268520"
  5148. },
  5149. {
  5150. "name": "Zen",
  5151. "homepage": "https://www.drupal.org/user/21209"
  5152. }
  5153. ],
  5154. "description": "Provides synonyms feature for content entities.",
  5155. "homepage": "https://www.drupal.org/project/synonyms",
  5156. "support": {
  5157. "source": "https://git.drupalcode.org/project/synonyms"
  5158. }
  5159. },
  5160. {
  5161. "name": "drupal/token",
  5162. "version": "1.7.0",
  5163. "source": {
  5164. "type": "git",
  5165. "url": "https://git.drupalcode.org/project/token.git",
  5166. "reference": "8.x-1.7"
  5167. },
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.7.zip",
  5171. "reference": "8.x-1.7",
  5172. "shasum": "c7e3a3757282e4c94e3c1fff08d01e22155cb853"
  5173. },
  5174. "require": {
  5175. "drupal/core": "^8.8 || ^9"
  5176. },
  5177. "type": "drupal-module",
  5178. "extra": {
  5179. "drupal": {
  5180. "version": "8.x-1.7",
  5181. "datestamp": "1589314266",
  5182. "security-coverage": {
  5183. "status": "covered",
  5184. "message": "Covered by Drupal's security advisory policy"
  5185. }
  5186. },
  5187. "drush": {
  5188. "services": {
  5189. "drush.services.yml": "^9 || ^10"
  5190. }
  5191. }
  5192. },
  5193. "notification-url": "https://packages.drupal.org/8/downloads",
  5194. "license": [
  5195. "GPL-2.0+"
  5196. ],
  5197. "authors": [
  5198. {
  5199. "name": "Berdir",
  5200. "homepage": "https://www.drupal.org/user/214652"
  5201. },
  5202. {
  5203. "name": "Dave Reid",
  5204. "homepage": "https://www.drupal.org/user/53892"
  5205. },
  5206. {
  5207. "name": "eaton",
  5208. "homepage": "https://www.drupal.org/user/16496"
  5209. },
  5210. {
  5211. "name": "fago",
  5212. "homepage": "https://www.drupal.org/user/16747"
  5213. },
  5214. {
  5215. "name": "greggles",
  5216. "homepage": "https://www.drupal.org/user/36762"
  5217. },
  5218. {
  5219. "name": "mikeryan",
  5220. "homepage": "https://www.drupal.org/user/4420"
  5221. }
  5222. ],
  5223. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5224. "homepage": "https://www.drupal.org/project/token",
  5225. "support": {
  5226. "source": "https://git.drupalcode.org/project/token"
  5227. }
  5228. },
  5229. {
  5230. "name": "drupal/toolbar_themes",
  5231. "version": "dev-1.x",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5235. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5236. },
  5237. "require": {
  5238. "drupal/core": "*"
  5239. },
  5240. "type": "drupal-module",
  5241. "extra": {
  5242. "branch-alias": {
  5243. "dev-1.x": "1.x-dev"
  5244. },
  5245. "drupal": {
  5246. "version": "8.x-1.0-alpha4+10-dev",
  5247. "datestamp": "1510689485",
  5248. "security-coverage": {
  5249. "status": "not-covered",
  5250. "message": "Project has not opted into security advisory coverage!"
  5251. }
  5252. }
  5253. },
  5254. "notification-url": "https://packages.drupal.org/8/downloads",
  5255. "license": [
  5256. "GPL-2.0-or-later"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "Jeff Burnz",
  5261. "homepage": "https://www.drupal.org/user/61393"
  5262. }
  5263. ],
  5264. "description": "Apply themes to the toolbar.",
  5265. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5266. "support": {
  5267. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5268. },
  5269. "time": "2017-11-14T19:57:02+00:00"
  5270. },
  5271. {
  5272. "name": "drupal/translation_views",
  5273. "version": "1.0.0-alpha10",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://git.drupalcode.org/project/translation_views.git",
  5277. "reference": "8.x-1.0-alpha10"
  5278. },
  5279. "dist": {
  5280. "type": "zip",
  5281. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha10.zip",
  5282. "reference": "8.x-1.0-alpha10",
  5283. "shasum": "ca1a6d4bf16293b1b094db6439f9f065de1dbbd5"
  5284. },
  5285. "require": {
  5286. "drupal/core": "^8.8 || ^9"
  5287. },
  5288. "require-dev": {
  5289. "drupal/translators": "*",
  5290. "drupal/translators_content": "*"
  5291. },
  5292. "type": "drupal-module",
  5293. "extra": {
  5294. "drupal": {
  5295. "version": "8.x-1.0-alpha10",
  5296. "datestamp": "1584303687",
  5297. "security-coverage": {
  5298. "status": "not-covered",
  5299. "message": "Project has not opted into security advisory coverage!"
  5300. }
  5301. }
  5302. },
  5303. "notification-url": "https://packages.drupal.org/8/downloads",
  5304. "license": [
  5305. "GPL-2.0-or-later"
  5306. ],
  5307. "authors": [
  5308. {
  5309. "name": "matsbla",
  5310. "homepage": "https://www.drupal.org/user/2325394"
  5311. },
  5312. {
  5313. "name": "vlad.dancer",
  5314. "homepage": "https://www.drupal.org/user/903844"
  5315. }
  5316. ],
  5317. "description": "Create customized lists and queries of translations from your database.",
  5318. "homepage": "https://www.drupal.org/project/translation_views",
  5319. "support": {
  5320. "source": "https://git.drupalcode.org/project/translation_views"
  5321. }
  5322. },
  5323. {
  5324. "name": "drupal/upgrade_status",
  5325. "version": "3.19.0",
  5326. "source": {
  5327. "type": "git",
  5328. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5329. "reference": "8.x-3.19"
  5330. },
  5331. "dist": {
  5332. "type": "zip",
  5333. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5334. "reference": "8.x-3.19",
  5335. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5336. },
  5337. "require": {
  5338. "drupal/core": "^8 || ^9",
  5339. "mathieuviossat/arraytotexttable": "~1.0.0",
  5340. "mglaman/phpstan-drupal": "^1.0.0",
  5341. "nikic/php-parser": "^4.0.0",
  5342. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5343. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5344. "webflo/drupal-finder": "^1.2"
  5345. },
  5346. "type": "drupal-module",
  5347. "extra": {
  5348. "drupal": {
  5349. "version": "8.x-3.19",
  5350. "datestamp": "1678815320",
  5351. "security-coverage": {
  5352. "status": "covered",
  5353. "message": "Covered by Drupal's security advisory policy"
  5354. }
  5355. },
  5356. "drush": {
  5357. "services": {
  5358. "drush.services.yml": "^9 || ^10"
  5359. }
  5360. }
  5361. },
  5362. "notification-url": "https://packages.drupal.org/8/downloads",
  5363. "license": [
  5364. "GPL-2.0-or-later"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "Gábor Hojtsy",
  5369. "homepage": "https://www.drupal.org/user/4166"
  5370. }
  5371. ],
  5372. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5373. "homepage": "http://drupal.org/project/upgrade_status",
  5374. "support": {
  5375. "source": "https://git.drupalcode.org/project/upgrade_status"
  5376. }
  5377. },
  5378. {
  5379. "name": "drupal/url_to_video_filter",
  5380. "version": "2.0.0",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5384. "reference": "2.0.0"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5389. "reference": "2.0.0",
  5390. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5391. },
  5392. "require": {
  5393. "drupal/core": "^8 || ^9"
  5394. },
  5395. "type": "drupal-module",
  5396. "extra": {
  5397. "drupal": {
  5398. "version": "2.0.0",
  5399. "datestamp": "1607298389",
  5400. "security-coverage": {
  5401. "status": "covered",
  5402. "message": "Covered by Drupal's security advisory policy"
  5403. }
  5404. }
  5405. },
  5406. "notification-url": "https://packages.drupal.org/8/downloads",
  5407. "license": [
  5408. "GPL-2.0-or-later"
  5409. ],
  5410. "authors": [
  5411. {
  5412. "name": "Jaypan",
  5413. "homepage": "https://www.drupal.org/user/324696"
  5414. }
  5415. ],
  5416. "description": "Text filter to convert URLs to embedded videos",
  5417. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5418. "support": {
  5419. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5420. }
  5421. },
  5422. {
  5423. "name": "drupal/views_bulk_edit",
  5424. "version": "2.7.0",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5428. "reference": "8.x-2.7"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5433. "reference": "8.x-2.7",
  5434. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5435. },
  5436. "require": {
  5437. "drupal/core": "^8 || ^9"
  5438. },
  5439. "require-dev": {
  5440. "drupal/views_bulk_operations": "~3.0"
  5441. },
  5442. "suggest": {
  5443. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5444. },
  5445. "type": "drupal-module",
  5446. "extra": {
  5447. "drupal": {
  5448. "version": "8.x-2.7",
  5449. "datestamp": "1664355764",
  5450. "security-coverage": {
  5451. "status": "covered",
  5452. "message": "Covered by Drupal's security advisory policy"
  5453. }
  5454. }
  5455. },
  5456. "notification-url": "https://packages.drupal.org/8/downloads",
  5457. "license": [
  5458. "GPL-2.0+"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Marcin Grabias",
  5463. "homepage": "https://www.drupal.org/u/graber"
  5464. },
  5465. {
  5466. "name": "benjy",
  5467. "homepage": "https://www.drupal.org/user/1852732"
  5468. },
  5469. {
  5470. "name": "graber",
  5471. "homepage": "https://www.drupal.org/user/1599440"
  5472. },
  5473. {
  5474. "name": "grevil",
  5475. "homepage": "https://www.drupal.org/user/3668491"
  5476. },
  5477. {
  5478. "name": "joseph.olstad",
  5479. "homepage": "https://www.drupal.org/user/1321830"
  5480. }
  5481. ],
  5482. "description": "Allows bulk edition of entity field values.",
  5483. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5484. "support": {
  5485. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5486. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5487. }
  5488. },
  5489. {
  5490. "name": "drupal/views_bulk_operations",
  5491. "version": "3.9.0",
  5492. "source": {
  5493. "type": "git",
  5494. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5495. "reference": "8.x-3.9"
  5496. },
  5497. "dist": {
  5498. "type": "zip",
  5499. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5500. "reference": "8.x-3.9",
  5501. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5502. },
  5503. "require": {
  5504. "drupal/core": "^8.8 || ^9"
  5505. },
  5506. "require-dev": {
  5507. "drush/drush": "^10"
  5508. },
  5509. "suggest": {
  5510. "drush/drush": "^9 || ^10"
  5511. },
  5512. "type": "drupal-module",
  5513. "extra": {
  5514. "drupal": {
  5515. "version": "8.x-3.9",
  5516. "datestamp": "1597319021",
  5517. "security-coverage": {
  5518. "status": "covered",
  5519. "message": "Covered by Drupal's security advisory policy"
  5520. }
  5521. },
  5522. "drush": {
  5523. "services": {
  5524. "drush.services.yml": "^9 || ^10"
  5525. }
  5526. }
  5527. },
  5528. "notification-url": "https://packages.drupal.org/8/downloads",
  5529. "license": [
  5530. "GPL-2.0-or-later"
  5531. ],
  5532. "authors": [
  5533. {
  5534. "name": "Marcin Grabias",
  5535. "homepage": "https://www.drupal.org/u/graber"
  5536. },
  5537. {
  5538. "name": "Jon Pugh",
  5539. "homepage": "https://www.drupal.org/user/17028"
  5540. },
  5541. {
  5542. "name": "bojanz",
  5543. "homepage": "https://www.drupal.org/user/86106"
  5544. },
  5545. {
  5546. "name": "infojunkie",
  5547. "homepage": "https://www.drupal.org/user/48424"
  5548. },
  5549. {
  5550. "name": "joelpittet",
  5551. "homepage": "https://www.drupal.org/user/160302"
  5552. }
  5553. ],
  5554. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5555. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5556. "support": {
  5557. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5558. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5559. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5560. }
  5561. },
  5562. {
  5563. "name": "drupal/workflow",
  5564. "version": "1.3.0",
  5565. "source": {
  5566. "type": "git",
  5567. "url": "https://git.drupalcode.org/project/workflow.git",
  5568. "reference": "8.x-1.3"
  5569. },
  5570. "dist": {
  5571. "type": "zip",
  5572. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5573. "reference": "8.x-1.3",
  5574. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5575. },
  5576. "require": {
  5577. "drupal/core": "^8 || ^9"
  5578. },
  5579. "type": "drupal-module",
  5580. "extra": {
  5581. "drupal": {
  5582. "version": "8.x-1.3",
  5583. "datestamp": "1590740623",
  5584. "security-coverage": {
  5585. "status": "covered",
  5586. "message": "Covered by Drupal's security advisory policy"
  5587. }
  5588. }
  5589. },
  5590. "notification-url": "https://packages.drupal.org/8/downloads",
  5591. "license": [
  5592. "GPL-2.0-or-later"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Bastlynn",
  5597. "homepage": "https://www.drupal.org/user/275249"
  5598. },
  5599. {
  5600. "name": "eaton",
  5601. "homepage": "https://www.drupal.org/user/16496"
  5602. },
  5603. {
  5604. "name": "Heine",
  5605. "homepage": "https://www.drupal.org/user/17943"
  5606. },
  5607. {
  5608. "name": "JacobSingh",
  5609. "homepage": "https://www.drupal.org/user/68912"
  5610. },
  5611. {
  5612. "name": "johnv",
  5613. "homepage": "https://www.drupal.org/user/591042"
  5614. },
  5615. {
  5616. "name": "jvandyk",
  5617. "homepage": "https://www.drupal.org/user/2375"
  5618. },
  5619. {
  5620. "name": "mfredrickson",
  5621. "homepage": "https://www.drupal.org/user/31994"
  5622. },
  5623. {
  5624. "name": "NancyDru",
  5625. "homepage": "https://www.drupal.org/user/101412"
  5626. },
  5627. {
  5628. "name": "q0rban",
  5629. "homepage": "https://www.drupal.org/user/31022"
  5630. }
  5631. ],
  5632. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5633. "homepage": "https://www.drupal.org/project/workflow",
  5634. "support": {
  5635. "source": "https://git.drupalcode.org/project/workflow"
  5636. }
  5637. },
  5638. {
  5639. "name": "drush/drush",
  5640. "version": "9.7.3",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/drush-ops/drush.git",
  5644. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5649. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "chi-teck/drupal-code-generator": "^1.28.1",
  5654. "composer/semver": "^1.4",
  5655. "consolidation/annotated-command": "^2.12",
  5656. "consolidation/config": "^1.2",
  5657. "consolidation/filter-via-dot-access-data": "^1",
  5658. "consolidation/output-formatters": "^3.3.1",
  5659. "consolidation/robo": "^1.4.6",
  5660. "consolidation/site-alias": "^3.0.0@stable",
  5661. "consolidation/site-process": "^2.0.3",
  5662. "ext-dom": "*",
  5663. "grasmash/yaml-expander": "^1.1.1",
  5664. "league/container": "~2",
  5665. "php": ">=5.6.0",
  5666. "psr/log": "~1.0",
  5667. "psy/psysh": "~0.6",
  5668. "symfony/console": "^3.4",
  5669. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5670. "symfony/finder": "^3.4 || ^4.0",
  5671. "symfony/process": "^3.4",
  5672. "symfony/var-dumper": "^3.4 || ^4.0",
  5673. "symfony/yaml": "^3.4",
  5674. "webflo/drupal-finder": "^1.1",
  5675. "webmozart/path-util": "^2.1.0"
  5676. },
  5677. "require-dev": {
  5678. "composer/installers": "^1.2",
  5679. "cweagans/composer-patches": "~1.0",
  5680. "drupal/alinks": "1.0.0",
  5681. "drupal/core-recommended": "^8.9",
  5682. "drupal/devel": "^2",
  5683. "drupal/empty_theme": "1.0",
  5684. "g1a/composer-test-scenarios": "^3",
  5685. "lox/xhprof": "dev-master",
  5686. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5687. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5688. "vlucas/phpdotenv": "^2.4"
  5689. },
  5690. "bin": [
  5691. "drush"
  5692. ],
  5693. "type": "library",
  5694. "extra": {
  5695. "installer-paths": {
  5696. "sut/core": [
  5697. "type:drupal-core"
  5698. ],
  5699. "sut/libraries/{$name}": [
  5700. "type:drupal-library"
  5701. ],
  5702. "sut/modules/unish/{$name}": [
  5703. "drupal/devel"
  5704. ],
  5705. "sut/themes/unish/{$name}": [
  5706. "drupal/empty_theme"
  5707. ],
  5708. "sut/modules/contrib/{$name}": [
  5709. "type:drupal-module"
  5710. ],
  5711. "sut/profiles/contrib/{$name}": [
  5712. "type:drupal-profile"
  5713. ],
  5714. "sut/themes/contrib/{$name}": [
  5715. "type:drupal-theme"
  5716. ],
  5717. "sut/drush/contrib/{$name}": [
  5718. "type:drupal-drush"
  5719. ]
  5720. },
  5721. "scenarios": {
  5722. "php5": {
  5723. "config": {
  5724. "platform": {
  5725. "php": "5.6.38"
  5726. }
  5727. },
  5728. "require-dev": {
  5729. "drupal/core-recommended": "~8.6.0"
  5730. }
  5731. }
  5732. },
  5733. "branch-alias": {
  5734. "dev-master": "9.x-dev"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "psr-4": {
  5739. "Drush\\": "src/",
  5740. "Drush\\Internal\\": "src/internal-forks"
  5741. }
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "GPL-2.0-or-later"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Moshe Weitzman",
  5750. "email": "weitzman@tejasa.com"
  5751. },
  5752. {
  5753. "name": "Owen Barton",
  5754. "email": "drupal@owenbarton.com"
  5755. },
  5756. {
  5757. "name": "Greg Anderson",
  5758. "email": "greg.1.anderson@greenknowe.org"
  5759. },
  5760. {
  5761. "name": "Jonathan Araña Cruz",
  5762. "email": "jonhattan@faita.net"
  5763. },
  5764. {
  5765. "name": "Jonathan Hedstrom",
  5766. "email": "jhedstrom@gmail.com"
  5767. },
  5768. {
  5769. "name": "Christopher Gervais",
  5770. "email": "chris@ergonlogic.com"
  5771. },
  5772. {
  5773. "name": "Dave Reid",
  5774. "email": "dave@davereid.net"
  5775. },
  5776. {
  5777. "name": "Damian Lee",
  5778. "email": "damiankloip@googlemail.com"
  5779. }
  5780. ],
  5781. "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.",
  5782. "homepage": "http://www.drush.org",
  5783. "support": {
  5784. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5785. "irc": "irc://irc.freenode.org/drush",
  5786. "issues": "https://github.com/drush-ops/drush/issues",
  5787. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5788. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5789. },
  5790. "funding": [
  5791. {
  5792. "url": "https://github.com/weitzman",
  5793. "type": "github"
  5794. }
  5795. ],
  5796. "time": "2021-03-22T17:00:48+00:00"
  5797. },
  5798. {
  5799. "name": "easyrdf/easyrdf",
  5800. "version": "0.9.1",
  5801. "source": {
  5802. "type": "git",
  5803. "url": "https://github.com/easyrdf/easyrdf.git",
  5804. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5805. },
  5806. "dist": {
  5807. "type": "zip",
  5808. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5809. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5810. "shasum": ""
  5811. },
  5812. "require": {
  5813. "ext-mbstring": "*",
  5814. "ext-pcre": "*",
  5815. "php": ">=5.2.8"
  5816. },
  5817. "require-dev": {
  5818. "phpunit/phpunit": "~3.5",
  5819. "sami/sami": "~1.4",
  5820. "squizlabs/php_codesniffer": "~1.4.3"
  5821. },
  5822. "suggest": {
  5823. "ml/json-ld": "~1.0"
  5824. },
  5825. "type": "library",
  5826. "autoload": {
  5827. "psr-0": {
  5828. "EasyRdf_": "lib/"
  5829. }
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "BSD-3-Clause"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "Nicholas Humfrey",
  5838. "email": "njh@aelius.com",
  5839. "homepage": "http://www.aelius.com/njh/",
  5840. "role": "Developer"
  5841. },
  5842. {
  5843. "name": "Alexey Zakhlestin",
  5844. "email": "indeyets@gmail.com",
  5845. "role": "Developer"
  5846. }
  5847. ],
  5848. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5849. "homepage": "http://www.easyrdf.org/",
  5850. "keywords": [
  5851. "Linked Data",
  5852. "RDF",
  5853. "Semantic Web",
  5854. "Turtle",
  5855. "rdfa",
  5856. "sparql"
  5857. ],
  5858. "support": {
  5859. "forum": "http://groups.google.com/group/easyrdf/",
  5860. "irc": "irc://chat.freenode.net/easyrdf",
  5861. "issues": "http://github.com/njh/easyrdf/issues",
  5862. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5863. },
  5864. "time": "2015-02-27T09:45:49+00:00"
  5865. },
  5866. {
  5867. "name": "egulias/email-validator",
  5868. "version": "2.1.17",
  5869. "source": {
  5870. "type": "git",
  5871. "url": "https://github.com/egulias/EmailValidator.git",
  5872. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5873. },
  5874. "dist": {
  5875. "type": "zip",
  5876. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5877. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5878. "shasum": ""
  5879. },
  5880. "require": {
  5881. "doctrine/lexer": "^1.0.1",
  5882. "php": ">=5.5",
  5883. "symfony/polyfill-intl-idn": "^1.10"
  5884. },
  5885. "require-dev": {
  5886. "dominicsayers/isemail": "^3.0.7",
  5887. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5888. "satooshi/php-coveralls": "^1.0.1"
  5889. },
  5890. "suggest": {
  5891. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5892. },
  5893. "type": "library",
  5894. "extra": {
  5895. "branch-alias": {
  5896. "dev-master": "2.1.x-dev"
  5897. }
  5898. },
  5899. "autoload": {
  5900. "psr-4": {
  5901. "Egulias\\EmailValidator\\": "EmailValidator"
  5902. }
  5903. },
  5904. "notification-url": "https://packagist.org/downloads/",
  5905. "license": [
  5906. "MIT"
  5907. ],
  5908. "authors": [
  5909. {
  5910. "name": "Eduardo Gulias Davis"
  5911. }
  5912. ],
  5913. "description": "A library for validating emails against several RFCs",
  5914. "homepage": "https://github.com/egulias/EmailValidator",
  5915. "keywords": [
  5916. "email",
  5917. "emailvalidation",
  5918. "emailvalidator",
  5919. "validation",
  5920. "validator"
  5921. ],
  5922. "support": {
  5923. "issues": "https://github.com/egulias/EmailValidator/issues",
  5924. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5925. },
  5926. "time": "2020-02-13T22:36:52+00:00"
  5927. },
  5928. {
  5929. "name": "grasmash/expander",
  5930. "version": "1.0.0",
  5931. "source": {
  5932. "type": "git",
  5933. "url": "https://github.com/grasmash/expander.git",
  5934. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5935. },
  5936. "dist": {
  5937. "type": "zip",
  5938. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5939. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5940. "shasum": ""
  5941. },
  5942. "require": {
  5943. "dflydev/dot-access-data": "^1.1.0",
  5944. "php": ">=5.4"
  5945. },
  5946. "require-dev": {
  5947. "greg-1-anderson/composer-test-scenarios": "^1",
  5948. "phpunit/phpunit": "^4|^5.5.4",
  5949. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5950. "squizlabs/php_codesniffer": "^2.7"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-master": "1.x-dev"
  5956. }
  5957. },
  5958. "autoload": {
  5959. "psr-4": {
  5960. "Grasmash\\Expander\\": "src/"
  5961. }
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Matthew Grasmick"
  5970. }
  5971. ],
  5972. "description": "Expands internal property references in PHP arrays file.",
  5973. "time": "2017-12-21T22:14:55+00:00"
  5974. },
  5975. {
  5976. "name": "grasmash/yaml-expander",
  5977. "version": "1.4.0",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/grasmash/yaml-expander.git",
  5981. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5986. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5987. "shasum": ""
  5988. },
  5989. "require": {
  5990. "dflydev/dot-access-data": "^1.1.0",
  5991. "php": ">=5.4",
  5992. "symfony/yaml": "^2.8.11|^3|^4"
  5993. },
  5994. "require-dev": {
  5995. "greg-1-anderson/composer-test-scenarios": "^1",
  5996. "phpunit/phpunit": "^4.8|^5.5.4",
  5997. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5998. "squizlabs/php_codesniffer": "^2.7"
  5999. },
  6000. "type": "library",
  6001. "extra": {
  6002. "branch-alias": {
  6003. "dev-master": "1.x-dev"
  6004. }
  6005. },
  6006. "autoload": {
  6007. "psr-4": {
  6008. "Grasmash\\YamlExpander\\": "src/"
  6009. }
  6010. },
  6011. "notification-url": "https://packagist.org/downloads/",
  6012. "license": [
  6013. "MIT"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "Matthew Grasmick"
  6018. }
  6019. ],
  6020. "description": "Expands internal property references in a yaml file.",
  6021. "time": "2017-12-16T16:06:03+00:00"
  6022. },
  6023. {
  6024. "name": "guzzlehttp/guzzle",
  6025. "version": "6.5.4",
  6026. "source": {
  6027. "type": "git",
  6028. "url": "https://github.com/guzzle/guzzle.git",
  6029. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  6030. },
  6031. "dist": {
  6032. "type": "zip",
  6033. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6034. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6035. "shasum": ""
  6036. },
  6037. "require": {
  6038. "ext-json": "*",
  6039. "guzzlehttp/promises": "^1.0",
  6040. "guzzlehttp/psr7": "^1.6.1",
  6041. "php": ">=5.5",
  6042. "symfony/polyfill-intl-idn": "1.17.0"
  6043. },
  6044. "require-dev": {
  6045. "ext-curl": "*",
  6046. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6047. "psr/log": "^1.1"
  6048. },
  6049. "suggest": {
  6050. "psr/log": "Required for using the Log middleware"
  6051. },
  6052. "type": "library",
  6053. "extra": {
  6054. "branch-alias": {
  6055. "dev-master": "6.5-dev"
  6056. }
  6057. },
  6058. "autoload": {
  6059. "files": [
  6060. "src/functions_include.php"
  6061. ],
  6062. "psr-4": {
  6063. "GuzzleHttp\\": "src/"
  6064. }
  6065. },
  6066. "notification-url": "https://packagist.org/downloads/",
  6067. "license": [
  6068. "MIT"
  6069. ],
  6070. "authors": [
  6071. {
  6072. "name": "Michael Dowling",
  6073. "email": "mtdowling@gmail.com",
  6074. "homepage": "https://github.com/mtdowling"
  6075. }
  6076. ],
  6077. "description": "Guzzle is a PHP HTTP client library",
  6078. "homepage": "http://guzzlephp.org/",
  6079. "keywords": [
  6080. "client",
  6081. "curl",
  6082. "framework",
  6083. "http",
  6084. "http client",
  6085. "rest",
  6086. "web service"
  6087. ],
  6088. "support": {
  6089. "issues": "https://github.com/guzzle/guzzle/issues",
  6090. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  6091. },
  6092. "time": "2020-05-25T19:35:05+00:00"
  6093. },
  6094. {
  6095. "name": "guzzlehttp/promises",
  6096. "version": "v1.3.1",
  6097. "source": {
  6098. "type": "git",
  6099. "url": "https://github.com/guzzle/promises.git",
  6100. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6101. },
  6102. "dist": {
  6103. "type": "zip",
  6104. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6105. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6106. "shasum": ""
  6107. },
  6108. "require": {
  6109. "php": ">=5.5.0"
  6110. },
  6111. "require-dev": {
  6112. "phpunit/phpunit": "^4.0"
  6113. },
  6114. "type": "library",
  6115. "extra": {
  6116. "branch-alias": {
  6117. "dev-master": "1.4-dev"
  6118. }
  6119. },
  6120. "autoload": {
  6121. "files": [
  6122. "src/functions_include.php"
  6123. ],
  6124. "psr-4": {
  6125. "GuzzleHttp\\Promise\\": "src/"
  6126. }
  6127. },
  6128. "notification-url": "https://packagist.org/downloads/",
  6129. "license": [
  6130. "MIT"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "Michael Dowling",
  6135. "email": "mtdowling@gmail.com",
  6136. "homepage": "https://github.com/mtdowling"
  6137. }
  6138. ],
  6139. "description": "Guzzle promises library",
  6140. "keywords": [
  6141. "promise"
  6142. ],
  6143. "support": {
  6144. "issues": "https://github.com/guzzle/promises/issues",
  6145. "source": "https://github.com/guzzle/promises/tree/master"
  6146. },
  6147. "time": "2016-12-20T10:07:11+00:00"
  6148. },
  6149. {
  6150. "name": "guzzlehttp/psr7",
  6151. "version": "1.6.1",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://github.com/guzzle/psr7.git",
  6155. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6160. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6161. "shasum": ""
  6162. },
  6163. "require": {
  6164. "php": ">=5.4.0",
  6165. "psr/http-message": "~1.0",
  6166. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6167. },
  6168. "provide": {
  6169. "psr/http-message-implementation": "1.0"
  6170. },
  6171. "require-dev": {
  6172. "ext-zlib": "*",
  6173. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6174. },
  6175. "suggest": {
  6176. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6177. },
  6178. "type": "library",
  6179. "extra": {
  6180. "branch-alias": {
  6181. "dev-master": "1.6-dev"
  6182. }
  6183. },
  6184. "autoload": {
  6185. "files": [
  6186. "src/functions_include.php"
  6187. ],
  6188. "psr-4": {
  6189. "GuzzleHttp\\Psr7\\": "src/"
  6190. }
  6191. },
  6192. "notification-url": "https://packagist.org/downloads/",
  6193. "license": [
  6194. "MIT"
  6195. ],
  6196. "authors": [
  6197. {
  6198. "name": "Michael Dowling",
  6199. "email": "mtdowling@gmail.com",
  6200. "homepage": "https://github.com/mtdowling"
  6201. },
  6202. {
  6203. "name": "Tobias Schultze",
  6204. "homepage": "https://github.com/Tobion"
  6205. }
  6206. ],
  6207. "description": "PSR-7 message implementation that also provides common utility methods",
  6208. "keywords": [
  6209. "http",
  6210. "message",
  6211. "psr-7",
  6212. "request",
  6213. "response",
  6214. "stream",
  6215. "uri",
  6216. "url"
  6217. ],
  6218. "support": {
  6219. "issues": "https://github.com/guzzle/psr7/issues",
  6220. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6221. },
  6222. "time": "2019-07-01T23:21:34+00:00"
  6223. },
  6224. {
  6225. "name": "kint-php/kint",
  6226. "version": "5.1.1",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://github.com/kint-php/kint.git",
  6230. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6235. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6236. "shasum": ""
  6237. },
  6238. "require": {
  6239. "php": ">=7.1"
  6240. },
  6241. "require-dev": {
  6242. "friendsofphp/php-cs-fixer": "^3",
  6243. "phpspec/prophecy-phpunit": "^2",
  6244. "phpunit/phpunit": "^9",
  6245. "seld/phar-utils": "^1",
  6246. "symfony/finder": ">=4.0",
  6247. "vimeo/psalm": "^5"
  6248. },
  6249. "suggest": {
  6250. "kint-php/kint-helpers": "Provides extra helper functions",
  6251. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6252. },
  6253. "type": "library",
  6254. "autoload": {
  6255. "files": [
  6256. "init.php"
  6257. ],
  6258. "psr-4": {
  6259. "Kint\\": "src/"
  6260. }
  6261. },
  6262. "notification-url": "https://packagist.org/downloads/",
  6263. "license": [
  6264. "MIT"
  6265. ],
  6266. "authors": [
  6267. {
  6268. "name": "Jonathan Vollebregt",
  6269. "homepage": "https://github.com/jnvsor"
  6270. },
  6271. {
  6272. "name": "Contributors",
  6273. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6274. }
  6275. ],
  6276. "description": "Kint - debugging tool for PHP developers",
  6277. "homepage": "https://kint-php.github.io/kint/",
  6278. "keywords": [
  6279. "debug",
  6280. "kint",
  6281. "php"
  6282. ],
  6283. "support": {
  6284. "issues": "https://github.com/kint-php/kint/issues",
  6285. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6286. },
  6287. "time": "2024-04-26T14:20:09+00:00"
  6288. },
  6289. {
  6290. "name": "laminas/laminas-diactoros",
  6291. "version": "1.8.7p2",
  6292. "source": {
  6293. "type": "git",
  6294. "url": "https://github.com/laminas/laminas-diactoros.git",
  6295. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6296. },
  6297. "dist": {
  6298. "type": "zip",
  6299. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6300. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6301. "shasum": ""
  6302. },
  6303. "require": {
  6304. "laminas/laminas-zendframework-bridge": "^1.0",
  6305. "php": "^5.6 || ^7.0",
  6306. "psr/http-message": "^1.0"
  6307. },
  6308. "provide": {
  6309. "psr/http-message-implementation": "1.0"
  6310. },
  6311. "replace": {
  6312. "zendframework/zend-diactoros": "~1.8.7.0"
  6313. },
  6314. "require-dev": {
  6315. "ext-dom": "*",
  6316. "ext-libxml": "*",
  6317. "laminas/laminas-coding-standard": "~1.0",
  6318. "php-http/psr7-integration-tests": "dev-master",
  6319. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6320. },
  6321. "type": "library",
  6322. "extra": {
  6323. "branch-alias": {
  6324. "dev-release-1.8": "1.8.x-dev"
  6325. }
  6326. },
  6327. "autoload": {
  6328. "files": [
  6329. "src/functions/create_uploaded_file.php",
  6330. "src/functions/marshal_headers_from_sapi.php",
  6331. "src/functions/marshal_method_from_sapi.php",
  6332. "src/functions/marshal_protocol_version_from_sapi.php",
  6333. "src/functions/marshal_uri_from_sapi.php",
  6334. "src/functions/normalize_server.php",
  6335. "src/functions/normalize_uploaded_files.php",
  6336. "src/functions/parse_cookie_header.php",
  6337. "src/functions/create_uploaded_file.legacy.php",
  6338. "src/functions/marshal_headers_from_sapi.legacy.php",
  6339. "src/functions/marshal_method_from_sapi.legacy.php",
  6340. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6341. "src/functions/marshal_uri_from_sapi.legacy.php",
  6342. "src/functions/normalize_server.legacy.php",
  6343. "src/functions/normalize_uploaded_files.legacy.php",
  6344. "src/functions/parse_cookie_header.legacy.php"
  6345. ],
  6346. "psr-4": {
  6347. "Laminas\\Diactoros\\": "src/"
  6348. }
  6349. },
  6350. "notification-url": "https://packagist.org/downloads/",
  6351. "license": [
  6352. "BSD-3-Clause"
  6353. ],
  6354. "description": "PSR HTTP Message implementations",
  6355. "homepage": "https://laminas.dev",
  6356. "keywords": [
  6357. "http",
  6358. "laminas",
  6359. "psr",
  6360. "psr-7"
  6361. ],
  6362. "support": {
  6363. "chat": "https://laminas.dev/chat",
  6364. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6365. "forum": "https://discourse.laminas.dev",
  6366. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6367. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6368. "source": "https://github.com/laminas/laminas-diactoros"
  6369. },
  6370. "time": "2020-03-23T15:28:28+00:00"
  6371. },
  6372. {
  6373. "name": "laminas/laminas-escaper",
  6374. "version": "2.6.1",
  6375. "source": {
  6376. "type": "git",
  6377. "url": "https://github.com/laminas/laminas-escaper.git",
  6378. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6379. },
  6380. "dist": {
  6381. "type": "zip",
  6382. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6383. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6384. "shasum": ""
  6385. },
  6386. "require": {
  6387. "laminas/laminas-zendframework-bridge": "^1.0",
  6388. "php": "^5.6 || ^7.0"
  6389. },
  6390. "replace": {
  6391. "zendframework/zend-escaper": "self.version"
  6392. },
  6393. "require-dev": {
  6394. "laminas/laminas-coding-standard": "~1.0.0",
  6395. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6396. },
  6397. "type": "library",
  6398. "extra": {
  6399. "branch-alias": {
  6400. "dev-master": "2.6.x-dev",
  6401. "dev-develop": "2.7.x-dev"
  6402. }
  6403. },
  6404. "autoload": {
  6405. "psr-4": {
  6406. "Laminas\\Escaper\\": "src/"
  6407. }
  6408. },
  6409. "notification-url": "https://packagist.org/downloads/",
  6410. "license": [
  6411. "BSD-3-Clause"
  6412. ],
  6413. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6414. "homepage": "https://laminas.dev",
  6415. "keywords": [
  6416. "escaper",
  6417. "laminas"
  6418. ],
  6419. "support": {
  6420. "chat": "https://laminas.dev/chat",
  6421. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6422. "forum": "https://discourse.laminas.dev",
  6423. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6424. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6425. "source": "https://github.com/laminas/laminas-escaper"
  6426. },
  6427. "time": "2019-12-31T16:43:30+00:00"
  6428. },
  6429. {
  6430. "name": "laminas/laminas-feed",
  6431. "version": "2.12.2",
  6432. "source": {
  6433. "type": "git",
  6434. "url": "https://github.com/laminas/laminas-feed.git",
  6435. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6436. },
  6437. "dist": {
  6438. "type": "zip",
  6439. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6440. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6441. "shasum": ""
  6442. },
  6443. "require": {
  6444. "ext-dom": "*",
  6445. "ext-libxml": "*",
  6446. "laminas/laminas-escaper": "^2.5.2",
  6447. "laminas/laminas-stdlib": "^3.2.1",
  6448. "laminas/laminas-zendframework-bridge": "^1.0",
  6449. "php": "^5.6 || ^7.0"
  6450. },
  6451. "replace": {
  6452. "zendframework/zend-feed": "^2.12.0"
  6453. },
  6454. "require-dev": {
  6455. "laminas/laminas-cache": "^2.7.2",
  6456. "laminas/laminas-coding-standard": "~1.0.0",
  6457. "laminas/laminas-db": "^2.8.2",
  6458. "laminas/laminas-http": "^2.7",
  6459. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6460. "laminas/laminas-validator": "^2.10.1",
  6461. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6462. "psr/http-message": "^1.0.1"
  6463. },
  6464. "suggest": {
  6465. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6466. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6467. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6468. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6469. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6470. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6471. },
  6472. "type": "library",
  6473. "extra": {
  6474. "branch-alias": {
  6475. "dev-master": "2.12.x-dev",
  6476. "dev-develop": "2.13.x-dev"
  6477. }
  6478. },
  6479. "autoload": {
  6480. "psr-4": {
  6481. "Laminas\\Feed\\": "src/"
  6482. }
  6483. },
  6484. "notification-url": "https://packagist.org/downloads/",
  6485. "license": [
  6486. "BSD-3-Clause"
  6487. ],
  6488. "description": "provides functionality for consuming RSS and Atom feeds",
  6489. "homepage": "https://laminas.dev",
  6490. "keywords": [
  6491. "feed",
  6492. "laminas"
  6493. ],
  6494. "support": {
  6495. "chat": "https://laminas.dev/chat",
  6496. "docs": "https://docs.laminas.dev/laminas-feed/",
  6497. "forum": "https://discourse.laminas.dev",
  6498. "issues": "https://github.com/laminas/laminas-feed/issues",
  6499. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6500. "source": "https://github.com/laminas/laminas-feed"
  6501. },
  6502. "time": "2020-03-29T12:36:29+00:00"
  6503. },
  6504. {
  6505. "name": "laminas/laminas-servicemanager",
  6506. "version": "3.17.0",
  6507. "source": {
  6508. "type": "git",
  6509. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6510. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6511. },
  6512. "dist": {
  6513. "type": "zip",
  6514. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6515. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6516. "shasum": ""
  6517. },
  6518. "require": {
  6519. "laminas/laminas-stdlib": "^3.2.1",
  6520. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6521. "psr/container": "^1.0"
  6522. },
  6523. "conflict": {
  6524. "ext-psr": "*",
  6525. "laminas/laminas-code": "<3.3.1",
  6526. "zendframework/zend-code": "<3.3.1",
  6527. "zendframework/zend-servicemanager": "*"
  6528. },
  6529. "provide": {
  6530. "psr/container-implementation": "^1.0"
  6531. },
  6532. "replace": {
  6533. "container-interop/container-interop": "^1.2.0"
  6534. },
  6535. "require-dev": {
  6536. "composer/package-versions-deprecated": "^1.0",
  6537. "laminas/laminas-coding-standard": "~2.4.0",
  6538. "laminas/laminas-container-config-test": "^0.7",
  6539. "laminas/laminas-dependency-plugin": "^2.1.2",
  6540. "mikey179/vfsstream": "^1.6.10@alpha",
  6541. "ocramius/proxy-manager": "^2.11",
  6542. "phpbench/phpbench": "^1.1",
  6543. "phpspec/prophecy-phpunit": "^2.0",
  6544. "phpunit/phpunit": "^9.5.5",
  6545. "psalm/plugin-phpunit": "^0.17.0",
  6546. "vimeo/psalm": "^4.8"
  6547. },
  6548. "suggest": {
  6549. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6550. },
  6551. "bin": [
  6552. "bin/generate-deps-for-config-factory",
  6553. "bin/generate-factory-for-class"
  6554. ],
  6555. "type": "library",
  6556. "autoload": {
  6557. "files": [
  6558. "src/autoload.php"
  6559. ],
  6560. "psr-4": {
  6561. "Laminas\\ServiceManager\\": "src/"
  6562. }
  6563. },
  6564. "notification-url": "https://packagist.org/downloads/",
  6565. "license": [
  6566. "BSD-3-Clause"
  6567. ],
  6568. "description": "Factory-Driven Dependency Injection Container",
  6569. "homepage": "https://laminas.dev",
  6570. "keywords": [
  6571. "PSR-11",
  6572. "dependency-injection",
  6573. "di",
  6574. "dic",
  6575. "laminas",
  6576. "service-manager",
  6577. "servicemanager"
  6578. ],
  6579. "support": {
  6580. "chat": "https://laminas.dev/chat",
  6581. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6582. "forum": "https://discourse.laminas.dev",
  6583. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6584. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6585. "source": "https://github.com/laminas/laminas-servicemanager"
  6586. },
  6587. "funding": [
  6588. {
  6589. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6590. "type": "community_bridge"
  6591. }
  6592. ],
  6593. "time": "2022-09-22T11:33:46+00:00"
  6594. },
  6595. {
  6596. "name": "laminas/laminas-stdlib",
  6597. "version": "3.2.1",
  6598. "source": {
  6599. "type": "git",
  6600. "url": "https://github.com/laminas/laminas-stdlib.git",
  6601. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6602. },
  6603. "dist": {
  6604. "type": "zip",
  6605. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6606. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6607. "shasum": ""
  6608. },
  6609. "require": {
  6610. "laminas/laminas-zendframework-bridge": "^1.0",
  6611. "php": "^5.6 || ^7.0"
  6612. },
  6613. "replace": {
  6614. "zendframework/zend-stdlib": "self.version"
  6615. },
  6616. "require-dev": {
  6617. "laminas/laminas-coding-standard": "~1.0.0",
  6618. "phpbench/phpbench": "^0.13",
  6619. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6620. },
  6621. "type": "library",
  6622. "extra": {
  6623. "branch-alias": {
  6624. "dev-master": "3.2.x-dev",
  6625. "dev-develop": "3.3.x-dev"
  6626. }
  6627. },
  6628. "autoload": {
  6629. "psr-4": {
  6630. "Laminas\\Stdlib\\": "src/"
  6631. }
  6632. },
  6633. "notification-url": "https://packagist.org/downloads/",
  6634. "license": [
  6635. "BSD-3-Clause"
  6636. ],
  6637. "description": "SPL extensions, array utilities, error handlers, and more",
  6638. "homepage": "https://laminas.dev",
  6639. "keywords": [
  6640. "laminas",
  6641. "stdlib"
  6642. ],
  6643. "support": {
  6644. "chat": "https://laminas.dev/chat",
  6645. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6646. "forum": "https://discourse.laminas.dev",
  6647. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6648. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6649. "source": "https://github.com/laminas/laminas-stdlib"
  6650. },
  6651. "time": "2019-12-31T17:51:15+00:00"
  6652. },
  6653. {
  6654. "name": "laminas/laminas-text",
  6655. "version": "2.8.1",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/laminas/laminas-text.git",
  6659. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6664. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6665. "shasum": ""
  6666. },
  6667. "require": {
  6668. "laminas/laminas-servicemanager": "^3.4",
  6669. "laminas/laminas-stdlib": "^3.1",
  6670. "laminas/laminas-zendframework-bridge": "^1.0",
  6671. "php": "^7.3 || ~8.0.0"
  6672. },
  6673. "replace": {
  6674. "zendframework/zend-text": "^2.7.1"
  6675. },
  6676. "require-dev": {
  6677. "laminas/laminas-coding-standard": "~1.0.0",
  6678. "laminas/laminas-config": "^3.4",
  6679. "phpunit/phpunit": "^9.3"
  6680. },
  6681. "type": "library",
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Laminas\\Text\\": "src/"
  6685. }
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "BSD-3-Clause"
  6690. ],
  6691. "description": "Create FIGlets and text-based tables",
  6692. "homepage": "https://laminas.dev",
  6693. "keywords": [
  6694. "laminas",
  6695. "text"
  6696. ],
  6697. "support": {
  6698. "chat": "https://laminas.dev/chat",
  6699. "docs": "https://docs.laminas.dev/laminas-text/",
  6700. "forum": "https://discourse.laminas.dev",
  6701. "issues": "https://github.com/laminas/laminas-text/issues",
  6702. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6703. "source": "https://github.com/laminas/laminas-text"
  6704. },
  6705. "funding": [
  6706. {
  6707. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6708. "type": "community_bridge"
  6709. }
  6710. ],
  6711. "time": "2021-02-17T21:24:58+00:00"
  6712. },
  6713. {
  6714. "name": "laminas/laminas-zendframework-bridge",
  6715. "version": "1.0.4",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6719. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6724. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6725. "shasum": ""
  6726. },
  6727. "require": {
  6728. "php": "^5.6 || ^7.0"
  6729. },
  6730. "require-dev": {
  6731. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6732. "squizlabs/php_codesniffer": "^3.5"
  6733. },
  6734. "type": "library",
  6735. "extra": {
  6736. "branch-alias": {
  6737. "dev-master": "1.0.x-dev",
  6738. "dev-develop": "1.1.x-dev"
  6739. },
  6740. "laminas": {
  6741. "module": "Laminas\\ZendFrameworkBridge"
  6742. }
  6743. },
  6744. "autoload": {
  6745. "files": [
  6746. "src/autoload.php"
  6747. ],
  6748. "psr-4": {
  6749. "Laminas\\ZendFrameworkBridge\\": "src//"
  6750. }
  6751. },
  6752. "notification-url": "https://packagist.org/downloads/",
  6753. "license": [
  6754. "BSD-3-Clause"
  6755. ],
  6756. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6757. "keywords": [
  6758. "ZendFramework",
  6759. "autoloading",
  6760. "laminas",
  6761. "zf"
  6762. ],
  6763. "support": {
  6764. "forum": "https://discourse.laminas.dev/",
  6765. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6766. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6767. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6768. },
  6769. "funding": [
  6770. {
  6771. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6772. "type": "community_bridge"
  6773. }
  6774. ],
  6775. "abandoned": true,
  6776. "time": "2020-05-20T16:45:56+00:00"
  6777. },
  6778. {
  6779. "name": "league/container",
  6780. "version": "2.4.1",
  6781. "source": {
  6782. "type": "git",
  6783. "url": "https://github.com/thephpleague/container.git",
  6784. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6785. },
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6789. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "container-interop/container-interop": "^1.2",
  6794. "php": "^5.4.0 || ^7.0"
  6795. },
  6796. "provide": {
  6797. "container-interop/container-interop-implementation": "^1.2",
  6798. "psr/container-implementation": "^1.0"
  6799. },
  6800. "replace": {
  6801. "orno/di": "~2.0"
  6802. },
  6803. "require-dev": {
  6804. "phpunit/phpunit": "4.*"
  6805. },
  6806. "type": "library",
  6807. "extra": {
  6808. "branch-alias": {
  6809. "dev-2.x": "2.x-dev",
  6810. "dev-1.x": "1.x-dev"
  6811. }
  6812. },
  6813. "autoload": {
  6814. "psr-4": {
  6815. "League\\Container\\": "src"
  6816. }
  6817. },
  6818. "notification-url": "https://packagist.org/downloads/",
  6819. "license": [
  6820. "MIT"
  6821. ],
  6822. "authors": [
  6823. {
  6824. "name": "Phil Bennett",
  6825. "email": "philipobenito@gmail.com",
  6826. "homepage": "http://www.philipobenito.com",
  6827. "role": "Developer"
  6828. }
  6829. ],
  6830. "description": "A fast and intuitive dependency injection container.",
  6831. "homepage": "https://github.com/thephpleague/container",
  6832. "keywords": [
  6833. "container",
  6834. "dependency",
  6835. "di",
  6836. "injection",
  6837. "league",
  6838. "provider",
  6839. "service"
  6840. ],
  6841. "time": "2017-05-10T09:20:27+00:00"
  6842. },
  6843. {
  6844. "name": "masterminds/html5",
  6845. "version": "2.3.0",
  6846. "source": {
  6847. "type": "git",
  6848. "url": "https://github.com/Masterminds/html5-php.git",
  6849. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6850. },
  6851. "dist": {
  6852. "type": "zip",
  6853. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6854. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6855. "shasum": ""
  6856. },
  6857. "require": {
  6858. "ext-libxml": "*",
  6859. "php": ">=5.3.0"
  6860. },
  6861. "require-dev": {
  6862. "phpunit/phpunit": "4.*",
  6863. "sami/sami": "~2.0",
  6864. "satooshi/php-coveralls": "1.0.*"
  6865. },
  6866. "type": "library",
  6867. "extra": {
  6868. "branch-alias": {
  6869. "dev-master": "2.2-dev"
  6870. }
  6871. },
  6872. "autoload": {
  6873. "psr-4": {
  6874. "Masterminds\\": "src"
  6875. }
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "MIT"
  6880. ],
  6881. "authors": [
  6882. {
  6883. "name": "Matt Butcher",
  6884. "email": "technosophos@gmail.com"
  6885. },
  6886. {
  6887. "name": "Asmir Mustafic",
  6888. "email": "goetas@gmail.com"
  6889. },
  6890. {
  6891. "name": "Matt Farina",
  6892. "email": "matt@mattfarina.com"
  6893. }
  6894. ],
  6895. "description": "An HTML5 parser and serializer.",
  6896. "homepage": "http://masterminds.github.io/html5-php",
  6897. "keywords": [
  6898. "HTML5",
  6899. "dom",
  6900. "html",
  6901. "parser",
  6902. "querypath",
  6903. "serializer",
  6904. "xml"
  6905. ],
  6906. "support": {
  6907. "issues": "https://github.com/Masterminds/html5-php/issues",
  6908. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6909. },
  6910. "time": "2017-09-04T12:26:28+00:00"
  6911. },
  6912. {
  6913. "name": "mathieuviossat/arraytotexttable",
  6914. "version": "v1.0.8",
  6915. "source": {
  6916. "type": "git",
  6917. "url": "https://github.com/viossat/arraytotexttable.git",
  6918. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6919. },
  6920. "dist": {
  6921. "type": "zip",
  6922. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6923. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6924. "shasum": ""
  6925. },
  6926. "require": {
  6927. "laminas/laminas-text": "^2.7",
  6928. "php": ">=5.3.0"
  6929. },
  6930. "type": "library",
  6931. "autoload": {
  6932. "psr-4": {
  6933. "MathieuViossat\\Util\\": "src/"
  6934. }
  6935. },
  6936. "notification-url": "https://packagist.org/downloads/",
  6937. "license": [
  6938. "MIT"
  6939. ],
  6940. "authors": [
  6941. {
  6942. "name": "Mathieu Viossat",
  6943. "email": "mathieu@viossat.fr",
  6944. "homepage": "https://viossat.fr"
  6945. }
  6946. ],
  6947. "description": "Display arrays in terminal",
  6948. "homepage": "https://github.com/viossat/arraytotexttable",
  6949. "keywords": [
  6950. "array",
  6951. "ascii",
  6952. "table",
  6953. "terminal",
  6954. "text",
  6955. "unicode"
  6956. ],
  6957. "support": {
  6958. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6959. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6960. },
  6961. "time": "2020-06-23T17:14:22+00:00"
  6962. },
  6963. {
  6964. "name": "mglaman/phpstan-drupal",
  6965. "version": "1.2.1",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6969. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6974. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6975. "shasum": ""
  6976. },
  6977. "require": {
  6978. "php": "^7.4 || ^8.0",
  6979. "phpstan/phpstan": "^1.10.1",
  6980. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6981. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6982. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6983. "webflo/drupal-finder": "^1.2"
  6984. },
  6985. "require-dev": {
  6986. "behat/mink": "^1.8",
  6987. "composer/installers": "^1.9",
  6988. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6989. "drush/drush": "^9.6 || ^10.0 || ^11",
  6990. "phpstan/extension-installer": "^1.1",
  6991. "phpstan/phpstan-strict-rules": "^1.0",
  6992. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6993. "slevomat/coding-standard": "^7.1",
  6994. "squizlabs/php_codesniffer": "^3.3",
  6995. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  6996. },
  6997. "suggest": {
  6998. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6999. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  7000. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  7001. },
  7002. "type": "phpstan-extension",
  7003. "extra": {
  7004. "branch-alias": {
  7005. "dev-main": "1.0-dev"
  7006. },
  7007. "installer-paths": {
  7008. "tests/fixtures/drupal/core": [
  7009. "type:drupal-core"
  7010. ],
  7011. "tests/fixtures/drupal/libraries/{$name}": [
  7012. "type:drupal-library"
  7013. ],
  7014. "tests/fixtures/drupal/modules/contrib/{$name}": [
  7015. "type:drupal-module"
  7016. ],
  7017. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  7018. "type:drupal-profile"
  7019. ],
  7020. "tests/fixtures/drupal/themes/contrib/{$name}": [
  7021. "type:drupal-theme"
  7022. ]
  7023. },
  7024. "phpstan": {
  7025. "includes": [
  7026. "extension.neon",
  7027. "rules.neon"
  7028. ]
  7029. }
  7030. },
  7031. "autoload": {
  7032. "psr-4": {
  7033. "mglaman\\PHPStanDrupal\\": "src/"
  7034. }
  7035. },
  7036. "notification-url": "https://packagist.org/downloads/",
  7037. "license": [
  7038. "MIT"
  7039. ],
  7040. "authors": [
  7041. {
  7042. "name": "Matt Glaman",
  7043. "email": "nmd.matt@gmail.com"
  7044. }
  7045. ],
  7046. "description": "Drupal extension and rules for PHPStan",
  7047. "support": {
  7048. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  7049. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  7050. },
  7051. "funding": [
  7052. {
  7053. "url": "https://github.com/mglaman",
  7054. "type": "github"
  7055. },
  7056. {
  7057. "url": "https://opencollective.com/phpstan-drupal",
  7058. "type": "open_collective"
  7059. },
  7060. {
  7061. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  7062. "type": "tidelift"
  7063. }
  7064. ],
  7065. "time": "2023-11-03T13:17:28+00:00"
  7066. },
  7067. {
  7068. "name": "nikic/php-parser",
  7069. "version": "v4.4.0",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://github.com/nikic/PHP-Parser.git",
  7073. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7078. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7079. "shasum": ""
  7080. },
  7081. "require": {
  7082. "ext-tokenizer": "*",
  7083. "php": ">=7.0"
  7084. },
  7085. "require-dev": {
  7086. "ircmaxell/php-yacc": "0.0.5",
  7087. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7088. },
  7089. "bin": [
  7090. "bin/php-parse"
  7091. ],
  7092. "type": "library",
  7093. "extra": {
  7094. "branch-alias": {
  7095. "dev-master": "4.3-dev"
  7096. }
  7097. },
  7098. "autoload": {
  7099. "psr-4": {
  7100. "PhpParser\\": "lib/PhpParser"
  7101. }
  7102. },
  7103. "notification-url": "https://packagist.org/downloads/",
  7104. "license": [
  7105. "BSD-3-Clause"
  7106. ],
  7107. "authors": [
  7108. {
  7109. "name": "Nikita Popov"
  7110. }
  7111. ],
  7112. "description": "A PHP parser written in PHP",
  7113. "keywords": [
  7114. "parser",
  7115. "php"
  7116. ],
  7117. "time": "2020-04-10T16:34:50+00:00"
  7118. },
  7119. {
  7120. "name": "paragonie/random_compat",
  7121. "version": "v9.99.99",
  7122. "source": {
  7123. "type": "git",
  7124. "url": "https://github.com/paragonie/random_compat.git",
  7125. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7126. },
  7127. "dist": {
  7128. "type": "zip",
  7129. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7130. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7131. "shasum": ""
  7132. },
  7133. "require": {
  7134. "php": "^7"
  7135. },
  7136. "require-dev": {
  7137. "phpunit/phpunit": "4.*|5.*",
  7138. "vimeo/psalm": "^1"
  7139. },
  7140. "suggest": {
  7141. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7142. },
  7143. "type": "library",
  7144. "notification-url": "https://packagist.org/downloads/",
  7145. "license": [
  7146. "MIT"
  7147. ],
  7148. "authors": [
  7149. {
  7150. "name": "Paragon Initiative Enterprises",
  7151. "email": "security@paragonie.com",
  7152. "homepage": "https://paragonie.com"
  7153. }
  7154. ],
  7155. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7156. "keywords": [
  7157. "csprng",
  7158. "polyfill",
  7159. "pseudorandom",
  7160. "random"
  7161. ],
  7162. "support": {
  7163. "email": "info@paragonie.com",
  7164. "issues": "https://github.com/paragonie/random_compat/issues",
  7165. "source": "https://github.com/paragonie/random_compat"
  7166. },
  7167. "time": "2018-07-02T15:55:56+00:00"
  7168. },
  7169. {
  7170. "name": "pear/archive_tar",
  7171. "version": "1.4.14",
  7172. "source": {
  7173. "type": "git",
  7174. "url": "https://github.com/pear/Archive_Tar.git",
  7175. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7176. },
  7177. "dist": {
  7178. "type": "zip",
  7179. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7180. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7181. "shasum": ""
  7182. },
  7183. "require": {
  7184. "pear/pear-core-minimal": "^1.10.0alpha2",
  7185. "php": ">=5.2.0"
  7186. },
  7187. "require-dev": {
  7188. "phpunit/phpunit": "*"
  7189. },
  7190. "suggest": {
  7191. "ext-bz2": "Bz2 compression support.",
  7192. "ext-xz": "Lzma2 compression support.",
  7193. "ext-zlib": "Gzip compression support."
  7194. },
  7195. "type": "library",
  7196. "extra": {
  7197. "branch-alias": {
  7198. "dev-master": "1.4.x-dev"
  7199. }
  7200. },
  7201. "autoload": {
  7202. "psr-0": {
  7203. "Archive_Tar": ""
  7204. }
  7205. },
  7206. "notification-url": "https://packagist.org/downloads/",
  7207. "include-path": [
  7208. "./"
  7209. ],
  7210. "license": [
  7211. "BSD-3-Clause"
  7212. ],
  7213. "authors": [
  7214. {
  7215. "name": "Vincent Blavet",
  7216. "email": "vincent@phpconcept.net"
  7217. },
  7218. {
  7219. "name": "Greg Beaver",
  7220. "email": "greg@chiaraquartet.net"
  7221. },
  7222. {
  7223. "name": "Michiel Rook",
  7224. "email": "mrook@php.net"
  7225. }
  7226. ],
  7227. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7228. "homepage": "https://github.com/pear/Archive_Tar",
  7229. "keywords": [
  7230. "archive",
  7231. "tar"
  7232. ],
  7233. "support": {
  7234. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7235. "source": "https://github.com/pear/Archive_Tar"
  7236. },
  7237. "funding": [
  7238. {
  7239. "url": "https://github.com/mrook",
  7240. "type": "github"
  7241. },
  7242. {
  7243. "url": "https://www.patreon.com/michielrook",
  7244. "type": "patreon"
  7245. }
  7246. ],
  7247. "time": "2021-07-20T13:53:39+00:00"
  7248. },
  7249. {
  7250. "name": "pear/console_getopt",
  7251. "version": "v1.4.3",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/pear/Console_Getopt.git",
  7255. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7260. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7261. "shasum": ""
  7262. },
  7263. "type": "library",
  7264. "autoload": {
  7265. "psr-0": {
  7266. "Console": "./"
  7267. }
  7268. },
  7269. "notification-url": "https://packagist.org/downloads/",
  7270. "include-path": [
  7271. "./"
  7272. ],
  7273. "license": [
  7274. "BSD-2-Clause"
  7275. ],
  7276. "authors": [
  7277. {
  7278. "name": "Andrei Zmievski",
  7279. "email": "andrei@php.net",
  7280. "role": "Lead"
  7281. },
  7282. {
  7283. "name": "Stig Bakken",
  7284. "email": "stig@php.net",
  7285. "role": "Developer"
  7286. },
  7287. {
  7288. "name": "Greg Beaver",
  7289. "email": "cellog@php.net",
  7290. "role": "Helper"
  7291. }
  7292. ],
  7293. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7294. "support": {
  7295. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7296. "source": "https://github.com/pear/Console_Getopt"
  7297. },
  7298. "time": "2019-11-20T18:27:48+00:00"
  7299. },
  7300. {
  7301. "name": "pear/pear-core-minimal",
  7302. "version": "v1.10.10",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/pear/pear-core-minimal.git",
  7306. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7311. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "pear/console_getopt": "~1.4",
  7316. "pear/pear_exception": "~1.0"
  7317. },
  7318. "replace": {
  7319. "rsky/pear-core-min": "self.version"
  7320. },
  7321. "type": "library",
  7322. "autoload": {
  7323. "psr-0": {
  7324. "": "src/"
  7325. }
  7326. },
  7327. "notification-url": "https://packagist.org/downloads/",
  7328. "include-path": [
  7329. "src/"
  7330. ],
  7331. "license": [
  7332. "BSD-3-Clause"
  7333. ],
  7334. "authors": [
  7335. {
  7336. "name": "Christian Weiske",
  7337. "email": "cweiske@php.net",
  7338. "role": "Lead"
  7339. }
  7340. ],
  7341. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7342. "support": {
  7343. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7344. "source": "https://github.com/pear/pear-core-minimal"
  7345. },
  7346. "time": "2019-11-19T19:00:24+00:00"
  7347. },
  7348. {
  7349. "name": "pear/pear_exception",
  7350. "version": "v1.0.1",
  7351. "source": {
  7352. "type": "git",
  7353. "url": "https://github.com/pear/PEAR_Exception.git",
  7354. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7355. },
  7356. "dist": {
  7357. "type": "zip",
  7358. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7359. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7360. "shasum": ""
  7361. },
  7362. "require": {
  7363. "php": ">=4.4.0"
  7364. },
  7365. "require-dev": {
  7366. "phpunit/phpunit": "*"
  7367. },
  7368. "type": "class",
  7369. "extra": {
  7370. "branch-alias": {
  7371. "dev-master": "1.0.x-dev"
  7372. }
  7373. },
  7374. "autoload": {
  7375. "classmap": [
  7376. "PEAR/"
  7377. ]
  7378. },
  7379. "notification-url": "https://packagist.org/downloads/",
  7380. "include-path": [
  7381. "."
  7382. ],
  7383. "license": [
  7384. "BSD-2-Clause"
  7385. ],
  7386. "authors": [
  7387. {
  7388. "name": "Helgi Thormar",
  7389. "email": "dufuz@php.net"
  7390. },
  7391. {
  7392. "name": "Greg Beaver",
  7393. "email": "cellog@php.net"
  7394. }
  7395. ],
  7396. "description": "The PEAR Exception base class.",
  7397. "homepage": "https://github.com/pear/PEAR_Exception",
  7398. "keywords": [
  7399. "exception"
  7400. ],
  7401. "support": {
  7402. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7403. "source": "https://github.com/pear/PEAR_Exception"
  7404. },
  7405. "time": "2019-12-10T10:24:42+00:00"
  7406. },
  7407. {
  7408. "name": "phpstan/phpstan",
  7409. "version": "1.12.3",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://github.com/phpstan/phpstan.git",
  7413. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7418. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7419. "shasum": ""
  7420. },
  7421. "require": {
  7422. "php": "^7.2|^8.0"
  7423. },
  7424. "conflict": {
  7425. "phpstan/phpstan-shim": "*"
  7426. },
  7427. "bin": [
  7428. "phpstan",
  7429. "phpstan.phar"
  7430. ],
  7431. "type": "library",
  7432. "autoload": {
  7433. "files": [
  7434. "bootstrap.php"
  7435. ]
  7436. },
  7437. "notification-url": "https://packagist.org/downloads/",
  7438. "license": [
  7439. "MIT"
  7440. ],
  7441. "description": "PHPStan - PHP Static Analysis Tool",
  7442. "keywords": [
  7443. "dev",
  7444. "static analysis"
  7445. ],
  7446. "support": {
  7447. "docs": "https://phpstan.org/user-guide/getting-started",
  7448. "forum": "https://github.com/phpstan/phpstan/discussions",
  7449. "issues": "https://github.com/phpstan/phpstan/issues",
  7450. "security": "https://github.com/phpstan/phpstan/security/policy",
  7451. "source": "https://github.com/phpstan/phpstan-src"
  7452. },
  7453. "funding": [
  7454. {
  7455. "url": "https://github.com/ondrejmirtes",
  7456. "type": "github"
  7457. },
  7458. {
  7459. "url": "https://github.com/phpstan",
  7460. "type": "github"
  7461. }
  7462. ],
  7463. "time": "2024-09-09T08:10:35+00:00"
  7464. },
  7465. {
  7466. "name": "phpstan/phpstan-deprecation-rules",
  7467. "version": "1.2.1",
  7468. "source": {
  7469. "type": "git",
  7470. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7471. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7472. },
  7473. "dist": {
  7474. "type": "zip",
  7475. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7476. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7477. "shasum": ""
  7478. },
  7479. "require": {
  7480. "php": "^7.2 || ^8.0",
  7481. "phpstan/phpstan": "^1.12"
  7482. },
  7483. "require-dev": {
  7484. "php-parallel-lint/php-parallel-lint": "^1.2",
  7485. "phpstan/phpstan-phpunit": "^1.0",
  7486. "phpunit/phpunit": "^9.5"
  7487. },
  7488. "type": "phpstan-extension",
  7489. "extra": {
  7490. "phpstan": {
  7491. "includes": [
  7492. "rules.neon"
  7493. ]
  7494. }
  7495. },
  7496. "autoload": {
  7497. "psr-4": {
  7498. "PHPStan\\": "src/"
  7499. }
  7500. },
  7501. "notification-url": "https://packagist.org/downloads/",
  7502. "license": [
  7503. "MIT"
  7504. ],
  7505. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7506. "support": {
  7507. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7508. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7509. },
  7510. "time": "2024-09-11T15:52:35+00:00"
  7511. },
  7512. {
  7513. "name": "psr/container",
  7514. "version": "1.0.0",
  7515. "source": {
  7516. "type": "git",
  7517. "url": "https://github.com/php-fig/container.git",
  7518. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7519. },
  7520. "dist": {
  7521. "type": "zip",
  7522. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7523. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7524. "shasum": ""
  7525. },
  7526. "require": {
  7527. "php": ">=5.3.0"
  7528. },
  7529. "type": "library",
  7530. "extra": {
  7531. "branch-alias": {
  7532. "dev-master": "1.0.x-dev"
  7533. }
  7534. },
  7535. "autoload": {
  7536. "psr-4": {
  7537. "Psr\\Container\\": "src/"
  7538. }
  7539. },
  7540. "notification-url": "https://packagist.org/downloads/",
  7541. "license": [
  7542. "MIT"
  7543. ],
  7544. "authors": [
  7545. {
  7546. "name": "PHP-FIG",
  7547. "homepage": "http://www.php-fig.org/"
  7548. }
  7549. ],
  7550. "description": "Common Container Interface (PHP FIG PSR-11)",
  7551. "homepage": "https://github.com/php-fig/container",
  7552. "keywords": [
  7553. "PSR-11",
  7554. "container",
  7555. "container-interface",
  7556. "container-interop",
  7557. "psr"
  7558. ],
  7559. "support": {
  7560. "issues": "https://github.com/php-fig/container/issues",
  7561. "source": "https://github.com/php-fig/container/tree/master"
  7562. },
  7563. "time": "2017-02-14T16:28:37+00:00"
  7564. },
  7565. {
  7566. "name": "psr/http-message",
  7567. "version": "1.0.1",
  7568. "source": {
  7569. "type": "git",
  7570. "url": "https://github.com/php-fig/http-message.git",
  7571. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7572. },
  7573. "dist": {
  7574. "type": "zip",
  7575. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7576. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7577. "shasum": ""
  7578. },
  7579. "require": {
  7580. "php": ">=5.3.0"
  7581. },
  7582. "type": "library",
  7583. "extra": {
  7584. "branch-alias": {
  7585. "dev-master": "1.0.x-dev"
  7586. }
  7587. },
  7588. "autoload": {
  7589. "psr-4": {
  7590. "Psr\\Http\\Message\\": "src/"
  7591. }
  7592. },
  7593. "notification-url": "https://packagist.org/downloads/",
  7594. "license": [
  7595. "MIT"
  7596. ],
  7597. "authors": [
  7598. {
  7599. "name": "PHP-FIG",
  7600. "homepage": "http://www.php-fig.org/"
  7601. }
  7602. ],
  7603. "description": "Common interface for HTTP messages",
  7604. "homepage": "https://github.com/php-fig/http-message",
  7605. "keywords": [
  7606. "http",
  7607. "http-message",
  7608. "psr",
  7609. "psr-7",
  7610. "request",
  7611. "response"
  7612. ],
  7613. "support": {
  7614. "source": "https://github.com/php-fig/http-message/tree/master"
  7615. },
  7616. "time": "2016-08-06T14:39:51+00:00"
  7617. },
  7618. {
  7619. "name": "psr/log",
  7620. "version": "1.1.3",
  7621. "source": {
  7622. "type": "git",
  7623. "url": "https://github.com/php-fig/log.git",
  7624. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7625. },
  7626. "dist": {
  7627. "type": "zip",
  7628. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7629. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7630. "shasum": ""
  7631. },
  7632. "require": {
  7633. "php": ">=5.3.0"
  7634. },
  7635. "type": "library",
  7636. "extra": {
  7637. "branch-alias": {
  7638. "dev-master": "1.1.x-dev"
  7639. }
  7640. },
  7641. "autoload": {
  7642. "psr-4": {
  7643. "Psr\\Log\\": "Psr/Log/"
  7644. }
  7645. },
  7646. "notification-url": "https://packagist.org/downloads/",
  7647. "license": [
  7648. "MIT"
  7649. ],
  7650. "authors": [
  7651. {
  7652. "name": "PHP-FIG",
  7653. "homepage": "http://www.php-fig.org/"
  7654. }
  7655. ],
  7656. "description": "Common interface for logging libraries",
  7657. "homepage": "https://github.com/php-fig/log",
  7658. "keywords": [
  7659. "log",
  7660. "psr",
  7661. "psr-3"
  7662. ],
  7663. "support": {
  7664. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7665. },
  7666. "time": "2020-03-23T09:12:05+00:00"
  7667. },
  7668. {
  7669. "name": "psy/psysh",
  7670. "version": "v0.10.4",
  7671. "source": {
  7672. "type": "git",
  7673. "url": "https://github.com/bobthecow/psysh.git",
  7674. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7675. },
  7676. "dist": {
  7677. "type": "zip",
  7678. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7679. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7680. "shasum": ""
  7681. },
  7682. "require": {
  7683. "dnoegel/php-xdg-base-dir": "0.1.*",
  7684. "ext-json": "*",
  7685. "ext-tokenizer": "*",
  7686. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7687. "php": "^8.0 || ^7.0 || ^5.5.9",
  7688. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7689. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7690. },
  7691. "require-dev": {
  7692. "bamarni/composer-bin-plugin": "^1.2",
  7693. "hoa/console": "3.17.*"
  7694. },
  7695. "suggest": {
  7696. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7697. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7698. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7699. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7700. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7701. },
  7702. "bin": [
  7703. "bin/psysh"
  7704. ],
  7705. "type": "library",
  7706. "extra": {
  7707. "branch-alias": {
  7708. "dev-master": "0.10.x-dev"
  7709. }
  7710. },
  7711. "autoload": {
  7712. "files": [
  7713. "src/functions.php"
  7714. ],
  7715. "psr-4": {
  7716. "Psy\\": "src/"
  7717. }
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "MIT"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Justin Hileman",
  7726. "email": "justin@justinhileman.info",
  7727. "homepage": "http://justinhileman.com"
  7728. }
  7729. ],
  7730. "description": "An interactive shell for modern PHP.",
  7731. "homepage": "http://psysh.org",
  7732. "keywords": [
  7733. "REPL",
  7734. "console",
  7735. "interactive",
  7736. "shell"
  7737. ],
  7738. "time": "2020-05-03T19:32:03+00:00"
  7739. },
  7740. {
  7741. "name": "ralouphie/getallheaders",
  7742. "version": "3.0.3",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/ralouphie/getallheaders.git",
  7746. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7751. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7752. "shasum": ""
  7753. },
  7754. "require": {
  7755. "php": ">=5.6"
  7756. },
  7757. "require-dev": {
  7758. "php-coveralls/php-coveralls": "^2.1",
  7759. "phpunit/phpunit": "^5 || ^6.5"
  7760. },
  7761. "type": "library",
  7762. "autoload": {
  7763. "files": [
  7764. "src/getallheaders.php"
  7765. ]
  7766. },
  7767. "notification-url": "https://packagist.org/downloads/",
  7768. "license": [
  7769. "MIT"
  7770. ],
  7771. "authors": [
  7772. {
  7773. "name": "Ralph Khattar",
  7774. "email": "ralph.khattar@gmail.com"
  7775. }
  7776. ],
  7777. "description": "A polyfill for getallheaders.",
  7778. "support": {
  7779. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7780. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7781. },
  7782. "time": "2019-03-08T08:55:37+00:00"
  7783. },
  7784. {
  7785. "name": "stack/builder",
  7786. "version": "v1.0.5",
  7787. "source": {
  7788. "type": "git",
  7789. "url": "https://github.com/stackphp/builder.git",
  7790. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7791. },
  7792. "dist": {
  7793. "type": "zip",
  7794. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7795. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7796. "shasum": ""
  7797. },
  7798. "require": {
  7799. "php": ">=5.3.0",
  7800. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7801. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7802. },
  7803. "require-dev": {
  7804. "silex/silex": "~1.0"
  7805. },
  7806. "type": "library",
  7807. "extra": {
  7808. "branch-alias": {
  7809. "dev-master": "1.0-dev"
  7810. }
  7811. },
  7812. "autoload": {
  7813. "psr-0": {
  7814. "Stack": "src"
  7815. }
  7816. },
  7817. "notification-url": "https://packagist.org/downloads/",
  7818. "license": [
  7819. "MIT"
  7820. ],
  7821. "authors": [
  7822. {
  7823. "name": "Igor Wiedler",
  7824. "email": "igor@wiedler.ch"
  7825. }
  7826. ],
  7827. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7828. "keywords": [
  7829. "stack"
  7830. ],
  7831. "support": {
  7832. "issues": "https://github.com/stackphp/builder/issues",
  7833. "source": "https://github.com/stackphp/builder/tree/master"
  7834. },
  7835. "abandoned": true,
  7836. "time": "2017-11-18T14:57:29+00:00"
  7837. },
  7838. {
  7839. "name": "symfony-cmf/routing",
  7840. "version": "1.4.1",
  7841. "source": {
  7842. "type": "git",
  7843. "url": "https://github.com/symfony-cmf/routing.git",
  7844. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7845. },
  7846. "dist": {
  7847. "type": "zip",
  7848. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7849. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7850. "shasum": ""
  7851. },
  7852. "require": {
  7853. "php": "^5.3.9|^7.0",
  7854. "psr/log": "1.*",
  7855. "symfony/http-kernel": "^2.2|3.*",
  7856. "symfony/routing": "^2.2|3.*"
  7857. },
  7858. "require-dev": {
  7859. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7860. "symfony-cmf/testing": "^1.3",
  7861. "symfony/config": "^2.2|3.*",
  7862. "symfony/dependency-injection": "^2.0.5|3.*",
  7863. "symfony/event-dispatcher": "^2.1|3.*"
  7864. },
  7865. "suggest": {
  7866. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7867. },
  7868. "type": "library",
  7869. "extra": {
  7870. "branch-alias": {
  7871. "dev-master": "1.4-dev"
  7872. }
  7873. },
  7874. "autoload": {
  7875. "psr-4": {
  7876. "Symfony\\Cmf\\Component\\Routing\\": ""
  7877. }
  7878. },
  7879. "notification-url": "https://packagist.org/downloads/",
  7880. "license": [
  7881. "MIT"
  7882. ],
  7883. "authors": [
  7884. {
  7885. "name": "Symfony CMF Community",
  7886. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7887. }
  7888. ],
  7889. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7890. "homepage": "http://cmf.symfony.com",
  7891. "keywords": [
  7892. "database",
  7893. "routing"
  7894. ],
  7895. "support": {
  7896. "issues": "https://github.com/symfony-cmf/routing/issues",
  7897. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7898. },
  7899. "time": "2017-05-09T08:10:41+00:00"
  7900. },
  7901. {
  7902. "name": "symfony/class-loader",
  7903. "version": "v3.4.41",
  7904. "source": {
  7905. "type": "git",
  7906. "url": "https://github.com/symfony/class-loader.git",
  7907. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7908. },
  7909. "dist": {
  7910. "type": "zip",
  7911. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7912. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7913. "shasum": ""
  7914. },
  7915. "require": {
  7916. "php": "^5.5.9|>=7.0.8"
  7917. },
  7918. "require-dev": {
  7919. "symfony/finder": "~2.8|~3.0|~4.0",
  7920. "symfony/polyfill-apcu": "~1.1"
  7921. },
  7922. "suggest": {
  7923. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7924. },
  7925. "type": "library",
  7926. "extra": {
  7927. "branch-alias": {
  7928. "dev-master": "3.4-dev"
  7929. }
  7930. },
  7931. "autoload": {
  7932. "psr-4": {
  7933. "Symfony\\Component\\ClassLoader\\": ""
  7934. },
  7935. "exclude-from-classmap": [
  7936. "/Tests/"
  7937. ]
  7938. },
  7939. "notification-url": "https://packagist.org/downloads/",
  7940. "license": [
  7941. "MIT"
  7942. ],
  7943. "authors": [
  7944. {
  7945. "name": "Fabien Potencier",
  7946. "email": "fabien@symfony.com"
  7947. },
  7948. {
  7949. "name": "Symfony Community",
  7950. "homepage": "https://symfony.com/contributors"
  7951. }
  7952. ],
  7953. "description": "Symfony ClassLoader Component",
  7954. "homepage": "https://symfony.com",
  7955. "support": {
  7956. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7957. },
  7958. "funding": [
  7959. {
  7960. "url": "https://symfony.com/sponsor",
  7961. "type": "custom"
  7962. },
  7963. {
  7964. "url": "https://github.com/fabpot",
  7965. "type": "github"
  7966. },
  7967. {
  7968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7969. "type": "tidelift"
  7970. }
  7971. ],
  7972. "abandoned": true,
  7973. "time": "2020-03-15T09:38:08+00:00"
  7974. },
  7975. {
  7976. "name": "symfony/console",
  7977. "version": "v3.4.41",
  7978. "source": {
  7979. "type": "git",
  7980. "url": "https://github.com/symfony/console.git",
  7981. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7982. },
  7983. "dist": {
  7984. "type": "zip",
  7985. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7986. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7987. "shasum": ""
  7988. },
  7989. "require": {
  7990. "php": "^5.5.9|>=7.0.8",
  7991. "symfony/debug": "~2.8|~3.0|~4.0",
  7992. "symfony/polyfill-mbstring": "~1.0"
  7993. },
  7994. "conflict": {
  7995. "symfony/dependency-injection": "<3.4",
  7996. "symfony/process": "<3.3"
  7997. },
  7998. "provide": {
  7999. "psr/log-implementation": "1.0"
  8000. },
  8001. "require-dev": {
  8002. "psr/log": "~1.0",
  8003. "symfony/config": "~3.3|~4.0",
  8004. "symfony/dependency-injection": "~3.4|~4.0",
  8005. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8006. "symfony/lock": "~3.4|~4.0",
  8007. "symfony/process": "~3.3|~4.0"
  8008. },
  8009. "suggest": {
  8010. "psr/log": "For using the console logger",
  8011. "symfony/event-dispatcher": "",
  8012. "symfony/lock": "",
  8013. "symfony/process": ""
  8014. },
  8015. "type": "library",
  8016. "extra": {
  8017. "branch-alias": {
  8018. "dev-master": "3.4-dev"
  8019. }
  8020. },
  8021. "autoload": {
  8022. "psr-4": {
  8023. "Symfony\\Component\\Console\\": ""
  8024. },
  8025. "exclude-from-classmap": [
  8026. "/Tests/"
  8027. ]
  8028. },
  8029. "notification-url": "https://packagist.org/downloads/",
  8030. "license": [
  8031. "MIT"
  8032. ],
  8033. "authors": [
  8034. {
  8035. "name": "Fabien Potencier",
  8036. "email": "fabien@symfony.com"
  8037. },
  8038. {
  8039. "name": "Symfony Community",
  8040. "homepage": "https://symfony.com/contributors"
  8041. }
  8042. ],
  8043. "description": "Symfony Console Component",
  8044. "homepage": "https://symfony.com",
  8045. "support": {
  8046. "source": "https://github.com/symfony/console/tree/v3.4.41"
  8047. },
  8048. "funding": [
  8049. {
  8050. "url": "https://symfony.com/sponsor",
  8051. "type": "custom"
  8052. },
  8053. {
  8054. "url": "https://github.com/fabpot",
  8055. "type": "github"
  8056. },
  8057. {
  8058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8059. "type": "tidelift"
  8060. }
  8061. ],
  8062. "time": "2020-05-30T18:58:05+00:00"
  8063. },
  8064. {
  8065. "name": "symfony/debug",
  8066. "version": "v3.4.41",
  8067. "source": {
  8068. "type": "git",
  8069. "url": "https://github.com/symfony/debug.git",
  8070. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  8071. },
  8072. "dist": {
  8073. "type": "zip",
  8074. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8075. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8076. "shasum": ""
  8077. },
  8078. "require": {
  8079. "php": "^5.5.9|>=7.0.8",
  8080. "psr/log": "~1.0"
  8081. },
  8082. "conflict": {
  8083. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8084. },
  8085. "require-dev": {
  8086. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8087. },
  8088. "type": "library",
  8089. "extra": {
  8090. "branch-alias": {
  8091. "dev-master": "3.4-dev"
  8092. }
  8093. },
  8094. "autoload": {
  8095. "psr-4": {
  8096. "Symfony\\Component\\Debug\\": ""
  8097. },
  8098. "exclude-from-classmap": [
  8099. "/Tests/"
  8100. ]
  8101. },
  8102. "notification-url": "https://packagist.org/downloads/",
  8103. "license": [
  8104. "MIT"
  8105. ],
  8106. "authors": [
  8107. {
  8108. "name": "Fabien Potencier",
  8109. "email": "fabien@symfony.com"
  8110. },
  8111. {
  8112. "name": "Symfony Community",
  8113. "homepage": "https://symfony.com/contributors"
  8114. }
  8115. ],
  8116. "description": "Symfony Debug Component",
  8117. "homepage": "https://symfony.com",
  8118. "support": {
  8119. "source": "https://github.com/symfony/debug/tree/3.4"
  8120. },
  8121. "funding": [
  8122. {
  8123. "url": "https://symfony.com/sponsor",
  8124. "type": "custom"
  8125. },
  8126. {
  8127. "url": "https://github.com/fabpot",
  8128. "type": "github"
  8129. },
  8130. {
  8131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8132. "type": "tidelift"
  8133. }
  8134. ],
  8135. "abandoned": "symfony/error-handler",
  8136. "time": "2020-05-22T18:25:20+00:00"
  8137. },
  8138. {
  8139. "name": "symfony/dependency-injection",
  8140. "version": "v3.4.41",
  8141. "source": {
  8142. "type": "git",
  8143. "url": "https://github.com/symfony/dependency-injection.git",
  8144. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  8145. },
  8146. "dist": {
  8147. "type": "zip",
  8148. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  8149. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  8150. "shasum": ""
  8151. },
  8152. "require": {
  8153. "php": "^5.5.9|>=7.0.8",
  8154. "psr/container": "^1.0"
  8155. },
  8156. "conflict": {
  8157. "symfony/config": "<3.3.7",
  8158. "symfony/finder": "<3.3",
  8159. "symfony/proxy-manager-bridge": "<3.4",
  8160. "symfony/yaml": "<3.4"
  8161. },
  8162. "provide": {
  8163. "psr/container-implementation": "1.0"
  8164. },
  8165. "require-dev": {
  8166. "symfony/config": "~3.3|~4.0",
  8167. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8168. "symfony/yaml": "~3.4|~4.0"
  8169. },
  8170. "suggest": {
  8171. "symfony/config": "",
  8172. "symfony/expression-language": "For using expressions in service container configuration",
  8173. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8174. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8175. "symfony/yaml": ""
  8176. },
  8177. "type": "library",
  8178. "extra": {
  8179. "branch-alias": {
  8180. "dev-master": "3.4-dev"
  8181. }
  8182. },
  8183. "autoload": {
  8184. "psr-4": {
  8185. "Symfony\\Component\\DependencyInjection\\": ""
  8186. },
  8187. "exclude-from-classmap": [
  8188. "/Tests/"
  8189. ]
  8190. },
  8191. "notification-url": "https://packagist.org/downloads/",
  8192. "license": [
  8193. "MIT"
  8194. ],
  8195. "authors": [
  8196. {
  8197. "name": "Fabien Potencier",
  8198. "email": "fabien@symfony.com"
  8199. },
  8200. {
  8201. "name": "Symfony Community",
  8202. "homepage": "https://symfony.com/contributors"
  8203. }
  8204. ],
  8205. "description": "Symfony DependencyInjection Component",
  8206. "homepage": "https://symfony.com",
  8207. "support": {
  8208. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8209. },
  8210. "funding": [
  8211. {
  8212. "url": "https://symfony.com/sponsor",
  8213. "type": "custom"
  8214. },
  8215. {
  8216. "url": "https://github.com/fabpot",
  8217. "type": "github"
  8218. },
  8219. {
  8220. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8221. "type": "tidelift"
  8222. }
  8223. ],
  8224. "time": "2020-05-30T21:06:01+00:00"
  8225. },
  8226. {
  8227. "name": "symfony/event-dispatcher",
  8228. "version": "v3.4.41",
  8229. "source": {
  8230. "type": "git",
  8231. "url": "https://github.com/symfony/event-dispatcher.git",
  8232. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8233. },
  8234. "dist": {
  8235. "type": "zip",
  8236. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8237. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8238. "shasum": ""
  8239. },
  8240. "require": {
  8241. "php": "^5.5.9|>=7.0.8"
  8242. },
  8243. "conflict": {
  8244. "symfony/dependency-injection": "<3.3"
  8245. },
  8246. "require-dev": {
  8247. "psr/log": "~1.0",
  8248. "symfony/config": "~2.8|~3.0|~4.0",
  8249. "symfony/dependency-injection": "~3.3|~4.0",
  8250. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8251. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8252. },
  8253. "suggest": {
  8254. "symfony/dependency-injection": "",
  8255. "symfony/http-kernel": ""
  8256. },
  8257. "type": "library",
  8258. "extra": {
  8259. "branch-alias": {
  8260. "dev-master": "3.4-dev"
  8261. }
  8262. },
  8263. "autoload": {
  8264. "psr-4": {
  8265. "Symfony\\Component\\EventDispatcher\\": ""
  8266. },
  8267. "exclude-from-classmap": [
  8268. "/Tests/"
  8269. ]
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "MIT"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Fabien Potencier",
  8278. "email": "fabien@symfony.com"
  8279. },
  8280. {
  8281. "name": "Symfony Community",
  8282. "homepage": "https://symfony.com/contributors"
  8283. }
  8284. ],
  8285. "description": "Symfony EventDispatcher Component",
  8286. "homepage": "https://symfony.com",
  8287. "support": {
  8288. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8289. },
  8290. "funding": [
  8291. {
  8292. "url": "https://symfony.com/sponsor",
  8293. "type": "custom"
  8294. },
  8295. {
  8296. "url": "https://github.com/fabpot",
  8297. "type": "github"
  8298. },
  8299. {
  8300. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8301. "type": "tidelift"
  8302. }
  8303. ],
  8304. "time": "2020-05-05T15:06:23+00:00"
  8305. },
  8306. {
  8307. "name": "symfony/filesystem",
  8308. "version": "v4.4.42",
  8309. "source": {
  8310. "type": "git",
  8311. "url": "https://github.com/symfony/filesystem.git",
  8312. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8313. },
  8314. "dist": {
  8315. "type": "zip",
  8316. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8317. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8318. "shasum": ""
  8319. },
  8320. "require": {
  8321. "php": ">=7.1.3",
  8322. "symfony/polyfill-ctype": "~1.8",
  8323. "symfony/polyfill-php80": "^1.16"
  8324. },
  8325. "type": "library",
  8326. "autoload": {
  8327. "psr-4": {
  8328. "Symfony\\Component\\Filesystem\\": ""
  8329. },
  8330. "exclude-from-classmap": [
  8331. "/Tests/"
  8332. ]
  8333. },
  8334. "notification-url": "https://packagist.org/downloads/",
  8335. "license": [
  8336. "MIT"
  8337. ],
  8338. "authors": [
  8339. {
  8340. "name": "Fabien Potencier",
  8341. "email": "fabien@symfony.com"
  8342. },
  8343. {
  8344. "name": "Symfony Community",
  8345. "homepage": "https://symfony.com/contributors"
  8346. }
  8347. ],
  8348. "description": "Provides basic utilities for the filesystem",
  8349. "homepage": "https://symfony.com",
  8350. "support": {
  8351. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8352. },
  8353. "funding": [
  8354. {
  8355. "url": "https://symfony.com/sponsor",
  8356. "type": "custom"
  8357. },
  8358. {
  8359. "url": "https://github.com/fabpot",
  8360. "type": "github"
  8361. },
  8362. {
  8363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8364. "type": "tidelift"
  8365. }
  8366. ],
  8367. "time": "2022-05-20T08:49:14+00:00"
  8368. },
  8369. {
  8370. "name": "symfony/finder",
  8371. "version": "v4.4.44",
  8372. "source": {
  8373. "type": "git",
  8374. "url": "https://github.com/symfony/finder.git",
  8375. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8376. },
  8377. "dist": {
  8378. "type": "zip",
  8379. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8380. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8381. "shasum": ""
  8382. },
  8383. "require": {
  8384. "php": ">=7.1.3",
  8385. "symfony/polyfill-php80": "^1.16"
  8386. },
  8387. "type": "library",
  8388. "autoload": {
  8389. "psr-4": {
  8390. "Symfony\\Component\\Finder\\": ""
  8391. },
  8392. "exclude-from-classmap": [
  8393. "/Tests/"
  8394. ]
  8395. },
  8396. "notification-url": "https://packagist.org/downloads/",
  8397. "license": [
  8398. "MIT"
  8399. ],
  8400. "authors": [
  8401. {
  8402. "name": "Fabien Potencier",
  8403. "email": "fabien@symfony.com"
  8404. },
  8405. {
  8406. "name": "Symfony Community",
  8407. "homepage": "https://symfony.com/contributors"
  8408. }
  8409. ],
  8410. "description": "Finds files and directories via an intuitive fluent interface",
  8411. "homepage": "https://symfony.com",
  8412. "support": {
  8413. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8414. },
  8415. "funding": [
  8416. {
  8417. "url": "https://symfony.com/sponsor",
  8418. "type": "custom"
  8419. },
  8420. {
  8421. "url": "https://github.com/fabpot",
  8422. "type": "github"
  8423. },
  8424. {
  8425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8426. "type": "tidelift"
  8427. }
  8428. ],
  8429. "time": "2022-07-29T07:35:46+00:00"
  8430. },
  8431. {
  8432. "name": "symfony/http-foundation",
  8433. "version": "v3.4.41",
  8434. "source": {
  8435. "type": "git",
  8436. "url": "https://github.com/symfony/http-foundation.git",
  8437. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8438. },
  8439. "dist": {
  8440. "type": "zip",
  8441. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8442. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8443. "shasum": ""
  8444. },
  8445. "require": {
  8446. "php": "^5.5.9|>=7.0.8",
  8447. "symfony/polyfill-mbstring": "~1.1",
  8448. "symfony/polyfill-php70": "~1.6"
  8449. },
  8450. "require-dev": {
  8451. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8452. },
  8453. "type": "library",
  8454. "extra": {
  8455. "branch-alias": {
  8456. "dev-master": "3.4-dev"
  8457. }
  8458. },
  8459. "autoload": {
  8460. "psr-4": {
  8461. "Symfony\\Component\\HttpFoundation\\": ""
  8462. },
  8463. "exclude-from-classmap": [
  8464. "/Tests/"
  8465. ]
  8466. },
  8467. "notification-url": "https://packagist.org/downloads/",
  8468. "license": [
  8469. "MIT"
  8470. ],
  8471. "authors": [
  8472. {
  8473. "name": "Fabien Potencier",
  8474. "email": "fabien@symfony.com"
  8475. },
  8476. {
  8477. "name": "Symfony Community",
  8478. "homepage": "https://symfony.com/contributors"
  8479. }
  8480. ],
  8481. "description": "Symfony HttpFoundation Component",
  8482. "homepage": "https://symfony.com",
  8483. "support": {
  8484. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8485. },
  8486. "funding": [
  8487. {
  8488. "url": "https://symfony.com/sponsor",
  8489. "type": "custom"
  8490. },
  8491. {
  8492. "url": "https://github.com/fabpot",
  8493. "type": "github"
  8494. },
  8495. {
  8496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8497. "type": "tidelift"
  8498. }
  8499. ],
  8500. "time": "2020-05-16T13:15:54+00:00"
  8501. },
  8502. {
  8503. "name": "symfony/http-kernel",
  8504. "version": "v3.4.44",
  8505. "source": {
  8506. "type": "git",
  8507. "url": "https://github.com/symfony/http-kernel.git",
  8508. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8509. },
  8510. "dist": {
  8511. "type": "zip",
  8512. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8513. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8514. "shasum": ""
  8515. },
  8516. "require": {
  8517. "php": "^5.5.9|>=7.0.8",
  8518. "psr/log": "~1.0",
  8519. "symfony/debug": "^3.3.3|~4.0",
  8520. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8521. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8522. "symfony/polyfill-ctype": "~1.8",
  8523. "symfony/polyfill-php56": "~1.8"
  8524. },
  8525. "conflict": {
  8526. "symfony/config": "<2.8",
  8527. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8528. "symfony/var-dumper": "<3.3",
  8529. "twig/twig": "<1.34|<2.4,>=2"
  8530. },
  8531. "provide": {
  8532. "psr/log-implementation": "1.0"
  8533. },
  8534. "require-dev": {
  8535. "psr/cache": "~1.0",
  8536. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8537. "symfony/class-loader": "~2.8|~3.0",
  8538. "symfony/config": "~2.8|~3.0|~4.0",
  8539. "symfony/console": "~2.8|~3.0|~4.0",
  8540. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8541. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8542. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8543. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8544. "symfony/finder": "~2.8|~3.0|~4.0",
  8545. "symfony/process": "~2.8|~3.0|~4.0",
  8546. "symfony/routing": "~3.4|~4.0",
  8547. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8548. "symfony/templating": "~2.8|~3.0|~4.0",
  8549. "symfony/translation": "~2.8|~3.0|~4.0",
  8550. "symfony/var-dumper": "~3.3|~4.0"
  8551. },
  8552. "suggest": {
  8553. "symfony/browser-kit": "",
  8554. "symfony/config": "",
  8555. "symfony/console": "",
  8556. "symfony/dependency-injection": "",
  8557. "symfony/finder": "",
  8558. "symfony/var-dumper": ""
  8559. },
  8560. "type": "library",
  8561. "extra": {
  8562. "branch-alias": {
  8563. "dev-master": "3.4-dev"
  8564. }
  8565. },
  8566. "autoload": {
  8567. "psr-4": {
  8568. "Symfony\\Component\\HttpKernel\\": ""
  8569. },
  8570. "exclude-from-classmap": [
  8571. "/Tests/"
  8572. ]
  8573. },
  8574. "notification-url": "https://packagist.org/downloads/",
  8575. "license": [
  8576. "MIT"
  8577. ],
  8578. "authors": [
  8579. {
  8580. "name": "Fabien Potencier",
  8581. "email": "fabien@symfony.com"
  8582. },
  8583. {
  8584. "name": "Symfony Community",
  8585. "homepage": "https://symfony.com/contributors"
  8586. }
  8587. ],
  8588. "description": "Symfony HttpKernel Component",
  8589. "homepage": "https://symfony.com",
  8590. "support": {
  8591. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8592. },
  8593. "funding": [
  8594. {
  8595. "url": "https://symfony.com/sponsor",
  8596. "type": "custom"
  8597. },
  8598. {
  8599. "url": "https://github.com/fabpot",
  8600. "type": "github"
  8601. },
  8602. {
  8603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8604. "type": "tidelift"
  8605. }
  8606. ],
  8607. "time": "2020-08-31T05:53:42+00:00"
  8608. },
  8609. {
  8610. "name": "symfony/polyfill-ctype",
  8611. "version": "v1.17.0",
  8612. "source": {
  8613. "type": "git",
  8614. "url": "https://github.com/symfony/polyfill-ctype.git",
  8615. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8616. },
  8617. "dist": {
  8618. "type": "zip",
  8619. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8620. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8621. "shasum": ""
  8622. },
  8623. "require": {
  8624. "php": ">=5.3.3"
  8625. },
  8626. "suggest": {
  8627. "ext-ctype": "For best performance"
  8628. },
  8629. "type": "library",
  8630. "extra": {
  8631. "branch-alias": {
  8632. "dev-master": "1.17-dev"
  8633. }
  8634. },
  8635. "autoload": {
  8636. "files": [
  8637. "bootstrap.php"
  8638. ],
  8639. "psr-4": {
  8640. "Symfony\\Polyfill\\Ctype\\": ""
  8641. }
  8642. },
  8643. "notification-url": "https://packagist.org/downloads/",
  8644. "license": [
  8645. "MIT"
  8646. ],
  8647. "authors": [
  8648. {
  8649. "name": "Gert de Pagter",
  8650. "email": "BackEndTea@gmail.com"
  8651. },
  8652. {
  8653. "name": "Symfony Community",
  8654. "homepage": "https://symfony.com/contributors"
  8655. }
  8656. ],
  8657. "description": "Symfony polyfill for ctype functions",
  8658. "homepage": "https://symfony.com",
  8659. "keywords": [
  8660. "compatibility",
  8661. "ctype",
  8662. "polyfill",
  8663. "portable"
  8664. ],
  8665. "support": {
  8666. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8667. },
  8668. "funding": [
  8669. {
  8670. "url": "https://symfony.com/sponsor",
  8671. "type": "custom"
  8672. },
  8673. {
  8674. "url": "https://github.com/fabpot",
  8675. "type": "github"
  8676. },
  8677. {
  8678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8679. "type": "tidelift"
  8680. }
  8681. ],
  8682. "time": "2020-05-12T16:14:59+00:00"
  8683. },
  8684. {
  8685. "name": "symfony/polyfill-iconv",
  8686. "version": "v1.17.0",
  8687. "source": {
  8688. "type": "git",
  8689. "url": "https://github.com/symfony/polyfill-iconv.git",
  8690. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8691. },
  8692. "dist": {
  8693. "type": "zip",
  8694. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8695. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8696. "shasum": ""
  8697. },
  8698. "require": {
  8699. "php": ">=5.3.3"
  8700. },
  8701. "suggest": {
  8702. "ext-iconv": "For best performance"
  8703. },
  8704. "type": "library",
  8705. "extra": {
  8706. "branch-alias": {
  8707. "dev-master": "1.17-dev"
  8708. }
  8709. },
  8710. "autoload": {
  8711. "files": [
  8712. "bootstrap.php"
  8713. ],
  8714. "psr-4": {
  8715. "Symfony\\Polyfill\\Iconv\\": ""
  8716. }
  8717. },
  8718. "notification-url": "https://packagist.org/downloads/",
  8719. "license": [
  8720. "MIT"
  8721. ],
  8722. "authors": [
  8723. {
  8724. "name": "Nicolas Grekas",
  8725. "email": "p@tchwork.com"
  8726. },
  8727. {
  8728. "name": "Symfony Community",
  8729. "homepage": "https://symfony.com/contributors"
  8730. }
  8731. ],
  8732. "description": "Symfony polyfill for the Iconv extension",
  8733. "homepage": "https://symfony.com",
  8734. "keywords": [
  8735. "compatibility",
  8736. "iconv",
  8737. "polyfill",
  8738. "portable",
  8739. "shim"
  8740. ],
  8741. "support": {
  8742. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8743. },
  8744. "funding": [
  8745. {
  8746. "url": "https://symfony.com/sponsor",
  8747. "type": "custom"
  8748. },
  8749. {
  8750. "url": "https://github.com/fabpot",
  8751. "type": "github"
  8752. },
  8753. {
  8754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8755. "type": "tidelift"
  8756. }
  8757. ],
  8758. "time": "2020-05-12T16:47:27+00:00"
  8759. },
  8760. {
  8761. "name": "symfony/polyfill-intl-idn",
  8762. "version": "v1.17.0",
  8763. "source": {
  8764. "type": "git",
  8765. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8766. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8767. },
  8768. "dist": {
  8769. "type": "zip",
  8770. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8771. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8772. "shasum": ""
  8773. },
  8774. "require": {
  8775. "php": ">=5.3.3",
  8776. "symfony/polyfill-mbstring": "^1.3",
  8777. "symfony/polyfill-php72": "^1.10"
  8778. },
  8779. "suggest": {
  8780. "ext-intl": "For best performance"
  8781. },
  8782. "type": "library",
  8783. "extra": {
  8784. "branch-alias": {
  8785. "dev-master": "1.17-dev"
  8786. }
  8787. },
  8788. "autoload": {
  8789. "files": [
  8790. "bootstrap.php"
  8791. ],
  8792. "psr-4": {
  8793. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8794. }
  8795. },
  8796. "notification-url": "https://packagist.org/downloads/",
  8797. "license": [
  8798. "MIT"
  8799. ],
  8800. "authors": [
  8801. {
  8802. "name": "Laurent Bassin",
  8803. "email": "laurent@bassin.info"
  8804. },
  8805. {
  8806. "name": "Symfony Community",
  8807. "homepage": "https://symfony.com/contributors"
  8808. }
  8809. ],
  8810. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8811. "homepage": "https://symfony.com",
  8812. "keywords": [
  8813. "compatibility",
  8814. "idn",
  8815. "intl",
  8816. "polyfill",
  8817. "portable",
  8818. "shim"
  8819. ],
  8820. "support": {
  8821. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8822. },
  8823. "funding": [
  8824. {
  8825. "url": "https://symfony.com/sponsor",
  8826. "type": "custom"
  8827. },
  8828. {
  8829. "url": "https://github.com/fabpot",
  8830. "type": "github"
  8831. },
  8832. {
  8833. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8834. "type": "tidelift"
  8835. }
  8836. ],
  8837. "time": "2020-05-12T16:47:27+00:00"
  8838. },
  8839. {
  8840. "name": "symfony/polyfill-mbstring",
  8841. "version": "v1.17.0",
  8842. "source": {
  8843. "type": "git",
  8844. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8845. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8846. },
  8847. "dist": {
  8848. "type": "zip",
  8849. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8850. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8851. "shasum": ""
  8852. },
  8853. "require": {
  8854. "php": ">=5.3.3"
  8855. },
  8856. "suggest": {
  8857. "ext-mbstring": "For best performance"
  8858. },
  8859. "type": "library",
  8860. "extra": {
  8861. "branch-alias": {
  8862. "dev-master": "1.17-dev"
  8863. }
  8864. },
  8865. "autoload": {
  8866. "files": [
  8867. "bootstrap.php"
  8868. ],
  8869. "psr-4": {
  8870. "Symfony\\Polyfill\\Mbstring\\": ""
  8871. }
  8872. },
  8873. "notification-url": "https://packagist.org/downloads/",
  8874. "license": [
  8875. "MIT"
  8876. ],
  8877. "authors": [
  8878. {
  8879. "name": "Nicolas Grekas",
  8880. "email": "p@tchwork.com"
  8881. },
  8882. {
  8883. "name": "Symfony Community",
  8884. "homepage": "https://symfony.com/contributors"
  8885. }
  8886. ],
  8887. "description": "Symfony polyfill for the Mbstring extension",
  8888. "homepage": "https://symfony.com",
  8889. "keywords": [
  8890. "compatibility",
  8891. "mbstring",
  8892. "polyfill",
  8893. "portable",
  8894. "shim"
  8895. ],
  8896. "support": {
  8897. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8898. },
  8899. "funding": [
  8900. {
  8901. "url": "https://symfony.com/sponsor",
  8902. "type": "custom"
  8903. },
  8904. {
  8905. "url": "https://github.com/fabpot",
  8906. "type": "github"
  8907. },
  8908. {
  8909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8910. "type": "tidelift"
  8911. }
  8912. ],
  8913. "time": "2020-05-12T16:47:27+00:00"
  8914. },
  8915. {
  8916. "name": "symfony/polyfill-php56",
  8917. "version": "v1.17.0",
  8918. "source": {
  8919. "type": "git",
  8920. "url": "https://github.com/symfony/polyfill-php56.git",
  8921. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8922. },
  8923. "dist": {
  8924. "type": "zip",
  8925. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8926. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8927. "shasum": ""
  8928. },
  8929. "require": {
  8930. "php": ">=5.3.3",
  8931. "symfony/polyfill-util": "~1.0"
  8932. },
  8933. "type": "library",
  8934. "extra": {
  8935. "branch-alias": {
  8936. "dev-master": "1.17-dev"
  8937. }
  8938. },
  8939. "autoload": {
  8940. "files": [
  8941. "bootstrap.php"
  8942. ],
  8943. "psr-4": {
  8944. "Symfony\\Polyfill\\Php56\\": ""
  8945. }
  8946. },
  8947. "notification-url": "https://packagist.org/downloads/",
  8948. "license": [
  8949. "MIT"
  8950. ],
  8951. "authors": [
  8952. {
  8953. "name": "Nicolas Grekas",
  8954. "email": "p@tchwork.com"
  8955. },
  8956. {
  8957. "name": "Symfony Community",
  8958. "homepage": "https://symfony.com/contributors"
  8959. }
  8960. ],
  8961. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8962. "homepage": "https://symfony.com",
  8963. "keywords": [
  8964. "compatibility",
  8965. "polyfill",
  8966. "portable",
  8967. "shim"
  8968. ],
  8969. "support": {
  8970. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8971. },
  8972. "funding": [
  8973. {
  8974. "url": "https://symfony.com/sponsor",
  8975. "type": "custom"
  8976. },
  8977. {
  8978. "url": "https://github.com/fabpot",
  8979. "type": "github"
  8980. },
  8981. {
  8982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8983. "type": "tidelift"
  8984. }
  8985. ],
  8986. "time": "2020-05-12T16:47:27+00:00"
  8987. },
  8988. {
  8989. "name": "symfony/polyfill-php70",
  8990. "version": "v1.17.0",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/symfony/polyfill-php70.git",
  8994. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  8999. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9004. "php": ">=5.3.3"
  9005. },
  9006. "type": "library",
  9007. "extra": {
  9008. "branch-alias": {
  9009. "dev-master": "1.17-dev"
  9010. }
  9011. },
  9012. "autoload": {
  9013. "files": [
  9014. "bootstrap.php"
  9015. ],
  9016. "psr-4": {
  9017. "Symfony\\Polyfill\\Php70\\": ""
  9018. },
  9019. "classmap": [
  9020. "Resources/stubs"
  9021. ]
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "MIT"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Nicolas Grekas",
  9030. "email": "p@tchwork.com"
  9031. },
  9032. {
  9033. "name": "Symfony Community",
  9034. "homepage": "https://symfony.com/contributors"
  9035. }
  9036. ],
  9037. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9038. "homepage": "https://symfony.com",
  9039. "keywords": [
  9040. "compatibility",
  9041. "polyfill",
  9042. "portable",
  9043. "shim"
  9044. ],
  9045. "support": {
  9046. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  9047. },
  9048. "funding": [
  9049. {
  9050. "url": "https://symfony.com/sponsor",
  9051. "type": "custom"
  9052. },
  9053. {
  9054. "url": "https://github.com/fabpot",
  9055. "type": "github"
  9056. },
  9057. {
  9058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9059. "type": "tidelift"
  9060. }
  9061. ],
  9062. "time": "2020-05-12T16:47:27+00:00"
  9063. },
  9064. {
  9065. "name": "symfony/polyfill-php72",
  9066. "version": "v1.17.0",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/symfony/polyfill-php72.git",
  9070. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  9075. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  9076. "shasum": ""
  9077. },
  9078. "require": {
  9079. "php": ">=5.3.3"
  9080. },
  9081. "type": "library",
  9082. "extra": {
  9083. "branch-alias": {
  9084. "dev-master": "1.17-dev"
  9085. }
  9086. },
  9087. "autoload": {
  9088. "files": [
  9089. "bootstrap.php"
  9090. ],
  9091. "psr-4": {
  9092. "Symfony\\Polyfill\\Php72\\": ""
  9093. }
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "MIT"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Nicolas Grekas",
  9102. "email": "p@tchwork.com"
  9103. },
  9104. {
  9105. "name": "Symfony Community",
  9106. "homepage": "https://symfony.com/contributors"
  9107. }
  9108. ],
  9109. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9110. "homepage": "https://symfony.com",
  9111. "keywords": [
  9112. "compatibility",
  9113. "polyfill",
  9114. "portable",
  9115. "shim"
  9116. ],
  9117. "support": {
  9118. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  9119. },
  9120. "funding": [
  9121. {
  9122. "url": "https://symfony.com/sponsor",
  9123. "type": "custom"
  9124. },
  9125. {
  9126. "url": "https://github.com/fabpot",
  9127. "type": "github"
  9128. },
  9129. {
  9130. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9131. "type": "tidelift"
  9132. }
  9133. ],
  9134. "time": "2020-05-12T16:47:27+00:00"
  9135. },
  9136. {
  9137. "name": "symfony/polyfill-php80",
  9138. "version": "v1.31.0",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/symfony/polyfill-php80.git",
  9142. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9147. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "php": ">=7.2"
  9152. },
  9153. "type": "library",
  9154. "extra": {
  9155. "thanks": {
  9156. "name": "symfony/polyfill",
  9157. "url": "https://github.com/symfony/polyfill"
  9158. }
  9159. },
  9160. "autoload": {
  9161. "files": [
  9162. "bootstrap.php"
  9163. ],
  9164. "psr-4": {
  9165. "Symfony\\Polyfill\\Php80\\": ""
  9166. },
  9167. "classmap": [
  9168. "Resources/stubs"
  9169. ]
  9170. },
  9171. "notification-url": "https://packagist.org/downloads/",
  9172. "license": [
  9173. "MIT"
  9174. ],
  9175. "authors": [
  9176. {
  9177. "name": "Ion Bazan",
  9178. "email": "ion.bazan@gmail.com"
  9179. },
  9180. {
  9181. "name": "Nicolas Grekas",
  9182. "email": "p@tchwork.com"
  9183. },
  9184. {
  9185. "name": "Symfony Community",
  9186. "homepage": "https://symfony.com/contributors"
  9187. }
  9188. ],
  9189. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9190. "homepage": "https://symfony.com",
  9191. "keywords": [
  9192. "compatibility",
  9193. "polyfill",
  9194. "portable",
  9195. "shim"
  9196. ],
  9197. "support": {
  9198. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9199. },
  9200. "funding": [
  9201. {
  9202. "url": "https://symfony.com/sponsor",
  9203. "type": "custom"
  9204. },
  9205. {
  9206. "url": "https://github.com/fabpot",
  9207. "type": "github"
  9208. },
  9209. {
  9210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9211. "type": "tidelift"
  9212. }
  9213. ],
  9214. "time": "2024-09-09T11:45:10+00:00"
  9215. },
  9216. {
  9217. "name": "symfony/polyfill-util",
  9218. "version": "v1.17.0",
  9219. "source": {
  9220. "type": "git",
  9221. "url": "https://github.com/symfony/polyfill-util.git",
  9222. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9223. },
  9224. "dist": {
  9225. "type": "zip",
  9226. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9227. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9228. "shasum": ""
  9229. },
  9230. "require": {
  9231. "php": ">=5.3.3"
  9232. },
  9233. "type": "library",
  9234. "extra": {
  9235. "branch-alias": {
  9236. "dev-master": "1.17-dev"
  9237. }
  9238. },
  9239. "autoload": {
  9240. "psr-4": {
  9241. "Symfony\\Polyfill\\Util\\": ""
  9242. }
  9243. },
  9244. "notification-url": "https://packagist.org/downloads/",
  9245. "license": [
  9246. "MIT"
  9247. ],
  9248. "authors": [
  9249. {
  9250. "name": "Nicolas Grekas",
  9251. "email": "p@tchwork.com"
  9252. },
  9253. {
  9254. "name": "Symfony Community",
  9255. "homepage": "https://symfony.com/contributors"
  9256. }
  9257. ],
  9258. "description": "Symfony utilities for portability of PHP codes",
  9259. "homepage": "https://symfony.com",
  9260. "keywords": [
  9261. "compat",
  9262. "compatibility",
  9263. "polyfill",
  9264. "shim"
  9265. ],
  9266. "support": {
  9267. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9268. },
  9269. "funding": [
  9270. {
  9271. "url": "https://symfony.com/sponsor",
  9272. "type": "custom"
  9273. },
  9274. {
  9275. "url": "https://github.com/fabpot",
  9276. "type": "github"
  9277. },
  9278. {
  9279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9280. "type": "tidelift"
  9281. }
  9282. ],
  9283. "time": "2020-05-12T16:14:59+00:00"
  9284. },
  9285. {
  9286. "name": "symfony/process",
  9287. "version": "v3.4.41",
  9288. "source": {
  9289. "type": "git",
  9290. "url": "https://github.com/symfony/process.git",
  9291. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9292. },
  9293. "dist": {
  9294. "type": "zip",
  9295. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9296. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9297. "shasum": ""
  9298. },
  9299. "require": {
  9300. "php": "^5.5.9|>=7.0.8"
  9301. },
  9302. "type": "library",
  9303. "extra": {
  9304. "branch-alias": {
  9305. "dev-master": "3.4-dev"
  9306. }
  9307. },
  9308. "autoload": {
  9309. "psr-4": {
  9310. "Symfony\\Component\\Process\\": ""
  9311. },
  9312. "exclude-from-classmap": [
  9313. "/Tests/"
  9314. ]
  9315. },
  9316. "notification-url": "https://packagist.org/downloads/",
  9317. "license": [
  9318. "MIT"
  9319. ],
  9320. "authors": [
  9321. {
  9322. "name": "Fabien Potencier",
  9323. "email": "fabien@symfony.com"
  9324. },
  9325. {
  9326. "name": "Symfony Community",
  9327. "homepage": "https://symfony.com/contributors"
  9328. }
  9329. ],
  9330. "description": "Symfony Process Component",
  9331. "homepage": "https://symfony.com",
  9332. "support": {
  9333. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9334. },
  9335. "funding": [
  9336. {
  9337. "url": "https://symfony.com/sponsor",
  9338. "type": "custom"
  9339. },
  9340. {
  9341. "url": "https://github.com/fabpot",
  9342. "type": "github"
  9343. },
  9344. {
  9345. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9346. "type": "tidelift"
  9347. }
  9348. ],
  9349. "time": "2020-05-23T17:05:51+00:00"
  9350. },
  9351. {
  9352. "name": "symfony/psr-http-message-bridge",
  9353. "version": "v1.1.2",
  9354. "source": {
  9355. "type": "git",
  9356. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9357. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9358. },
  9359. "dist": {
  9360. "type": "zip",
  9361. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9362. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9363. "shasum": ""
  9364. },
  9365. "require": {
  9366. "php": "^5.3.3 || ^7.0",
  9367. "psr/http-message": "^1.0",
  9368. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9369. },
  9370. "require-dev": {
  9371. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9372. },
  9373. "suggest": {
  9374. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9375. },
  9376. "type": "symfony-bridge",
  9377. "extra": {
  9378. "branch-alias": {
  9379. "dev-master": "1.1-dev"
  9380. }
  9381. },
  9382. "autoload": {
  9383. "psr-4": {
  9384. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9385. },
  9386. "exclude-from-classmap": [
  9387. "/Tests/"
  9388. ]
  9389. },
  9390. "notification-url": "https://packagist.org/downloads/",
  9391. "license": [
  9392. "MIT"
  9393. ],
  9394. "authors": [
  9395. {
  9396. "name": "Symfony Community",
  9397. "homepage": "http://symfony.com/contributors"
  9398. },
  9399. {
  9400. "name": "Fabien Potencier",
  9401. "email": "fabien@symfony.com"
  9402. }
  9403. ],
  9404. "description": "PSR HTTP message bridge",
  9405. "homepage": "http://symfony.com",
  9406. "keywords": [
  9407. "http",
  9408. "http-message",
  9409. "psr-17",
  9410. "psr-7"
  9411. ],
  9412. "support": {
  9413. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9414. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9415. },
  9416. "time": "2019-04-03T17:09:40+00:00"
  9417. },
  9418. {
  9419. "name": "symfony/routing",
  9420. "version": "v3.4.41",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/symfony/routing.git",
  9424. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9429. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9430. "shasum": ""
  9431. },
  9432. "require": {
  9433. "php": "^5.5.9|>=7.0.8"
  9434. },
  9435. "conflict": {
  9436. "symfony/config": "<3.3.1",
  9437. "symfony/dependency-injection": "<3.3",
  9438. "symfony/yaml": "<3.4"
  9439. },
  9440. "require-dev": {
  9441. "doctrine/annotations": "~1.0",
  9442. "psr/log": "~1.0",
  9443. "symfony/config": "^3.3.1|~4.0",
  9444. "symfony/dependency-injection": "~3.3|~4.0",
  9445. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9446. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9447. "symfony/yaml": "~3.4|~4.0"
  9448. },
  9449. "suggest": {
  9450. "doctrine/annotations": "For using the annotation loader",
  9451. "symfony/config": "For using the all-in-one router or any loader",
  9452. "symfony/expression-language": "For using expression matching",
  9453. "symfony/http-foundation": "For using a Symfony Request object",
  9454. "symfony/yaml": "For using the YAML loader"
  9455. },
  9456. "type": "library",
  9457. "extra": {
  9458. "branch-alias": {
  9459. "dev-master": "3.4-dev"
  9460. }
  9461. },
  9462. "autoload": {
  9463. "psr-4": {
  9464. "Symfony\\Component\\Routing\\": ""
  9465. },
  9466. "exclude-from-classmap": [
  9467. "/Tests/"
  9468. ]
  9469. },
  9470. "notification-url": "https://packagist.org/downloads/",
  9471. "license": [
  9472. "MIT"
  9473. ],
  9474. "authors": [
  9475. {
  9476. "name": "Fabien Potencier",
  9477. "email": "fabien@symfony.com"
  9478. },
  9479. {
  9480. "name": "Symfony Community",
  9481. "homepage": "https://symfony.com/contributors"
  9482. }
  9483. ],
  9484. "description": "Symfony Routing Component",
  9485. "homepage": "https://symfony.com",
  9486. "keywords": [
  9487. "router",
  9488. "routing",
  9489. "uri",
  9490. "url"
  9491. ],
  9492. "support": {
  9493. "source": "https://github.com/symfony/routing/tree/3.4"
  9494. },
  9495. "funding": [
  9496. {
  9497. "url": "https://symfony.com/sponsor",
  9498. "type": "custom"
  9499. },
  9500. {
  9501. "url": "https://github.com/fabpot",
  9502. "type": "github"
  9503. },
  9504. {
  9505. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9506. "type": "tidelift"
  9507. }
  9508. ],
  9509. "time": "2020-05-30T19:50:06+00:00"
  9510. },
  9511. {
  9512. "name": "symfony/serializer",
  9513. "version": "v3.4.41",
  9514. "source": {
  9515. "type": "git",
  9516. "url": "https://github.com/symfony/serializer.git",
  9517. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9518. },
  9519. "dist": {
  9520. "type": "zip",
  9521. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9522. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9523. "shasum": ""
  9524. },
  9525. "require": {
  9526. "php": "^5.5.9|>=7.0.8",
  9527. "symfony/polyfill-ctype": "~1.8"
  9528. },
  9529. "conflict": {
  9530. "phpdocumentor/type-resolver": "<0.2.1",
  9531. "symfony/dependency-injection": "<3.2",
  9532. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9533. "symfony/property-info": "<3.1",
  9534. "symfony/yaml": "<3.4"
  9535. },
  9536. "require-dev": {
  9537. "doctrine/annotations": "~1.0",
  9538. "doctrine/cache": "~1.0",
  9539. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9540. "symfony/cache": "~3.1|~4.0",
  9541. "symfony/config": "~2.8|~3.0|~4.0",
  9542. "symfony/dependency-injection": "~3.2|~4.0",
  9543. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9544. "symfony/property-access": "~2.8|~3.0|~4.0",
  9545. "symfony/property-info": "^3.4.13|~4.0",
  9546. "symfony/yaml": "~3.4|~4.0"
  9547. },
  9548. "suggest": {
  9549. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9550. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9551. "psr/cache-implementation": "For using the metadata cache.",
  9552. "symfony/config": "For using the XML mapping loader.",
  9553. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9554. "symfony/property-access": "For using the ObjectNormalizer.",
  9555. "symfony/property-info": "To deserialize relations.",
  9556. "symfony/yaml": "For using the default YAML mapping loader."
  9557. },
  9558. "type": "library",
  9559. "extra": {
  9560. "branch-alias": {
  9561. "dev-master": "3.4-dev"
  9562. }
  9563. },
  9564. "autoload": {
  9565. "psr-4": {
  9566. "Symfony\\Component\\Serializer\\": ""
  9567. },
  9568. "exclude-from-classmap": [
  9569. "/Tests/"
  9570. ]
  9571. },
  9572. "notification-url": "https://packagist.org/downloads/",
  9573. "license": [
  9574. "MIT"
  9575. ],
  9576. "authors": [
  9577. {
  9578. "name": "Fabien Potencier",
  9579. "email": "fabien@symfony.com"
  9580. },
  9581. {
  9582. "name": "Symfony Community",
  9583. "homepage": "https://symfony.com/contributors"
  9584. }
  9585. ],
  9586. "description": "Symfony Serializer Component",
  9587. "homepage": "https://symfony.com",
  9588. "support": {
  9589. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9590. },
  9591. "funding": [
  9592. {
  9593. "url": "https://symfony.com/sponsor",
  9594. "type": "custom"
  9595. },
  9596. {
  9597. "url": "https://github.com/fabpot",
  9598. "type": "github"
  9599. },
  9600. {
  9601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9602. "type": "tidelift"
  9603. }
  9604. ],
  9605. "time": "2020-05-30T18:58:05+00:00"
  9606. },
  9607. {
  9608. "name": "symfony/translation",
  9609. "version": "v3.4.41",
  9610. "source": {
  9611. "type": "git",
  9612. "url": "https://github.com/symfony/translation.git",
  9613. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9614. },
  9615. "dist": {
  9616. "type": "zip",
  9617. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9618. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9619. "shasum": ""
  9620. },
  9621. "require": {
  9622. "php": "^5.5.9|>=7.0.8",
  9623. "symfony/polyfill-mbstring": "~1.0"
  9624. },
  9625. "conflict": {
  9626. "symfony/config": "<2.8",
  9627. "symfony/dependency-injection": "<3.4",
  9628. "symfony/yaml": "<3.4"
  9629. },
  9630. "require-dev": {
  9631. "psr/log": "~1.0",
  9632. "symfony/config": "~2.8|~3.0|~4.0",
  9633. "symfony/dependency-injection": "~3.4|~4.0",
  9634. "symfony/finder": "~2.8|~3.0|~4.0",
  9635. "symfony/http-kernel": "~3.4|~4.0",
  9636. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9637. "symfony/var-dumper": "~3.4|~4.0",
  9638. "symfony/yaml": "~3.4|~4.0"
  9639. },
  9640. "suggest": {
  9641. "psr/log-implementation": "To use logging capability in translator",
  9642. "symfony/config": "",
  9643. "symfony/yaml": ""
  9644. },
  9645. "type": "library",
  9646. "extra": {
  9647. "branch-alias": {
  9648. "dev-master": "3.4-dev"
  9649. }
  9650. },
  9651. "autoload": {
  9652. "psr-4": {
  9653. "Symfony\\Component\\Translation\\": ""
  9654. },
  9655. "exclude-from-classmap": [
  9656. "/Tests/"
  9657. ]
  9658. },
  9659. "notification-url": "https://packagist.org/downloads/",
  9660. "license": [
  9661. "MIT"
  9662. ],
  9663. "authors": [
  9664. {
  9665. "name": "Fabien Potencier",
  9666. "email": "fabien@symfony.com"
  9667. },
  9668. {
  9669. "name": "Symfony Community",
  9670. "homepage": "https://symfony.com/contributors"
  9671. }
  9672. ],
  9673. "description": "Symfony Translation Component",
  9674. "homepage": "https://symfony.com",
  9675. "support": {
  9676. "source": "https://github.com/symfony/translation/tree/3.4"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://symfony.com/sponsor",
  9681. "type": "custom"
  9682. },
  9683. {
  9684. "url": "https://github.com/fabpot",
  9685. "type": "github"
  9686. },
  9687. {
  9688. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9689. "type": "tidelift"
  9690. }
  9691. ],
  9692. "time": "2020-05-30T18:58:05+00:00"
  9693. },
  9694. {
  9695. "name": "symfony/validator",
  9696. "version": "v3.4.41",
  9697. "source": {
  9698. "type": "git",
  9699. "url": "https://github.com/symfony/validator.git",
  9700. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9701. },
  9702. "dist": {
  9703. "type": "zip",
  9704. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9705. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9706. "shasum": ""
  9707. },
  9708. "require": {
  9709. "php": "^5.5.9|>=7.0.8",
  9710. "symfony/polyfill-ctype": "~1.8",
  9711. "symfony/polyfill-mbstring": "~1.0",
  9712. "symfony/translation": "~2.8|~3.0|~4.0"
  9713. },
  9714. "conflict": {
  9715. "doctrine/lexer": "<1.0.2",
  9716. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9717. "symfony/dependency-injection": "<3.3",
  9718. "symfony/http-kernel": "<3.3.5",
  9719. "symfony/yaml": "<3.4"
  9720. },
  9721. "require-dev": {
  9722. "doctrine/annotations": "~1.7",
  9723. "doctrine/cache": "~1.0",
  9724. "egulias/email-validator": "^2.1.10",
  9725. "symfony/cache": "~3.1|~4.0",
  9726. "symfony/config": "~2.8|~3.0|~4.0",
  9727. "symfony/dependency-injection": "~3.3|~4.0",
  9728. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9729. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9730. "symfony/http-kernel": "^3.3.5|~4.0",
  9731. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9732. "symfony/property-access": "~2.8|~3.0|~4.0",
  9733. "symfony/var-dumper": "~3.3|~4.0",
  9734. "symfony/yaml": "~3.4|~4.0"
  9735. },
  9736. "suggest": {
  9737. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9738. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9739. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9740. "psr/cache-implementation": "For using the metadata cache.",
  9741. "symfony/config": "",
  9742. "symfony/expression-language": "For using the Expression validator",
  9743. "symfony/http-foundation": "",
  9744. "symfony/intl": "",
  9745. "symfony/property-access": "For accessing properties within comparison constraints",
  9746. "symfony/yaml": ""
  9747. },
  9748. "type": "library",
  9749. "extra": {
  9750. "branch-alias": {
  9751. "dev-master": "3.4-dev"
  9752. }
  9753. },
  9754. "autoload": {
  9755. "psr-4": {
  9756. "Symfony\\Component\\Validator\\": ""
  9757. },
  9758. "exclude-from-classmap": [
  9759. "/Tests/"
  9760. ]
  9761. },
  9762. "notification-url": "https://packagist.org/downloads/",
  9763. "license": [
  9764. "MIT"
  9765. ],
  9766. "authors": [
  9767. {
  9768. "name": "Fabien Potencier",
  9769. "email": "fabien@symfony.com"
  9770. },
  9771. {
  9772. "name": "Symfony Community",
  9773. "homepage": "https://symfony.com/contributors"
  9774. }
  9775. ],
  9776. "description": "Symfony Validator Component",
  9777. "homepage": "https://symfony.com",
  9778. "support": {
  9779. "source": "https://github.com/symfony/validator/tree/3.4"
  9780. },
  9781. "funding": [
  9782. {
  9783. "url": "https://symfony.com/sponsor",
  9784. "type": "custom"
  9785. },
  9786. {
  9787. "url": "https://github.com/fabpot",
  9788. "type": "github"
  9789. },
  9790. {
  9791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9792. "type": "tidelift"
  9793. }
  9794. ],
  9795. "time": "2020-05-30T18:43:38+00:00"
  9796. },
  9797. {
  9798. "name": "symfony/var-dumper",
  9799. "version": "v4.4.47",
  9800. "source": {
  9801. "type": "git",
  9802. "url": "https://github.com/symfony/var-dumper.git",
  9803. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9804. },
  9805. "dist": {
  9806. "type": "zip",
  9807. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9808. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9809. "shasum": ""
  9810. },
  9811. "require": {
  9812. "php": ">=7.1.3",
  9813. "symfony/polyfill-mbstring": "~1.0",
  9814. "symfony/polyfill-php72": "~1.5",
  9815. "symfony/polyfill-php80": "^1.16"
  9816. },
  9817. "conflict": {
  9818. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9819. "symfony/console": "<3.4"
  9820. },
  9821. "require-dev": {
  9822. "ext-iconv": "*",
  9823. "symfony/console": "^3.4|^4.0|^5.0",
  9824. "symfony/process": "^4.4|^5.0",
  9825. "twig/twig": "^1.43|^2.13|^3.0.4"
  9826. },
  9827. "suggest": {
  9828. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9829. "ext-intl": "To show region name in time zone dump",
  9830. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9831. },
  9832. "bin": [
  9833. "Resources/bin/var-dump-server"
  9834. ],
  9835. "type": "library",
  9836. "autoload": {
  9837. "files": [
  9838. "Resources/functions/dump.php"
  9839. ],
  9840. "psr-4": {
  9841. "Symfony\\Component\\VarDumper\\": ""
  9842. },
  9843. "exclude-from-classmap": [
  9844. "/Tests/"
  9845. ]
  9846. },
  9847. "notification-url": "https://packagist.org/downloads/",
  9848. "license": [
  9849. "MIT"
  9850. ],
  9851. "authors": [
  9852. {
  9853. "name": "Nicolas Grekas",
  9854. "email": "p@tchwork.com"
  9855. },
  9856. {
  9857. "name": "Symfony Community",
  9858. "homepage": "https://symfony.com/contributors"
  9859. }
  9860. ],
  9861. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9862. "homepage": "https://symfony.com",
  9863. "keywords": [
  9864. "debug",
  9865. "dump"
  9866. ],
  9867. "support": {
  9868. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9869. },
  9870. "funding": [
  9871. {
  9872. "url": "https://symfony.com/sponsor",
  9873. "type": "custom"
  9874. },
  9875. {
  9876. "url": "https://github.com/fabpot",
  9877. "type": "github"
  9878. },
  9879. {
  9880. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9881. "type": "tidelift"
  9882. }
  9883. ],
  9884. "time": "2022-10-03T15:15:11+00:00"
  9885. },
  9886. {
  9887. "name": "symfony/yaml",
  9888. "version": "v3.4.41",
  9889. "source": {
  9890. "type": "git",
  9891. "url": "https://github.com/symfony/yaml.git",
  9892. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9893. },
  9894. "dist": {
  9895. "type": "zip",
  9896. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9897. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9898. "shasum": ""
  9899. },
  9900. "require": {
  9901. "php": "^5.5.9|>=7.0.8",
  9902. "symfony/polyfill-ctype": "~1.8"
  9903. },
  9904. "conflict": {
  9905. "symfony/console": "<3.4"
  9906. },
  9907. "require-dev": {
  9908. "symfony/console": "~3.4|~4.0"
  9909. },
  9910. "suggest": {
  9911. "symfony/console": "For validating YAML files using the lint command"
  9912. },
  9913. "type": "library",
  9914. "extra": {
  9915. "branch-alias": {
  9916. "dev-master": "3.4-dev"
  9917. }
  9918. },
  9919. "autoload": {
  9920. "psr-4": {
  9921. "Symfony\\Component\\Yaml\\": ""
  9922. },
  9923. "exclude-from-classmap": [
  9924. "/Tests/"
  9925. ]
  9926. },
  9927. "notification-url": "https://packagist.org/downloads/",
  9928. "license": [
  9929. "MIT"
  9930. ],
  9931. "authors": [
  9932. {
  9933. "name": "Fabien Potencier",
  9934. "email": "fabien@symfony.com"
  9935. },
  9936. {
  9937. "name": "Symfony Community",
  9938. "homepage": "https://symfony.com/contributors"
  9939. }
  9940. ],
  9941. "description": "Symfony Yaml Component",
  9942. "homepage": "https://symfony.com",
  9943. "support": {
  9944. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9945. },
  9946. "funding": [
  9947. {
  9948. "url": "https://symfony.com/sponsor",
  9949. "type": "custom"
  9950. },
  9951. {
  9952. "url": "https://github.com/fabpot",
  9953. "type": "github"
  9954. },
  9955. {
  9956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9957. "type": "tidelift"
  9958. }
  9959. ],
  9960. "time": "2020-05-11T07:51:54+00:00"
  9961. },
  9962. {
  9963. "name": "twig/twig",
  9964. "version": "v1.42.5",
  9965. "source": {
  9966. "type": "git",
  9967. "url": "https://github.com/twigphp/Twig.git",
  9968. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9969. },
  9970. "dist": {
  9971. "type": "zip",
  9972. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9973. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9974. "shasum": ""
  9975. },
  9976. "require": {
  9977. "php": ">=5.5.0",
  9978. "symfony/polyfill-ctype": "^1.8"
  9979. },
  9980. "require-dev": {
  9981. "psr/container": "^1.0",
  9982. "symfony/phpunit-bridge": "^4.4|^5.0"
  9983. },
  9984. "type": "library",
  9985. "extra": {
  9986. "branch-alias": {
  9987. "dev-master": "1.42-dev"
  9988. }
  9989. },
  9990. "autoload": {
  9991. "psr-0": {
  9992. "Twig_": "lib/"
  9993. },
  9994. "psr-4": {
  9995. "Twig\\": "src/"
  9996. }
  9997. },
  9998. "notification-url": "https://packagist.org/downloads/",
  9999. "license": [
  10000. "BSD-3-Clause"
  10001. ],
  10002. "authors": [
  10003. {
  10004. "name": "Fabien Potencier",
  10005. "email": "fabien@symfony.com",
  10006. "homepage": "http://fabien.potencier.org",
  10007. "role": "Lead Developer"
  10008. },
  10009. {
  10010. "name": "Twig Team",
  10011. "role": "Contributors"
  10012. },
  10013. {
  10014. "name": "Armin Ronacher",
  10015. "email": "armin.ronacher@active-4.com",
  10016. "role": "Project Founder"
  10017. }
  10018. ],
  10019. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10020. "homepage": "https://twig.symfony.com",
  10021. "keywords": [
  10022. "templating"
  10023. ],
  10024. "support": {
  10025. "issues": "https://github.com/twigphp/Twig/issues",
  10026. "source": "https://github.com/twigphp/Twig/tree/1.x"
  10027. },
  10028. "time": "2020-02-11T05:59:23+00:00"
  10029. },
  10030. {
  10031. "name": "typo3/phar-stream-wrapper",
  10032. "version": "v3.1.4",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10036. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10041. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "ext-json": "*",
  10046. "php": "^7.0"
  10047. },
  10048. "require-dev": {
  10049. "ext-xdebug": "*",
  10050. "phpunit/phpunit": "^6.5"
  10051. },
  10052. "suggest": {
  10053. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10054. },
  10055. "type": "library",
  10056. "extra": {
  10057. "branch-alias": {
  10058. "dev-master": "v3.x-dev"
  10059. }
  10060. },
  10061. "autoload": {
  10062. "psr-4": {
  10063. "TYPO3\\PharStreamWrapper\\": "src/"
  10064. }
  10065. },
  10066. "notification-url": "https://packagist.org/downloads/",
  10067. "license": [
  10068. "MIT"
  10069. ],
  10070. "description": "Interceptors for PHP's native phar:// stream handling",
  10071. "homepage": "https://typo3.org/",
  10072. "keywords": [
  10073. "phar",
  10074. "php",
  10075. "security",
  10076. "stream-wrapper"
  10077. ],
  10078. "support": {
  10079. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10080. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  10081. },
  10082. "time": "2019-12-10T11:53:27+00:00"
  10083. },
  10084. {
  10085. "name": "vlucas/phpdotenv",
  10086. "version": "v2.6.4",
  10087. "source": {
  10088. "type": "git",
  10089. "url": "https://github.com/vlucas/phpdotenv.git",
  10090. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  10091. },
  10092. "dist": {
  10093. "type": "zip",
  10094. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  10095. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  10096. "shasum": ""
  10097. },
  10098. "require": {
  10099. "php": "^5.3.9 || ^7.0 || ^8.0",
  10100. "symfony/polyfill-ctype": "^1.9"
  10101. },
  10102. "require-dev": {
  10103. "ext-filter": "*",
  10104. "ext-pcre": "*",
  10105. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10106. },
  10107. "suggest": {
  10108. "ext-filter": "Required to use the boolean validator.",
  10109. "ext-pcre": "Required to use most of the library."
  10110. },
  10111. "type": "library",
  10112. "extra": {
  10113. "branch-alias": {
  10114. "dev-master": "2.6-dev"
  10115. }
  10116. },
  10117. "autoload": {
  10118. "psr-4": {
  10119. "Dotenv\\": "src/"
  10120. }
  10121. },
  10122. "notification-url": "https://packagist.org/downloads/",
  10123. "license": [
  10124. "BSD-3-Clause"
  10125. ],
  10126. "authors": [
  10127. {
  10128. "name": "Graham Campbell",
  10129. "email": "graham@alt-three.com",
  10130. "homepage": "https://gjcampbell.co.uk/"
  10131. },
  10132. {
  10133. "name": "Vance Lucas",
  10134. "email": "vance@vancelucas.com",
  10135. "homepage": "https://vancelucas.com/"
  10136. }
  10137. ],
  10138. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10139. "keywords": [
  10140. "dotenv",
  10141. "env",
  10142. "environment"
  10143. ],
  10144. "time": "2020-05-02T13:38:00+00:00"
  10145. },
  10146. {
  10147. "name": "webflo/drupal-finder",
  10148. "version": "1.2.0",
  10149. "source": {
  10150. "type": "git",
  10151. "url": "https://github.com/webflo/drupal-finder.git",
  10152. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  10153. },
  10154. "dist": {
  10155. "type": "zip",
  10156. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10157. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10158. "shasum": ""
  10159. },
  10160. "require": {
  10161. "ext-json": "*"
  10162. },
  10163. "require-dev": {
  10164. "mikey179/vfsstream": "^1.6",
  10165. "phpunit/phpunit": "^4.8"
  10166. },
  10167. "type": "library",
  10168. "autoload": {
  10169. "classmap": [
  10170. "src/DrupalFinder.php"
  10171. ]
  10172. },
  10173. "notification-url": "https://packagist.org/downloads/",
  10174. "license": [
  10175. "GPL-2.0+"
  10176. ],
  10177. "authors": [
  10178. {
  10179. "name": "Florian Weber",
  10180. "email": "florian@webflo.org"
  10181. }
  10182. ],
  10183. "description": "Helper class to locate a Drupal installation from a given path.",
  10184. "time": "2019-08-02T08:06:18+00:00"
  10185. },
  10186. {
  10187. "name": "webmozart/assert",
  10188. "version": "1.11.0",
  10189. "source": {
  10190. "type": "git",
  10191. "url": "https://github.com/webmozarts/assert.git",
  10192. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10193. },
  10194. "dist": {
  10195. "type": "zip",
  10196. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10197. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10198. "shasum": ""
  10199. },
  10200. "require": {
  10201. "ext-ctype": "*",
  10202. "php": "^7.2 || ^8.0"
  10203. },
  10204. "conflict": {
  10205. "phpstan/phpstan": "<0.12.20",
  10206. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10207. },
  10208. "require-dev": {
  10209. "phpunit/phpunit": "^8.5.13"
  10210. },
  10211. "type": "library",
  10212. "extra": {
  10213. "branch-alias": {
  10214. "dev-master": "1.10-dev"
  10215. }
  10216. },
  10217. "autoload": {
  10218. "psr-4": {
  10219. "Webmozart\\Assert\\": "src/"
  10220. }
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "MIT"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Bernhard Schussek",
  10229. "email": "bschussek@gmail.com"
  10230. }
  10231. ],
  10232. "description": "Assertions to validate method input/output with nice error messages.",
  10233. "keywords": [
  10234. "assert",
  10235. "check",
  10236. "validate"
  10237. ],
  10238. "support": {
  10239. "issues": "https://github.com/webmozarts/assert/issues",
  10240. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10241. },
  10242. "time": "2022-06-03T18:03:27+00:00"
  10243. },
  10244. {
  10245. "name": "webmozart/path-util",
  10246. "version": "2.3.0",
  10247. "source": {
  10248. "type": "git",
  10249. "url": "https://github.com/webmozart/path-util.git",
  10250. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10251. },
  10252. "dist": {
  10253. "type": "zip",
  10254. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10255. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10256. "shasum": ""
  10257. },
  10258. "require": {
  10259. "php": ">=5.3.3",
  10260. "webmozart/assert": "~1.0"
  10261. },
  10262. "require-dev": {
  10263. "phpunit/phpunit": "^4.6",
  10264. "sebastian/version": "^1.0.1"
  10265. },
  10266. "type": "library",
  10267. "extra": {
  10268. "branch-alias": {
  10269. "dev-master": "2.3-dev"
  10270. }
  10271. },
  10272. "autoload": {
  10273. "psr-4": {
  10274. "Webmozart\\PathUtil\\": "src/"
  10275. }
  10276. },
  10277. "notification-url": "https://packagist.org/downloads/",
  10278. "license": [
  10279. "MIT"
  10280. ],
  10281. "authors": [
  10282. {
  10283. "name": "Bernhard Schussek",
  10284. "email": "bschussek@gmail.com"
  10285. }
  10286. ],
  10287. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10288. "time": "2015-12-17T08:42:14+00:00"
  10289. }
  10290. ],
  10291. "packages-dev": [],
  10292. "aliases": [],
  10293. "minimum-stability": "dev",
  10294. "stability-flags": {
  10295. "drupal/better_messages": 15,
  10296. "drupal/bulkdelete": 20,
  10297. "drupal/domain": 15,
  10298. "drupal/domain_menu_access": 15,
  10299. "drupal/entity": 20,
  10300. "drupal/filefield_sources": 15,
  10301. "drupal/filter_perms": 15,
  10302. "drupal/maillog": 10,
  10303. "drupal/path_alias_xt": 20,
  10304. "drupal/synonyms": 15,
  10305. "drupal/toolbar_themes": 20
  10306. },
  10307. "prefer-stable": true,
  10308. "prefer-lowest": false,
  10309. "platform": {
  10310. "php": ">=5.6"
  10311. },
  10312. "platform-dev": [],
  10313. "plugin-api-version": "2.6.0"
  10314. }