composer.lock 376 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317
  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": "eff0b38902f1c98ac1b0774e448d0fce",
  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.22.0",
  1623. "source": {
  1624. "type": "git",
  1625. "url": "https://git.drupalcode.org/project/addtoany.git",
  1626. "reference": "8.x-1.22"
  1627. },
  1628. "dist": {
  1629. "type": "zip",
  1630. "url": "https://ftp.drupal.org/files/projects/addtoany-8.x-1.22.zip",
  1631. "reference": "8.x-1.22",
  1632. "shasum": "350bfc33c163d11d137005cb56e6a1f0eaa35f04"
  1633. },
  1634. "require": {
  1635. "drupal/core": "^8 || ^9"
  1636. },
  1637. "type": "drupal-module",
  1638. "extra": {
  1639. "drupal": {
  1640. "version": "8.x-1.22",
  1641. "datestamp": "1698826527",
  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, Mastodon, 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.5.0",
  1675. "source": {
  1676. "type": "git",
  1677. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1678. "reference": "8.x-2.5"
  1679. },
  1680. "dist": {
  1681. "type": "zip",
  1682. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-8.x-2.5.zip",
  1683. "reference": "8.x-2.5",
  1684. "shasum": "c71e58051b8d6818272df96d14cb11407d5e5ceb"
  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.5",
  1693. "datestamp": "1629907119",
  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": "japerry",
  1728. "homepage": "https://www.drupal.org/user/45640"
  1729. },
  1730. {
  1731. "name": "matio89",
  1732. "homepage": "https://www.drupal.org/user/2320090"
  1733. },
  1734. {
  1735. "name": "musa.thomas",
  1736. "homepage": "https://www.drupal.org/user/1213824"
  1737. },
  1738. {
  1739. "name": "romainj",
  1740. "homepage": "https://www.drupal.org/user/370706"
  1741. }
  1742. ],
  1743. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1744. "homepage": "http://drupal.org/project/admin_toolbar",
  1745. "keywords": [
  1746. "Drupal",
  1747. "Toolbar"
  1748. ],
  1749. "support": {
  1750. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1751. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1752. }
  1753. },
  1754. {
  1755. "name": "drupal/adminimal_theme",
  1756. "version": "1.6.0",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1760. "reference": "8.x-1.6"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.6.zip",
  1765. "reference": "8.x-1.6",
  1766. "shasum": "89132d0853388afe8dfd11fb83c69a48d8c13413"
  1767. },
  1768. "require": {
  1769. "drupal/core": "^8.8 || ^9"
  1770. },
  1771. "type": "drupal-theme",
  1772. "extra": {
  1773. "drupal": {
  1774. "version": "8.x-1.6",
  1775. "datestamp": "1602006937",
  1776. "security-coverage": {
  1777. "status": "covered",
  1778. "message": "Covered by Drupal's security advisory policy"
  1779. }
  1780. }
  1781. },
  1782. "notification-url": "https://packages.drupal.org/8/downloads",
  1783. "license": [
  1784. "GPL-2.0+"
  1785. ],
  1786. "authors": [
  1787. {
  1788. "name": "ANDiTKO",
  1789. "homepage": "https://www.drupal.org/user/1428124"
  1790. },
  1791. {
  1792. "name": "andrey.troeglazov",
  1793. "homepage": "https://www.drupal.org/user/3145389"
  1794. },
  1795. {
  1796. "name": "realityloop",
  1797. "homepage": "https://www.drupal.org/user/139189"
  1798. },
  1799. {
  1800. "name": "rjjakes",
  1801. "homepage": "https://www.drupal.org/user/3457245"
  1802. }
  1803. ],
  1804. "description": "Drupal administration theme with modern minimalist design.",
  1805. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1806. "support": {
  1807. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1808. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1809. }
  1810. },
  1811. {
  1812. "name": "drupal/audiofield",
  1813. "version": "1.13.0",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://git.drupalcode.org/project/audiofield.git",
  1817. "reference": "8.x-1.13"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1822. "reference": "8.x-1.13",
  1823. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1824. },
  1825. "require": {
  1826. "drupal/core": "^8 || ^9 || ^10"
  1827. },
  1828. "type": "drupal-module",
  1829. "extra": {
  1830. "drupal": {
  1831. "version": "8.x-1.13",
  1832. "datestamp": "1681143245",
  1833. "security-coverage": {
  1834. "status": "covered",
  1835. "message": "Covered by Drupal's security advisory policy"
  1836. }
  1837. },
  1838. "drush": {
  1839. "services": {
  1840. "drush.services.yml": "^9"
  1841. }
  1842. }
  1843. },
  1844. "notification-url": "https://packages.drupal.org/8/downloads",
  1845. "license": [
  1846. "GPL-2.0-or-later"
  1847. ],
  1848. "authors": [
  1849. {
  1850. "name": "Daniel Moberly",
  1851. "homepage": "https://www.drupal.org/u/danielmoberly",
  1852. "role": "Maintainer"
  1853. },
  1854. {
  1855. "name": "tamerzg",
  1856. "homepage": "https://www.drupal.org/user/464564"
  1857. }
  1858. ],
  1859. "description": "AudioField Module",
  1860. "homepage": "https://www.drupal.org/project/audiofield",
  1861. "support": {
  1862. "source": "https://git.drupalcode.org/project/audiofield",
  1863. "issues": "https://www.drupal.org/project/issues/audiofield"
  1864. }
  1865. },
  1866. {
  1867. "name": "drupal/autologout",
  1868. "version": "1.3.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://git.drupalcode.org/project/autologout.git",
  1872. "reference": "8.x-1.3"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.3.zip",
  1877. "reference": "8.x-1.3",
  1878. "shasum": "87733b2042d9dcdee0d8f33d206872208a8c97ea"
  1879. },
  1880. "require": {
  1881. "drupal/core": "^8 || ^9"
  1882. },
  1883. "type": "drupal-module",
  1884. "extra": {
  1885. "drupal": {
  1886. "version": "8.x-1.3",
  1887. "datestamp": "1587193798",
  1888. "security-coverage": {
  1889. "status": "covered",
  1890. "message": "Covered by Drupal's security advisory policy"
  1891. }
  1892. }
  1893. },
  1894. "notification-url": "https://packages.drupal.org/8/downloads",
  1895. "license": [
  1896. "GPL-2.0+"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "ajits",
  1901. "homepage": "https://www.drupal.org/user/981944"
  1902. },
  1903. {
  1904. "name": "AjK",
  1905. "homepage": "https://www.drupal.org/user/39030"
  1906. },
  1907. {
  1908. "name": "boshtian",
  1909. "homepage": "https://www.drupal.org/user/1773456"
  1910. },
  1911. {
  1912. "name": "dandrews",
  1913. "homepage": "https://www.drupal.org/user/2014490"
  1914. },
  1915. {
  1916. "name": "darksnow",
  1917. "homepage": "https://www.drupal.org/user/391915"
  1918. },
  1919. {
  1920. "name": "japerry",
  1921. "homepage": "https://www.drupal.org/user/45640"
  1922. },
  1923. {
  1924. "name": "johnennew",
  1925. "homepage": "https://www.drupal.org/user/1150042"
  1926. },
  1927. {
  1928. "name": "jrglasgow",
  1929. "homepage": "https://www.drupal.org/user/36590"
  1930. },
  1931. {
  1932. "name": "kmasood",
  1933. "homepage": "https://www.drupal.org/user/1262860"
  1934. },
  1935. {
  1936. "name": "levelos",
  1937. "homepage": "https://www.drupal.org/user/54135"
  1938. },
  1939. {
  1940. "name": "prabeen.giri",
  1941. "homepage": "https://www.drupal.org/user/913078"
  1942. },
  1943. {
  1944. "name": "scott_earnest",
  1945. "homepage": "https://www.drupal.org/user/416158"
  1946. },
  1947. {
  1948. "name": "str8",
  1949. "homepage": "https://www.drupal.org/user/2865063"
  1950. }
  1951. ],
  1952. "description": "Adds automated timed logout.",
  1953. "homepage": "http://drupal.org/project/autologout",
  1954. "support": {
  1955. "source": "https://git.drupalcode.org/project/autologout"
  1956. }
  1957. },
  1958. {
  1959. "name": "drupal/basic",
  1960. "version": "2.1.0",
  1961. "source": {
  1962. "type": "git",
  1963. "url": "https://git.drupalcode.org/project/basic.git",
  1964. "reference": "8.x-2.1"
  1965. },
  1966. "dist": {
  1967. "type": "zip",
  1968. "url": "https://ftp.drupal.org/files/projects/basic-8.x-2.1.zip",
  1969. "reference": "8.x-2.1",
  1970. "shasum": "2497b30bd419e6f49a72a1f80ab40b47582df4f5"
  1971. },
  1972. "require": {
  1973. "drupal/core": "^8.8 || ^9"
  1974. },
  1975. "type": "drupal-theme",
  1976. "extra": {
  1977. "drupal": {
  1978. "version": "8.x-2.1",
  1979. "datestamp": "1612916291",
  1980. "security-coverage": {
  1981. "status": "covered",
  1982. "message": "Covered by Drupal's security advisory policy"
  1983. }
  1984. }
  1985. },
  1986. "notification-url": "https://packages.drupal.org/8/downloads",
  1987. "license": [
  1988. "GPL-2.0+"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "Steve Krueger",
  1993. "homepage": "http://thejibe.com",
  1994. "email": "steve@thejibe.com",
  1995. "role": "Maintainer"
  1996. },
  1997. {
  1998. "name": "Joël Pittet",
  1999. "homepage": "https://www.drupal.org/u/joelpittet",
  2000. "email": "joel@pittet.ca",
  2001. "role": "Maintainer"
  2002. },
  2003. {
  2004. "name": "Leah Wagner",
  2005. "homepage": "http://thejibe.com",
  2006. "email": "leah@thejibe.com",
  2007. "role": "Maintainer"
  2008. },
  2009. {
  2010. "name": "Catherine Winters",
  2011. "homepage": "http://www.catherinewinters.com",
  2012. "email": "catherine@catherinewinters.com",
  2013. "role": "Maintainer"
  2014. },
  2015. {
  2016. "name": "Johannes Schmidt",
  2017. "homepage": "http://2tabs.com",
  2018. "email": "mail@2tabs.com",
  2019. "role": "Maintainer"
  2020. },
  2021. {
  2022. "name": "Chuck Kosman",
  2023. "homepage": "http://thejibe.com",
  2024. "email": "chuck@thejibe.com",
  2025. "role": "Maintainer"
  2026. },
  2027. {
  2028. "name": "SteveK",
  2029. "homepage": "https://www.drupal.org/user/111656"
  2030. }
  2031. ],
  2032. "description": "HTML5, SASS, Responsive grid starter theme.",
  2033. "homepage": "http://drupal.org/project/basic",
  2034. "support": {
  2035. "source": "http://cgit.drupalcode.org/basic",
  2036. "issues": "https://www.drupal.org/project/issues/basic",
  2037. "irc": "irc://irc.freenode.org/drupal-contribute"
  2038. }
  2039. },
  2040. {
  2041. "name": "drupal/better_messages",
  2042. "version": "2.0.0-alpha2",
  2043. "source": {
  2044. "type": "git",
  2045. "url": "https://git.drupalcode.org/project/better_messages.git",
  2046. "reference": "2.0.0-alpha2"
  2047. },
  2048. "dist": {
  2049. "type": "zip",
  2050. "url": "https://ftp.drupal.org/files/projects/better_messages-2.0.0-alpha2.zip",
  2051. "reference": "2.0.0-alpha2",
  2052. "shasum": "e93618447a97e90d95b7242cc6398be4346b59b4"
  2053. },
  2054. "require": {
  2055. "drupal/core": "^8 || ^9"
  2056. },
  2057. "type": "drupal-module",
  2058. "extra": {
  2059. "drupal": {
  2060. "version": "2.0.0-alpha2",
  2061. "datestamp": "1644241962",
  2062. "security-coverage": {
  2063. "status": "not-covered",
  2064. "message": "Alpha releases are not covered by Drupal security advisories."
  2065. }
  2066. }
  2067. },
  2068. "notification-url": "https://packages.drupal.org/8/downloads",
  2069. "license": [
  2070. "GPL-2.0-or-later"
  2071. ],
  2072. "authors": [
  2073. {
  2074. "name": "bucefal91",
  2075. "homepage": "https://www.drupal.org/user/504128"
  2076. },
  2077. {
  2078. "name": "le72",
  2079. "homepage": "https://www.drupal.org/user/1866896"
  2080. },
  2081. {
  2082. "name": "mohammed j. razem",
  2083. "homepage": "https://www.drupal.org/user/255384"
  2084. },
  2085. {
  2086. "name": "usingsession",
  2087. "homepage": "https://www.drupal.org/user/3582050"
  2088. }
  2089. ],
  2090. "description": "This module adds simple functions to make Drupal messages look and act better.",
  2091. "homepage": "https://www.drupal.org/project/better_messages",
  2092. "support": {
  2093. "source": "https://git.drupalcode.org/project/better_messages"
  2094. }
  2095. },
  2096. {
  2097. "name": "drupal/bulkdelete",
  2098. "version": "dev-1.x",
  2099. "source": {
  2100. "type": "git",
  2101. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2102. "reference": "36e12429e99606463b9ef15203c2018de69965b2"
  2103. },
  2104. "require": {
  2105. "drupal/core": "^8.7.7 || ^9"
  2106. },
  2107. "type": "drupal-module",
  2108. "extra": {
  2109. "branch-alias": {
  2110. "dev-1.x": "1.x-dev"
  2111. },
  2112. "drupal": {
  2113. "version": "8.x-1.x-dev",
  2114. "datestamp": "1569586386",
  2115. "security-coverage": {
  2116. "status": "not-covered",
  2117. "message": "Dev releases are not covered by Drupal security advisories."
  2118. }
  2119. }
  2120. },
  2121. "notification-url": "https://packages.drupal.org/8/downloads",
  2122. "license": [
  2123. "GPL-2.0-or-later"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Kars-T",
  2128. "homepage": "https://www.drupal.org/user/224499"
  2129. },
  2130. {
  2131. "name": "Rahul Seth",
  2132. "homepage": "https://www.drupal.org/user/2694359"
  2133. },
  2134. {
  2135. "name": "adriancid",
  2136. "homepage": "https://www.drupal.org/user/1962106"
  2137. },
  2138. {
  2139. "name": "robertDouglass",
  2140. "homepage": "https://www.drupal.org/user/5449"
  2141. }
  2142. ],
  2143. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2144. "homepage": "https://www.drupal.org/project/bulkdelete",
  2145. "support": {
  2146. "source": "https://git.drupalcode.org/project/bulkdelete"
  2147. },
  2148. "time": "2020-05-24T06:01:38+00:00"
  2149. },
  2150. {
  2151. "name": "drupal/color_field",
  2152. "version": "2.5.0",
  2153. "source": {
  2154. "type": "git",
  2155. "url": "https://git.drupalcode.org/project/color_field.git",
  2156. "reference": "8.x-2.5"
  2157. },
  2158. "dist": {
  2159. "type": "zip",
  2160. "url": "https://ftp.drupal.org/files/projects/color_field-8.x-2.5.zip",
  2161. "reference": "8.x-2.5",
  2162. "shasum": "9b0d299cb24d3cb21c7fb6a6a08d32ae5aed8652"
  2163. },
  2164. "require": {
  2165. "drupal/core": "^8 || ^9"
  2166. },
  2167. "require-dev": {
  2168. "drupal/core-recommended": "*",
  2169. "drupal/token": "~1.3"
  2170. },
  2171. "suggest": {
  2172. "bower-asset/jquery-simple-color": "^v1.2.2: Provides JavaScript library necessary for the Color Grid widget",
  2173. "bower-asset/spectrum": "^1.8: Provides JavaScript library necessary for Spectrum widget."
  2174. },
  2175. "type": "drupal-module",
  2176. "extra": {
  2177. "drupal": {
  2178. "version": "8.x-2.5",
  2179. "datestamp": "1632938098",
  2180. "security-coverage": {
  2181. "status": "covered",
  2182. "message": "Covered by Drupal's security advisory policy"
  2183. }
  2184. }
  2185. },
  2186. "notification-url": "https://packages.drupal.org/8/downloads",
  2187. "license": [
  2188. "GPL-2.0-or-later"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "targoo",
  2193. "homepage": "https://www.drupal.org/user/431910",
  2194. "role": "Maintainer"
  2195. },
  2196. {
  2197. "name": "Nick Wilde",
  2198. "homepage": "https://www.drupal.org/user/nickwilde",
  2199. "role": "Maintainer"
  2200. },
  2201. {
  2202. "name": "targoo",
  2203. "homepage": "https://www.drupal.org/user/431910"
  2204. }
  2205. ],
  2206. "description": "Provides a color field type to store the color value and opacity",
  2207. "homepage": "https://www.drupal.org/project/color_field",
  2208. "support": {
  2209. "source": "https://git.drupalcode.org/project/color_field",
  2210. "issues": "https://www.drupal.org/project/issues/color_field?version=8.x"
  2211. }
  2212. },
  2213. {
  2214. "name": "drupal/config_devel",
  2215. "version": "1.8.0",
  2216. "source": {
  2217. "type": "git",
  2218. "url": "https://git.drupalcode.org/project/config_devel.git",
  2219. "reference": "8.x-1.8"
  2220. },
  2221. "dist": {
  2222. "type": "zip",
  2223. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.8.zip",
  2224. "reference": "8.x-1.8",
  2225. "shasum": "325caa6c6d0ee39e938807892f9ec509e71b5fb7"
  2226. },
  2227. "require": {
  2228. "drupal/core": "^8 || ^9"
  2229. },
  2230. "type": "drupal-module",
  2231. "extra": {
  2232. "drupal": {
  2233. "version": "8.x-1.8",
  2234. "datestamp": "1609324318",
  2235. "security-coverage": {
  2236. "status": "covered",
  2237. "message": "Covered by Drupal's security advisory policy"
  2238. }
  2239. }
  2240. },
  2241. "notification-url": "https://packages.drupal.org/8/downloads",
  2242. "license": [
  2243. "GPL-2.0+"
  2244. ],
  2245. "authors": [
  2246. {
  2247. "name": "alexpott",
  2248. "homepage": "https://www.drupal.org/user/157725"
  2249. },
  2250. {
  2251. "name": "benjy",
  2252. "homepage": "https://www.drupal.org/user/1852732"
  2253. },
  2254. {
  2255. "name": "chx",
  2256. "homepage": "https://www.drupal.org/user/9446"
  2257. },
  2258. {
  2259. "name": "joachim",
  2260. "homepage": "https://www.drupal.org/user/107701"
  2261. },
  2262. {
  2263. "name": "vijaycs85",
  2264. "homepage": "https://www.drupal.org/user/93488"
  2265. }
  2266. ],
  2267. "description": "Helps developers work with configuration.",
  2268. "homepage": "https://www.drupal.org/project/config_devel",
  2269. "support": {
  2270. "source": "https://git.drupalcode.org/project/config_devel"
  2271. }
  2272. },
  2273. {
  2274. "name": "drupal/config_filter",
  2275. "version": "1.12.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://git.drupalcode.org/project/config_filter.git",
  2279. "reference": "8.x-1.12"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-1.12.zip",
  2284. "reference": "8.x-1.12",
  2285. "shasum": "364581700ca3a298f62950ff37dd309d0bfb8381"
  2286. },
  2287. "require": {
  2288. "drupal/core": "^8.8 || ^9 || ^10"
  2289. },
  2290. "suggest": {
  2291. "drupal/config_split": "Split site configuration for different environments."
  2292. },
  2293. "type": "drupal-module",
  2294. "extra": {
  2295. "drupal": {
  2296. "version": "8.x-1.12",
  2297. "datestamp": "1698308496",
  2298. "security-coverage": {
  2299. "status": "covered",
  2300. "message": "Covered by Drupal's security advisory policy"
  2301. }
  2302. }
  2303. },
  2304. "notification-url": "https://packages.drupal.org/8/downloads",
  2305. "license": [
  2306. "GPL-2.0-or-later"
  2307. ],
  2308. "authors": [
  2309. {
  2310. "name": "Fabian Bircher",
  2311. "homepage": "https://www.drupal.org/u/bircher",
  2312. "email": "opensource@fabianbircher.com",
  2313. "role": "Maintainer"
  2314. },
  2315. {
  2316. "name": "Nuvole Web",
  2317. "homepage": "http://nuvole.org",
  2318. "email": "info@nuvole.org",
  2319. "role": "Maintainer"
  2320. },
  2321. {
  2322. "name": "pescetti",
  2323. "homepage": "https://www.drupal.org/user/436244"
  2324. }
  2325. ],
  2326. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2327. "homepage": "https://www.drupal.org/project/config_filter",
  2328. "keywords": [
  2329. "Drupal",
  2330. "configuration",
  2331. "configuration management"
  2332. ],
  2333. "support": {
  2334. "source": "https://git.drupalcode.org/project/config_filter",
  2335. "issues": "https://www.drupal.org/project/issues/config_filter",
  2336. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2337. }
  2338. },
  2339. {
  2340. "name": "drupal/config_ignore",
  2341. "version": "3.3.0",
  2342. "source": {
  2343. "type": "git",
  2344. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2345. "reference": "8.x-3.3"
  2346. },
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2350. "reference": "8.x-3.3",
  2351. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2352. },
  2353. "require": {
  2354. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2355. },
  2356. "require-dev": {
  2357. "drupal/config_filter": "^1.8||^2.2",
  2358. "drush/drush": "^10 || ^11 || ^12"
  2359. },
  2360. "type": "drupal-module",
  2361. "extra": {
  2362. "drupal": {
  2363. "version": "8.x-3.3",
  2364. "datestamp": "1713299496",
  2365. "security-coverage": {
  2366. "status": "covered",
  2367. "message": "Covered by Drupal's security advisory policy"
  2368. }
  2369. }
  2370. },
  2371. "notification-url": "https://packages.drupal.org/8/downloads",
  2372. "license": [
  2373. "GPL-2.0-or-later"
  2374. ],
  2375. "authors": [
  2376. {
  2377. "name": "Tommy Lynge Jørgensen",
  2378. "homepage": "https://www.drupal.org/u/tlyngej",
  2379. "email": "tlyngej@gmail.com",
  2380. "role": "Maintainer"
  2381. },
  2382. {
  2383. "name": "Fabian Bircher",
  2384. "homepage": "https://www.drupal.org/u/bircher",
  2385. "role": "Maintainer"
  2386. },
  2387. {
  2388. "name": "tlyngej",
  2389. "homepage": "https://www.drupal.org/user/413139"
  2390. }
  2391. ],
  2392. "description": "Ignore certain configuration during import and export.",
  2393. "homepage": "http://drupal.org/project/config_ignore",
  2394. "support": {
  2395. "source": "https://git.drupalcode.org/project/config_ignore",
  2396. "issues": "http://drupal.org/project/config_ignore"
  2397. }
  2398. },
  2399. {
  2400. "name": "drupal/config_update",
  2401. "version": "1.7.0",
  2402. "source": {
  2403. "type": "git",
  2404. "url": "https://git.drupalcode.org/project/config_update.git",
  2405. "reference": "8.x-1.7"
  2406. },
  2407. "dist": {
  2408. "type": "zip",
  2409. "url": "https://ftp.drupal.org/files/projects/config_update-8.x-1.7.zip",
  2410. "reference": "8.x-1.7",
  2411. "shasum": "8f079abf7c2ea826a27fa5224b0770a26404c968"
  2412. },
  2413. "require": {
  2414. "drupal/core": "^8 || ^9"
  2415. },
  2416. "type": "drupal-module",
  2417. "extra": {
  2418. "drupal": {
  2419. "version": "8.x-1.7",
  2420. "datestamp": "1586355587",
  2421. "security-coverage": {
  2422. "status": "covered",
  2423. "message": "Covered by Drupal's security advisory policy"
  2424. }
  2425. }
  2426. },
  2427. "notification-url": "https://packages.drupal.org/8/downloads",
  2428. "license": [
  2429. "GPL-2.0-or-later"
  2430. ],
  2431. "authors": [
  2432. {
  2433. "name": "codebymikey",
  2434. "homepage": "https://www.drupal.org/user/3573206"
  2435. },
  2436. {
  2437. "name": "pasqualle",
  2438. "homepage": "https://www.drupal.org/user/80733"
  2439. },
  2440. {
  2441. "name": "vishalkhode",
  2442. "homepage": "https://www.drupal.org/user/2439156"
  2443. }
  2444. ],
  2445. "description": "Provides basic revert and update functionality for other modules",
  2446. "homepage": "https://www.drupal.org/project/config_update",
  2447. "support": {
  2448. "source": "https://git.drupalcode.org/project/config_update"
  2449. }
  2450. },
  2451. {
  2452. "name": "drupal/context",
  2453. "version": "4.1.0",
  2454. "source": {
  2455. "type": "git",
  2456. "url": "https://git.drupalcode.org/project/context.git",
  2457. "reference": "8.x-4.1"
  2458. },
  2459. "dist": {
  2460. "type": "zip",
  2461. "url": "https://ftp.drupal.org/files/projects/context-8.x-4.1.zip",
  2462. "reference": "8.x-4.1",
  2463. "shasum": "5cfee680f7299d82b584502479c85566bb4285c1"
  2464. },
  2465. "require": {
  2466. "drupal/core": "^8.8 || ^9"
  2467. },
  2468. "type": "drupal-module",
  2469. "extra": {
  2470. "drupal": {
  2471. "version": "8.x-4.1",
  2472. "datestamp": "1628187190",
  2473. "security-coverage": {
  2474. "status": "covered",
  2475. "message": "Covered by Drupal's security advisory policy"
  2476. }
  2477. }
  2478. },
  2479. "notification-url": "https://packages.drupal.org/8/downloads",
  2480. "license": [
  2481. "MIT"
  2482. ],
  2483. "authors": [
  2484. {
  2485. "name": "Christoffer Palm",
  2486. "homepage": "http://www.oddhill.se/",
  2487. "email": "christoffer.palm@oddhill.se",
  2488. "role": "Developer"
  2489. },
  2490. {
  2491. "name": "boshtian",
  2492. "homepage": "https://www.drupal.org/user/1773456"
  2493. },
  2494. {
  2495. "name": "colan",
  2496. "homepage": "https://www.drupal.org/user/58704"
  2497. },
  2498. {
  2499. "name": "emanaton",
  2500. "homepage": "https://www.drupal.org/user/120853"
  2501. },
  2502. {
  2503. "name": "febbraro",
  2504. "homepage": "https://www.drupal.org/user/43670"
  2505. },
  2506. {
  2507. "name": "fizk",
  2508. "homepage": "https://www.drupal.org/user/473174"
  2509. },
  2510. {
  2511. "name": "hass",
  2512. "homepage": "https://www.drupal.org/user/85918"
  2513. },
  2514. {
  2515. "name": "hefox",
  2516. "homepage": "https://www.drupal.org/user/426416"
  2517. },
  2518. {
  2519. "name": "jmiccolis",
  2520. "homepage": "https://www.drupal.org/user/31731"
  2521. },
  2522. {
  2523. "name": "Kristen Pol",
  2524. "homepage": "https://www.drupal.org/user/8389"
  2525. },
  2526. {
  2527. "name": "nedjo",
  2528. "homepage": "https://www.drupal.org/user/4481"
  2529. },
  2530. {
  2531. "name": "NormySan",
  2532. "homepage": "https://www.drupal.org/user/112352"
  2533. },
  2534. {
  2535. "name": "patricksettle",
  2536. "homepage": "https://www.drupal.org/user/26618"
  2537. },
  2538. {
  2539. "name": "paulocs",
  2540. "homepage": "https://www.drupal.org/user/3640109"
  2541. },
  2542. {
  2543. "name": "Steven Jones",
  2544. "homepage": "https://www.drupal.org/user/99644"
  2545. },
  2546. {
  2547. "name": "tekante",
  2548. "homepage": "https://www.drupal.org/user/640024"
  2549. },
  2550. {
  2551. "name": "yhahn",
  2552. "homepage": "https://www.drupal.org/user/264833"
  2553. }
  2554. ],
  2555. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2556. "homepage": "https://github.com/oddhill/context",
  2557. "keywords": [
  2558. "Drupal",
  2559. "block",
  2560. "conditions",
  2561. "context",
  2562. "visibility"
  2563. ],
  2564. "support": {
  2565. "source": "https://github.com/oddhill/context",
  2566. "issues": "https://github.com/oddhill/context/issues",
  2567. "docs": "https://github.com/oddhill/context"
  2568. }
  2569. },
  2570. {
  2571. "name": "drupal/core",
  2572. "version": "8.9.20",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/drupal/core.git",
  2576. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/drupal/core/zipball/39e2e1c32498338921923af66a90cb4a23a5b389",
  2581. "reference": "39e2e1c32498338921923af66a90cb4a23a5b389",
  2582. "shasum": ""
  2583. },
  2584. "require": {
  2585. "asm89/stack-cors": "^1.1",
  2586. "composer/semver": "^1.0",
  2587. "doctrine/annotations": "^1.4",
  2588. "doctrine/common": "^2.7",
  2589. "easyrdf/easyrdf": "^0.9",
  2590. "egulias/email-validator": "^2.0",
  2591. "ext-date": "*",
  2592. "ext-dom": "*",
  2593. "ext-filter": "*",
  2594. "ext-gd": "*",
  2595. "ext-hash": "*",
  2596. "ext-json": "*",
  2597. "ext-pcre": "*",
  2598. "ext-pdo": "*",
  2599. "ext-session": "*",
  2600. "ext-simplexml": "*",
  2601. "ext-spl": "*",
  2602. "ext-tokenizer": "*",
  2603. "ext-xml": "*",
  2604. "guzzlehttp/guzzle": "^6.3",
  2605. "laminas/laminas-diactoros": "^1.8",
  2606. "laminas/laminas-feed": "^2.12",
  2607. "masterminds/html5": "^2.1",
  2608. "pear/archive_tar": "^1.4.14",
  2609. "php": "^7.0.8",
  2610. "psr/log": "^1.0",
  2611. "stack/builder": "^1.0",
  2612. "symfony-cmf/routing": "^1.4",
  2613. "symfony/class-loader": "~3.4.0",
  2614. "symfony/console": "~3.4.0",
  2615. "symfony/dependency-injection": "~3.4.26",
  2616. "symfony/event-dispatcher": "~3.4.0",
  2617. "symfony/http-foundation": "~3.4.35",
  2618. "symfony/http-kernel": "~3.4.14",
  2619. "symfony/polyfill-iconv": "^1.0",
  2620. "symfony/process": "~3.4.0",
  2621. "symfony/psr-http-message-bridge": "^1.1.2",
  2622. "symfony/routing": "~3.4.0",
  2623. "symfony/serializer": "~3.4.0",
  2624. "symfony/translation": "~3.4.0",
  2625. "symfony/validator": "~3.4.0",
  2626. "symfony/yaml": "~3.4.5",
  2627. "twig/twig": "^1.38.2",
  2628. "typo3/phar-stream-wrapper": "^3.1.3"
  2629. },
  2630. "conflict": {
  2631. "drupal/pathauto": "<1.6",
  2632. "drush/drush": "<8.1.10"
  2633. },
  2634. "replace": {
  2635. "drupal/action": "self.version",
  2636. "drupal/aggregator": "self.version",
  2637. "drupal/automated_cron": "self.version",
  2638. "drupal/ban": "self.version",
  2639. "drupal/bartik": "self.version",
  2640. "drupal/basic_auth": "self.version",
  2641. "drupal/big_pipe": "self.version",
  2642. "drupal/block": "self.version",
  2643. "drupal/block_content": "self.version",
  2644. "drupal/block_place": "self.version",
  2645. "drupal/book": "self.version",
  2646. "drupal/breakpoint": "self.version",
  2647. "drupal/ckeditor": "self.version",
  2648. "drupal/claro": "self.version",
  2649. "drupal/classy": "self.version",
  2650. "drupal/color": "self.version",
  2651. "drupal/comment": "self.version",
  2652. "drupal/config": "self.version",
  2653. "drupal/config_translation": "self.version",
  2654. "drupal/contact": "self.version",
  2655. "drupal/content_moderation": "self.version",
  2656. "drupal/content_translation": "self.version",
  2657. "drupal/contextual": "self.version",
  2658. "drupal/core-annotation": "self.version",
  2659. "drupal/core-assertion": "self.version",
  2660. "drupal/core-bridge": "self.version",
  2661. "drupal/core-class-finder": "self.version",
  2662. "drupal/core-datetime": "self.version",
  2663. "drupal/core-dependency-injection": "self.version",
  2664. "drupal/core-diff": "self.version",
  2665. "drupal/core-discovery": "self.version",
  2666. "drupal/core-event-dispatcher": "self.version",
  2667. "drupal/core-file-cache": "self.version",
  2668. "drupal/core-file-security": "self.version",
  2669. "drupal/core-filesystem": "self.version",
  2670. "drupal/core-gettext": "self.version",
  2671. "drupal/core-graph": "self.version",
  2672. "drupal/core-http-foundation": "self.version",
  2673. "drupal/core-php-storage": "self.version",
  2674. "drupal/core-plugin": "self.version",
  2675. "drupal/core-proxy-builder": "self.version",
  2676. "drupal/core-render": "self.version",
  2677. "drupal/core-serialization": "self.version",
  2678. "drupal/core-transliteration": "self.version",
  2679. "drupal/core-utility": "self.version",
  2680. "drupal/core-uuid": "self.version",
  2681. "drupal/core-version": "self.version",
  2682. "drupal/datetime": "self.version",
  2683. "drupal/datetime_range": "self.version",
  2684. "drupal/dblog": "self.version",
  2685. "drupal/dynamic_page_cache": "self.version",
  2686. "drupal/editor": "self.version",
  2687. "drupal/entity_reference": "self.version",
  2688. "drupal/field": "self.version",
  2689. "drupal/field_layout": "self.version",
  2690. "drupal/field_ui": "self.version",
  2691. "drupal/file": "self.version",
  2692. "drupal/filter": "self.version",
  2693. "drupal/forum": "self.version",
  2694. "drupal/hal": "self.version",
  2695. "drupal/help": "self.version",
  2696. "drupal/help_topics": "self.version",
  2697. "drupal/history": "self.version",
  2698. "drupal/image": "self.version",
  2699. "drupal/inline_form_errors": "self.version",
  2700. "drupal/jsonapi": "self.version",
  2701. "drupal/language": "self.version",
  2702. "drupal/layout_builder": "self.version",
  2703. "drupal/layout_discovery": "self.version",
  2704. "drupal/link": "self.version",
  2705. "drupal/locale": "self.version",
  2706. "drupal/media": "self.version",
  2707. "drupal/media_library": "self.version",
  2708. "drupal/menu_link_content": "self.version",
  2709. "drupal/menu_ui": "self.version",
  2710. "drupal/migrate": "self.version",
  2711. "drupal/migrate_drupal": "self.version",
  2712. "drupal/migrate_drupal_multilingual": "self.version",
  2713. "drupal/migrate_drupal_ui": "self.version",
  2714. "drupal/minimal": "self.version",
  2715. "drupal/node": "self.version",
  2716. "drupal/options": "self.version",
  2717. "drupal/page_cache": "self.version",
  2718. "drupal/path": "self.version",
  2719. "drupal/path_alias": "self.version",
  2720. "drupal/quickedit": "self.version",
  2721. "drupal/rdf": "self.version",
  2722. "drupal/responsive_image": "self.version",
  2723. "drupal/rest": "self.version",
  2724. "drupal/search": "self.version",
  2725. "drupal/serialization": "self.version",
  2726. "drupal/settings_tray": "self.version",
  2727. "drupal/seven": "self.version",
  2728. "drupal/shortcut": "self.version",
  2729. "drupal/simpletest": "self.version",
  2730. "drupal/standard": "self.version",
  2731. "drupal/stark": "self.version",
  2732. "drupal/statistics": "self.version",
  2733. "drupal/syslog": "self.version",
  2734. "drupal/system": "self.version",
  2735. "drupal/taxonomy": "self.version",
  2736. "drupal/telephone": "self.version",
  2737. "drupal/text": "self.version",
  2738. "drupal/toolbar": "self.version",
  2739. "drupal/tour": "self.version",
  2740. "drupal/tracker": "self.version",
  2741. "drupal/update": "self.version",
  2742. "drupal/user": "self.version",
  2743. "drupal/views": "self.version",
  2744. "drupal/views_ui": "self.version",
  2745. "drupal/workflows": "self.version",
  2746. "drupal/workspaces": "self.version"
  2747. },
  2748. "type": "drupal-core",
  2749. "extra": {
  2750. "drupal-scaffold": {
  2751. "file-mapping": {
  2752. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2753. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2754. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2755. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2756. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2757. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2758. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2759. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2760. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2761. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2762. "[web-root]/README.txt": "assets/scaffold/files/drupal.README.txt",
  2763. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2764. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2765. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2766. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2767. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2768. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2769. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2770. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2771. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2772. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2773. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2774. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2775. }
  2776. }
  2777. },
  2778. "autoload": {
  2779. "psr-4": {
  2780. "Drupal\\Core\\": "lib/Drupal/Core",
  2781. "Drupal\\Driver\\": "../drivers/lib/Drupal/Driver",
  2782. "Drupal\\Component\\": "lib/Drupal/Component"
  2783. },
  2784. "classmap": [
  2785. "lib/Drupal.php",
  2786. "lib/Drupal/Component/Utility/Timer.php",
  2787. "lib/Drupal/Component/Utility/Unicode.php",
  2788. "lib/Drupal/Core/Database/Database.php",
  2789. "lib/Drupal/Core/DrupalKernel.php",
  2790. "lib/Drupal/Core/DrupalKernelInterface.php",
  2791. "lib/Drupal/Core/Site/Settings.php"
  2792. ]
  2793. },
  2794. "notification-url": "https://packagist.org/downloads/",
  2795. "license": [
  2796. "GPL-2.0-or-later"
  2797. ],
  2798. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2799. "support": {
  2800. "source": "https://github.com/drupal/core/tree/8.9.20"
  2801. },
  2802. "time": "2021-11-17T21:24:28+00:00"
  2803. },
  2804. {
  2805. "name": "drupal/core-composer-scaffold",
  2806. "version": "8.9.20",
  2807. "source": {
  2808. "type": "git",
  2809. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2810. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d"
  2811. },
  2812. "dist": {
  2813. "type": "zip",
  2814. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2815. "reference": "c902d07cb49ef73777e2b33a39e54c2861a8c81d",
  2816. "shasum": ""
  2817. },
  2818. "require": {
  2819. "composer-plugin-api": "^1 || ^2",
  2820. "php": ">=7.0.8"
  2821. },
  2822. "conflict": {
  2823. "drupal-composer/drupal-scaffold": "*"
  2824. },
  2825. "require-dev": {
  2826. "composer/composer": "^1.8@stable"
  2827. },
  2828. "type": "composer-plugin",
  2829. "extra": {
  2830. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2831. "branch-alias": {
  2832. "dev-master": "1.0.x-dev"
  2833. }
  2834. },
  2835. "autoload": {
  2836. "psr-4": {
  2837. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2838. }
  2839. },
  2840. "notification-url": "https://packagist.org/downloads/",
  2841. "license": [
  2842. "GPL-2.0-or-later"
  2843. ],
  2844. "description": "A flexible Composer project scaffold builder.",
  2845. "homepage": "https://www.drupal.org/project/drupal",
  2846. "keywords": [
  2847. "drupal"
  2848. ],
  2849. "support": {
  2850. "source": "https://github.com/drupal/core-composer-scaffold/tree/8.9.4"
  2851. },
  2852. "time": "2020-08-07T22:30:30+00:00"
  2853. },
  2854. {
  2855. "name": "drupal/core-project-message",
  2856. "version": "8.9.20",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://github.com/drupal/core-project-message.git",
  2860. "reference": "3f8fa28128f1fef68ee0e6647011a543ef92be5b"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/3f8fa28128f1fef68ee0e6647011a543ef92be5b",
  2865. "reference": "3f8fa28128f1fef68ee0e6647011a543ef92be5b",
  2866. "shasum": ""
  2867. },
  2868. "require": {
  2869. "composer-plugin-api": "^1.1 || ^2",
  2870. "php": ">=7.0.8"
  2871. },
  2872. "type": "composer-plugin",
  2873. "extra": {
  2874. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2875. },
  2876. "autoload": {
  2877. "psr-4": {
  2878. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2879. }
  2880. },
  2881. "notification-url": "https://packagist.org/downloads/",
  2882. "license": [
  2883. "GPL-2.0-or-later"
  2884. ],
  2885. "description": "Adds a message after Composer installation.",
  2886. "homepage": "https://www.drupal.org/project/drupal",
  2887. "keywords": [
  2888. "drupal"
  2889. ],
  2890. "support": {
  2891. "source": "https://github.com/drupal/core-project-message/tree/8.9.4"
  2892. },
  2893. "time": "2020-08-02T22:04:49+00:00"
  2894. },
  2895. {
  2896. "name": "drupal/core-recommended",
  2897. "version": "8.9.20",
  2898. "source": {
  2899. "type": "git",
  2900. "url": "https://github.com/drupal/core-recommended.git",
  2901. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1"
  2902. },
  2903. "dist": {
  2904. "type": "zip",
  2905. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2906. "reference": "49b9abf15bf4b82c5b47692e39770f2f3a76eaf1",
  2907. "shasum": ""
  2908. },
  2909. "require": {
  2910. "asm89/stack-cors": "1.3.0",
  2911. "composer/semver": "1.5.1",
  2912. "doctrine/annotations": "v1.4.0",
  2913. "doctrine/cache": "v1.6.2",
  2914. "doctrine/collections": "v1.4.0",
  2915. "doctrine/common": "v2.7.3",
  2916. "doctrine/inflector": "v1.2.0",
  2917. "doctrine/lexer": "1.0.2",
  2918. "drupal/core": "8.9.20",
  2919. "easyrdf/easyrdf": "0.9.1",
  2920. "egulias/email-validator": "2.1.17",
  2921. "guzzlehttp/guzzle": "6.5.4",
  2922. "guzzlehttp/promises": "v1.3.1",
  2923. "guzzlehttp/psr7": "1.6.1",
  2924. "laminas/laminas-diactoros": "1.8.7p2",
  2925. "laminas/laminas-escaper": "2.6.1",
  2926. "laminas/laminas-feed": "2.12.2",
  2927. "laminas/laminas-stdlib": "3.2.1",
  2928. "laminas/laminas-zendframework-bridge": "1.0.4",
  2929. "masterminds/html5": "2.3.0",
  2930. "paragonie/random_compat": "v9.99.99",
  2931. "pear/archive_tar": "1.4.14",
  2932. "pear/console_getopt": "v1.4.3",
  2933. "pear/pear-core-minimal": "v1.10.10",
  2934. "pear/pear_exception": "v1.0.1",
  2935. "psr/container": "1.0.0",
  2936. "psr/http-message": "1.0.1",
  2937. "psr/log": "1.1.3",
  2938. "ralouphie/getallheaders": "3.0.3",
  2939. "stack/builder": "v1.0.5",
  2940. "symfony-cmf/routing": "1.4.1",
  2941. "symfony/class-loader": "v3.4.41",
  2942. "symfony/console": "v3.4.41",
  2943. "symfony/debug": "v3.4.41",
  2944. "symfony/dependency-injection": "v3.4.41",
  2945. "symfony/event-dispatcher": "v3.4.41",
  2946. "symfony/http-foundation": "v3.4.41",
  2947. "symfony/http-kernel": "v3.4.44",
  2948. "symfony/polyfill-ctype": "v1.17.0",
  2949. "symfony/polyfill-iconv": "v1.17.0",
  2950. "symfony/polyfill-intl-idn": "v1.17.0",
  2951. "symfony/polyfill-mbstring": "v1.17.0",
  2952. "symfony/polyfill-php56": "v1.17.0",
  2953. "symfony/polyfill-php70": "v1.17.0",
  2954. "symfony/polyfill-php72": "v1.17.0",
  2955. "symfony/polyfill-util": "v1.17.0",
  2956. "symfony/process": "v3.4.41",
  2957. "symfony/psr-http-message-bridge": "v1.1.2",
  2958. "symfony/routing": "v3.4.41",
  2959. "symfony/serializer": "v3.4.41",
  2960. "symfony/translation": "v3.4.41",
  2961. "symfony/validator": "v3.4.41",
  2962. "symfony/yaml": "v3.4.41",
  2963. "twig/twig": "v1.42.5",
  2964. "typo3/phar-stream-wrapper": "v3.1.4"
  2965. },
  2966. "conflict": {
  2967. "webflo/drupal-core-strict": "*"
  2968. },
  2969. "type": "metapackage",
  2970. "notification-url": "https://packagist.org/downloads/",
  2971. "license": [
  2972. "GPL-2.0-or-later"
  2973. ],
  2974. "description": "Locked core dependencies; require this project INSTEAD OF drupal/core.",
  2975. "support": {
  2976. "source": "https://github.com/drupal/core-recommended/tree/8.9.20"
  2977. },
  2978. "time": "2021-11-17T21:24:28+00:00"
  2979. },
  2980. {
  2981. "name": "drupal/ctools",
  2982. "version": "3.9.0",
  2983. "source": {
  2984. "type": "git",
  2985. "url": "https://git.drupalcode.org/project/ctools.git",
  2986. "reference": "8.x-3.9"
  2987. },
  2988. "dist": {
  2989. "type": "zip",
  2990. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.9.zip",
  2991. "reference": "8.x-3.9",
  2992. "shasum": "227ba06f5f98bded0658b83322949c33d1b3183e"
  2993. },
  2994. "require": {
  2995. "drupal/core": "^8.8 || ^9"
  2996. },
  2997. "type": "drupal-module",
  2998. "extra": {
  2999. "drupal": {
  3000. "version": "8.x-3.9",
  3001. "datestamp": "1658864511",
  3002. "security-coverage": {
  3003. "status": "covered",
  3004. "message": "Covered by Drupal's security advisory policy"
  3005. }
  3006. },
  3007. "branch-alias": {
  3008. "dev-8.x-3.x": "3.x-dev"
  3009. }
  3010. },
  3011. "notification-url": "https://packages.drupal.org/8/downloads",
  3012. "license": [
  3013. "GPL-2.0-or-later"
  3014. ],
  3015. "authors": [
  3016. {
  3017. "name": "Kris Vanderwater (EclipseGc)",
  3018. "homepage": "https://www.drupal.org/u/eclipsegc",
  3019. "role": "Maintainer"
  3020. },
  3021. {
  3022. "name": "Jakob Perry (japerry)",
  3023. "homepage": "https://www.drupal.org/u/japerry",
  3024. "role": "Maintainer"
  3025. },
  3026. {
  3027. "name": "Tim Plunkett (tim.plunkett)",
  3028. "homepage": "https://www.drupal.org/u/timplunkett",
  3029. "role": "Maintainer"
  3030. },
  3031. {
  3032. "name": "James Gilliland (neclimdul)",
  3033. "homepage": "https://www.drupal.org/u/neclimdul",
  3034. "role": "Maintainer"
  3035. },
  3036. {
  3037. "name": "Daniel Wehner (dawehner)",
  3038. "homepage": "https://www.drupal.org/u/dawehner",
  3039. "role": "Maintainer"
  3040. },
  3041. {
  3042. "name": "joelpittet",
  3043. "homepage": "https://www.drupal.org/user/160302"
  3044. },
  3045. {
  3046. "name": "merlinofchaos",
  3047. "homepage": "https://www.drupal.org/user/26979"
  3048. },
  3049. {
  3050. "name": "neclimdul",
  3051. "homepage": "https://www.drupal.org/user/48673"
  3052. },
  3053. {
  3054. "name": "sdboyer",
  3055. "homepage": "https://www.drupal.org/user/146719"
  3056. },
  3057. {
  3058. "name": "sun",
  3059. "homepage": "https://www.drupal.org/user/54136"
  3060. },
  3061. {
  3062. "name": "tim.plunkett",
  3063. "homepage": "https://www.drupal.org/user/241634"
  3064. }
  3065. ],
  3066. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3067. "homepage": "https://www.drupal.org/project/ctools",
  3068. "support": {
  3069. "source": "https://git.drupalcode.org/project/ctools",
  3070. "issues": "https://www.drupal.org/project/issues/ctools"
  3071. }
  3072. },
  3073. {
  3074. "name": "drupal/date_range_formatter",
  3075. "version": "4.0.2",
  3076. "source": {
  3077. "type": "git",
  3078. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3079. "reference": "4.0.2"
  3080. },
  3081. "dist": {
  3082. "type": "zip",
  3083. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  3084. "reference": "4.0.2",
  3085. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  3086. },
  3087. "require": {
  3088. "drupal/core": "^8 || ^9 || ^10"
  3089. },
  3090. "type": "drupal-module",
  3091. "extra": {
  3092. "drupal": {
  3093. "version": "4.0.2",
  3094. "datestamp": "1703156621",
  3095. "security-coverage": {
  3096. "status": "covered",
  3097. "message": "Covered by Drupal's security advisory policy"
  3098. }
  3099. }
  3100. },
  3101. "notification-url": "https://packages.drupal.org/8/downloads",
  3102. "license": [
  3103. "GPL-2.0-or-later"
  3104. ],
  3105. "authors": [
  3106. {
  3107. "name": "maximpodorov",
  3108. "homepage": "https://www.drupal.org/user/515310"
  3109. },
  3110. {
  3111. "name": "sudishth",
  3112. "homepage": "https://www.drupal.org/user/1440562"
  3113. }
  3114. ],
  3115. "description": "Formats date ranges.",
  3116. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3117. "support": {
  3118. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3119. }
  3120. },
  3121. {
  3122. "name": "drupal/devel",
  3123. "version": "4.2.1",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://git.drupalcode.org/project/devel.git",
  3127. "reference": "4.2.1"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://ftp.drupal.org/files/projects/devel-4.2.1.zip",
  3132. "reference": "4.2.1",
  3133. "shasum": "aa08379bad81cb2e604ee9a0b9e2aabd86fae13f"
  3134. },
  3135. "require": {
  3136. "doctrine/common": "^2.7",
  3137. "drupal/core": "^8.8 || ^9",
  3138. "symfony/var-dumper": "^4 || ^5"
  3139. },
  3140. "conflict": {
  3141. "kint-php/kint": "<3"
  3142. },
  3143. "require-dev": {
  3144. "drush/drush": "^10"
  3145. },
  3146. "suggest": {
  3147. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3148. },
  3149. "type": "drupal-module",
  3150. "extra": {
  3151. "drupal": {
  3152. "version": "4.2.1",
  3153. "datestamp": "1664317444",
  3154. "security-coverage": {
  3155. "status": "covered",
  3156. "message": "Covered by Drupal's security advisory policy"
  3157. }
  3158. },
  3159. "drush": {
  3160. "services": {
  3161. "drush.services.yml": "^9 || ^10"
  3162. }
  3163. }
  3164. },
  3165. "notification-url": "https://packages.drupal.org/8/downloads",
  3166. "license": [
  3167. "GPL-2.0-or-later"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "moshe weitzman",
  3172. "homepage": "https://www.drupal.org/user/23"
  3173. }
  3174. ],
  3175. "description": "Various blocks, pages, and functions for developers.",
  3176. "homepage": "https://www.drupal.org/project/devel",
  3177. "support": {
  3178. "source": "https://gitlab.com/drupalspoons/devel",
  3179. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3180. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3181. }
  3182. },
  3183. {
  3184. "name": "drupal/domain",
  3185. "version": "1.0.0-beta8",
  3186. "source": {
  3187. "type": "git",
  3188. "url": "https://git.drupalcode.org/project/domain.git",
  3189. "reference": "8.x-1.0-beta8"
  3190. },
  3191. "dist": {
  3192. "type": "zip",
  3193. "url": "https://ftp.drupal.org/files/projects/domain-8.x-1.0-beta8.zip",
  3194. "reference": "8.x-1.0-beta8",
  3195. "shasum": "24deb7c239b3d0f9cd177a9e0893a9ecb5cf81d3"
  3196. },
  3197. "require": {
  3198. "drupal/core": "^8 || ^9"
  3199. },
  3200. "require-dev": {
  3201. "drupal/domain_access": "*",
  3202. "drupal/domain_config": "*"
  3203. },
  3204. "type": "drupal-module",
  3205. "extra": {
  3206. "drupal": {
  3207. "version": "8.x-1.0-beta8",
  3208. "datestamp": "1677511311",
  3209. "security-coverage": {
  3210. "status": "not-covered",
  3211. "message": "Beta releases are not covered by Drupal security advisories."
  3212. }
  3213. }
  3214. },
  3215. "notification-url": "https://packages.drupal.org/8/downloads",
  3216. "license": [
  3217. "GPL-2.0-or-later"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "agentrickard",
  3222. "homepage": "https://www.drupal.org/user/20975"
  3223. },
  3224. {
  3225. "name": "nonsie",
  3226. "homepage": "https://www.drupal.org/user/29899"
  3227. },
  3228. {
  3229. "name": "webflo",
  3230. "homepage": "https://www.drupal.org/user/254778"
  3231. }
  3232. ],
  3233. "description": "Creates domain records within a Drupal installation.",
  3234. "homepage": "https://www.drupal.org/project/domain",
  3235. "support": {
  3236. "source": "https://git.drupalcode.org/project/domain"
  3237. }
  3238. },
  3239. {
  3240. "name": "drupal/domain_access",
  3241. "version": "1.0.0-beta8",
  3242. "require": {
  3243. "drupal/core": "^8 || ^9",
  3244. "drupal/domain": "*"
  3245. },
  3246. "type": "metapackage",
  3247. "extra": {
  3248. "drupal": {
  3249. "version": "8.x-1.0-beta8",
  3250. "datestamp": "1677511311",
  3251. "security-coverage": {
  3252. "status": "not-covered",
  3253. "message": "Beta releases are not covered by Drupal security advisories."
  3254. }
  3255. }
  3256. },
  3257. "notification-url": "https://packages.drupal.org/8/downloads",
  3258. "license": [
  3259. "GPL-2.0-or-later"
  3260. ],
  3261. "authors": [
  3262. {
  3263. "name": "agentrickard",
  3264. "homepage": "https://www.drupal.org/user/20975"
  3265. },
  3266. {
  3267. "name": "nonsie",
  3268. "homepage": "https://www.drupal.org/user/29899"
  3269. },
  3270. {
  3271. "name": "webflo",
  3272. "homepage": "https://www.drupal.org/user/254778"
  3273. }
  3274. ],
  3275. "description": "Domain-based access control for content.",
  3276. "homepage": "https://www.drupal.org/project/domain",
  3277. "support": {
  3278. "source": "https://git.drupalcode.org/project/domain"
  3279. }
  3280. },
  3281. {
  3282. "name": "drupal/domain_config",
  3283. "version": "1.0.0-beta8",
  3284. "require": {
  3285. "drupal/core": "^8 || ^9",
  3286. "drupal/domain": "*"
  3287. },
  3288. "type": "metapackage",
  3289. "extra": {
  3290. "drupal": {
  3291. "version": "8.x-1.0-beta8",
  3292. "datestamp": "1677511311",
  3293. "security-coverage": {
  3294. "status": "not-covered",
  3295. "message": "Beta releases are not covered by Drupal security advisories."
  3296. }
  3297. }
  3298. },
  3299. "notification-url": "https://packages.drupal.org/8/downloads",
  3300. "license": [
  3301. "GPL-2.0-or-later"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "agentrickard",
  3306. "homepage": "https://www.drupal.org/user/20975"
  3307. },
  3308. {
  3309. "name": "nonsie",
  3310. "homepage": "https://www.drupal.org/user/29899"
  3311. },
  3312. {
  3313. "name": "webflo",
  3314. "homepage": "https://www.drupal.org/user/254778"
  3315. }
  3316. ],
  3317. "description": "Allows domain specific configuration.",
  3318. "homepage": "https://www.drupal.org/project/domain",
  3319. "support": {
  3320. "source": "https://git.drupalcode.org/project/domain"
  3321. }
  3322. },
  3323. {
  3324. "name": "drupal/domain_menu_access",
  3325. "version": "1.0.0-alpha2",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3329. "reference": "8.x-1.0-alpha2"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-8.x-1.0-alpha2.zip",
  3334. "reference": "8.x-1.0-alpha2",
  3335. "shasum": "9382513e0cd172844923686a0bb9f2324ba11709"
  3336. },
  3337. "require": {
  3338. "drupal/core": "~8.0",
  3339. "drupal/domain": "*",
  3340. "drupal/domain_access": "*"
  3341. },
  3342. "type": "drupal-module",
  3343. "extra": {
  3344. "drupal": {
  3345. "version": "8.x-1.0-alpha2",
  3346. "datestamp": "1519214884",
  3347. "security-coverage": {
  3348. "status": "not-covered",
  3349. "message": "Alpha releases are not covered by Drupal security advisories."
  3350. }
  3351. }
  3352. },
  3353. "notification-url": "https://packages.drupal.org/8/downloads",
  3354. "license": [
  3355. "GPL-2.0-or-later"
  3356. ],
  3357. "authors": [
  3358. {
  3359. "name": "maciej.zgadzaj",
  3360. "homepage": "https://www.drupal.org/user/271491"
  3361. },
  3362. {
  3363. "name": "pifagor",
  3364. "homepage": "https://www.drupal.org/user/2375692"
  3365. },
  3366. {
  3367. "name": "Sebastien M.",
  3368. "homepage": "https://www.drupal.org/user/380104"
  3369. },
  3370. {
  3371. "name": "tim-diels",
  3372. "homepage": "https://www.drupal.org/user/2915097"
  3373. }
  3374. ],
  3375. "description": "Domain-based access control for menu link.",
  3376. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3377. "support": {
  3378. "source": "https://git.drupalcode.org/project/domain_menu_access"
  3379. }
  3380. },
  3381. {
  3382. "name": "drupal/domain_site_settings",
  3383. "version": "1.6.0",
  3384. "source": {
  3385. "type": "git",
  3386. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3387. "reference": "8.x-1.6"
  3388. },
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3392. "reference": "8.x-1.6",
  3393. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3394. },
  3395. "require": {
  3396. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3397. "drupal/domain": "^1.0 || ^2.0",
  3398. "drupal/domain_config": "*"
  3399. },
  3400. "type": "drupal-module",
  3401. "extra": {
  3402. "drupal": {
  3403. "version": "8.x-1.6",
  3404. "datestamp": "1726238712",
  3405. "security-coverage": {
  3406. "status": "covered",
  3407. "message": "Covered by Drupal's security advisory policy"
  3408. }
  3409. }
  3410. },
  3411. "notification-url": "https://packages.drupal.org/8/downloads",
  3412. "license": [
  3413. "GPL-2.0+"
  3414. ],
  3415. "authors": [
  3416. {
  3417. "name": "aloknarwaria",
  3418. "homepage": "https://www.drupal.org/user/906640"
  3419. },
  3420. {
  3421. "name": "jeroent",
  3422. "homepage": "https://www.drupal.org/user/2228934"
  3423. },
  3424. {
  3425. "name": "malaynayak",
  3426. "homepage": "https://www.drupal.org/user/3529755"
  3427. }
  3428. ],
  3429. "description": "Basic Site Setting for Domains.",
  3430. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3431. "keywords": [
  3432. "Drupal"
  3433. ],
  3434. "support": {
  3435. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3436. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3437. }
  3438. },
  3439. {
  3440. "name": "drupal/email_registration",
  3441. "version": "1.1.0",
  3442. "source": {
  3443. "type": "git",
  3444. "url": "https://git.drupalcode.org/project/email_registration.git",
  3445. "reference": "8.x-1.1"
  3446. },
  3447. "dist": {
  3448. "type": "zip",
  3449. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.1.zip",
  3450. "reference": "8.x-1.1",
  3451. "shasum": "cc0eef597216a6d025d9017df104f2693b029f96"
  3452. },
  3453. "require": {
  3454. "drupal/core": "^8.7.7 || ^9"
  3455. },
  3456. "conflict": {
  3457. "drupal/commerce": "<2.12"
  3458. },
  3459. "require-dev": {
  3460. "drupal/commerce": "^2.0"
  3461. },
  3462. "type": "drupal-module",
  3463. "extra": {
  3464. "drupal": {
  3465. "version": "8.x-1.1",
  3466. "datestamp": "1592317072",
  3467. "security-coverage": {
  3468. "status": "covered",
  3469. "message": "Covered by Drupal's security advisory policy"
  3470. }
  3471. }
  3472. },
  3473. "notification-url": "https://packages.drupal.org/8/downloads",
  3474. "license": [
  3475. "GPL-2.0-or-later"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Greg Knaddison (greggles)",
  3480. "homepage": "https://www.drupal.org/u/greggles",
  3481. "role": "Maintainer"
  3482. },
  3483. {
  3484. "name": "Andrey Postnikov (andypost)",
  3485. "homepage": "https://www.drupal.org/u/andypost",
  3486. "role": "Maintainer"
  3487. },
  3488. {
  3489. "name": "Chris Herberte",
  3490. "homepage": "https://www.drupal.org/u/chris-herberte",
  3491. "role": "Maintainer"
  3492. },
  3493. {
  3494. "name": "Moshe Weitzman (moshe weitzman)",
  3495. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "Grevil",
  3500. "homepage": "https://www.drupal.org/user/3668491"
  3501. },
  3502. {
  3503. "name": "moshe weitzman",
  3504. "homepage": "https://www.drupal.org/user/23"
  3505. }
  3506. ],
  3507. "description": "Allows users to register with an email address as their username.",
  3508. "homepage": "https://www.drupal.org/project/email_registration",
  3509. "support": {
  3510. "source": "https://git.drupalcode.org/project/email_registration",
  3511. "issues": "http://drupal.org/project/issues/email_registration"
  3512. }
  3513. },
  3514. {
  3515. "name": "drupal/entity",
  3516. "version": "1.3.0",
  3517. "source": {
  3518. "type": "git",
  3519. "url": "https://git.drupalcode.org/project/entity.git",
  3520. "reference": "8.x-1.3"
  3521. },
  3522. "dist": {
  3523. "type": "zip",
  3524. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.3.zip",
  3525. "reference": "8.x-1.3",
  3526. "shasum": "9515e28a70448d369adf4199d08a01a5ab75792d"
  3527. },
  3528. "require": {
  3529. "drupal/core": "^8.8.2 || ^9"
  3530. },
  3531. "type": "drupal-module",
  3532. "extra": {
  3533. "drupal": {
  3534. "version": "8.x-1.3",
  3535. "datestamp": "1646324539",
  3536. "security-coverage": {
  3537. "status": "covered",
  3538. "message": "Covered by Drupal's security advisory policy"
  3539. }
  3540. }
  3541. },
  3542. "notification-url": "https://packages.drupal.org/8/downloads",
  3543. "license": [
  3544. "GPL-2.0-or-later"
  3545. ],
  3546. "authors": [
  3547. {
  3548. "name": "berdir",
  3549. "homepage": "https://www.drupal.org/user/214652"
  3550. },
  3551. {
  3552. "name": "bojanz",
  3553. "homepage": "https://www.drupal.org/user/86106"
  3554. },
  3555. {
  3556. "name": "dawehner",
  3557. "homepage": "https://www.drupal.org/user/99340"
  3558. },
  3559. {
  3560. "name": "dixon_",
  3561. "homepage": "https://www.drupal.org/user/239911"
  3562. },
  3563. {
  3564. "name": "fago",
  3565. "homepage": "https://www.drupal.org/user/16747"
  3566. },
  3567. {
  3568. "name": "mglaman",
  3569. "homepage": "https://www.drupal.org/user/2416470"
  3570. },
  3571. {
  3572. "name": "TR",
  3573. "homepage": "https://www.drupal.org/user/202830"
  3574. }
  3575. ],
  3576. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3577. "homepage": "https://www.drupal.org/project/entity",
  3578. "support": {
  3579. "source": "https://git.drupalcode.org/project/entity",
  3580. "issues": "https://www.drupal.org/project/issues/entity"
  3581. }
  3582. },
  3583. {
  3584. "name": "drupal/features",
  3585. "version": "3.11.0",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://git.drupalcode.org/project/features.git",
  3589. "reference": "8.x-3.11"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://ftp.drupal.org/files/projects/features-8.x-3.11.zip",
  3594. "reference": "8.x-3.11",
  3595. "shasum": "cfdb1de2fb791856069c50b63eb28cb8d7c93442"
  3596. },
  3597. "require": {
  3598. "drupal/config_update": "^1.4",
  3599. "drupal/core": "^8.8 || ^9"
  3600. },
  3601. "type": "drupal-module",
  3602. "extra": {
  3603. "drupal": {
  3604. "version": "8.x-3.11",
  3605. "datestamp": "1591023154",
  3606. "security-coverage": {
  3607. "status": "covered",
  3608. "message": "Covered by Drupal's security advisory policy"
  3609. }
  3610. },
  3611. "drush": {
  3612. "services": {
  3613. "drush.services.yml": "^9"
  3614. }
  3615. }
  3616. },
  3617. "notification-url": "https://packages.drupal.org/8/downloads",
  3618. "license": [
  3619. "GPL-2.0-or-later"
  3620. ],
  3621. "authors": [
  3622. {
  3623. "name": "dawehner",
  3624. "homepage": "https://www.drupal.org/user/99340"
  3625. },
  3626. {
  3627. "name": "donquixote",
  3628. "homepage": "https://www.drupal.org/user/459338"
  3629. },
  3630. {
  3631. "name": "e2thex",
  3632. "homepage": "https://www.drupal.org/user/189123"
  3633. },
  3634. {
  3635. "name": "febbraro",
  3636. "homepage": "https://www.drupal.org/user/43670"
  3637. },
  3638. {
  3639. "name": "flocondetoile",
  3640. "homepage": "https://www.drupal.org/user/2006064"
  3641. },
  3642. {
  3643. "name": "jmiccolis",
  3644. "homepage": "https://www.drupal.org/user/31731"
  3645. },
  3646. {
  3647. "name": "joseph.olstad",
  3648. "homepage": "https://www.drupal.org/user/1321830"
  3649. },
  3650. {
  3651. "name": "mpotter",
  3652. "homepage": "https://www.drupal.org/user/616192"
  3653. },
  3654. {
  3655. "name": "nedjo",
  3656. "homepage": "https://www.drupal.org/user/4481"
  3657. },
  3658. {
  3659. "name": "tim.plunkett",
  3660. "homepage": "https://www.drupal.org/user/241634"
  3661. }
  3662. ],
  3663. "description": "Enables administrators to package configuration into modules",
  3664. "homepage": "https://www.drupal.org/project/features",
  3665. "support": {
  3666. "source": "https://git.drupalcode.org/project/features"
  3667. }
  3668. },
  3669. {
  3670. "name": "drupal/field_group",
  3671. "version": "3.3.0",
  3672. "source": {
  3673. "type": "git",
  3674. "url": "https://git.drupalcode.org/project/field_group.git",
  3675. "reference": "8.x-3.3"
  3676. },
  3677. "dist": {
  3678. "type": "zip",
  3679. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.3.zip",
  3680. "reference": "8.x-3.3",
  3681. "shasum": "c7a423b1d7643ee40dd1543d72fa04e8ac1756e4"
  3682. },
  3683. "require": {
  3684. "drupal/core": "^8.8 || ^9"
  3685. },
  3686. "require-dev": {
  3687. "drupal/jquery_ui_accordion": "^1.0"
  3688. },
  3689. "type": "drupal-module",
  3690. "extra": {
  3691. "drupal": {
  3692. "version": "8.x-3.3",
  3693. "datestamp": "1663516404",
  3694. "security-coverage": {
  3695. "status": "covered",
  3696. "message": "Covered by Drupal's security advisory policy"
  3697. }
  3698. }
  3699. },
  3700. "notification-url": "https://packages.drupal.org/8/downloads",
  3701. "license": [
  3702. "GPL-2.0-or-later"
  3703. ],
  3704. "authors": [
  3705. {
  3706. "name": "anybody",
  3707. "homepage": "https://www.drupal.org/user/291091"
  3708. },
  3709. {
  3710. "name": "grevil",
  3711. "homepage": "https://www.drupal.org/user/3668491"
  3712. },
  3713. {
  3714. "name": "hydra",
  3715. "homepage": "https://www.drupal.org/user/647364"
  3716. },
  3717. {
  3718. "name": "joevagyok",
  3719. "homepage": "https://www.drupal.org/user/2876343"
  3720. },
  3721. {
  3722. "name": "jyve",
  3723. "homepage": "https://www.drupal.org/user/591438"
  3724. },
  3725. {
  3726. "name": "nils.destoop",
  3727. "homepage": "https://www.drupal.org/user/361625"
  3728. },
  3729. {
  3730. "name": "Stalski",
  3731. "homepage": "https://www.drupal.org/user/322618"
  3732. },
  3733. {
  3734. "name": "swentel",
  3735. "homepage": "https://www.drupal.org/user/107403"
  3736. }
  3737. ],
  3738. "description": "Provides the field_group module.",
  3739. "homepage": "https://www.drupal.org/project/field_group",
  3740. "support": {
  3741. "source": "https://git.drupalcode.org/project/field_group",
  3742. "issues": "https://www.drupal.org/project/issues/field_group"
  3743. }
  3744. },
  3745. {
  3746. "name": "drupal/filefield_sources",
  3747. "version": "1.0.0-alpha5",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3751. "reference": "8.x-1.0-alpha5"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://ftp.drupal.org/files/projects/filefield_sources-8.x-1.0-alpha5.zip",
  3756. "reference": "8.x-1.0-alpha5",
  3757. "shasum": "e2438610bf829a82c6415f88f708b2dc73d91c49"
  3758. },
  3759. "require": {
  3760. "drupal/core": "^8 || ^9"
  3761. },
  3762. "require-dev": {
  3763. "drupal/imce": "^2.3"
  3764. },
  3765. "type": "drupal-module",
  3766. "extra": {
  3767. "drupal": {
  3768. "version": "8.x-1.0-alpha5",
  3769. "datestamp": "1642555269",
  3770. "security-coverage": {
  3771. "status": "not-covered",
  3772. "message": "Alpha releases are not covered by Drupal security advisories."
  3773. }
  3774. }
  3775. },
  3776. "notification-url": "https://packages.drupal.org/8/downloads",
  3777. "license": [
  3778. "GPL-2.0-or-later"
  3779. ],
  3780. "authors": [
  3781. {
  3782. "name": "Nate Lampton (quicksketch)",
  3783. "homepage": "https://www.drupal.org/u/quicksketch",
  3784. "role": "Maintainer"
  3785. },
  3786. {
  3787. "name": "Andrey Khromyshev (profak)",
  3788. "homepage": "https://www.drupal.org/u/profak",
  3789. "role": "Maintainer"
  3790. },
  3791. {
  3792. "name": "David Valdez (gnuget)",
  3793. "homepage": "https://www.drupal.org/u/gnuget",
  3794. "role": "Maintainer"
  3795. },
  3796. {
  3797. "name": "quicksketch",
  3798. "homepage": "https://www.drupal.org/user/35821"
  3799. }
  3800. ],
  3801. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3802. "homepage": "https://www.drupal.org/project/filefield_sources",
  3803. "support": {
  3804. "source": "https://git.drupalcode.org/project/filefield_sources",
  3805. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3806. "irc": "irc://irc.freenode.org/drupal-contribute"
  3807. }
  3808. },
  3809. {
  3810. "name": "drupal/filter_perms",
  3811. "version": "1.0.0-alpha1",
  3812. "source": {
  3813. "type": "git",
  3814. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3815. "reference": "8.x-1.0-alpha1"
  3816. },
  3817. "dist": {
  3818. "type": "zip",
  3819. "url": "https://ftp.drupal.org/files/projects/filter_perms-8.x-1.0-alpha1.zip",
  3820. "reference": "8.x-1.0-alpha1",
  3821. "shasum": "5a4bf4332f97b238864191042198f9f9a85cab26"
  3822. },
  3823. "require": {
  3824. "drupal/core": "^8 || ^9"
  3825. },
  3826. "type": "drupal-module",
  3827. "extra": {
  3828. "drupal": {
  3829. "version": "8.x-1.0-alpha1",
  3830. "datestamp": "1595202904",
  3831. "security-coverage": {
  3832. "status": "not-covered",
  3833. "message": "Alpha releases are not covered by Drupal security advisories."
  3834. }
  3835. }
  3836. },
  3837. "notification-url": "https://packages.drupal.org/8/downloads",
  3838. "license": [
  3839. "GPL-2.0-or-later"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "cYu",
  3844. "homepage": "https://www.drupal.org/user/202205"
  3845. },
  3846. {
  3847. "name": "deekayen",
  3848. "homepage": "https://www.drupal.org/user/972"
  3849. },
  3850. {
  3851. "name": "ivavictoria",
  3852. "homepage": "https://www.drupal.org/user/3061533"
  3853. },
  3854. {
  3855. "name": "justcaldwell",
  3856. "homepage": "https://www.drupal.org/user/290069"
  3857. },
  3858. {
  3859. "name": "mgbellaire",
  3860. "homepage": "https://www.drupal.org/user/1831932"
  3861. },
  3862. {
  3863. "name": "willzyx",
  3864. "homepage": "https://www.drupal.org/user/1043862"
  3865. }
  3866. ],
  3867. "description": "Provides role and module filters to simplify the user permissions page.",
  3868. "homepage": "https://www.drupal.org/project/filter_perms",
  3869. "support": {
  3870. "source": "https://git.drupalcode.org/project/filter_perms"
  3871. }
  3872. },
  3873. {
  3874. "name": "drupal/honeypot",
  3875. "version": "2.0.2",
  3876. "source": {
  3877. "type": "git",
  3878. "url": "https://git.drupalcode.org/project/honeypot.git",
  3879. "reference": "2.0.2"
  3880. },
  3881. "dist": {
  3882. "type": "zip",
  3883. "url": "https://ftp.drupal.org/files/projects/honeypot-2.0.2.zip",
  3884. "reference": "2.0.2",
  3885. "shasum": "8a3e15509f649c39e88c4f22105f12fb6445fc62"
  3886. },
  3887. "require": {
  3888. "drupal/core": "^8.8.2 || ^9"
  3889. },
  3890. "type": "drupal-module",
  3891. "extra": {
  3892. "drupal": {
  3893. "version": "2.0.2",
  3894. "datestamp": "1651895165",
  3895. "security-coverage": {
  3896. "status": "covered",
  3897. "message": "Covered by Drupal's security advisory policy"
  3898. }
  3899. }
  3900. },
  3901. "notification-url": "https://packages.drupal.org/8/downloads",
  3902. "license": [
  3903. "GPL-2.0-or-later"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "Jeff Geerling",
  3908. "homepage": "https://www.drupal.org/user/389011",
  3909. "email": "geerlingguy@mac.com"
  3910. },
  3911. {
  3912. "name": "Manuel Garcia",
  3913. "homepage": "https://www.drupal.org/user/213194"
  3914. },
  3915. {
  3916. "name": "TR",
  3917. "homepage": "https://www.drupal.org/user/202830"
  3918. },
  3919. {
  3920. "name": "vijaycs85",
  3921. "homepage": "https://www.drupal.org/user/93488"
  3922. }
  3923. ],
  3924. "description": "Mitigates spam form submissions using the honeypot method.",
  3925. "homepage": "https://www.drupal.org/project/honeypot",
  3926. "keywords": [
  3927. "deterrent",
  3928. "form",
  3929. "honeypot",
  3930. "honeytrap",
  3931. "php",
  3932. "spam"
  3933. ],
  3934. "support": {
  3935. "source": "https://git.drupalcode.org/project/honeypot",
  3936. "issues": "https://www.drupal.org/project/issues/honeypot"
  3937. }
  3938. },
  3939. {
  3940. "name": "drupal/jquery_ui",
  3941. "version": "1.4.0",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3945. "reference": "8.x-1.4"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.4.zip",
  3950. "reference": "8.x-1.4",
  3951. "shasum": "64c19ecc8902e2b4b1ab0cc5f5fe28dbc83bfebe"
  3952. },
  3953. "require": {
  3954. "drupal/core": "^8 || ^9"
  3955. },
  3956. "type": "drupal-module",
  3957. "extra": {
  3958. "drupal": {
  3959. "version": "8.x-1.4",
  3960. "datestamp": "1582149957",
  3961. "security-coverage": {
  3962. "status": "covered",
  3963. "message": "Covered by Drupal's security advisory policy"
  3964. }
  3965. }
  3966. },
  3967. "notification-url": "https://packages.drupal.org/8/downloads",
  3968. "license": [
  3969. "GPL-2.0-or-later"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "bnjmnm",
  3974. "homepage": "https://www.drupal.org/user/2369194"
  3975. },
  3976. {
  3977. "name": "jjeff",
  3978. "homepage": "https://www.drupal.org/user/17190"
  3979. },
  3980. {
  3981. "name": "lauriii",
  3982. "homepage": "https://www.drupal.org/user/1078742"
  3983. },
  3984. {
  3985. "name": "litwol",
  3986. "homepage": "https://www.drupal.org/user/78134"
  3987. },
  3988. {
  3989. "name": "mfb",
  3990. "homepage": "https://www.drupal.org/user/12302"
  3991. },
  3992. {
  3993. "name": "mfer",
  3994. "homepage": "https://www.drupal.org/user/25701"
  3995. },
  3996. {
  3997. "name": "mikelutz",
  3998. "homepage": "https://www.drupal.org/user/2972409"
  3999. },
  4000. {
  4001. "name": "nod_",
  4002. "homepage": "https://www.drupal.org/user/598310"
  4003. },
  4004. {
  4005. "name": "phenaproxima",
  4006. "homepage": "https://www.drupal.org/user/205645"
  4007. },
  4008. {
  4009. "name": "RobLoach",
  4010. "homepage": "https://www.drupal.org/user/61114"
  4011. },
  4012. {
  4013. "name": "sun",
  4014. "homepage": "https://www.drupal.org/user/54136"
  4015. },
  4016. {
  4017. "name": "webchick",
  4018. "homepage": "https://www.drupal.org/user/24967"
  4019. },
  4020. {
  4021. "name": "Wim Leers",
  4022. "homepage": "https://www.drupal.org/user/99777"
  4023. },
  4024. {
  4025. "name": "zrpnr",
  4026. "homepage": "https://www.drupal.org/user/1448368"
  4027. }
  4028. ],
  4029. "description": "Provides jQuery UI library.",
  4030. "homepage": "https://www.drupal.org/project/jquery_ui",
  4031. "support": {
  4032. "source": "https://git.drupalcode.org/project/jquery_ui"
  4033. }
  4034. },
  4035. {
  4036. "name": "drupal/jquery_ui_draggable",
  4037. "version": "1.2.0",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4041. "reference": "8.x-1.2"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-8.x-1.2.zip",
  4046. "reference": "8.x-1.2",
  4047. "shasum": "09e17046e38aebf84ed573822b0d5be6de3f0c94"
  4048. },
  4049. "require": {
  4050. "drupal/core": "^8 || ^9",
  4051. "drupal/jquery_ui": "*"
  4052. },
  4053. "type": "drupal-module",
  4054. "extra": {
  4055. "drupal": {
  4056. "version": "8.x-1.2",
  4057. "datestamp": "1582150027",
  4058. "security-coverage": {
  4059. "status": "covered",
  4060. "message": "Covered by Drupal's security advisory policy"
  4061. }
  4062. }
  4063. },
  4064. "notification-url": "https://packages.drupal.org/8/downloads",
  4065. "license": [
  4066. "GPL-2.0-or-later"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "bnjmnm",
  4071. "homepage": "https://www.drupal.org/user/2369194"
  4072. },
  4073. {
  4074. "name": "lauriii",
  4075. "homepage": "https://www.drupal.org/user/1078742"
  4076. },
  4077. {
  4078. "name": "zrpnr",
  4079. "homepage": "https://www.drupal.org/user/1448368"
  4080. }
  4081. ],
  4082. "description": "Provides jQuery UI Draggable library.",
  4083. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4084. "support": {
  4085. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4086. }
  4087. },
  4088. {
  4089. "name": "drupal/jquery_ui_droppable",
  4090. "version": "1.2.0",
  4091. "source": {
  4092. "type": "git",
  4093. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4094. "reference": "8.x-1.2"
  4095. },
  4096. "dist": {
  4097. "type": "zip",
  4098. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.2.zip",
  4099. "reference": "8.x-1.2",
  4100. "shasum": "6e53043f2d3215f211721eea4d4c6ab5d1672b14"
  4101. },
  4102. "require": {
  4103. "drupal/core": "^8 || ^9",
  4104. "drupal/jquery_ui": "*",
  4105. "drupal/jquery_ui_draggable": "*"
  4106. },
  4107. "type": "drupal-module",
  4108. "extra": {
  4109. "drupal": {
  4110. "version": "8.x-1.2",
  4111. "datestamp": "1582150071",
  4112. "security-coverage": {
  4113. "status": "covered",
  4114. "message": "Covered by Drupal's security advisory policy"
  4115. }
  4116. }
  4117. },
  4118. "notification-url": "https://packages.drupal.org/8/downloads",
  4119. "license": [
  4120. "GPL-2.0-or-later"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "bnjmnm",
  4125. "homepage": "https://www.drupal.org/user/2369194"
  4126. },
  4127. {
  4128. "name": "lauriii",
  4129. "homepage": "https://www.drupal.org/user/1078742"
  4130. },
  4131. {
  4132. "name": "zrpnr",
  4133. "homepage": "https://www.drupal.org/user/1448368"
  4134. }
  4135. ],
  4136. "description": "Provides jQuery UI Droppable library.",
  4137. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4138. "support": {
  4139. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4140. }
  4141. },
  4142. {
  4143. "name": "drupal/jquery_ui_sortable",
  4144. "version": "1.1.0",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  4148. "reference": "8.x-1.1"
  4149. },
  4150. "dist": {
  4151. "type": "zip",
  4152. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-8.x-1.1.zip",
  4153. "reference": "8.x-1.1",
  4154. "shasum": "dbb64f4e8f57b08a3e0ddd2e5cc3ba8d27d2722f"
  4155. },
  4156. "require": {
  4157. "drupal/core": "^8 || ^9",
  4158. "drupal/jquery_ui": "*"
  4159. },
  4160. "type": "drupal-module",
  4161. "extra": {
  4162. "drupal": {
  4163. "version": "8.x-1.1",
  4164. "datestamp": "1583174744",
  4165. "security-coverage": {
  4166. "status": "covered",
  4167. "message": "Covered by Drupal's security advisory policy"
  4168. }
  4169. }
  4170. },
  4171. "notification-url": "https://packages.drupal.org/8/downloads",
  4172. "license": [
  4173. "GPL-2.0-or-later"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "bnjmnm",
  4178. "homepage": "https://www.drupal.org/user/2369194"
  4179. },
  4180. {
  4181. "name": "lauriii",
  4182. "homepage": "https://www.drupal.org/user/1078742"
  4183. },
  4184. {
  4185. "name": "zrpnr",
  4186. "homepage": "https://www.drupal.org/user/1448368"
  4187. }
  4188. ],
  4189. "description": "Provides jQuery UI Sortable library.",
  4190. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  4191. "support": {
  4192. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  4193. }
  4194. },
  4195. {
  4196. "name": "drupal/linkit",
  4197. "version": "6.0.0-beta3",
  4198. "source": {
  4199. "type": "git",
  4200. "url": "https://git.drupalcode.org/project/linkit.git",
  4201. "reference": "6.0.0-beta3"
  4202. },
  4203. "dist": {
  4204. "type": "zip",
  4205. "url": "https://ftp.drupal.org/files/projects/linkit-6.0.0-beta3.zip",
  4206. "reference": "6.0.0-beta3",
  4207. "shasum": "39a5bf54cbc88324d788a573df7b3fecf7622065"
  4208. },
  4209. "require": {
  4210. "drupal/core": "^8.7.7 || ^9"
  4211. },
  4212. "require-dev": {
  4213. "drupal/imce": "*"
  4214. },
  4215. "type": "drupal-module",
  4216. "extra": {
  4217. "drupal": {
  4218. "version": "6.0.0-beta3",
  4219. "datestamp": "1632946984",
  4220. "security-coverage": {
  4221. "status": "not-covered",
  4222. "message": "Beta releases are not covered by Drupal security advisories."
  4223. }
  4224. }
  4225. },
  4226. "notification-url": "https://packages.drupal.org/8/downloads",
  4227. "license": [
  4228. "GPL-2.0-or-later"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Emil Stjerneman",
  4233. "homepage": "https://stjerneman.com",
  4234. "email": "emil@stjerneman.com",
  4235. "role": "Maintainer"
  4236. },
  4237. {
  4238. "name": "johnwebdev",
  4239. "homepage": "https://www.drupal.org/user/3331569"
  4240. },
  4241. {
  4242. "name": "mark_fullmer",
  4243. "homepage": "https://www.drupal.org/user/2612816"
  4244. }
  4245. ],
  4246. "description": "Linkit - Enriched linking experience",
  4247. "homepage": "http://drupal.org/project/linkit",
  4248. "support": {
  4249. "source": "http://cgit.drupalcode.org/linkit",
  4250. "issues": "http://drupal.org/project/linkit"
  4251. }
  4252. },
  4253. {
  4254. "name": "drupal/login_emailusername",
  4255. "version": "2.1.0",
  4256. "source": {
  4257. "type": "git",
  4258. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4259. "reference": "2.1.0"
  4260. },
  4261. "dist": {
  4262. "type": "zip",
  4263. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4264. "reference": "2.1.0",
  4265. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4266. },
  4267. "require": {
  4268. "drupal/core": "^8.8 || ^9 || ^10"
  4269. },
  4270. "type": "drupal-module",
  4271. "extra": {
  4272. "drupal": {
  4273. "version": "2.1.0",
  4274. "datestamp": "1677072401",
  4275. "security-coverage": {
  4276. "status": "covered",
  4277. "message": "Covered by Drupal's security advisory policy"
  4278. }
  4279. },
  4280. "branch-alias": {
  4281. "dev-8.x-1.x": "8.1.x-dev"
  4282. }
  4283. },
  4284. "notification-url": "https://packages.drupal.org/8/downloads",
  4285. "license": [
  4286. "GPL-2.0-or-later"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "See contributors",
  4291. "homepage": "https://www.drupal.org/node/2820429/committers",
  4292. "role": "contributor"
  4293. },
  4294. {
  4295. "name": "rjjakes",
  4296. "homepage": "https://www.drupal.org/user/3457245"
  4297. },
  4298. {
  4299. "name": "VladimirAus",
  4300. "homepage": "https://www.drupal.org/user/673120"
  4301. }
  4302. ],
  4303. "description": "Login with the email as username.",
  4304. "homepage": "https://drupal.org/project/login_emailusername",
  4305. "support": {
  4306. "source": "https://git.drupalcode.org/project/login_emailusername",
  4307. "issues": "https://drupal.org/project/issues/login_emailusername"
  4308. }
  4309. },
  4310. {
  4311. "name": "drupal/maillog",
  4312. "version": "1.0.0-beta1",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://git.drupalcode.org/project/maillog.git",
  4316. "reference": "8.x-1.0-beta1"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.0-beta1.zip",
  4321. "reference": "8.x-1.0-beta1",
  4322. "shasum": "0af5fe6fcdc8053bd0a61561a2c69e69c2b1faf2"
  4323. },
  4324. "require": {
  4325. "drupal/core": "^8 || ^9"
  4326. },
  4327. "type": "drupal-module",
  4328. "extra": {
  4329. "drupal": {
  4330. "version": "8.x-1.0-beta1",
  4331. "datestamp": "1600800168",
  4332. "security-coverage": {
  4333. "status": "not-covered",
  4334. "message": "Beta releases are not covered by Drupal security advisories."
  4335. }
  4336. }
  4337. },
  4338. "notification-url": "https://packages.drupal.org/8/downloads",
  4339. "license": [
  4340. "GPL-2.0-or-later"
  4341. ],
  4342. "authors": [
  4343. {
  4344. "name": "berdir",
  4345. "homepage": "https://www.drupal.org/user/214652"
  4346. },
  4347. {
  4348. "name": "damienmckenna",
  4349. "homepage": "https://www.drupal.org/user/108450"
  4350. },
  4351. {
  4352. "name": "miro_dietiker",
  4353. "homepage": "https://www.drupal.org/user/227761"
  4354. },
  4355. {
  4356. "name": "pluess",
  4357. "homepage": "https://www.drupal.org/user/84659"
  4358. }
  4359. ],
  4360. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4361. "homepage": "https://www.drupal.org/project/maillog",
  4362. "support": {
  4363. "source": "https://git.drupalcode.org/project/maillog"
  4364. }
  4365. },
  4366. {
  4367. "name": "drupal/matomo",
  4368. "version": "1.9.0",
  4369. "source": {
  4370. "type": "git",
  4371. "url": "https://git.drupalcode.org/project/matomo.git",
  4372. "reference": "8.x-1.9"
  4373. },
  4374. "dist": {
  4375. "type": "zip",
  4376. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.9.zip",
  4377. "reference": "8.x-1.9",
  4378. "shasum": "2c818af730f834d3aef3f6b7aa29f05e6fa9246d"
  4379. },
  4380. "require": {
  4381. "drupal/core": "~8.5"
  4382. },
  4383. "require-dev": {
  4384. "drupal/php": "*",
  4385. "drupal/token": "*"
  4386. },
  4387. "type": "drupal-module",
  4388. "extra": {
  4389. "branch-alias": {
  4390. "dev-1.x": "1.x-dev"
  4391. },
  4392. "drupal": {
  4393. "version": "8.x-1.9",
  4394. "datestamp": "1549615080",
  4395. "security-coverage": {
  4396. "status": "covered",
  4397. "message": "Covered by Drupal's security advisory policy"
  4398. }
  4399. }
  4400. },
  4401. "notification-url": "https://packages.drupal.org/8/downloads",
  4402. "license": [
  4403. "GPL-2.0+"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "hass",
  4408. "homepage": "https://www.drupal.org/u/hass"
  4409. },
  4410. {
  4411. "name": "See other contributors",
  4412. "homepage": "https://www.drupal.org/node/247808/committers"
  4413. }
  4414. ],
  4415. "description": "Adds Matomo javascript tracking code to all your site's pages",
  4416. "homepage": "https://www.drupal.org/project/matomo",
  4417. "support": {
  4418. "source": "https://git.drupal.org/project/matomo.git",
  4419. "issues": "https://www.drupal.org/project/issues/matomo"
  4420. }
  4421. },
  4422. {
  4423. "name": "drupal/menu_admin_per_menu",
  4424. "version": "1.1.0",
  4425. "source": {
  4426. "type": "git",
  4427. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4428. "reference": "8.x-1.1"
  4429. },
  4430. "dist": {
  4431. "type": "zip",
  4432. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.1.zip",
  4433. "reference": "8.x-1.1",
  4434. "shasum": "a9522b06654faa2d9bd23f704c93e1093f3ff6ec"
  4435. },
  4436. "require": {
  4437. "drupal/core": "^8 || ^9"
  4438. },
  4439. "type": "drupal-module",
  4440. "extra": {
  4441. "drupal": {
  4442. "version": "8.x-1.1",
  4443. "datestamp": "1591098397",
  4444. "security-coverage": {
  4445. "status": "covered",
  4446. "message": "Covered by Drupal's security advisory policy"
  4447. }
  4448. }
  4449. },
  4450. "notification-url": "https://packages.drupal.org/8/downloads",
  4451. "license": [
  4452. "GPL-2.0-or-later"
  4453. ],
  4454. "authors": [
  4455. {
  4456. "name": "anrikun",
  4457. "homepage": "https://www.drupal.org/user/410199"
  4458. },
  4459. {
  4460. "name": "jeroent",
  4461. "homepage": "https://www.drupal.org/user/2228934"
  4462. },
  4463. {
  4464. "name": "jonas139",
  4465. "homepage": "https://www.drupal.org/user/2873401"
  4466. },
  4467. {
  4468. "name": "mkdok",
  4469. "homepage": "https://www.drupal.org/user/3308753"
  4470. }
  4471. ],
  4472. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4473. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4474. "support": {
  4475. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  4476. }
  4477. },
  4478. {
  4479. "name": "drupal/metatag",
  4480. "version": "1.16.0",
  4481. "source": {
  4482. "type": "git",
  4483. "url": "https://git.drupalcode.org/project/metatag.git",
  4484. "reference": "8.x-1.16"
  4485. },
  4486. "dist": {
  4487. "type": "zip",
  4488. "url": "https://ftp.drupal.org/files/projects/metatag-8.x-1.16.zip",
  4489. "reference": "8.x-1.16",
  4490. "shasum": "1c0028f4ff4583dc6601035657dd631c351b290c"
  4491. },
  4492. "require": {
  4493. "drupal/core": "^8 || ^9",
  4494. "drupal/token": "^1.0"
  4495. },
  4496. "require-dev": {
  4497. "drupal/devel": "^4.0",
  4498. "drupal/metatag_dc": "*",
  4499. "drupal/metatag_open_graph": "*",
  4500. "drupal/page_manager": "4.x-dev",
  4501. "drupal/panelizer": "4.x-dev",
  4502. "drupal/redirect": "1.x-dev"
  4503. },
  4504. "type": "drupal-module",
  4505. "extra": {
  4506. "drupal": {
  4507. "version": "8.x-1.16",
  4508. "datestamp": "1615820867",
  4509. "security-coverage": {
  4510. "status": "covered",
  4511. "message": "Covered by Drupal's security advisory policy"
  4512. }
  4513. }
  4514. },
  4515. "notification-url": "https://packages.drupal.org/8/downloads",
  4516. "license": [
  4517. "GPL-2.0-or-later"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "See contributors",
  4522. "homepage": "https://www.drupal.org/node/640498/committers",
  4523. "role": "Developer"
  4524. },
  4525. {
  4526. "name": "dave reid",
  4527. "homepage": "https://www.drupal.org/user/53892"
  4528. }
  4529. ],
  4530. "description": "Manage meta tags for all entities.",
  4531. "homepage": "https://www.drupal.org/project/metatag",
  4532. "keywords": [
  4533. "Drupal",
  4534. "seo"
  4535. ],
  4536. "support": {
  4537. "source": "https://git.drupalcode.org/project/metatag",
  4538. "issues": "https://www.drupal.org/project/issues/metatag",
  4539. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4540. }
  4541. },
  4542. {
  4543. "name": "drupal/migrate_plus",
  4544. "version": "5.0.0",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://git.drupalcode.org/project/migrate_plus.git",
  4548. "reference": "8.x-5.0"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://ftp.drupal.org/files/projects/migrate_plus-8.x-5.0.zip",
  4553. "reference": "8.x-5.0",
  4554. "shasum": "5509c76498e4c6141c29db626d20904e1e8593c6"
  4555. },
  4556. "require": {
  4557. "drupal/core": "^8 || ^9"
  4558. },
  4559. "require-dev": {
  4560. "drupal/migrate_example_advanced_setup": "*",
  4561. "drupal/migrate_example_setup": "*"
  4562. },
  4563. "suggest": {
  4564. "ext-soap": "*",
  4565. "sainsburys/guzzle-oauth2-plugin": "3.0 required for the OAuth2 authentication plugin"
  4566. },
  4567. "type": "drupal-module",
  4568. "extra": {
  4569. "drupal": {
  4570. "version": "8.x-5.0",
  4571. "datestamp": "1586234154",
  4572. "security-coverage": {
  4573. "status": "covered",
  4574. "message": "Covered by Drupal's security advisory policy"
  4575. }
  4576. }
  4577. },
  4578. "notification-url": "https://packages.drupal.org/8/downloads",
  4579. "license": [
  4580. "GPL-2.0+"
  4581. ],
  4582. "authors": [
  4583. {
  4584. "name": "Mike Ryan",
  4585. "homepage": "https://www.drupal.org/u/mikeryan",
  4586. "role": "Maintainer"
  4587. },
  4588. {
  4589. "name": "Lucas Hedding",
  4590. "homepage": "https://www.drupal.org/u/heddn",
  4591. "role": "Maintainer"
  4592. }
  4593. ],
  4594. "description": "Enhancements to core migration support.",
  4595. "homepage": "https://www.drupal.org/project/migrate_plus",
  4596. "support": {
  4597. "source": "https://git.drupalcode.org/project/migrate_plus",
  4598. "issues": "https://www.drupal.org/project/issues/migrate_plus",
  4599. "slack": "#migrate"
  4600. }
  4601. },
  4602. {
  4603. "name": "drupal/migrate_tools",
  4604. "version": "4.5.0",
  4605. "source": {
  4606. "type": "git",
  4607. "url": "https://git.drupalcode.org/project/migrate_tools.git",
  4608. "reference": "8.x-4.5"
  4609. },
  4610. "dist": {
  4611. "type": "zip",
  4612. "url": "https://ftp.drupal.org/files/projects/migrate_tools-8.x-4.5.zip",
  4613. "reference": "8.x-4.5",
  4614. "shasum": "06390b359bf53c50a30f2d6dc4c7542bfb1fe7ca"
  4615. },
  4616. "require": {
  4617. "drupal/core": "^8 || ^9",
  4618. "drupal/migrate_plus": "^4 || ^5"
  4619. },
  4620. "require-dev": {
  4621. "drupal/migrate_plus": "4.x-dev",
  4622. "drupal/migrate_source_csv": "^2.2",
  4623. "drush/drush": "^10"
  4624. },
  4625. "type": "drupal-module",
  4626. "extra": {
  4627. "drupal": {
  4628. "version": "8.x-4.5",
  4629. "datestamp": "1574693285",
  4630. "security-coverage": {
  4631. "status": "covered",
  4632. "message": "Covered by Drupal's security advisory policy"
  4633. }
  4634. },
  4635. "drush": {
  4636. "services": {
  4637. "drush.services.yml": "^9 || ^10"
  4638. }
  4639. }
  4640. },
  4641. "notification-url": "https://packages.drupal.org/8/downloads",
  4642. "license": [
  4643. "GPL-2.0-or-later"
  4644. ],
  4645. "authors": [
  4646. {
  4647. "name": "heddn",
  4648. "homepage": "https://www.drupal.org/user/1463982"
  4649. },
  4650. {
  4651. "name": "mikeryan",
  4652. "homepage": "https://www.drupal.org/user/4420"
  4653. },
  4654. {
  4655. "name": "moshe weitzman",
  4656. "homepage": "https://www.drupal.org/user/23"
  4657. }
  4658. ],
  4659. "description": "Tools to assist in developing and running migrations.",
  4660. "homepage": "http://drupal.org/project/migrate_tools",
  4661. "support": {
  4662. "source": "http://cgit.drupalcode.org/migrate_tools",
  4663. "issues": "http://drupal.org/project/migrate_tools",
  4664. "irc": "irc://irc.freenode.org/drupal-migrate"
  4665. }
  4666. },
  4667. {
  4668. "name": "drupal/pathauto",
  4669. "version": "1.10.0",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://git.drupalcode.org/project/pathauto.git",
  4673. "reference": "8.x-1.10"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.10.zip",
  4678. "reference": "8.x-1.10",
  4679. "shasum": "f49d5fbcd7a2c1b4de1da07194fe01d9012237ec"
  4680. },
  4681. "require": {
  4682. "drupal/core": "^8.8 || ^9",
  4683. "drupal/ctools": "*",
  4684. "drupal/token": "*"
  4685. },
  4686. "suggest": {
  4687. "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."
  4688. },
  4689. "type": "drupal-module",
  4690. "extra": {
  4691. "drupal": {
  4692. "version": "8.x-1.10",
  4693. "datestamp": "1650806739",
  4694. "security-coverage": {
  4695. "status": "covered",
  4696. "message": "Covered by Drupal's security advisory policy"
  4697. }
  4698. },
  4699. "drush": {
  4700. "services": {
  4701. "drush.services.yml": "^9 || ^10"
  4702. }
  4703. }
  4704. },
  4705. "notification-url": "https://packages.drupal.org/8/downloads",
  4706. "license": [
  4707. "GPL-2.0-or-later"
  4708. ],
  4709. "authors": [
  4710. {
  4711. "name": "Berdir",
  4712. "homepage": "https://www.drupal.org/user/214652"
  4713. },
  4714. {
  4715. "name": "Dave Reid",
  4716. "homepage": "https://www.drupal.org/user/53892"
  4717. },
  4718. {
  4719. "name": "Freso",
  4720. "homepage": "https://www.drupal.org/user/27504"
  4721. },
  4722. {
  4723. "name": "greggles",
  4724. "homepage": "https://www.drupal.org/user/36762"
  4725. }
  4726. ],
  4727. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4728. "homepage": "https://www.drupal.org/project/pathauto",
  4729. "support": {
  4730. "source": "https://cgit.drupalcode.org/pathauto",
  4731. "issues": "https://www.drupal.org/project/issues/pathauto",
  4732. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4733. }
  4734. },
  4735. {
  4736. "name": "drupal/profile",
  4737. "version": "1.4.0",
  4738. "source": {
  4739. "type": "git",
  4740. "url": "https://git.drupalcode.org/project/profile.git",
  4741. "reference": "8.x-1.4"
  4742. },
  4743. "dist": {
  4744. "type": "zip",
  4745. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.4.zip",
  4746. "reference": "8.x-1.4",
  4747. "shasum": "253fd577c3b791c93747bb910ad2ae8e67d71eed"
  4748. },
  4749. "require": {
  4750. "drupal/core": "^8.9 || ^9 || ^10",
  4751. "drupal/entity": "^1.0-rc2"
  4752. },
  4753. "require-dev": {
  4754. "drupal/token": "^1.7"
  4755. },
  4756. "type": "drupal-module",
  4757. "extra": {
  4758. "drupal": {
  4759. "version": "8.x-1.4",
  4760. "datestamp": "1652430373",
  4761. "security-coverage": {
  4762. "status": "covered",
  4763. "message": "Covered by Drupal's security advisory policy"
  4764. }
  4765. }
  4766. },
  4767. "notification-url": "https://packages.drupal.org/8/downloads",
  4768. "license": [
  4769. "GPL-2.0-or-later"
  4770. ],
  4771. "authors": [
  4772. {
  4773. "name": "bojanz",
  4774. "homepage": "https://www.drupal.org/user/86106"
  4775. },
  4776. {
  4777. "name": "daggerhart",
  4778. "homepage": "https://www.drupal.org/user/167806"
  4779. },
  4780. {
  4781. "name": "fago",
  4782. "homepage": "https://www.drupal.org/user/16747"
  4783. },
  4784. {
  4785. "name": "jsacksick",
  4786. "homepage": "https://www.drupal.org/user/972218"
  4787. },
  4788. {
  4789. "name": "mglaman",
  4790. "homepage": "https://www.drupal.org/user/2416470"
  4791. },
  4792. {
  4793. "name": "pcambra",
  4794. "homepage": "https://www.drupal.org/user/122101"
  4795. }
  4796. ],
  4797. "description": "Provides configurable user profiles.",
  4798. "homepage": "http://drupal.org/project/profile",
  4799. "support": {
  4800. "source": "https://git.drupalcode.org/project/profile"
  4801. }
  4802. },
  4803. {
  4804. "name": "drupal/redirect",
  4805. "version": "1.6.0",
  4806. "source": {
  4807. "type": "git",
  4808. "url": "https://git.drupalcode.org/project/redirect.git",
  4809. "reference": "8.x-1.6"
  4810. },
  4811. "dist": {
  4812. "type": "zip",
  4813. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.6.zip",
  4814. "reference": "8.x-1.6",
  4815. "shasum": "f848e001deac8425ae57d4b9397087c491d37294"
  4816. },
  4817. "require": {
  4818. "drupal/core": "^8.8 || ^9"
  4819. },
  4820. "type": "drupal-module",
  4821. "extra": {
  4822. "drupal": {
  4823. "version": "8.x-1.6",
  4824. "datestamp": "1589312204",
  4825. "security-coverage": {
  4826. "status": "covered",
  4827. "message": "Covered by Drupal's security advisory policy"
  4828. }
  4829. }
  4830. },
  4831. "notification-url": "https://packages.drupal.org/8/downloads",
  4832. "license": [
  4833. "GPL-2.0-or-later"
  4834. ],
  4835. "authors": [
  4836. {
  4837. "name": "Berdir",
  4838. "homepage": "https://www.drupal.org/user/214652"
  4839. },
  4840. {
  4841. "name": "Dave Reid",
  4842. "homepage": "https://www.drupal.org/user/53892"
  4843. },
  4844. {
  4845. "name": "pifagor",
  4846. "homepage": "https://www.drupal.org/user/2375692"
  4847. }
  4848. ],
  4849. "description": "Allows users to redirect from old URLs to new URLs.",
  4850. "homepage": "https://www.drupal.org/project/redirect",
  4851. "support": {
  4852. "source": "https://git.drupalcode.org/project/redirect"
  4853. }
  4854. },
  4855. {
  4856. "name": "drupal/redis",
  4857. "version": "1.5.0",
  4858. "source": {
  4859. "type": "git",
  4860. "url": "https://git.drupalcode.org/project/redis.git",
  4861. "reference": "8.x-1.5"
  4862. },
  4863. "dist": {
  4864. "type": "zip",
  4865. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.5.zip",
  4866. "reference": "8.x-1.5",
  4867. "shasum": "4283333dc2bf405045765b83ca662acc409a6543"
  4868. },
  4869. "require": {
  4870. "drupal/core": "^8.8 || ^9"
  4871. },
  4872. "suggest": {
  4873. "predis/predis": "^1.1.1"
  4874. },
  4875. "type": "drupal-module",
  4876. "extra": {
  4877. "drupal": {
  4878. "version": "8.x-1.5",
  4879. "datestamp": "1609972488",
  4880. "security-coverage": {
  4881. "status": "covered",
  4882. "message": "Covered by Drupal's security advisory policy"
  4883. }
  4884. }
  4885. },
  4886. "autoload": {
  4887. "psr-4": {
  4888. "Drupal\\redis\\": "src"
  4889. }
  4890. },
  4891. "notification-url": "https://packages.drupal.org/8/downloads",
  4892. "license": [
  4893. "GPL-2.0-or-later"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "berdir",
  4898. "homepage": "https://www.drupal.org/user/214652"
  4899. },
  4900. {
  4901. "name": "greg.1.anderson",
  4902. "homepage": "https://www.drupal.org/user/438598"
  4903. },
  4904. {
  4905. "name": "kporras07",
  4906. "homepage": "https://www.drupal.org/user/1349780"
  4907. },
  4908. {
  4909. "name": "pounard",
  4910. "homepage": "https://www.drupal.org/user/240164"
  4911. }
  4912. ],
  4913. "description": "Integration of Drupal with the Redis key-value store.",
  4914. "homepage": "https://www.drupal.org/project/redis",
  4915. "support": {
  4916. "source": "https://git.drupalcode.org/project/redis"
  4917. }
  4918. },
  4919. {
  4920. "name": "drupal/restui",
  4921. "version": "1.21.0",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://git.drupalcode.org/project/restui.git",
  4925. "reference": "8.x-1.21"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.21.zip",
  4930. "reference": "8.x-1.21",
  4931. "shasum": "2a67dc2c1953dced0bddaff25e5c60784ee0178c"
  4932. },
  4933. "require": {
  4934. "drupal/core": "^8.7.7 || ^9 || ^10"
  4935. },
  4936. "type": "drupal-module",
  4937. "extra": {
  4938. "drupal": {
  4939. "version": "8.x-1.21",
  4940. "datestamp": "1659086914",
  4941. "security-coverage": {
  4942. "status": "covered",
  4943. "message": "Covered by Drupal's security advisory policy"
  4944. }
  4945. }
  4946. },
  4947. "notification-url": "https://packages.drupal.org/8/downloads",
  4948. "license": [
  4949. "GPL-2.0-or-later"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "-enzo-",
  4954. "homepage": "https://www.drupal.org/user/294937"
  4955. },
  4956. {
  4957. "name": "clemens.tolboom",
  4958. "homepage": "https://www.drupal.org/user/125814"
  4959. },
  4960. {
  4961. "name": "juampynr",
  4962. "homepage": "https://www.drupal.org/user/682736"
  4963. },
  4964. {
  4965. "name": "kamkejj",
  4966. "homepage": "https://www.drupal.org/user/81043"
  4967. },
  4968. {
  4969. "name": "vipin.mittal18",
  4970. "homepage": "https://www.drupal.org/user/319716"
  4971. }
  4972. ],
  4973. "description": "Provides a user interface to manage REST resources.",
  4974. "homepage": "https://www.drupal.org/project/restui",
  4975. "support": {
  4976. "source": "https://git.drupalcode.org/project/restui"
  4977. }
  4978. },
  4979. {
  4980. "name": "drupal/search_api",
  4981. "version": "1.23.0",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://git.drupalcode.org/project/search_api.git",
  4985. "reference": "8.x-1.23"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.23.zip",
  4990. "reference": "8.x-1.23",
  4991. "shasum": "7de5425bba5b8daa37e98d47b677459dfb1abbe7"
  4992. },
  4993. "require": {
  4994. "drupal/core": "^8.8 || ^9"
  4995. },
  4996. "conflict": {
  4997. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4998. },
  4999. "require-dev": {
  5000. "drupal/language_fallback_fix": "@dev",
  5001. "drupal/search_api_autocomplete": "@dev",
  5002. "drupal/search_api_db": "*"
  5003. },
  5004. "suggest": {
  5005. "drupal/facets": "Adds the ability to create faceted searches.",
  5006. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5007. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5008. },
  5009. "type": "drupal-module",
  5010. "extra": {
  5011. "drupal": {
  5012. "version": "8.x-1.23",
  5013. "datestamp": "1642935837",
  5014. "security-coverage": {
  5015. "status": "covered",
  5016. "message": "Covered by Drupal's security advisory policy"
  5017. }
  5018. },
  5019. "drush": {
  5020. "services": {
  5021. "drush.services.yml": "^9 || ^10"
  5022. }
  5023. }
  5024. },
  5025. "notification-url": "https://packages.drupal.org/8/downloads",
  5026. "license": [
  5027. "GPL-2.0-or-later"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "Thomas Seidl",
  5032. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5033. },
  5034. {
  5035. "name": "Nick Veenhof",
  5036. "homepage": "https://www.drupal.org/u/nick_vh"
  5037. },
  5038. {
  5039. "name": "See other contributors",
  5040. "homepage": "https://www.drupal.org/node/790418/committers"
  5041. }
  5042. ],
  5043. "description": "Provides a generic framework for modules offering search capabilities.",
  5044. "homepage": "https://www.drupal.org/project/search_api",
  5045. "support": {
  5046. "source": "https://git.drupalcode.org/project/search_api",
  5047. "issues": "https://www.drupal.org/project/issues/search_api",
  5048. "irc": "irc://irc.freenode.org/drupal-search-api"
  5049. }
  5050. },
  5051. {
  5052. "name": "drupal/simple_sitemap",
  5053. "version": "3.11.0",
  5054. "source": {
  5055. "type": "git",
  5056. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  5057. "reference": "8.x-3.11"
  5058. },
  5059. "dist": {
  5060. "type": "zip",
  5061. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-8.x-3.11.zip",
  5062. "reference": "8.x-3.11",
  5063. "shasum": "5fdd4ed5af5e37e3c707e401d094a179f52e7711"
  5064. },
  5065. "require": {
  5066. "drupal/core": "^8 || ^9",
  5067. "ext-xmlwriter": "*"
  5068. },
  5069. "type": "drupal-module",
  5070. "extra": {
  5071. "drupal": {
  5072. "version": "8.x-3.11",
  5073. "datestamp": "1658781789",
  5074. "security-coverage": {
  5075. "status": "covered",
  5076. "message": "Covered by Drupal's security advisory policy"
  5077. }
  5078. },
  5079. "drush": {
  5080. "services": {
  5081. "drush.services.yml": "^9 || ^10"
  5082. }
  5083. }
  5084. },
  5085. "notification-url": "https://packages.drupal.org/8/downloads",
  5086. "license": [
  5087. "GPL-2.0-or-later"
  5088. ],
  5089. "authors": [
  5090. {
  5091. "name": "Pawel Ginalski (gbyte)",
  5092. "homepage": "https://www.drupal.org/u/gbyte",
  5093. "email": "contact@gbyte.dev",
  5094. "role": "Maintainer"
  5095. },
  5096. {
  5097. "name": "walkingdexter",
  5098. "homepage": "https://www.drupal.org/user/3251330"
  5099. }
  5100. ],
  5101. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  5102. "homepage": "https://drupal.org/project/simple_sitemap",
  5103. "support": {
  5104. "source": "https://cgit.drupalcode.org/simple_sitemap",
  5105. "issues": "https://drupal.org/project/issues/simple_sitemap",
  5106. "irc": "irc://irc.freenode.org/drupal-contribute"
  5107. }
  5108. },
  5109. {
  5110. "name": "drupal/synonyms",
  5111. "version": "1.0.0-alpha3",
  5112. "source": {
  5113. "type": "git",
  5114. "url": "https://git.drupalcode.org/project/synonyms.git",
  5115. "reference": "8.x-1.0-alpha3"
  5116. },
  5117. "dist": {
  5118. "type": "zip",
  5119. "url": "https://ftp.drupal.org/files/projects/synonyms-8.x-1.0-alpha3.zip",
  5120. "reference": "8.x-1.0-alpha3",
  5121. "shasum": "0306a9dfb279c0594246b49658309c1686e984a9"
  5122. },
  5123. "require": {
  5124. "drupal/core": "^8 || ^9"
  5125. },
  5126. "type": "drupal-module",
  5127. "extra": {
  5128. "drupal": {
  5129. "version": "8.x-1.0-alpha3",
  5130. "datestamp": "1609623594",
  5131. "security-coverage": {
  5132. "status": "not-covered",
  5133. "message": "Alpha releases are not covered by Drupal security advisories."
  5134. }
  5135. }
  5136. },
  5137. "notification-url": "https://packages.drupal.org/8/downloads",
  5138. "license": [
  5139. "GPL-2.0-or-later"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "bojanz",
  5144. "homepage": "https://www.drupal.org/user/86106"
  5145. },
  5146. {
  5147. "name": "bucefal91",
  5148. "homepage": "https://www.drupal.org/user/504128"
  5149. },
  5150. {
  5151. "name": "devad",
  5152. "homepage": "https://www.drupal.org/user/2268520"
  5153. },
  5154. {
  5155. "name": "Zen",
  5156. "homepage": "https://www.drupal.org/user/21209"
  5157. }
  5158. ],
  5159. "description": "Provides synonyms feature for content entities.",
  5160. "homepage": "https://www.drupal.org/project/synonyms",
  5161. "support": {
  5162. "source": "https://git.drupalcode.org/project/synonyms"
  5163. }
  5164. },
  5165. {
  5166. "name": "drupal/token",
  5167. "version": "1.10.0",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://git.drupalcode.org/project/token.git",
  5171. "reference": "8.x-1.10"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.10.zip",
  5176. "reference": "8.x-1.10",
  5177. "shasum": "8b81224ab0420221b292e8d3b66d0da726317400"
  5178. },
  5179. "require": {
  5180. "drupal/core": "^8.8 || ^9"
  5181. },
  5182. "type": "drupal-module",
  5183. "extra": {
  5184. "drupal": {
  5185. "version": "8.x-1.10",
  5186. "datestamp": "1638619775",
  5187. "security-coverage": {
  5188. "status": "covered",
  5189. "message": "Covered by Drupal's security advisory policy"
  5190. }
  5191. },
  5192. "drush": {
  5193. "services": {
  5194. "drush.services.yml": "^9 || ^10"
  5195. }
  5196. }
  5197. },
  5198. "notification-url": "https://packages.drupal.org/8/downloads",
  5199. "license": [
  5200. "GPL-2.0-or-later"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Berdir",
  5205. "homepage": "https://www.drupal.org/user/214652"
  5206. },
  5207. {
  5208. "name": "Dave Reid",
  5209. "homepage": "https://www.drupal.org/user/53892"
  5210. },
  5211. {
  5212. "name": "eaton",
  5213. "homepage": "https://www.drupal.org/user/16496"
  5214. },
  5215. {
  5216. "name": "fago",
  5217. "homepage": "https://www.drupal.org/user/16747"
  5218. },
  5219. {
  5220. "name": "greggles",
  5221. "homepage": "https://www.drupal.org/user/36762"
  5222. },
  5223. {
  5224. "name": "mikeryan",
  5225. "homepage": "https://www.drupal.org/user/4420"
  5226. }
  5227. ],
  5228. "description": "Provides a user interface for the Token API, some missing core tokens.",
  5229. "homepage": "https://www.drupal.org/project/token",
  5230. "support": {
  5231. "source": "https://git.drupalcode.org/project/token"
  5232. }
  5233. },
  5234. {
  5235. "name": "drupal/toolbar_themes",
  5236. "version": "dev-1.x",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://git.drupalcode.org/project/toolbar_themes.git",
  5240. "reference": "62e79c8635ec13fe5a4dd67b87f698a14822c044"
  5241. },
  5242. "require": {
  5243. "drupal/core": "*"
  5244. },
  5245. "type": "drupal-module",
  5246. "extra": {
  5247. "branch-alias": {
  5248. "dev-1.x": "1.x-dev"
  5249. },
  5250. "drupal": {
  5251. "version": "8.x-1.0-alpha4+10-dev",
  5252. "datestamp": "1510689485",
  5253. "security-coverage": {
  5254. "status": "not-covered",
  5255. "message": "Project has not opted into security advisory coverage!"
  5256. }
  5257. }
  5258. },
  5259. "notification-url": "https://packages.drupal.org/8/downloads",
  5260. "license": [
  5261. "GPL-2.0-or-later"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "Jeff Burnz",
  5266. "homepage": "https://www.drupal.org/user/61393"
  5267. }
  5268. ],
  5269. "description": "Apply themes to the toolbar.",
  5270. "homepage": "https://www.drupal.org/project/toolbar_themes",
  5271. "support": {
  5272. "source": "https://git.drupalcode.org/project/toolbar_themes"
  5273. },
  5274. "time": "2017-11-14T19:57:02+00:00"
  5275. },
  5276. {
  5277. "name": "drupal/translation_views",
  5278. "version": "1.0.0-alpha11",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://git.drupalcode.org/project/translation_views.git",
  5282. "reference": "8.x-1.0-alpha11"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5287. "reference": "8.x-1.0-alpha11",
  5288. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5289. },
  5290. "require": {
  5291. "drupal/core": "^8.8 || ^9 || ^10"
  5292. },
  5293. "require-dev": {
  5294. "drupal/translators_content": "^1.0@alpha"
  5295. },
  5296. "type": "drupal-module",
  5297. "extra": {
  5298. "drupal": {
  5299. "version": "8.x-1.0-alpha11",
  5300. "datestamp": "1679660668",
  5301. "security-coverage": {
  5302. "status": "not-covered",
  5303. "message": "Project has not opted into security advisory coverage!"
  5304. }
  5305. }
  5306. },
  5307. "notification-url": "https://packages.drupal.org/8/downloads",
  5308. "license": [
  5309. "GPL-2.0-or-later"
  5310. ],
  5311. "authors": [
  5312. {
  5313. "name": "matsbla",
  5314. "homepage": "https://www.drupal.org/user/2325394"
  5315. },
  5316. {
  5317. "name": "vlad.dancer",
  5318. "homepage": "https://www.drupal.org/user/903844"
  5319. }
  5320. ],
  5321. "description": "Create customized lists and queries of translations from your database.",
  5322. "homepage": "https://www.drupal.org/project/translation_views",
  5323. "support": {
  5324. "source": "https://git.drupalcode.org/project/translation_views"
  5325. }
  5326. },
  5327. {
  5328. "name": "drupal/upgrade_status",
  5329. "version": "3.19.0",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5333. "reference": "8.x-3.19"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://ftp.drupal.org/files/projects/upgrade_status-8.x-3.19.zip",
  5338. "reference": "8.x-3.19",
  5339. "shasum": "e155b34b80f2782778b841d72639bd0ac8b923f9"
  5340. },
  5341. "require": {
  5342. "drupal/core": "^8 || ^9",
  5343. "mathieuviossat/arraytotexttable": "~1.0.0",
  5344. "mglaman/phpstan-drupal": "^1.0.0",
  5345. "nikic/php-parser": "^4.0.0",
  5346. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  5347. "symfony/process": "^3.4|^4.0|^5.0|^6.0",
  5348. "webflo/drupal-finder": "^1.2"
  5349. },
  5350. "type": "drupal-module",
  5351. "extra": {
  5352. "drupal": {
  5353. "version": "8.x-3.19",
  5354. "datestamp": "1678815320",
  5355. "security-coverage": {
  5356. "status": "covered",
  5357. "message": "Covered by Drupal's security advisory policy"
  5358. }
  5359. },
  5360. "drush": {
  5361. "services": {
  5362. "drush.services.yml": "^9 || ^10"
  5363. }
  5364. }
  5365. },
  5366. "notification-url": "https://packages.drupal.org/8/downloads",
  5367. "license": [
  5368. "GPL-2.0-or-later"
  5369. ],
  5370. "authors": [
  5371. {
  5372. "name": "Gábor Hojtsy",
  5373. "homepage": "https://www.drupal.org/user/4166"
  5374. }
  5375. ],
  5376. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5377. "homepage": "http://drupal.org/project/upgrade_status",
  5378. "support": {
  5379. "source": "https://git.drupalcode.org/project/upgrade_status"
  5380. }
  5381. },
  5382. {
  5383. "name": "drupal/url_to_video_filter",
  5384. "version": "2.0.0",
  5385. "source": {
  5386. "type": "git",
  5387. "url": "https://git.drupalcode.org/project/url_to_video_filter.git",
  5388. "reference": "2.0.0"
  5389. },
  5390. "dist": {
  5391. "type": "zip",
  5392. "url": "https://ftp.drupal.org/files/projects/url_to_video_filter-2.0.0.zip",
  5393. "reference": "2.0.0",
  5394. "shasum": "ac728919cc220846d8ef2ce61dbe1b94fbbf479b"
  5395. },
  5396. "require": {
  5397. "drupal/core": "^8 || ^9"
  5398. },
  5399. "type": "drupal-module",
  5400. "extra": {
  5401. "drupal": {
  5402. "version": "2.0.0",
  5403. "datestamp": "1607298389",
  5404. "security-coverage": {
  5405. "status": "covered",
  5406. "message": "Covered by Drupal's security advisory policy"
  5407. }
  5408. }
  5409. },
  5410. "notification-url": "https://packages.drupal.org/8/downloads",
  5411. "license": [
  5412. "GPL-2.0-or-later"
  5413. ],
  5414. "authors": [
  5415. {
  5416. "name": "Jaypan",
  5417. "homepage": "https://www.drupal.org/user/324696"
  5418. }
  5419. ],
  5420. "description": "Text filter to convert URLs to embedded videos",
  5421. "homepage": "https://www.drupal.org/project/url_to_video_filter",
  5422. "support": {
  5423. "source": "https://git.drupalcode.org/project/url_to_video_filter"
  5424. }
  5425. },
  5426. {
  5427. "name": "drupal/views_bulk_edit",
  5428. "version": "2.7.0",
  5429. "source": {
  5430. "type": "git",
  5431. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5432. "reference": "8.x-2.7"
  5433. },
  5434. "dist": {
  5435. "type": "zip",
  5436. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.7.zip",
  5437. "reference": "8.x-2.7",
  5438. "shasum": "148457820e7ecd78942326c9c799147ed440f2a6"
  5439. },
  5440. "require": {
  5441. "drupal/core": "^8 || ^9"
  5442. },
  5443. "require-dev": {
  5444. "drupal/views_bulk_operations": "~3.0"
  5445. },
  5446. "suggest": {
  5447. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5448. },
  5449. "type": "drupal-module",
  5450. "extra": {
  5451. "drupal": {
  5452. "version": "8.x-2.7",
  5453. "datestamp": "1664355764",
  5454. "security-coverage": {
  5455. "status": "covered",
  5456. "message": "Covered by Drupal's security advisory policy"
  5457. }
  5458. }
  5459. },
  5460. "notification-url": "https://packages.drupal.org/8/downloads",
  5461. "license": [
  5462. "GPL-2.0+"
  5463. ],
  5464. "authors": [
  5465. {
  5466. "name": "Marcin Grabias",
  5467. "homepage": "https://www.drupal.org/u/graber"
  5468. },
  5469. {
  5470. "name": "benjy",
  5471. "homepage": "https://www.drupal.org/user/1852732"
  5472. },
  5473. {
  5474. "name": "graber",
  5475. "homepage": "https://www.drupal.org/user/1599440"
  5476. },
  5477. {
  5478. "name": "grevil",
  5479. "homepage": "https://www.drupal.org/user/3668491"
  5480. },
  5481. {
  5482. "name": "joseph.olstad",
  5483. "homepage": "https://www.drupal.org/user/1321830"
  5484. }
  5485. ],
  5486. "description": "Allows bulk edition of entity field values.",
  5487. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5488. "support": {
  5489. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5490. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5491. }
  5492. },
  5493. {
  5494. "name": "drupal/views_bulk_operations",
  5495. "version": "3.9.0",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5499. "reference": "8.x-3.9"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-8.x-3.9.zip",
  5504. "reference": "8.x-3.9",
  5505. "shasum": "d7f6e50c31d21ff32f21e8f4aaedb52f6dee2da8"
  5506. },
  5507. "require": {
  5508. "drupal/core": "^8.8 || ^9"
  5509. },
  5510. "require-dev": {
  5511. "drush/drush": "^10"
  5512. },
  5513. "suggest": {
  5514. "drush/drush": "^9 || ^10"
  5515. },
  5516. "type": "drupal-module",
  5517. "extra": {
  5518. "drupal": {
  5519. "version": "8.x-3.9",
  5520. "datestamp": "1597319021",
  5521. "security-coverage": {
  5522. "status": "covered",
  5523. "message": "Covered by Drupal's security advisory policy"
  5524. }
  5525. },
  5526. "drush": {
  5527. "services": {
  5528. "drush.services.yml": "^9 || ^10"
  5529. }
  5530. }
  5531. },
  5532. "notification-url": "https://packages.drupal.org/8/downloads",
  5533. "license": [
  5534. "GPL-2.0-or-later"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "Marcin Grabias",
  5539. "homepage": "https://www.drupal.org/u/graber"
  5540. },
  5541. {
  5542. "name": "Jon Pugh",
  5543. "homepage": "https://www.drupal.org/user/17028"
  5544. },
  5545. {
  5546. "name": "bojanz",
  5547. "homepage": "https://www.drupal.org/user/86106"
  5548. },
  5549. {
  5550. "name": "infojunkie",
  5551. "homepage": "https://www.drupal.org/user/48424"
  5552. },
  5553. {
  5554. "name": "joelpittet",
  5555. "homepage": "https://www.drupal.org/user/160302"
  5556. }
  5557. ],
  5558. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5559. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5560. "support": {
  5561. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  5562. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  5563. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  5564. }
  5565. },
  5566. {
  5567. "name": "drupal/workflow",
  5568. "version": "1.3.0",
  5569. "source": {
  5570. "type": "git",
  5571. "url": "https://git.drupalcode.org/project/workflow.git",
  5572. "reference": "8.x-1.3"
  5573. },
  5574. "dist": {
  5575. "type": "zip",
  5576. "url": "https://ftp.drupal.org/files/projects/workflow-8.x-1.3.zip",
  5577. "reference": "8.x-1.3",
  5578. "shasum": "99b3c58d466f9564831b50a3b1428fac2a08c55c"
  5579. },
  5580. "require": {
  5581. "drupal/core": "^8 || ^9"
  5582. },
  5583. "type": "drupal-module",
  5584. "extra": {
  5585. "drupal": {
  5586. "version": "8.x-1.3",
  5587. "datestamp": "1590740623",
  5588. "security-coverage": {
  5589. "status": "covered",
  5590. "message": "Covered by Drupal's security advisory policy"
  5591. }
  5592. }
  5593. },
  5594. "notification-url": "https://packages.drupal.org/8/downloads",
  5595. "license": [
  5596. "GPL-2.0-or-later"
  5597. ],
  5598. "authors": [
  5599. {
  5600. "name": "Bastlynn",
  5601. "homepage": "https://www.drupal.org/user/275249"
  5602. },
  5603. {
  5604. "name": "eaton",
  5605. "homepage": "https://www.drupal.org/user/16496"
  5606. },
  5607. {
  5608. "name": "Heine",
  5609. "homepage": "https://www.drupal.org/user/17943"
  5610. },
  5611. {
  5612. "name": "JacobSingh",
  5613. "homepage": "https://www.drupal.org/user/68912"
  5614. },
  5615. {
  5616. "name": "johnv",
  5617. "homepage": "https://www.drupal.org/user/591042"
  5618. },
  5619. {
  5620. "name": "jvandyk",
  5621. "homepage": "https://www.drupal.org/user/2375"
  5622. },
  5623. {
  5624. "name": "mfredrickson",
  5625. "homepage": "https://www.drupal.org/user/31994"
  5626. },
  5627. {
  5628. "name": "NancyDru",
  5629. "homepage": "https://www.drupal.org/user/101412"
  5630. },
  5631. {
  5632. "name": "q0rban",
  5633. "homepage": "https://www.drupal.org/user/31022"
  5634. }
  5635. ],
  5636. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5637. "homepage": "https://www.drupal.org/project/workflow",
  5638. "support": {
  5639. "source": "https://git.drupalcode.org/project/workflow"
  5640. }
  5641. },
  5642. {
  5643. "name": "drush/drush",
  5644. "version": "9.7.3",
  5645. "source": {
  5646. "type": "git",
  5647. "url": "https://github.com/drush-ops/drush.git",
  5648. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210"
  5649. },
  5650. "dist": {
  5651. "type": "zip",
  5652. "url": "https://api.github.com/repos/drush-ops/drush/zipball/6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5653. "reference": "6ab9a89ab18189618eea40bf8e6553c1817ee210",
  5654. "shasum": ""
  5655. },
  5656. "require": {
  5657. "chi-teck/drupal-code-generator": "^1.28.1",
  5658. "composer/semver": "^1.4",
  5659. "consolidation/annotated-command": "^2.12",
  5660. "consolidation/config": "^1.2",
  5661. "consolidation/filter-via-dot-access-data": "^1",
  5662. "consolidation/output-formatters": "^3.3.1",
  5663. "consolidation/robo": "^1.4.6",
  5664. "consolidation/site-alias": "^3.0.0@stable",
  5665. "consolidation/site-process": "^2.0.3",
  5666. "ext-dom": "*",
  5667. "grasmash/yaml-expander": "^1.1.1",
  5668. "league/container": "~2",
  5669. "php": ">=5.6.0",
  5670. "psr/log": "~1.0",
  5671. "psy/psysh": "~0.6",
  5672. "symfony/console": "^3.4",
  5673. "symfony/event-dispatcher": "^3.4 || ^4.0",
  5674. "symfony/finder": "^3.4 || ^4.0",
  5675. "symfony/process": "^3.4",
  5676. "symfony/var-dumper": "^3.4 || ^4.0",
  5677. "symfony/yaml": "^3.4",
  5678. "webflo/drupal-finder": "^1.1",
  5679. "webmozart/path-util": "^2.1.0"
  5680. },
  5681. "require-dev": {
  5682. "composer/installers": "^1.2",
  5683. "cweagans/composer-patches": "~1.0",
  5684. "drupal/alinks": "1.0.0",
  5685. "drupal/core-recommended": "^8.9",
  5686. "drupal/devel": "^2",
  5687. "drupal/empty_theme": "1.0",
  5688. "g1a/composer-test-scenarios": "^3",
  5689. "lox/xhprof": "dev-master",
  5690. "phpunit/phpunit": "^4.8.36 || ^6.1",
  5691. "squizlabs/php_codesniffer": "^2.7 || ^3",
  5692. "vlucas/phpdotenv": "^2.4"
  5693. },
  5694. "bin": [
  5695. "drush"
  5696. ],
  5697. "type": "library",
  5698. "extra": {
  5699. "installer-paths": {
  5700. "sut/core": [
  5701. "type:drupal-core"
  5702. ],
  5703. "sut/libraries/{$name}": [
  5704. "type:drupal-library"
  5705. ],
  5706. "sut/modules/unish/{$name}": [
  5707. "drupal/devel"
  5708. ],
  5709. "sut/themes/unish/{$name}": [
  5710. "drupal/empty_theme"
  5711. ],
  5712. "sut/modules/contrib/{$name}": [
  5713. "type:drupal-module"
  5714. ],
  5715. "sut/profiles/contrib/{$name}": [
  5716. "type:drupal-profile"
  5717. ],
  5718. "sut/themes/contrib/{$name}": [
  5719. "type:drupal-theme"
  5720. ],
  5721. "sut/drush/contrib/{$name}": [
  5722. "type:drupal-drush"
  5723. ]
  5724. },
  5725. "scenarios": {
  5726. "php5": {
  5727. "config": {
  5728. "platform": {
  5729. "php": "5.6.38"
  5730. }
  5731. },
  5732. "require-dev": {
  5733. "drupal/core-recommended": "~8.6.0"
  5734. }
  5735. }
  5736. },
  5737. "branch-alias": {
  5738. "dev-master": "9.x-dev"
  5739. }
  5740. },
  5741. "autoload": {
  5742. "psr-4": {
  5743. "Drush\\": "src/",
  5744. "Drush\\Internal\\": "src/internal-forks"
  5745. }
  5746. },
  5747. "notification-url": "https://packagist.org/downloads/",
  5748. "license": [
  5749. "GPL-2.0-or-later"
  5750. ],
  5751. "authors": [
  5752. {
  5753. "name": "Moshe Weitzman",
  5754. "email": "weitzman@tejasa.com"
  5755. },
  5756. {
  5757. "name": "Owen Barton",
  5758. "email": "drupal@owenbarton.com"
  5759. },
  5760. {
  5761. "name": "Greg Anderson",
  5762. "email": "greg.1.anderson@greenknowe.org"
  5763. },
  5764. {
  5765. "name": "Jonathan Araña Cruz",
  5766. "email": "jonhattan@faita.net"
  5767. },
  5768. {
  5769. "name": "Jonathan Hedstrom",
  5770. "email": "jhedstrom@gmail.com"
  5771. },
  5772. {
  5773. "name": "Christopher Gervais",
  5774. "email": "chris@ergonlogic.com"
  5775. },
  5776. {
  5777. "name": "Dave Reid",
  5778. "email": "dave@davereid.net"
  5779. },
  5780. {
  5781. "name": "Damian Lee",
  5782. "email": "damiankloip@googlemail.com"
  5783. }
  5784. ],
  5785. "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.",
  5786. "homepage": "http://www.drush.org",
  5787. "support": {
  5788. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5789. "irc": "irc://irc.freenode.org/drush",
  5790. "issues": "https://github.com/drush-ops/drush/issues",
  5791. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5792. "source": "https://github.com/drush-ops/drush/tree/9.7.3"
  5793. },
  5794. "funding": [
  5795. {
  5796. "url": "https://github.com/weitzman",
  5797. "type": "github"
  5798. }
  5799. ],
  5800. "time": "2021-03-22T17:00:48+00:00"
  5801. },
  5802. {
  5803. "name": "easyrdf/easyrdf",
  5804. "version": "0.9.1",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/easyrdf/easyrdf.git",
  5808. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/easyrdf/easyrdf/zipball/acd09dfe0555fbcfa254291e433c45fdd4652566",
  5813. "reference": "acd09dfe0555fbcfa254291e433c45fdd4652566",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "ext-mbstring": "*",
  5818. "ext-pcre": "*",
  5819. "php": ">=5.2.8"
  5820. },
  5821. "require-dev": {
  5822. "phpunit/phpunit": "~3.5",
  5823. "sami/sami": "~1.4",
  5824. "squizlabs/php_codesniffer": "~1.4.3"
  5825. },
  5826. "suggest": {
  5827. "ml/json-ld": "~1.0"
  5828. },
  5829. "type": "library",
  5830. "autoload": {
  5831. "psr-0": {
  5832. "EasyRdf_": "lib/"
  5833. }
  5834. },
  5835. "notification-url": "https://packagist.org/downloads/",
  5836. "license": [
  5837. "BSD-3-Clause"
  5838. ],
  5839. "authors": [
  5840. {
  5841. "name": "Nicholas Humfrey",
  5842. "email": "njh@aelius.com",
  5843. "homepage": "http://www.aelius.com/njh/",
  5844. "role": "Developer"
  5845. },
  5846. {
  5847. "name": "Alexey Zakhlestin",
  5848. "email": "indeyets@gmail.com",
  5849. "role": "Developer"
  5850. }
  5851. ],
  5852. "description": "EasyRdf is a PHP library designed to make it easy to consume and produce RDF.",
  5853. "homepage": "http://www.easyrdf.org/",
  5854. "keywords": [
  5855. "Linked Data",
  5856. "RDF",
  5857. "Semantic Web",
  5858. "Turtle",
  5859. "rdfa",
  5860. "sparql"
  5861. ],
  5862. "support": {
  5863. "forum": "http://groups.google.com/group/easyrdf/",
  5864. "irc": "irc://chat.freenode.net/easyrdf",
  5865. "issues": "http://github.com/njh/easyrdf/issues",
  5866. "source": "https://github.com/easyrdf/easyrdf/tree/0.9.1"
  5867. },
  5868. "time": "2015-02-27T09:45:49+00:00"
  5869. },
  5870. {
  5871. "name": "egulias/email-validator",
  5872. "version": "2.1.17",
  5873. "source": {
  5874. "type": "git",
  5875. "url": "https://github.com/egulias/EmailValidator.git",
  5876. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a"
  5877. },
  5878. "dist": {
  5879. "type": "zip",
  5880. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ade6887fd9bd74177769645ab5c474824f8a418a",
  5881. "reference": "ade6887fd9bd74177769645ab5c474824f8a418a",
  5882. "shasum": ""
  5883. },
  5884. "require": {
  5885. "doctrine/lexer": "^1.0.1",
  5886. "php": ">=5.5",
  5887. "symfony/polyfill-intl-idn": "^1.10"
  5888. },
  5889. "require-dev": {
  5890. "dominicsayers/isemail": "^3.0.7",
  5891. "phpunit/phpunit": "^4.8.36|^7.5.15",
  5892. "satooshi/php-coveralls": "^1.0.1"
  5893. },
  5894. "suggest": {
  5895. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5896. },
  5897. "type": "library",
  5898. "extra": {
  5899. "branch-alias": {
  5900. "dev-master": "2.1.x-dev"
  5901. }
  5902. },
  5903. "autoload": {
  5904. "psr-4": {
  5905. "Egulias\\EmailValidator\\": "EmailValidator"
  5906. }
  5907. },
  5908. "notification-url": "https://packagist.org/downloads/",
  5909. "license": [
  5910. "MIT"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "Eduardo Gulias Davis"
  5915. }
  5916. ],
  5917. "description": "A library for validating emails against several RFCs",
  5918. "homepage": "https://github.com/egulias/EmailValidator",
  5919. "keywords": [
  5920. "email",
  5921. "emailvalidation",
  5922. "emailvalidator",
  5923. "validation",
  5924. "validator"
  5925. ],
  5926. "support": {
  5927. "issues": "https://github.com/egulias/EmailValidator/issues",
  5928. "source": "https://github.com/egulias/EmailValidator/tree/2.1.17"
  5929. },
  5930. "time": "2020-02-13T22:36:52+00:00"
  5931. },
  5932. {
  5933. "name": "grasmash/expander",
  5934. "version": "1.0.0",
  5935. "source": {
  5936. "type": "git",
  5937. "url": "https://github.com/grasmash/expander.git",
  5938. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
  5939. },
  5940. "dist": {
  5941. "type": "zip",
  5942. "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5943. "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
  5944. "shasum": ""
  5945. },
  5946. "require": {
  5947. "dflydev/dot-access-data": "^1.1.0",
  5948. "php": ">=5.4"
  5949. },
  5950. "require-dev": {
  5951. "greg-1-anderson/composer-test-scenarios": "^1",
  5952. "phpunit/phpunit": "^4|^5.5.4",
  5953. "satooshi/php-coveralls": "^1.0.2|dev-master",
  5954. "squizlabs/php_codesniffer": "^2.7"
  5955. },
  5956. "type": "library",
  5957. "extra": {
  5958. "branch-alias": {
  5959. "dev-master": "1.x-dev"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "psr-4": {
  5964. "Grasmash\\Expander\\": "src/"
  5965. }
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Matthew Grasmick"
  5974. }
  5975. ],
  5976. "description": "Expands internal property references in PHP arrays file.",
  5977. "time": "2017-12-21T22:14:55+00:00"
  5978. },
  5979. {
  5980. "name": "grasmash/yaml-expander",
  5981. "version": "1.4.0",
  5982. "source": {
  5983. "type": "git",
  5984. "url": "https://github.com/grasmash/yaml-expander.git",
  5985. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1"
  5986. },
  5987. "dist": {
  5988. "type": "zip",
  5989. "url": "https://api.github.com/repos/grasmash/yaml-expander/zipball/3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5990. "reference": "3f0f6001ae707a24f4d9733958d77d92bf9693b1",
  5991. "shasum": ""
  5992. },
  5993. "require": {
  5994. "dflydev/dot-access-data": "^1.1.0",
  5995. "php": ">=5.4",
  5996. "symfony/yaml": "^2.8.11|^3|^4"
  5997. },
  5998. "require-dev": {
  5999. "greg-1-anderson/composer-test-scenarios": "^1",
  6000. "phpunit/phpunit": "^4.8|^5.5.4",
  6001. "satooshi/php-coveralls": "^1.0.2|dev-master",
  6002. "squizlabs/php_codesniffer": "^2.7"
  6003. },
  6004. "type": "library",
  6005. "extra": {
  6006. "branch-alias": {
  6007. "dev-master": "1.x-dev"
  6008. }
  6009. },
  6010. "autoload": {
  6011. "psr-4": {
  6012. "Grasmash\\YamlExpander\\": "src/"
  6013. }
  6014. },
  6015. "notification-url": "https://packagist.org/downloads/",
  6016. "license": [
  6017. "MIT"
  6018. ],
  6019. "authors": [
  6020. {
  6021. "name": "Matthew Grasmick"
  6022. }
  6023. ],
  6024. "description": "Expands internal property references in a yaml file.",
  6025. "time": "2017-12-16T16:06:03+00:00"
  6026. },
  6027. {
  6028. "name": "guzzlehttp/guzzle",
  6029. "version": "6.5.4",
  6030. "source": {
  6031. "type": "git",
  6032. "url": "https://github.com/guzzle/guzzle.git",
  6033. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d"
  6034. },
  6035. "dist": {
  6036. "type": "zip",
  6037. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6038. "reference": "a4a1b6930528a8f7ee03518e6442ec7a44155d9d",
  6039. "shasum": ""
  6040. },
  6041. "require": {
  6042. "ext-json": "*",
  6043. "guzzlehttp/promises": "^1.0",
  6044. "guzzlehttp/psr7": "^1.6.1",
  6045. "php": ">=5.5",
  6046. "symfony/polyfill-intl-idn": "1.17.0"
  6047. },
  6048. "require-dev": {
  6049. "ext-curl": "*",
  6050. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  6051. "psr/log": "^1.1"
  6052. },
  6053. "suggest": {
  6054. "psr/log": "Required for using the Log middleware"
  6055. },
  6056. "type": "library",
  6057. "extra": {
  6058. "branch-alias": {
  6059. "dev-master": "6.5-dev"
  6060. }
  6061. },
  6062. "autoload": {
  6063. "files": [
  6064. "src/functions_include.php"
  6065. ],
  6066. "psr-4": {
  6067. "GuzzleHttp\\": "src/"
  6068. }
  6069. },
  6070. "notification-url": "https://packagist.org/downloads/",
  6071. "license": [
  6072. "MIT"
  6073. ],
  6074. "authors": [
  6075. {
  6076. "name": "Michael Dowling",
  6077. "email": "mtdowling@gmail.com",
  6078. "homepage": "https://github.com/mtdowling"
  6079. }
  6080. ],
  6081. "description": "Guzzle is a PHP HTTP client library",
  6082. "homepage": "http://guzzlephp.org/",
  6083. "keywords": [
  6084. "client",
  6085. "curl",
  6086. "framework",
  6087. "http",
  6088. "http client",
  6089. "rest",
  6090. "web service"
  6091. ],
  6092. "support": {
  6093. "issues": "https://github.com/guzzle/guzzle/issues",
  6094. "source": "https://github.com/guzzle/guzzle/tree/6.5"
  6095. },
  6096. "time": "2020-05-25T19:35:05+00:00"
  6097. },
  6098. {
  6099. "name": "guzzlehttp/promises",
  6100. "version": "v1.3.1",
  6101. "source": {
  6102. "type": "git",
  6103. "url": "https://github.com/guzzle/promises.git",
  6104. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
  6105. },
  6106. "dist": {
  6107. "type": "zip",
  6108. "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6109. "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
  6110. "shasum": ""
  6111. },
  6112. "require": {
  6113. "php": ">=5.5.0"
  6114. },
  6115. "require-dev": {
  6116. "phpunit/phpunit": "^4.0"
  6117. },
  6118. "type": "library",
  6119. "extra": {
  6120. "branch-alias": {
  6121. "dev-master": "1.4-dev"
  6122. }
  6123. },
  6124. "autoload": {
  6125. "files": [
  6126. "src/functions_include.php"
  6127. ],
  6128. "psr-4": {
  6129. "GuzzleHttp\\Promise\\": "src/"
  6130. }
  6131. },
  6132. "notification-url": "https://packagist.org/downloads/",
  6133. "license": [
  6134. "MIT"
  6135. ],
  6136. "authors": [
  6137. {
  6138. "name": "Michael Dowling",
  6139. "email": "mtdowling@gmail.com",
  6140. "homepage": "https://github.com/mtdowling"
  6141. }
  6142. ],
  6143. "description": "Guzzle promises library",
  6144. "keywords": [
  6145. "promise"
  6146. ],
  6147. "support": {
  6148. "issues": "https://github.com/guzzle/promises/issues",
  6149. "source": "https://github.com/guzzle/promises/tree/master"
  6150. },
  6151. "time": "2016-12-20T10:07:11+00:00"
  6152. },
  6153. {
  6154. "name": "guzzlehttp/psr7",
  6155. "version": "1.6.1",
  6156. "source": {
  6157. "type": "git",
  6158. "url": "https://github.com/guzzle/psr7.git",
  6159. "reference": "239400de7a173fe9901b9ac7c06497751f00727a"
  6160. },
  6161. "dist": {
  6162. "type": "zip",
  6163. "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a",
  6164. "reference": "239400de7a173fe9901b9ac7c06497751f00727a",
  6165. "shasum": ""
  6166. },
  6167. "require": {
  6168. "php": ">=5.4.0",
  6169. "psr/http-message": "~1.0",
  6170. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  6171. },
  6172. "provide": {
  6173. "psr/http-message-implementation": "1.0"
  6174. },
  6175. "require-dev": {
  6176. "ext-zlib": "*",
  6177. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8"
  6178. },
  6179. "suggest": {
  6180. "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses"
  6181. },
  6182. "type": "library",
  6183. "extra": {
  6184. "branch-alias": {
  6185. "dev-master": "1.6-dev"
  6186. }
  6187. },
  6188. "autoload": {
  6189. "files": [
  6190. "src/functions_include.php"
  6191. ],
  6192. "psr-4": {
  6193. "GuzzleHttp\\Psr7\\": "src/"
  6194. }
  6195. },
  6196. "notification-url": "https://packagist.org/downloads/",
  6197. "license": [
  6198. "MIT"
  6199. ],
  6200. "authors": [
  6201. {
  6202. "name": "Michael Dowling",
  6203. "email": "mtdowling@gmail.com",
  6204. "homepage": "https://github.com/mtdowling"
  6205. },
  6206. {
  6207. "name": "Tobias Schultze",
  6208. "homepage": "https://github.com/Tobion"
  6209. }
  6210. ],
  6211. "description": "PSR-7 message implementation that also provides common utility methods",
  6212. "keywords": [
  6213. "http",
  6214. "message",
  6215. "psr-7",
  6216. "request",
  6217. "response",
  6218. "stream",
  6219. "uri",
  6220. "url"
  6221. ],
  6222. "support": {
  6223. "issues": "https://github.com/guzzle/psr7/issues",
  6224. "source": "https://github.com/guzzle/psr7/tree/1.6.1"
  6225. },
  6226. "time": "2019-07-01T23:21:34+00:00"
  6227. },
  6228. {
  6229. "name": "kint-php/kint",
  6230. "version": "5.1.1",
  6231. "source": {
  6232. "type": "git",
  6233. "url": "https://github.com/kint-php/kint.git",
  6234. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  6235. },
  6236. "dist": {
  6237. "type": "zip",
  6238. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6239. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  6240. "shasum": ""
  6241. },
  6242. "require": {
  6243. "php": ">=7.1"
  6244. },
  6245. "require-dev": {
  6246. "friendsofphp/php-cs-fixer": "^3",
  6247. "phpspec/prophecy-phpunit": "^2",
  6248. "phpunit/phpunit": "^9",
  6249. "seld/phar-utils": "^1",
  6250. "symfony/finder": ">=4.0",
  6251. "vimeo/psalm": "^5"
  6252. },
  6253. "suggest": {
  6254. "kint-php/kint-helpers": "Provides extra helper functions",
  6255. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6256. },
  6257. "type": "library",
  6258. "autoload": {
  6259. "files": [
  6260. "init.php"
  6261. ],
  6262. "psr-4": {
  6263. "Kint\\": "src/"
  6264. }
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Jonathan Vollebregt",
  6273. "homepage": "https://github.com/jnvsor"
  6274. },
  6275. {
  6276. "name": "Contributors",
  6277. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6278. }
  6279. ],
  6280. "description": "Kint - debugging tool for PHP developers",
  6281. "homepage": "https://kint-php.github.io/kint/",
  6282. "keywords": [
  6283. "debug",
  6284. "kint",
  6285. "php"
  6286. ],
  6287. "support": {
  6288. "issues": "https://github.com/kint-php/kint/issues",
  6289. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6290. },
  6291. "time": "2024-04-26T14:20:09+00:00"
  6292. },
  6293. {
  6294. "name": "laminas/laminas-diactoros",
  6295. "version": "1.8.7p2",
  6296. "source": {
  6297. "type": "git",
  6298. "url": "https://github.com/laminas/laminas-diactoros.git",
  6299. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa"
  6300. },
  6301. "dist": {
  6302. "type": "zip",
  6303. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6304. "reference": "6991c1af7c8d2c8efee81b22ba97024781824aaa",
  6305. "shasum": ""
  6306. },
  6307. "require": {
  6308. "laminas/laminas-zendframework-bridge": "^1.0",
  6309. "php": "^5.6 || ^7.0",
  6310. "psr/http-message": "^1.0"
  6311. },
  6312. "provide": {
  6313. "psr/http-message-implementation": "1.0"
  6314. },
  6315. "replace": {
  6316. "zendframework/zend-diactoros": "~1.8.7.0"
  6317. },
  6318. "require-dev": {
  6319. "ext-dom": "*",
  6320. "ext-libxml": "*",
  6321. "laminas/laminas-coding-standard": "~1.0",
  6322. "php-http/psr7-integration-tests": "dev-master",
  6323. "phpunit/phpunit": "^5.7.16 || ^6.0.8 || ^7.2.7"
  6324. },
  6325. "type": "library",
  6326. "extra": {
  6327. "branch-alias": {
  6328. "dev-release-1.8": "1.8.x-dev"
  6329. }
  6330. },
  6331. "autoload": {
  6332. "files": [
  6333. "src/functions/create_uploaded_file.php",
  6334. "src/functions/marshal_headers_from_sapi.php",
  6335. "src/functions/marshal_method_from_sapi.php",
  6336. "src/functions/marshal_protocol_version_from_sapi.php",
  6337. "src/functions/marshal_uri_from_sapi.php",
  6338. "src/functions/normalize_server.php",
  6339. "src/functions/normalize_uploaded_files.php",
  6340. "src/functions/parse_cookie_header.php",
  6341. "src/functions/create_uploaded_file.legacy.php",
  6342. "src/functions/marshal_headers_from_sapi.legacy.php",
  6343. "src/functions/marshal_method_from_sapi.legacy.php",
  6344. "src/functions/marshal_protocol_version_from_sapi.legacy.php",
  6345. "src/functions/marshal_uri_from_sapi.legacy.php",
  6346. "src/functions/normalize_server.legacy.php",
  6347. "src/functions/normalize_uploaded_files.legacy.php",
  6348. "src/functions/parse_cookie_header.legacy.php"
  6349. ],
  6350. "psr-4": {
  6351. "Laminas\\Diactoros\\": "src/"
  6352. }
  6353. },
  6354. "notification-url": "https://packagist.org/downloads/",
  6355. "license": [
  6356. "BSD-3-Clause"
  6357. ],
  6358. "description": "PSR HTTP Message implementations",
  6359. "homepage": "https://laminas.dev",
  6360. "keywords": [
  6361. "http",
  6362. "laminas",
  6363. "psr",
  6364. "psr-7"
  6365. ],
  6366. "support": {
  6367. "chat": "https://laminas.dev/chat",
  6368. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  6369. "forum": "https://discourse.laminas.dev",
  6370. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  6371. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  6372. "source": "https://github.com/laminas/laminas-diactoros"
  6373. },
  6374. "time": "2020-03-23T15:28:28+00:00"
  6375. },
  6376. {
  6377. "name": "laminas/laminas-escaper",
  6378. "version": "2.6.1",
  6379. "source": {
  6380. "type": "git",
  6381. "url": "https://github.com/laminas/laminas-escaper.git",
  6382. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70"
  6383. },
  6384. "dist": {
  6385. "type": "zip",
  6386. "url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/25f2a053eadfa92ddacb609dcbbc39362610da70",
  6387. "reference": "25f2a053eadfa92ddacb609dcbbc39362610da70",
  6388. "shasum": ""
  6389. },
  6390. "require": {
  6391. "laminas/laminas-zendframework-bridge": "^1.0",
  6392. "php": "^5.6 || ^7.0"
  6393. },
  6394. "replace": {
  6395. "zendframework/zend-escaper": "self.version"
  6396. },
  6397. "require-dev": {
  6398. "laminas/laminas-coding-standard": "~1.0.0",
  6399. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6400. },
  6401. "type": "library",
  6402. "extra": {
  6403. "branch-alias": {
  6404. "dev-master": "2.6.x-dev",
  6405. "dev-develop": "2.7.x-dev"
  6406. }
  6407. },
  6408. "autoload": {
  6409. "psr-4": {
  6410. "Laminas\\Escaper\\": "src/"
  6411. }
  6412. },
  6413. "notification-url": "https://packagist.org/downloads/",
  6414. "license": [
  6415. "BSD-3-Clause"
  6416. ],
  6417. "description": "Securely and safely escape HTML, HTML attributes, JavaScript, CSS, and URLs",
  6418. "homepage": "https://laminas.dev",
  6419. "keywords": [
  6420. "escaper",
  6421. "laminas"
  6422. ],
  6423. "support": {
  6424. "chat": "https://laminas.dev/chat",
  6425. "docs": "https://docs.laminas.dev/laminas-escaper/",
  6426. "forum": "https://discourse.laminas.dev",
  6427. "issues": "https://github.com/laminas/laminas-escaper/issues",
  6428. "rss": "https://github.com/laminas/laminas-escaper/releases.atom",
  6429. "source": "https://github.com/laminas/laminas-escaper"
  6430. },
  6431. "time": "2019-12-31T16:43:30+00:00"
  6432. },
  6433. {
  6434. "name": "laminas/laminas-feed",
  6435. "version": "2.12.2",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/laminas/laminas-feed.git",
  6439. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/laminas/laminas-feed/zipball/8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6444. "reference": "8a193ac96ebcb3e16b6ee754ac2a889eefacb654",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "ext-dom": "*",
  6449. "ext-libxml": "*",
  6450. "laminas/laminas-escaper": "^2.5.2",
  6451. "laminas/laminas-stdlib": "^3.2.1",
  6452. "laminas/laminas-zendframework-bridge": "^1.0",
  6453. "php": "^5.6 || ^7.0"
  6454. },
  6455. "replace": {
  6456. "zendframework/zend-feed": "^2.12.0"
  6457. },
  6458. "require-dev": {
  6459. "laminas/laminas-cache": "^2.7.2",
  6460. "laminas/laminas-coding-standard": "~1.0.0",
  6461. "laminas/laminas-db": "^2.8.2",
  6462. "laminas/laminas-http": "^2.7",
  6463. "laminas/laminas-servicemanager": "^2.7.8 || ^3.3",
  6464. "laminas/laminas-validator": "^2.10.1",
  6465. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20",
  6466. "psr/http-message": "^1.0.1"
  6467. },
  6468. "suggest": {
  6469. "laminas/laminas-cache": "Laminas\\Cache component, for optionally caching feeds between requests",
  6470. "laminas/laminas-db": "Laminas\\Db component, for use with PubSubHubbub",
  6471. "laminas/laminas-http": "Laminas\\Http for PubSubHubbub, and optionally for use with Laminas\\Feed\\Reader",
  6472. "laminas/laminas-servicemanager": "Laminas\\ServiceManager component, for easily extending ExtensionManager implementations",
  6473. "laminas/laminas-validator": "Laminas\\Validator component, for validating email addresses used in Atom feeds and entries when using the Writer subcomponent",
  6474. "psr/http-message": "PSR-7 ^1.0.1, if you wish to use Laminas\\Feed\\Reader\\Http\\Psr7ResponseDecorator"
  6475. },
  6476. "type": "library",
  6477. "extra": {
  6478. "branch-alias": {
  6479. "dev-master": "2.12.x-dev",
  6480. "dev-develop": "2.13.x-dev"
  6481. }
  6482. },
  6483. "autoload": {
  6484. "psr-4": {
  6485. "Laminas\\Feed\\": "src/"
  6486. }
  6487. },
  6488. "notification-url": "https://packagist.org/downloads/",
  6489. "license": [
  6490. "BSD-3-Clause"
  6491. ],
  6492. "description": "provides functionality for consuming RSS and Atom feeds",
  6493. "homepage": "https://laminas.dev",
  6494. "keywords": [
  6495. "feed",
  6496. "laminas"
  6497. ],
  6498. "support": {
  6499. "chat": "https://laminas.dev/chat",
  6500. "docs": "https://docs.laminas.dev/laminas-feed/",
  6501. "forum": "https://discourse.laminas.dev",
  6502. "issues": "https://github.com/laminas/laminas-feed/issues",
  6503. "rss": "https://github.com/laminas/laminas-feed/releases.atom",
  6504. "source": "https://github.com/laminas/laminas-feed"
  6505. },
  6506. "time": "2020-03-29T12:36:29+00:00"
  6507. },
  6508. {
  6509. "name": "laminas/laminas-servicemanager",
  6510. "version": "3.17.0",
  6511. "source": {
  6512. "type": "git",
  6513. "url": "https://github.com/laminas/laminas-servicemanager.git",
  6514. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec"
  6515. },
  6516. "dist": {
  6517. "type": "zip",
  6518. "url": "https://api.github.com/repos/laminas/laminas-servicemanager/zipball/360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6519. "reference": "360be5f16955dd1edbcce1cfaa98ed82a17f02ec",
  6520. "shasum": ""
  6521. },
  6522. "require": {
  6523. "laminas/laminas-stdlib": "^3.2.1",
  6524. "php": "~7.4.0 || ~8.0.0 || ~8.1.0",
  6525. "psr/container": "^1.0"
  6526. },
  6527. "conflict": {
  6528. "ext-psr": "*",
  6529. "laminas/laminas-code": "<3.3.1",
  6530. "zendframework/zend-code": "<3.3.1",
  6531. "zendframework/zend-servicemanager": "*"
  6532. },
  6533. "provide": {
  6534. "psr/container-implementation": "^1.0"
  6535. },
  6536. "replace": {
  6537. "container-interop/container-interop": "^1.2.0"
  6538. },
  6539. "require-dev": {
  6540. "composer/package-versions-deprecated": "^1.0",
  6541. "laminas/laminas-coding-standard": "~2.4.0",
  6542. "laminas/laminas-container-config-test": "^0.7",
  6543. "laminas/laminas-dependency-plugin": "^2.1.2",
  6544. "mikey179/vfsstream": "^1.6.10@alpha",
  6545. "ocramius/proxy-manager": "^2.11",
  6546. "phpbench/phpbench": "^1.1",
  6547. "phpspec/prophecy-phpunit": "^2.0",
  6548. "phpunit/phpunit": "^9.5.5",
  6549. "psalm/plugin-phpunit": "^0.17.0",
  6550. "vimeo/psalm": "^4.8"
  6551. },
  6552. "suggest": {
  6553. "ocramius/proxy-manager": "ProxyManager ^2.1.1 to handle lazy initialization of services"
  6554. },
  6555. "bin": [
  6556. "bin/generate-deps-for-config-factory",
  6557. "bin/generate-factory-for-class"
  6558. ],
  6559. "type": "library",
  6560. "autoload": {
  6561. "files": [
  6562. "src/autoload.php"
  6563. ],
  6564. "psr-4": {
  6565. "Laminas\\ServiceManager\\": "src/"
  6566. }
  6567. },
  6568. "notification-url": "https://packagist.org/downloads/",
  6569. "license": [
  6570. "BSD-3-Clause"
  6571. ],
  6572. "description": "Factory-Driven Dependency Injection Container",
  6573. "homepage": "https://laminas.dev",
  6574. "keywords": [
  6575. "PSR-11",
  6576. "dependency-injection",
  6577. "di",
  6578. "dic",
  6579. "laminas",
  6580. "service-manager",
  6581. "servicemanager"
  6582. ],
  6583. "support": {
  6584. "chat": "https://laminas.dev/chat",
  6585. "docs": "https://docs.laminas.dev/laminas-servicemanager/",
  6586. "forum": "https://discourse.laminas.dev",
  6587. "issues": "https://github.com/laminas/laminas-servicemanager/issues",
  6588. "rss": "https://github.com/laminas/laminas-servicemanager/releases.atom",
  6589. "source": "https://github.com/laminas/laminas-servicemanager"
  6590. },
  6591. "funding": [
  6592. {
  6593. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6594. "type": "community_bridge"
  6595. }
  6596. ],
  6597. "time": "2022-09-22T11:33:46+00:00"
  6598. },
  6599. {
  6600. "name": "laminas/laminas-stdlib",
  6601. "version": "3.2.1",
  6602. "source": {
  6603. "type": "git",
  6604. "url": "https://github.com/laminas/laminas-stdlib.git",
  6605. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6"
  6606. },
  6607. "dist": {
  6608. "type": "zip",
  6609. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6610. "reference": "2b18347625a2f06a1a485acfbc870f699dbe51c6",
  6611. "shasum": ""
  6612. },
  6613. "require": {
  6614. "laminas/laminas-zendframework-bridge": "^1.0",
  6615. "php": "^5.6 || ^7.0"
  6616. },
  6617. "replace": {
  6618. "zendframework/zend-stdlib": "self.version"
  6619. },
  6620. "require-dev": {
  6621. "laminas/laminas-coding-standard": "~1.0.0",
  6622. "phpbench/phpbench": "^0.13",
  6623. "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.2"
  6624. },
  6625. "type": "library",
  6626. "extra": {
  6627. "branch-alias": {
  6628. "dev-master": "3.2.x-dev",
  6629. "dev-develop": "3.3.x-dev"
  6630. }
  6631. },
  6632. "autoload": {
  6633. "psr-4": {
  6634. "Laminas\\Stdlib\\": "src/"
  6635. }
  6636. },
  6637. "notification-url": "https://packagist.org/downloads/",
  6638. "license": [
  6639. "BSD-3-Clause"
  6640. ],
  6641. "description": "SPL extensions, array utilities, error handlers, and more",
  6642. "homepage": "https://laminas.dev",
  6643. "keywords": [
  6644. "laminas",
  6645. "stdlib"
  6646. ],
  6647. "support": {
  6648. "chat": "https://laminas.dev/chat",
  6649. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  6650. "forum": "https://discourse.laminas.dev",
  6651. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  6652. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  6653. "source": "https://github.com/laminas/laminas-stdlib"
  6654. },
  6655. "time": "2019-12-31T17:51:15+00:00"
  6656. },
  6657. {
  6658. "name": "laminas/laminas-text",
  6659. "version": "2.8.1",
  6660. "source": {
  6661. "type": "git",
  6662. "url": "https://github.com/laminas/laminas-text.git",
  6663. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608"
  6664. },
  6665. "dist": {
  6666. "type": "zip",
  6667. "url": "https://api.github.com/repos/laminas/laminas-text/zipball/d696fa1fb3880b9b8f02c08be58685013b421608",
  6668. "reference": "d696fa1fb3880b9b8f02c08be58685013b421608",
  6669. "shasum": ""
  6670. },
  6671. "require": {
  6672. "laminas/laminas-servicemanager": "^3.4",
  6673. "laminas/laminas-stdlib": "^3.1",
  6674. "laminas/laminas-zendframework-bridge": "^1.0",
  6675. "php": "^7.3 || ~8.0.0"
  6676. },
  6677. "replace": {
  6678. "zendframework/zend-text": "^2.7.1"
  6679. },
  6680. "require-dev": {
  6681. "laminas/laminas-coding-standard": "~1.0.0",
  6682. "laminas/laminas-config": "^3.4",
  6683. "phpunit/phpunit": "^9.3"
  6684. },
  6685. "type": "library",
  6686. "autoload": {
  6687. "psr-4": {
  6688. "Laminas\\Text\\": "src/"
  6689. }
  6690. },
  6691. "notification-url": "https://packagist.org/downloads/",
  6692. "license": [
  6693. "BSD-3-Clause"
  6694. ],
  6695. "description": "Create FIGlets and text-based tables",
  6696. "homepage": "https://laminas.dev",
  6697. "keywords": [
  6698. "laminas",
  6699. "text"
  6700. ],
  6701. "support": {
  6702. "chat": "https://laminas.dev/chat",
  6703. "docs": "https://docs.laminas.dev/laminas-text/",
  6704. "forum": "https://discourse.laminas.dev",
  6705. "issues": "https://github.com/laminas/laminas-text/issues",
  6706. "rss": "https://github.com/laminas/laminas-text/releases.atom",
  6707. "source": "https://github.com/laminas/laminas-text"
  6708. },
  6709. "funding": [
  6710. {
  6711. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6712. "type": "community_bridge"
  6713. }
  6714. ],
  6715. "time": "2021-02-17T21:24:58+00:00"
  6716. },
  6717. {
  6718. "name": "laminas/laminas-zendframework-bridge",
  6719. "version": "1.0.4",
  6720. "source": {
  6721. "type": "git",
  6722. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  6723. "reference": "fcd87520e4943d968557803919523772475e8ea3"
  6724. },
  6725. "dist": {
  6726. "type": "zip",
  6727. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/fcd87520e4943d968557803919523772475e8ea3",
  6728. "reference": "fcd87520e4943d968557803919523772475e8ea3",
  6729. "shasum": ""
  6730. },
  6731. "require": {
  6732. "php": "^5.6 || ^7.0"
  6733. },
  6734. "require-dev": {
  6735. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1",
  6736. "squizlabs/php_codesniffer": "^3.5"
  6737. },
  6738. "type": "library",
  6739. "extra": {
  6740. "branch-alias": {
  6741. "dev-master": "1.0.x-dev",
  6742. "dev-develop": "1.1.x-dev"
  6743. },
  6744. "laminas": {
  6745. "module": "Laminas\\ZendFrameworkBridge"
  6746. }
  6747. },
  6748. "autoload": {
  6749. "files": [
  6750. "src/autoload.php"
  6751. ],
  6752. "psr-4": {
  6753. "Laminas\\ZendFrameworkBridge\\": "src//"
  6754. }
  6755. },
  6756. "notification-url": "https://packagist.org/downloads/",
  6757. "license": [
  6758. "BSD-3-Clause"
  6759. ],
  6760. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  6761. "keywords": [
  6762. "ZendFramework",
  6763. "autoloading",
  6764. "laminas",
  6765. "zf"
  6766. ],
  6767. "support": {
  6768. "forum": "https://discourse.laminas.dev/",
  6769. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  6770. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  6771. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  6772. },
  6773. "funding": [
  6774. {
  6775. "url": "https://funding.communitybridge.org/projects/laminas-project",
  6776. "type": "community_bridge"
  6777. }
  6778. ],
  6779. "abandoned": true,
  6780. "time": "2020-05-20T16:45:56+00:00"
  6781. },
  6782. {
  6783. "name": "league/container",
  6784. "version": "2.4.1",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/thephpleague/container.git",
  6788. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/thephpleague/container/zipball/43f35abd03a12977a60ffd7095efd6a7808488c0",
  6793. "reference": "43f35abd03a12977a60ffd7095efd6a7808488c0",
  6794. "shasum": ""
  6795. },
  6796. "require": {
  6797. "container-interop/container-interop": "^1.2",
  6798. "php": "^5.4.0 || ^7.0"
  6799. },
  6800. "provide": {
  6801. "container-interop/container-interop-implementation": "^1.2",
  6802. "psr/container-implementation": "^1.0"
  6803. },
  6804. "replace": {
  6805. "orno/di": "~2.0"
  6806. },
  6807. "require-dev": {
  6808. "phpunit/phpunit": "4.*"
  6809. },
  6810. "type": "library",
  6811. "extra": {
  6812. "branch-alias": {
  6813. "dev-2.x": "2.x-dev",
  6814. "dev-1.x": "1.x-dev"
  6815. }
  6816. },
  6817. "autoload": {
  6818. "psr-4": {
  6819. "League\\Container\\": "src"
  6820. }
  6821. },
  6822. "notification-url": "https://packagist.org/downloads/",
  6823. "license": [
  6824. "MIT"
  6825. ],
  6826. "authors": [
  6827. {
  6828. "name": "Phil Bennett",
  6829. "email": "philipobenito@gmail.com",
  6830. "homepage": "http://www.philipobenito.com",
  6831. "role": "Developer"
  6832. }
  6833. ],
  6834. "description": "A fast and intuitive dependency injection container.",
  6835. "homepage": "https://github.com/thephpleague/container",
  6836. "keywords": [
  6837. "container",
  6838. "dependency",
  6839. "di",
  6840. "injection",
  6841. "league",
  6842. "provider",
  6843. "service"
  6844. ],
  6845. "time": "2017-05-10T09:20:27+00:00"
  6846. },
  6847. {
  6848. "name": "masterminds/html5",
  6849. "version": "2.3.0",
  6850. "source": {
  6851. "type": "git",
  6852. "url": "https://github.com/Masterminds/html5-php.git",
  6853. "reference": "2c37c6c520b995b761674de3be8455a381679067"
  6854. },
  6855. "dist": {
  6856. "type": "zip",
  6857. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/2c37c6c520b995b761674de3be8455a381679067",
  6858. "reference": "2c37c6c520b995b761674de3be8455a381679067",
  6859. "shasum": ""
  6860. },
  6861. "require": {
  6862. "ext-libxml": "*",
  6863. "php": ">=5.3.0"
  6864. },
  6865. "require-dev": {
  6866. "phpunit/phpunit": "4.*",
  6867. "sami/sami": "~2.0",
  6868. "satooshi/php-coveralls": "1.0.*"
  6869. },
  6870. "type": "library",
  6871. "extra": {
  6872. "branch-alias": {
  6873. "dev-master": "2.2-dev"
  6874. }
  6875. },
  6876. "autoload": {
  6877. "psr-4": {
  6878. "Masterminds\\": "src"
  6879. }
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Matt Butcher",
  6888. "email": "technosophos@gmail.com"
  6889. },
  6890. {
  6891. "name": "Asmir Mustafic",
  6892. "email": "goetas@gmail.com"
  6893. },
  6894. {
  6895. "name": "Matt Farina",
  6896. "email": "matt@mattfarina.com"
  6897. }
  6898. ],
  6899. "description": "An HTML5 parser and serializer.",
  6900. "homepage": "http://masterminds.github.io/html5-php",
  6901. "keywords": [
  6902. "HTML5",
  6903. "dom",
  6904. "html",
  6905. "parser",
  6906. "querypath",
  6907. "serializer",
  6908. "xml"
  6909. ],
  6910. "support": {
  6911. "issues": "https://github.com/Masterminds/html5-php/issues",
  6912. "source": "https://github.com/Masterminds/html5-php/tree/2.x"
  6913. },
  6914. "time": "2017-09-04T12:26:28+00:00"
  6915. },
  6916. {
  6917. "name": "mathieuviossat/arraytotexttable",
  6918. "version": "v1.0.8",
  6919. "source": {
  6920. "type": "git",
  6921. "url": "https://github.com/viossat/arraytotexttable.git",
  6922. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4"
  6923. },
  6924. "dist": {
  6925. "type": "zip",
  6926. "url": "https://api.github.com/repos/viossat/arraytotexttable/zipball/6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6927. "reference": "6b1af924478cb9c3a903269e304fff006fe0dbf4",
  6928. "shasum": ""
  6929. },
  6930. "require": {
  6931. "laminas/laminas-text": "^2.7",
  6932. "php": ">=5.3.0"
  6933. },
  6934. "type": "library",
  6935. "autoload": {
  6936. "psr-4": {
  6937. "MathieuViossat\\Util\\": "src/"
  6938. }
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Mathieu Viossat",
  6947. "email": "mathieu@viossat.fr",
  6948. "homepage": "https://viossat.fr"
  6949. }
  6950. ],
  6951. "description": "Display arrays in terminal",
  6952. "homepage": "https://github.com/viossat/arraytotexttable",
  6953. "keywords": [
  6954. "array",
  6955. "ascii",
  6956. "table",
  6957. "terminal",
  6958. "text",
  6959. "unicode"
  6960. ],
  6961. "support": {
  6962. "issues": "https://github.com/viossat/arraytotexttable/issues",
  6963. "source": "https://github.com/viossat/arraytotexttable/tree/v1.0.8"
  6964. },
  6965. "time": "2020-06-23T17:14:22+00:00"
  6966. },
  6967. {
  6968. "name": "mglaman/phpstan-drupal",
  6969. "version": "1.2.1",
  6970. "source": {
  6971. "type": "git",
  6972. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6973. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c"
  6974. },
  6975. "dist": {
  6976. "type": "zip",
  6977. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6978. "reference": "920c6b972a832046327f66dc6ff7448e3b5d6e4c",
  6979. "shasum": ""
  6980. },
  6981. "require": {
  6982. "php": "^7.4 || ^8.0",
  6983. "phpstan/phpstan": "^1.10.1",
  6984. "phpstan/phpstan-deprecation-rules": "^1.1.4",
  6985. "symfony/finder": "~3.4.5 ||^4.2 || ^5.0 || ^6.0",
  6986. "symfony/yaml": "~3.4.5 || ^4.2|| ^5.0 || ^6.0",
  6987. "webflo/drupal-finder": "^1.2"
  6988. },
  6989. "require-dev": {
  6990. "behat/mink": "^1.8",
  6991. "composer/installers": "^1.9",
  6992. "drupal/core-recommended": "^8.8@alpha || ^9.0",
  6993. "drush/drush": "^9.6 || ^10.0 || ^11",
  6994. "phpstan/extension-installer": "^1.1",
  6995. "phpstan/phpstan-strict-rules": "^1.0",
  6996. "phpunit/phpunit": "^6.5 || ^7.5 || ^8.0 || ^9",
  6997. "slevomat/coding-standard": "^7.1",
  6998. "squizlabs/php_codesniffer": "^3.3",
  6999. "symfony/phpunit-bridge": "^3.4.3 || ^4.4 || ^5.4 || ^6.0"
  7000. },
  7001. "suggest": {
  7002. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  7003. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  7004. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  7005. },
  7006. "type": "phpstan-extension",
  7007. "extra": {
  7008. "branch-alias": {
  7009. "dev-main": "1.0-dev"
  7010. },
  7011. "installer-paths": {
  7012. "tests/fixtures/drupal/core": [
  7013. "type:drupal-core"
  7014. ],
  7015. "tests/fixtures/drupal/libraries/{$name}": [
  7016. "type:drupal-library"
  7017. ],
  7018. "tests/fixtures/drupal/modules/contrib/{$name}": [
  7019. "type:drupal-module"
  7020. ],
  7021. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  7022. "type:drupal-profile"
  7023. ],
  7024. "tests/fixtures/drupal/themes/contrib/{$name}": [
  7025. "type:drupal-theme"
  7026. ]
  7027. },
  7028. "phpstan": {
  7029. "includes": [
  7030. "extension.neon",
  7031. "rules.neon"
  7032. ]
  7033. }
  7034. },
  7035. "autoload": {
  7036. "psr-4": {
  7037. "mglaman\\PHPStanDrupal\\": "src/"
  7038. }
  7039. },
  7040. "notification-url": "https://packagist.org/downloads/",
  7041. "license": [
  7042. "MIT"
  7043. ],
  7044. "authors": [
  7045. {
  7046. "name": "Matt Glaman",
  7047. "email": "nmd.matt@gmail.com"
  7048. }
  7049. ],
  7050. "description": "Drupal extension and rules for PHPStan",
  7051. "support": {
  7052. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  7053. "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.1"
  7054. },
  7055. "funding": [
  7056. {
  7057. "url": "https://github.com/mglaman",
  7058. "type": "github"
  7059. },
  7060. {
  7061. "url": "https://opencollective.com/phpstan-drupal",
  7062. "type": "open_collective"
  7063. },
  7064. {
  7065. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  7066. "type": "tidelift"
  7067. }
  7068. ],
  7069. "time": "2023-11-03T13:17:28+00:00"
  7070. },
  7071. {
  7072. "name": "nikic/php-parser",
  7073. "version": "v4.4.0",
  7074. "source": {
  7075. "type": "git",
  7076. "url": "https://github.com/nikic/PHP-Parser.git",
  7077. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120"
  7078. },
  7079. "dist": {
  7080. "type": "zip",
  7081. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7082. "reference": "bd43ec7152eaaab3bd8c6d0aa95ceeb1df8ee120",
  7083. "shasum": ""
  7084. },
  7085. "require": {
  7086. "ext-tokenizer": "*",
  7087. "php": ">=7.0"
  7088. },
  7089. "require-dev": {
  7090. "ircmaxell/php-yacc": "0.0.5",
  7091. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0"
  7092. },
  7093. "bin": [
  7094. "bin/php-parse"
  7095. ],
  7096. "type": "library",
  7097. "extra": {
  7098. "branch-alias": {
  7099. "dev-master": "4.3-dev"
  7100. }
  7101. },
  7102. "autoload": {
  7103. "psr-4": {
  7104. "PhpParser\\": "lib/PhpParser"
  7105. }
  7106. },
  7107. "notification-url": "https://packagist.org/downloads/",
  7108. "license": [
  7109. "BSD-3-Clause"
  7110. ],
  7111. "authors": [
  7112. {
  7113. "name": "Nikita Popov"
  7114. }
  7115. ],
  7116. "description": "A PHP parser written in PHP",
  7117. "keywords": [
  7118. "parser",
  7119. "php"
  7120. ],
  7121. "time": "2020-04-10T16:34:50+00:00"
  7122. },
  7123. {
  7124. "name": "paragonie/random_compat",
  7125. "version": "v9.99.99",
  7126. "source": {
  7127. "type": "git",
  7128. "url": "https://github.com/paragonie/random_compat.git",
  7129. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95"
  7130. },
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7134. "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "php": "^7"
  7139. },
  7140. "require-dev": {
  7141. "phpunit/phpunit": "4.*|5.*",
  7142. "vimeo/psalm": "^1"
  7143. },
  7144. "suggest": {
  7145. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  7146. },
  7147. "type": "library",
  7148. "notification-url": "https://packagist.org/downloads/",
  7149. "license": [
  7150. "MIT"
  7151. ],
  7152. "authors": [
  7153. {
  7154. "name": "Paragon Initiative Enterprises",
  7155. "email": "security@paragonie.com",
  7156. "homepage": "https://paragonie.com"
  7157. }
  7158. ],
  7159. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  7160. "keywords": [
  7161. "csprng",
  7162. "polyfill",
  7163. "pseudorandom",
  7164. "random"
  7165. ],
  7166. "support": {
  7167. "email": "info@paragonie.com",
  7168. "issues": "https://github.com/paragonie/random_compat/issues",
  7169. "source": "https://github.com/paragonie/random_compat"
  7170. },
  7171. "time": "2018-07-02T15:55:56+00:00"
  7172. },
  7173. {
  7174. "name": "pear/archive_tar",
  7175. "version": "1.4.14",
  7176. "source": {
  7177. "type": "git",
  7178. "url": "https://github.com/pear/Archive_Tar.git",
  7179. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7180. },
  7181. "dist": {
  7182. "type": "zip",
  7183. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7184. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7185. "shasum": ""
  7186. },
  7187. "require": {
  7188. "pear/pear-core-minimal": "^1.10.0alpha2",
  7189. "php": ">=5.2.0"
  7190. },
  7191. "require-dev": {
  7192. "phpunit/phpunit": "*"
  7193. },
  7194. "suggest": {
  7195. "ext-bz2": "Bz2 compression support.",
  7196. "ext-xz": "Lzma2 compression support.",
  7197. "ext-zlib": "Gzip compression support."
  7198. },
  7199. "type": "library",
  7200. "extra": {
  7201. "branch-alias": {
  7202. "dev-master": "1.4.x-dev"
  7203. }
  7204. },
  7205. "autoload": {
  7206. "psr-0": {
  7207. "Archive_Tar": ""
  7208. }
  7209. },
  7210. "notification-url": "https://packagist.org/downloads/",
  7211. "include-path": [
  7212. "./"
  7213. ],
  7214. "license": [
  7215. "BSD-3-Clause"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "Vincent Blavet",
  7220. "email": "vincent@phpconcept.net"
  7221. },
  7222. {
  7223. "name": "Greg Beaver",
  7224. "email": "greg@chiaraquartet.net"
  7225. },
  7226. {
  7227. "name": "Michiel Rook",
  7228. "email": "mrook@php.net"
  7229. }
  7230. ],
  7231. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7232. "homepage": "https://github.com/pear/Archive_Tar",
  7233. "keywords": [
  7234. "archive",
  7235. "tar"
  7236. ],
  7237. "support": {
  7238. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7239. "source": "https://github.com/pear/Archive_Tar"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://github.com/mrook",
  7244. "type": "github"
  7245. },
  7246. {
  7247. "url": "https://www.patreon.com/michielrook",
  7248. "type": "patreon"
  7249. }
  7250. ],
  7251. "time": "2021-07-20T13:53:39+00:00"
  7252. },
  7253. {
  7254. "name": "pear/console_getopt",
  7255. "version": "v1.4.3",
  7256. "source": {
  7257. "type": "git",
  7258. "url": "https://github.com/pear/Console_Getopt.git",
  7259. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7260. },
  7261. "dist": {
  7262. "type": "zip",
  7263. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7264. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7265. "shasum": ""
  7266. },
  7267. "type": "library",
  7268. "autoload": {
  7269. "psr-0": {
  7270. "Console": "./"
  7271. }
  7272. },
  7273. "notification-url": "https://packagist.org/downloads/",
  7274. "include-path": [
  7275. "./"
  7276. ],
  7277. "license": [
  7278. "BSD-2-Clause"
  7279. ],
  7280. "authors": [
  7281. {
  7282. "name": "Andrei Zmievski",
  7283. "email": "andrei@php.net",
  7284. "role": "Lead"
  7285. },
  7286. {
  7287. "name": "Stig Bakken",
  7288. "email": "stig@php.net",
  7289. "role": "Developer"
  7290. },
  7291. {
  7292. "name": "Greg Beaver",
  7293. "email": "cellog@php.net",
  7294. "role": "Helper"
  7295. }
  7296. ],
  7297. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7298. "support": {
  7299. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7300. "source": "https://github.com/pear/Console_Getopt"
  7301. },
  7302. "time": "2019-11-20T18:27:48+00:00"
  7303. },
  7304. {
  7305. "name": "pear/pear-core-minimal",
  7306. "version": "v1.10.10",
  7307. "source": {
  7308. "type": "git",
  7309. "url": "https://github.com/pear/pear-core-minimal.git",
  7310. "reference": "625a3c429d9b2c1546438679074cac1b089116a7"
  7311. },
  7312. "dist": {
  7313. "type": "zip",
  7314. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/625a3c429d9b2c1546438679074cac1b089116a7",
  7315. "reference": "625a3c429d9b2c1546438679074cac1b089116a7",
  7316. "shasum": ""
  7317. },
  7318. "require": {
  7319. "pear/console_getopt": "~1.4",
  7320. "pear/pear_exception": "~1.0"
  7321. },
  7322. "replace": {
  7323. "rsky/pear-core-min": "self.version"
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "psr-0": {
  7328. "": "src/"
  7329. }
  7330. },
  7331. "notification-url": "https://packagist.org/downloads/",
  7332. "include-path": [
  7333. "src/"
  7334. ],
  7335. "license": [
  7336. "BSD-3-Clause"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Christian Weiske",
  7341. "email": "cweiske@php.net",
  7342. "role": "Lead"
  7343. }
  7344. ],
  7345. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7346. "support": {
  7347. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7348. "source": "https://github.com/pear/pear-core-minimal"
  7349. },
  7350. "time": "2019-11-19T19:00:24+00:00"
  7351. },
  7352. {
  7353. "name": "pear/pear_exception",
  7354. "version": "v1.0.1",
  7355. "source": {
  7356. "type": "git",
  7357. "url": "https://github.com/pear/PEAR_Exception.git",
  7358. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7"
  7359. },
  7360. "dist": {
  7361. "type": "zip",
  7362. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7363. "reference": "dbb42a5a0e45f3adcf99babfb2a1ba77b8ac36a7",
  7364. "shasum": ""
  7365. },
  7366. "require": {
  7367. "php": ">=4.4.0"
  7368. },
  7369. "require-dev": {
  7370. "phpunit/phpunit": "*"
  7371. },
  7372. "type": "class",
  7373. "extra": {
  7374. "branch-alias": {
  7375. "dev-master": "1.0.x-dev"
  7376. }
  7377. },
  7378. "autoload": {
  7379. "classmap": [
  7380. "PEAR/"
  7381. ]
  7382. },
  7383. "notification-url": "https://packagist.org/downloads/",
  7384. "include-path": [
  7385. "."
  7386. ],
  7387. "license": [
  7388. "BSD-2-Clause"
  7389. ],
  7390. "authors": [
  7391. {
  7392. "name": "Helgi Thormar",
  7393. "email": "dufuz@php.net"
  7394. },
  7395. {
  7396. "name": "Greg Beaver",
  7397. "email": "cellog@php.net"
  7398. }
  7399. ],
  7400. "description": "The PEAR Exception base class.",
  7401. "homepage": "https://github.com/pear/PEAR_Exception",
  7402. "keywords": [
  7403. "exception"
  7404. ],
  7405. "support": {
  7406. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7407. "source": "https://github.com/pear/PEAR_Exception"
  7408. },
  7409. "time": "2019-12-10T10:24:42+00:00"
  7410. },
  7411. {
  7412. "name": "phpstan/phpstan",
  7413. "version": "1.12.3",
  7414. "source": {
  7415. "type": "git",
  7416. "url": "https://github.com/phpstan/phpstan.git",
  7417. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009"
  7418. },
  7419. "dist": {
  7420. "type": "zip",
  7421. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7422. "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009",
  7423. "shasum": ""
  7424. },
  7425. "require": {
  7426. "php": "^7.2|^8.0"
  7427. },
  7428. "conflict": {
  7429. "phpstan/phpstan-shim": "*"
  7430. },
  7431. "bin": [
  7432. "phpstan",
  7433. "phpstan.phar"
  7434. ],
  7435. "type": "library",
  7436. "autoload": {
  7437. "files": [
  7438. "bootstrap.php"
  7439. ]
  7440. },
  7441. "notification-url": "https://packagist.org/downloads/",
  7442. "license": [
  7443. "MIT"
  7444. ],
  7445. "description": "PHPStan - PHP Static Analysis Tool",
  7446. "keywords": [
  7447. "dev",
  7448. "static analysis"
  7449. ],
  7450. "support": {
  7451. "docs": "https://phpstan.org/user-guide/getting-started",
  7452. "forum": "https://github.com/phpstan/phpstan/discussions",
  7453. "issues": "https://github.com/phpstan/phpstan/issues",
  7454. "security": "https://github.com/phpstan/phpstan/security/policy",
  7455. "source": "https://github.com/phpstan/phpstan-src"
  7456. },
  7457. "funding": [
  7458. {
  7459. "url": "https://github.com/ondrejmirtes",
  7460. "type": "github"
  7461. },
  7462. {
  7463. "url": "https://github.com/phpstan",
  7464. "type": "github"
  7465. }
  7466. ],
  7467. "time": "2024-09-09T08:10:35+00:00"
  7468. },
  7469. {
  7470. "name": "phpstan/phpstan-deprecation-rules",
  7471. "version": "1.2.1",
  7472. "source": {
  7473. "type": "git",
  7474. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  7475. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82"
  7476. },
  7477. "dist": {
  7478. "type": "zip",
  7479. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7480. "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82",
  7481. "shasum": ""
  7482. },
  7483. "require": {
  7484. "php": "^7.2 || ^8.0",
  7485. "phpstan/phpstan": "^1.12"
  7486. },
  7487. "require-dev": {
  7488. "php-parallel-lint/php-parallel-lint": "^1.2",
  7489. "phpstan/phpstan-phpunit": "^1.0",
  7490. "phpunit/phpunit": "^9.5"
  7491. },
  7492. "type": "phpstan-extension",
  7493. "extra": {
  7494. "phpstan": {
  7495. "includes": [
  7496. "rules.neon"
  7497. ]
  7498. }
  7499. },
  7500. "autoload": {
  7501. "psr-4": {
  7502. "PHPStan\\": "src/"
  7503. }
  7504. },
  7505. "notification-url": "https://packagist.org/downloads/",
  7506. "license": [
  7507. "MIT"
  7508. ],
  7509. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  7510. "support": {
  7511. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  7512. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1"
  7513. },
  7514. "time": "2024-09-11T15:52:35+00:00"
  7515. },
  7516. {
  7517. "name": "psr/container",
  7518. "version": "1.0.0",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/php-fig/container.git",
  7522. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7527. "reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "php": ">=5.3.0"
  7532. },
  7533. "type": "library",
  7534. "extra": {
  7535. "branch-alias": {
  7536. "dev-master": "1.0.x-dev"
  7537. }
  7538. },
  7539. "autoload": {
  7540. "psr-4": {
  7541. "Psr\\Container\\": "src/"
  7542. }
  7543. },
  7544. "notification-url": "https://packagist.org/downloads/",
  7545. "license": [
  7546. "MIT"
  7547. ],
  7548. "authors": [
  7549. {
  7550. "name": "PHP-FIG",
  7551. "homepage": "http://www.php-fig.org/"
  7552. }
  7553. ],
  7554. "description": "Common Container Interface (PHP FIG PSR-11)",
  7555. "homepage": "https://github.com/php-fig/container",
  7556. "keywords": [
  7557. "PSR-11",
  7558. "container",
  7559. "container-interface",
  7560. "container-interop",
  7561. "psr"
  7562. ],
  7563. "support": {
  7564. "issues": "https://github.com/php-fig/container/issues",
  7565. "source": "https://github.com/php-fig/container/tree/master"
  7566. },
  7567. "time": "2017-02-14T16:28:37+00:00"
  7568. },
  7569. {
  7570. "name": "psr/http-message",
  7571. "version": "1.0.1",
  7572. "source": {
  7573. "type": "git",
  7574. "url": "https://github.com/php-fig/http-message.git",
  7575. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  7576. },
  7577. "dist": {
  7578. "type": "zip",
  7579. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  7580. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  7581. "shasum": ""
  7582. },
  7583. "require": {
  7584. "php": ">=5.3.0"
  7585. },
  7586. "type": "library",
  7587. "extra": {
  7588. "branch-alias": {
  7589. "dev-master": "1.0.x-dev"
  7590. }
  7591. },
  7592. "autoload": {
  7593. "psr-4": {
  7594. "Psr\\Http\\Message\\": "src/"
  7595. }
  7596. },
  7597. "notification-url": "https://packagist.org/downloads/",
  7598. "license": [
  7599. "MIT"
  7600. ],
  7601. "authors": [
  7602. {
  7603. "name": "PHP-FIG",
  7604. "homepage": "http://www.php-fig.org/"
  7605. }
  7606. ],
  7607. "description": "Common interface for HTTP messages",
  7608. "homepage": "https://github.com/php-fig/http-message",
  7609. "keywords": [
  7610. "http",
  7611. "http-message",
  7612. "psr",
  7613. "psr-7",
  7614. "request",
  7615. "response"
  7616. ],
  7617. "support": {
  7618. "source": "https://github.com/php-fig/http-message/tree/master"
  7619. },
  7620. "time": "2016-08-06T14:39:51+00:00"
  7621. },
  7622. {
  7623. "name": "psr/log",
  7624. "version": "1.1.3",
  7625. "source": {
  7626. "type": "git",
  7627. "url": "https://github.com/php-fig/log.git",
  7628. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
  7629. },
  7630. "dist": {
  7631. "type": "zip",
  7632. "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
  7633. "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
  7634. "shasum": ""
  7635. },
  7636. "require": {
  7637. "php": ">=5.3.0"
  7638. },
  7639. "type": "library",
  7640. "extra": {
  7641. "branch-alias": {
  7642. "dev-master": "1.1.x-dev"
  7643. }
  7644. },
  7645. "autoload": {
  7646. "psr-4": {
  7647. "Psr\\Log\\": "Psr/Log/"
  7648. }
  7649. },
  7650. "notification-url": "https://packagist.org/downloads/",
  7651. "license": [
  7652. "MIT"
  7653. ],
  7654. "authors": [
  7655. {
  7656. "name": "PHP-FIG",
  7657. "homepage": "http://www.php-fig.org/"
  7658. }
  7659. ],
  7660. "description": "Common interface for logging libraries",
  7661. "homepage": "https://github.com/php-fig/log",
  7662. "keywords": [
  7663. "log",
  7664. "psr",
  7665. "psr-3"
  7666. ],
  7667. "support": {
  7668. "source": "https://github.com/php-fig/log/tree/1.1.3"
  7669. },
  7670. "time": "2020-03-23T09:12:05+00:00"
  7671. },
  7672. {
  7673. "name": "psy/psysh",
  7674. "version": "v0.10.4",
  7675. "source": {
  7676. "type": "git",
  7677. "url": "https://github.com/bobthecow/psysh.git",
  7678. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560"
  7679. },
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7683. "reference": "a8aec1b2981ab66882a01cce36a49b6317dc3560",
  7684. "shasum": ""
  7685. },
  7686. "require": {
  7687. "dnoegel/php-xdg-base-dir": "0.1.*",
  7688. "ext-json": "*",
  7689. "ext-tokenizer": "*",
  7690. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  7691. "php": "^8.0 || ^7.0 || ^5.5.9",
  7692. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  7693. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  7694. },
  7695. "require-dev": {
  7696. "bamarni/composer-bin-plugin": "^1.2",
  7697. "hoa/console": "3.17.*"
  7698. },
  7699. "suggest": {
  7700. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7701. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7702. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  7703. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  7704. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  7705. },
  7706. "bin": [
  7707. "bin/psysh"
  7708. ],
  7709. "type": "library",
  7710. "extra": {
  7711. "branch-alias": {
  7712. "dev-master": "0.10.x-dev"
  7713. }
  7714. },
  7715. "autoload": {
  7716. "files": [
  7717. "src/functions.php"
  7718. ],
  7719. "psr-4": {
  7720. "Psy\\": "src/"
  7721. }
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "MIT"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Justin Hileman",
  7730. "email": "justin@justinhileman.info",
  7731. "homepage": "http://justinhileman.com"
  7732. }
  7733. ],
  7734. "description": "An interactive shell for modern PHP.",
  7735. "homepage": "http://psysh.org",
  7736. "keywords": [
  7737. "REPL",
  7738. "console",
  7739. "interactive",
  7740. "shell"
  7741. ],
  7742. "time": "2020-05-03T19:32:03+00:00"
  7743. },
  7744. {
  7745. "name": "ralouphie/getallheaders",
  7746. "version": "3.0.3",
  7747. "source": {
  7748. "type": "git",
  7749. "url": "https://github.com/ralouphie/getallheaders.git",
  7750. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7751. },
  7752. "dist": {
  7753. "type": "zip",
  7754. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7755. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7756. "shasum": ""
  7757. },
  7758. "require": {
  7759. "php": ">=5.6"
  7760. },
  7761. "require-dev": {
  7762. "php-coveralls/php-coveralls": "^2.1",
  7763. "phpunit/phpunit": "^5 || ^6.5"
  7764. },
  7765. "type": "library",
  7766. "autoload": {
  7767. "files": [
  7768. "src/getallheaders.php"
  7769. ]
  7770. },
  7771. "notification-url": "https://packagist.org/downloads/",
  7772. "license": [
  7773. "MIT"
  7774. ],
  7775. "authors": [
  7776. {
  7777. "name": "Ralph Khattar",
  7778. "email": "ralph.khattar@gmail.com"
  7779. }
  7780. ],
  7781. "description": "A polyfill for getallheaders.",
  7782. "support": {
  7783. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7784. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7785. },
  7786. "time": "2019-03-08T08:55:37+00:00"
  7787. },
  7788. {
  7789. "name": "stack/builder",
  7790. "version": "v1.0.5",
  7791. "source": {
  7792. "type": "git",
  7793. "url": "https://github.com/stackphp/builder.git",
  7794. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a"
  7795. },
  7796. "dist": {
  7797. "type": "zip",
  7798. "url": "https://api.github.com/repos/stackphp/builder/zipball/fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7799. "reference": "fb3d136d04c6be41120ebf8c0cc71fe9507d750a",
  7800. "shasum": ""
  7801. },
  7802. "require": {
  7803. "php": ">=5.3.0",
  7804. "symfony/http-foundation": "~2.1|~3.0|~4.0",
  7805. "symfony/http-kernel": "~2.1|~3.0|~4.0"
  7806. },
  7807. "require-dev": {
  7808. "silex/silex": "~1.0"
  7809. },
  7810. "type": "library",
  7811. "extra": {
  7812. "branch-alias": {
  7813. "dev-master": "1.0-dev"
  7814. }
  7815. },
  7816. "autoload": {
  7817. "psr-0": {
  7818. "Stack": "src"
  7819. }
  7820. },
  7821. "notification-url": "https://packagist.org/downloads/",
  7822. "license": [
  7823. "MIT"
  7824. ],
  7825. "authors": [
  7826. {
  7827. "name": "Igor Wiedler",
  7828. "email": "igor@wiedler.ch"
  7829. }
  7830. ],
  7831. "description": "Builder for stack middlewares based on HttpKernelInterface.",
  7832. "keywords": [
  7833. "stack"
  7834. ],
  7835. "support": {
  7836. "issues": "https://github.com/stackphp/builder/issues",
  7837. "source": "https://github.com/stackphp/builder/tree/master"
  7838. },
  7839. "abandoned": true,
  7840. "time": "2017-11-18T14:57:29+00:00"
  7841. },
  7842. {
  7843. "name": "symfony-cmf/routing",
  7844. "version": "1.4.1",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://github.com/symfony-cmf/routing.git",
  7848. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://api.github.com/repos/symfony-cmf/routing/zipball/fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7853. "reference": "fb1e7f85ff8c6866238b7e73a490a0a0243ae8ac",
  7854. "shasum": ""
  7855. },
  7856. "require": {
  7857. "php": "^5.3.9|^7.0",
  7858. "psr/log": "1.*",
  7859. "symfony/http-kernel": "^2.2|3.*",
  7860. "symfony/routing": "^2.2|3.*"
  7861. },
  7862. "require-dev": {
  7863. "friendsofsymfony/jsrouting-bundle": "^1.1",
  7864. "symfony-cmf/testing": "^1.3",
  7865. "symfony/config": "^2.2|3.*",
  7866. "symfony/dependency-injection": "^2.0.5|3.*",
  7867. "symfony/event-dispatcher": "^2.1|3.*"
  7868. },
  7869. "suggest": {
  7870. "symfony/event-dispatcher": "DynamicRouter can optionally trigger an event at the start of matching. Minimal version (~2.1)"
  7871. },
  7872. "type": "library",
  7873. "extra": {
  7874. "branch-alias": {
  7875. "dev-master": "1.4-dev"
  7876. }
  7877. },
  7878. "autoload": {
  7879. "psr-4": {
  7880. "Symfony\\Cmf\\Component\\Routing\\": ""
  7881. }
  7882. },
  7883. "notification-url": "https://packagist.org/downloads/",
  7884. "license": [
  7885. "MIT"
  7886. ],
  7887. "authors": [
  7888. {
  7889. "name": "Symfony CMF Community",
  7890. "homepage": "https://github.com/symfony-cmf/Routing/contributors"
  7891. }
  7892. ],
  7893. "description": "Extends the Symfony2 routing component for dynamic routes and chaining several routers",
  7894. "homepage": "http://cmf.symfony.com",
  7895. "keywords": [
  7896. "database",
  7897. "routing"
  7898. ],
  7899. "support": {
  7900. "issues": "https://github.com/symfony-cmf/routing/issues",
  7901. "source": "https://github.com/symfony-cmf/routing/tree/1.4"
  7902. },
  7903. "time": "2017-05-09T08:10:41+00:00"
  7904. },
  7905. {
  7906. "name": "symfony/class-loader",
  7907. "version": "v3.4.41",
  7908. "source": {
  7909. "type": "git",
  7910. "url": "https://github.com/symfony/class-loader.git",
  7911. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8"
  7912. },
  7913. "dist": {
  7914. "type": "zip",
  7915. "url": "https://api.github.com/repos/symfony/class-loader/zipball/e4636a4f23f157278a19e5db160c63de0da297d8",
  7916. "reference": "e4636a4f23f157278a19e5db160c63de0da297d8",
  7917. "shasum": ""
  7918. },
  7919. "require": {
  7920. "php": "^5.5.9|>=7.0.8"
  7921. },
  7922. "require-dev": {
  7923. "symfony/finder": "~2.8|~3.0|~4.0",
  7924. "symfony/polyfill-apcu": "~1.1"
  7925. },
  7926. "suggest": {
  7927. "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM"
  7928. },
  7929. "type": "library",
  7930. "extra": {
  7931. "branch-alias": {
  7932. "dev-master": "3.4-dev"
  7933. }
  7934. },
  7935. "autoload": {
  7936. "psr-4": {
  7937. "Symfony\\Component\\ClassLoader\\": ""
  7938. },
  7939. "exclude-from-classmap": [
  7940. "/Tests/"
  7941. ]
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "MIT"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Fabien Potencier",
  7950. "email": "fabien@symfony.com"
  7951. },
  7952. {
  7953. "name": "Symfony Community",
  7954. "homepage": "https://symfony.com/contributors"
  7955. }
  7956. ],
  7957. "description": "Symfony ClassLoader Component",
  7958. "homepage": "https://symfony.com",
  7959. "support": {
  7960. "source": "https://github.com/symfony/class-loader/tree/3.4"
  7961. },
  7962. "funding": [
  7963. {
  7964. "url": "https://symfony.com/sponsor",
  7965. "type": "custom"
  7966. },
  7967. {
  7968. "url": "https://github.com/fabpot",
  7969. "type": "github"
  7970. },
  7971. {
  7972. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7973. "type": "tidelift"
  7974. }
  7975. ],
  7976. "abandoned": true,
  7977. "time": "2020-03-15T09:38:08+00:00"
  7978. },
  7979. {
  7980. "name": "symfony/console",
  7981. "version": "v3.4.41",
  7982. "source": {
  7983. "type": "git",
  7984. "url": "https://github.com/symfony/console.git",
  7985. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13"
  7986. },
  7987. "dist": {
  7988. "type": "zip",
  7989. "url": "https://api.github.com/repos/symfony/console/zipball/bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7990. "reference": "bfe29ead7e7b1cc9ce74c6a40d06ad1f96fced13",
  7991. "shasum": ""
  7992. },
  7993. "require": {
  7994. "php": "^5.5.9|>=7.0.8",
  7995. "symfony/debug": "~2.8|~3.0|~4.0",
  7996. "symfony/polyfill-mbstring": "~1.0"
  7997. },
  7998. "conflict": {
  7999. "symfony/dependency-injection": "<3.4",
  8000. "symfony/process": "<3.3"
  8001. },
  8002. "provide": {
  8003. "psr/log-implementation": "1.0"
  8004. },
  8005. "require-dev": {
  8006. "psr/log": "~1.0",
  8007. "symfony/config": "~3.3|~4.0",
  8008. "symfony/dependency-injection": "~3.4|~4.0",
  8009. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8010. "symfony/lock": "~3.4|~4.0",
  8011. "symfony/process": "~3.3|~4.0"
  8012. },
  8013. "suggest": {
  8014. "psr/log": "For using the console logger",
  8015. "symfony/event-dispatcher": "",
  8016. "symfony/lock": "",
  8017. "symfony/process": ""
  8018. },
  8019. "type": "library",
  8020. "extra": {
  8021. "branch-alias": {
  8022. "dev-master": "3.4-dev"
  8023. }
  8024. },
  8025. "autoload": {
  8026. "psr-4": {
  8027. "Symfony\\Component\\Console\\": ""
  8028. },
  8029. "exclude-from-classmap": [
  8030. "/Tests/"
  8031. ]
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "MIT"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "Fabien Potencier",
  8040. "email": "fabien@symfony.com"
  8041. },
  8042. {
  8043. "name": "Symfony Community",
  8044. "homepage": "https://symfony.com/contributors"
  8045. }
  8046. ],
  8047. "description": "Symfony Console Component",
  8048. "homepage": "https://symfony.com",
  8049. "support": {
  8050. "source": "https://github.com/symfony/console/tree/v3.4.41"
  8051. },
  8052. "funding": [
  8053. {
  8054. "url": "https://symfony.com/sponsor",
  8055. "type": "custom"
  8056. },
  8057. {
  8058. "url": "https://github.com/fabpot",
  8059. "type": "github"
  8060. },
  8061. {
  8062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8063. "type": "tidelift"
  8064. }
  8065. ],
  8066. "time": "2020-05-30T18:58:05+00:00"
  8067. },
  8068. {
  8069. "name": "symfony/debug",
  8070. "version": "v3.4.41",
  8071. "source": {
  8072. "type": "git",
  8073. "url": "https://github.com/symfony/debug.git",
  8074. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d"
  8075. },
  8076. "dist": {
  8077. "type": "zip",
  8078. "url": "https://api.github.com/repos/symfony/debug/zipball/518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8079. "reference": "518c6a00d0872da30bd06aee3ea59a0a5cf54d6d",
  8080. "shasum": ""
  8081. },
  8082. "require": {
  8083. "php": "^5.5.9|>=7.0.8",
  8084. "psr/log": "~1.0"
  8085. },
  8086. "conflict": {
  8087. "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
  8088. },
  8089. "require-dev": {
  8090. "symfony/http-kernel": "~2.8|~3.0|~4.0"
  8091. },
  8092. "type": "library",
  8093. "extra": {
  8094. "branch-alias": {
  8095. "dev-master": "3.4-dev"
  8096. }
  8097. },
  8098. "autoload": {
  8099. "psr-4": {
  8100. "Symfony\\Component\\Debug\\": ""
  8101. },
  8102. "exclude-from-classmap": [
  8103. "/Tests/"
  8104. ]
  8105. },
  8106. "notification-url": "https://packagist.org/downloads/",
  8107. "license": [
  8108. "MIT"
  8109. ],
  8110. "authors": [
  8111. {
  8112. "name": "Fabien Potencier",
  8113. "email": "fabien@symfony.com"
  8114. },
  8115. {
  8116. "name": "Symfony Community",
  8117. "homepage": "https://symfony.com/contributors"
  8118. }
  8119. ],
  8120. "description": "Symfony Debug Component",
  8121. "homepage": "https://symfony.com",
  8122. "support": {
  8123. "source": "https://github.com/symfony/debug/tree/3.4"
  8124. },
  8125. "funding": [
  8126. {
  8127. "url": "https://symfony.com/sponsor",
  8128. "type": "custom"
  8129. },
  8130. {
  8131. "url": "https://github.com/fabpot",
  8132. "type": "github"
  8133. },
  8134. {
  8135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8136. "type": "tidelift"
  8137. }
  8138. ],
  8139. "abandoned": "symfony/error-handler",
  8140. "time": "2020-05-22T18:25:20+00:00"
  8141. },
  8142. {
  8143. "name": "symfony/dependency-injection",
  8144. "version": "v3.4.41",
  8145. "source": {
  8146. "type": "git",
  8147. "url": "https://github.com/symfony/dependency-injection.git",
  8148. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac"
  8149. },
  8150. "dist": {
  8151. "type": "zip",
  8152. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e39380b7104b0ec538a075ae919f00c7e5267bac",
  8153. "reference": "e39380b7104b0ec538a075ae919f00c7e5267bac",
  8154. "shasum": ""
  8155. },
  8156. "require": {
  8157. "php": "^5.5.9|>=7.0.8",
  8158. "psr/container": "^1.0"
  8159. },
  8160. "conflict": {
  8161. "symfony/config": "<3.3.7",
  8162. "symfony/finder": "<3.3",
  8163. "symfony/proxy-manager-bridge": "<3.4",
  8164. "symfony/yaml": "<3.4"
  8165. },
  8166. "provide": {
  8167. "psr/container-implementation": "1.0"
  8168. },
  8169. "require-dev": {
  8170. "symfony/config": "~3.3|~4.0",
  8171. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8172. "symfony/yaml": "~3.4|~4.0"
  8173. },
  8174. "suggest": {
  8175. "symfony/config": "",
  8176. "symfony/expression-language": "For using expressions in service container configuration",
  8177. "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
  8178. "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
  8179. "symfony/yaml": ""
  8180. },
  8181. "type": "library",
  8182. "extra": {
  8183. "branch-alias": {
  8184. "dev-master": "3.4-dev"
  8185. }
  8186. },
  8187. "autoload": {
  8188. "psr-4": {
  8189. "Symfony\\Component\\DependencyInjection\\": ""
  8190. },
  8191. "exclude-from-classmap": [
  8192. "/Tests/"
  8193. ]
  8194. },
  8195. "notification-url": "https://packagist.org/downloads/",
  8196. "license": [
  8197. "MIT"
  8198. ],
  8199. "authors": [
  8200. {
  8201. "name": "Fabien Potencier",
  8202. "email": "fabien@symfony.com"
  8203. },
  8204. {
  8205. "name": "Symfony Community",
  8206. "homepage": "https://symfony.com/contributors"
  8207. }
  8208. ],
  8209. "description": "Symfony DependencyInjection Component",
  8210. "homepage": "https://symfony.com",
  8211. "support": {
  8212. "source": "https://github.com/symfony/dependency-injection/tree/3.4"
  8213. },
  8214. "funding": [
  8215. {
  8216. "url": "https://symfony.com/sponsor",
  8217. "type": "custom"
  8218. },
  8219. {
  8220. "url": "https://github.com/fabpot",
  8221. "type": "github"
  8222. },
  8223. {
  8224. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8225. "type": "tidelift"
  8226. }
  8227. ],
  8228. "time": "2020-05-30T21:06:01+00:00"
  8229. },
  8230. {
  8231. "name": "symfony/event-dispatcher",
  8232. "version": "v3.4.41",
  8233. "source": {
  8234. "type": "git",
  8235. "url": "https://github.com/symfony/event-dispatcher.git",
  8236. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081"
  8237. },
  8238. "dist": {
  8239. "type": "zip",
  8240. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/14d978f8e8555f2de719c00eb65376be7d2e9081",
  8241. "reference": "14d978f8e8555f2de719c00eb65376be7d2e9081",
  8242. "shasum": ""
  8243. },
  8244. "require": {
  8245. "php": "^5.5.9|>=7.0.8"
  8246. },
  8247. "conflict": {
  8248. "symfony/dependency-injection": "<3.3"
  8249. },
  8250. "require-dev": {
  8251. "psr/log": "~1.0",
  8252. "symfony/config": "~2.8|~3.0|~4.0",
  8253. "symfony/dependency-injection": "~3.3|~4.0",
  8254. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8255. "symfony/stopwatch": "~2.8|~3.0|~4.0"
  8256. },
  8257. "suggest": {
  8258. "symfony/dependency-injection": "",
  8259. "symfony/http-kernel": ""
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "branch-alias": {
  8264. "dev-master": "3.4-dev"
  8265. }
  8266. },
  8267. "autoload": {
  8268. "psr-4": {
  8269. "Symfony\\Component\\EventDispatcher\\": ""
  8270. },
  8271. "exclude-from-classmap": [
  8272. "/Tests/"
  8273. ]
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "MIT"
  8278. ],
  8279. "authors": [
  8280. {
  8281. "name": "Fabien Potencier",
  8282. "email": "fabien@symfony.com"
  8283. },
  8284. {
  8285. "name": "Symfony Community",
  8286. "homepage": "https://symfony.com/contributors"
  8287. }
  8288. ],
  8289. "description": "Symfony EventDispatcher Component",
  8290. "homepage": "https://symfony.com",
  8291. "support": {
  8292. "source": "https://github.com/symfony/event-dispatcher/tree/3.4"
  8293. },
  8294. "funding": [
  8295. {
  8296. "url": "https://symfony.com/sponsor",
  8297. "type": "custom"
  8298. },
  8299. {
  8300. "url": "https://github.com/fabpot",
  8301. "type": "github"
  8302. },
  8303. {
  8304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8305. "type": "tidelift"
  8306. }
  8307. ],
  8308. "time": "2020-05-05T15:06:23+00:00"
  8309. },
  8310. {
  8311. "name": "symfony/filesystem",
  8312. "version": "v4.4.42",
  8313. "source": {
  8314. "type": "git",
  8315. "url": "https://github.com/symfony/filesystem.git",
  8316. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5"
  8317. },
  8318. "dist": {
  8319. "type": "zip",
  8320. "url": "https://api.github.com/repos/symfony/filesystem/zipball/815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8321. "reference": "815412ee8971209bd4c1eecd5f4f481eacd44bf5",
  8322. "shasum": ""
  8323. },
  8324. "require": {
  8325. "php": ">=7.1.3",
  8326. "symfony/polyfill-ctype": "~1.8",
  8327. "symfony/polyfill-php80": "^1.16"
  8328. },
  8329. "type": "library",
  8330. "autoload": {
  8331. "psr-4": {
  8332. "Symfony\\Component\\Filesystem\\": ""
  8333. },
  8334. "exclude-from-classmap": [
  8335. "/Tests/"
  8336. ]
  8337. },
  8338. "notification-url": "https://packagist.org/downloads/",
  8339. "license": [
  8340. "MIT"
  8341. ],
  8342. "authors": [
  8343. {
  8344. "name": "Fabien Potencier",
  8345. "email": "fabien@symfony.com"
  8346. },
  8347. {
  8348. "name": "Symfony Community",
  8349. "homepage": "https://symfony.com/contributors"
  8350. }
  8351. ],
  8352. "description": "Provides basic utilities for the filesystem",
  8353. "homepage": "https://symfony.com",
  8354. "support": {
  8355. "source": "https://github.com/symfony/filesystem/tree/v4.4.42"
  8356. },
  8357. "funding": [
  8358. {
  8359. "url": "https://symfony.com/sponsor",
  8360. "type": "custom"
  8361. },
  8362. {
  8363. "url": "https://github.com/fabpot",
  8364. "type": "github"
  8365. },
  8366. {
  8367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8368. "type": "tidelift"
  8369. }
  8370. ],
  8371. "time": "2022-05-20T08:49:14+00:00"
  8372. },
  8373. {
  8374. "name": "symfony/finder",
  8375. "version": "v4.4.44",
  8376. "source": {
  8377. "type": "git",
  8378. "url": "https://github.com/symfony/finder.git",
  8379. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f"
  8380. },
  8381. "dist": {
  8382. "type": "zip",
  8383. "url": "https://api.github.com/repos/symfony/finder/zipball/66bd787edb5e42ff59d3523f623895af05043e4f",
  8384. "reference": "66bd787edb5e42ff59d3523f623895af05043e4f",
  8385. "shasum": ""
  8386. },
  8387. "require": {
  8388. "php": ">=7.1.3",
  8389. "symfony/polyfill-php80": "^1.16"
  8390. },
  8391. "type": "library",
  8392. "autoload": {
  8393. "psr-4": {
  8394. "Symfony\\Component\\Finder\\": ""
  8395. },
  8396. "exclude-from-classmap": [
  8397. "/Tests/"
  8398. ]
  8399. },
  8400. "notification-url": "https://packagist.org/downloads/",
  8401. "license": [
  8402. "MIT"
  8403. ],
  8404. "authors": [
  8405. {
  8406. "name": "Fabien Potencier",
  8407. "email": "fabien@symfony.com"
  8408. },
  8409. {
  8410. "name": "Symfony Community",
  8411. "homepage": "https://symfony.com/contributors"
  8412. }
  8413. ],
  8414. "description": "Finds files and directories via an intuitive fluent interface",
  8415. "homepage": "https://symfony.com",
  8416. "support": {
  8417. "source": "https://github.com/symfony/finder/tree/v4.4.44"
  8418. },
  8419. "funding": [
  8420. {
  8421. "url": "https://symfony.com/sponsor",
  8422. "type": "custom"
  8423. },
  8424. {
  8425. "url": "https://github.com/fabpot",
  8426. "type": "github"
  8427. },
  8428. {
  8429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8430. "type": "tidelift"
  8431. }
  8432. ],
  8433. "time": "2022-07-29T07:35:46+00:00"
  8434. },
  8435. {
  8436. "name": "symfony/http-foundation",
  8437. "version": "v3.4.41",
  8438. "source": {
  8439. "type": "git",
  8440. "url": "https://github.com/symfony/http-foundation.git",
  8441. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359"
  8442. },
  8443. "dist": {
  8444. "type": "zip",
  8445. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8446. "reference": "fbd216d2304b1a3fe38d6392b04729c8dd356359",
  8447. "shasum": ""
  8448. },
  8449. "require": {
  8450. "php": "^5.5.9|>=7.0.8",
  8451. "symfony/polyfill-mbstring": "~1.1",
  8452. "symfony/polyfill-php70": "~1.6"
  8453. },
  8454. "require-dev": {
  8455. "symfony/expression-language": "~2.8|~3.0|~4.0"
  8456. },
  8457. "type": "library",
  8458. "extra": {
  8459. "branch-alias": {
  8460. "dev-master": "3.4-dev"
  8461. }
  8462. },
  8463. "autoload": {
  8464. "psr-4": {
  8465. "Symfony\\Component\\HttpFoundation\\": ""
  8466. },
  8467. "exclude-from-classmap": [
  8468. "/Tests/"
  8469. ]
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "MIT"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "Fabien Potencier",
  8478. "email": "fabien@symfony.com"
  8479. },
  8480. {
  8481. "name": "Symfony Community",
  8482. "homepage": "https://symfony.com/contributors"
  8483. }
  8484. ],
  8485. "description": "Symfony HttpFoundation Component",
  8486. "homepage": "https://symfony.com",
  8487. "support": {
  8488. "source": "https://github.com/symfony/http-foundation/tree/3.4"
  8489. },
  8490. "funding": [
  8491. {
  8492. "url": "https://symfony.com/sponsor",
  8493. "type": "custom"
  8494. },
  8495. {
  8496. "url": "https://github.com/fabpot",
  8497. "type": "github"
  8498. },
  8499. {
  8500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8501. "type": "tidelift"
  8502. }
  8503. ],
  8504. "time": "2020-05-16T13:15:54+00:00"
  8505. },
  8506. {
  8507. "name": "symfony/http-kernel",
  8508. "version": "v3.4.44",
  8509. "source": {
  8510. "type": "git",
  8511. "url": "https://github.com/symfony/http-kernel.git",
  8512. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326"
  8513. },
  8514. "dist": {
  8515. "type": "zip",
  8516. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8517. "reference": "27dcaa8c6b18c75df9f37badeb4d3564ffaa1326",
  8518. "shasum": ""
  8519. },
  8520. "require": {
  8521. "php": "^5.5.9|>=7.0.8",
  8522. "psr/log": "~1.0",
  8523. "symfony/debug": "^3.3.3|~4.0",
  8524. "symfony/event-dispatcher": "~2.8|~3.0|~4.0",
  8525. "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1",
  8526. "symfony/polyfill-ctype": "~1.8",
  8527. "symfony/polyfill-php56": "~1.8"
  8528. },
  8529. "conflict": {
  8530. "symfony/config": "<2.8",
  8531. "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4",
  8532. "symfony/var-dumper": "<3.3",
  8533. "twig/twig": "<1.34|<2.4,>=2"
  8534. },
  8535. "provide": {
  8536. "psr/log-implementation": "1.0"
  8537. },
  8538. "require-dev": {
  8539. "psr/cache": "~1.0",
  8540. "symfony/browser-kit": "~2.8|~3.0|~4.0",
  8541. "symfony/class-loader": "~2.8|~3.0",
  8542. "symfony/config": "~2.8|~3.0|~4.0",
  8543. "symfony/console": "~2.8|~3.0|~4.0",
  8544. "symfony/css-selector": "~2.8|~3.0|~4.0",
  8545. "symfony/dependency-injection": "^3.4.10|^4.0.10",
  8546. "symfony/dom-crawler": "~2.8|~3.0|~4.0",
  8547. "symfony/expression-language": "~2.8|~3.0|~4.0",
  8548. "symfony/finder": "~2.8|~3.0|~4.0",
  8549. "symfony/process": "~2.8|~3.0|~4.0",
  8550. "symfony/routing": "~3.4|~4.0",
  8551. "symfony/stopwatch": "~2.8|~3.0|~4.0",
  8552. "symfony/templating": "~2.8|~3.0|~4.0",
  8553. "symfony/translation": "~2.8|~3.0|~4.0",
  8554. "symfony/var-dumper": "~3.3|~4.0"
  8555. },
  8556. "suggest": {
  8557. "symfony/browser-kit": "",
  8558. "symfony/config": "",
  8559. "symfony/console": "",
  8560. "symfony/dependency-injection": "",
  8561. "symfony/finder": "",
  8562. "symfony/var-dumper": ""
  8563. },
  8564. "type": "library",
  8565. "extra": {
  8566. "branch-alias": {
  8567. "dev-master": "3.4-dev"
  8568. }
  8569. },
  8570. "autoload": {
  8571. "psr-4": {
  8572. "Symfony\\Component\\HttpKernel\\": ""
  8573. },
  8574. "exclude-from-classmap": [
  8575. "/Tests/"
  8576. ]
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "MIT"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Fabien Potencier",
  8585. "email": "fabien@symfony.com"
  8586. },
  8587. {
  8588. "name": "Symfony Community",
  8589. "homepage": "https://symfony.com/contributors"
  8590. }
  8591. ],
  8592. "description": "Symfony HttpKernel Component",
  8593. "homepage": "https://symfony.com",
  8594. "support": {
  8595. "source": "https://github.com/symfony/http-kernel/tree/v3.4.44"
  8596. },
  8597. "funding": [
  8598. {
  8599. "url": "https://symfony.com/sponsor",
  8600. "type": "custom"
  8601. },
  8602. {
  8603. "url": "https://github.com/fabpot",
  8604. "type": "github"
  8605. },
  8606. {
  8607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8608. "type": "tidelift"
  8609. }
  8610. ],
  8611. "time": "2020-08-31T05:53:42+00:00"
  8612. },
  8613. {
  8614. "name": "symfony/polyfill-ctype",
  8615. "version": "v1.17.0",
  8616. "source": {
  8617. "type": "git",
  8618. "url": "https://github.com/symfony/polyfill-ctype.git",
  8619. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9"
  8620. },
  8621. "dist": {
  8622. "type": "zip",
  8623. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8624. "reference": "e94c8b1bbe2bc77507a1056cdb06451c75b427f9",
  8625. "shasum": ""
  8626. },
  8627. "require": {
  8628. "php": ">=5.3.3"
  8629. },
  8630. "suggest": {
  8631. "ext-ctype": "For best performance"
  8632. },
  8633. "type": "library",
  8634. "extra": {
  8635. "branch-alias": {
  8636. "dev-master": "1.17-dev"
  8637. }
  8638. },
  8639. "autoload": {
  8640. "files": [
  8641. "bootstrap.php"
  8642. ],
  8643. "psr-4": {
  8644. "Symfony\\Polyfill\\Ctype\\": ""
  8645. }
  8646. },
  8647. "notification-url": "https://packagist.org/downloads/",
  8648. "license": [
  8649. "MIT"
  8650. ],
  8651. "authors": [
  8652. {
  8653. "name": "Gert de Pagter",
  8654. "email": "BackEndTea@gmail.com"
  8655. },
  8656. {
  8657. "name": "Symfony Community",
  8658. "homepage": "https://symfony.com/contributors"
  8659. }
  8660. ],
  8661. "description": "Symfony polyfill for ctype functions",
  8662. "homepage": "https://symfony.com",
  8663. "keywords": [
  8664. "compatibility",
  8665. "ctype",
  8666. "polyfill",
  8667. "portable"
  8668. ],
  8669. "support": {
  8670. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.17.0"
  8671. },
  8672. "funding": [
  8673. {
  8674. "url": "https://symfony.com/sponsor",
  8675. "type": "custom"
  8676. },
  8677. {
  8678. "url": "https://github.com/fabpot",
  8679. "type": "github"
  8680. },
  8681. {
  8682. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8683. "type": "tidelift"
  8684. }
  8685. ],
  8686. "time": "2020-05-12T16:14:59+00:00"
  8687. },
  8688. {
  8689. "name": "symfony/polyfill-iconv",
  8690. "version": "v1.17.0",
  8691. "source": {
  8692. "type": "git",
  8693. "url": "https://github.com/symfony/polyfill-iconv.git",
  8694. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424"
  8695. },
  8696. "dist": {
  8697. "type": "zip",
  8698. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8699. "reference": "c4de7601eefbf25f9d47190abe07f79fe0a27424",
  8700. "shasum": ""
  8701. },
  8702. "require": {
  8703. "php": ">=5.3.3"
  8704. },
  8705. "suggest": {
  8706. "ext-iconv": "For best performance"
  8707. },
  8708. "type": "library",
  8709. "extra": {
  8710. "branch-alias": {
  8711. "dev-master": "1.17-dev"
  8712. }
  8713. },
  8714. "autoload": {
  8715. "files": [
  8716. "bootstrap.php"
  8717. ],
  8718. "psr-4": {
  8719. "Symfony\\Polyfill\\Iconv\\": ""
  8720. }
  8721. },
  8722. "notification-url": "https://packagist.org/downloads/",
  8723. "license": [
  8724. "MIT"
  8725. ],
  8726. "authors": [
  8727. {
  8728. "name": "Nicolas Grekas",
  8729. "email": "p@tchwork.com"
  8730. },
  8731. {
  8732. "name": "Symfony Community",
  8733. "homepage": "https://symfony.com/contributors"
  8734. }
  8735. ],
  8736. "description": "Symfony polyfill for the Iconv extension",
  8737. "homepage": "https://symfony.com",
  8738. "keywords": [
  8739. "compatibility",
  8740. "iconv",
  8741. "polyfill",
  8742. "portable",
  8743. "shim"
  8744. ],
  8745. "support": {
  8746. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.17.0"
  8747. },
  8748. "funding": [
  8749. {
  8750. "url": "https://symfony.com/sponsor",
  8751. "type": "custom"
  8752. },
  8753. {
  8754. "url": "https://github.com/fabpot",
  8755. "type": "github"
  8756. },
  8757. {
  8758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8759. "type": "tidelift"
  8760. }
  8761. ],
  8762. "time": "2020-05-12T16:47:27+00:00"
  8763. },
  8764. {
  8765. "name": "symfony/polyfill-intl-idn",
  8766. "version": "v1.17.0",
  8767. "source": {
  8768. "type": "git",
  8769. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8770. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a"
  8771. },
  8772. "dist": {
  8773. "type": "zip",
  8774. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8775. "reference": "3bff59ea7047e925be6b7f2059d60af31bb46d6a",
  8776. "shasum": ""
  8777. },
  8778. "require": {
  8779. "php": ">=5.3.3",
  8780. "symfony/polyfill-mbstring": "^1.3",
  8781. "symfony/polyfill-php72": "^1.10"
  8782. },
  8783. "suggest": {
  8784. "ext-intl": "For best performance"
  8785. },
  8786. "type": "library",
  8787. "extra": {
  8788. "branch-alias": {
  8789. "dev-master": "1.17-dev"
  8790. }
  8791. },
  8792. "autoload": {
  8793. "files": [
  8794. "bootstrap.php"
  8795. ],
  8796. "psr-4": {
  8797. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8798. }
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "MIT"
  8803. ],
  8804. "authors": [
  8805. {
  8806. "name": "Laurent Bassin",
  8807. "email": "laurent@bassin.info"
  8808. },
  8809. {
  8810. "name": "Symfony Community",
  8811. "homepage": "https://symfony.com/contributors"
  8812. }
  8813. ],
  8814. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8815. "homepage": "https://symfony.com",
  8816. "keywords": [
  8817. "compatibility",
  8818. "idn",
  8819. "intl",
  8820. "polyfill",
  8821. "portable",
  8822. "shim"
  8823. ],
  8824. "support": {
  8825. "source": "https://github.com/symfony/polyfill-intl-idn/tree/master"
  8826. },
  8827. "funding": [
  8828. {
  8829. "url": "https://symfony.com/sponsor",
  8830. "type": "custom"
  8831. },
  8832. {
  8833. "url": "https://github.com/fabpot",
  8834. "type": "github"
  8835. },
  8836. {
  8837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8838. "type": "tidelift"
  8839. }
  8840. ],
  8841. "time": "2020-05-12T16:47:27+00:00"
  8842. },
  8843. {
  8844. "name": "symfony/polyfill-mbstring",
  8845. "version": "v1.17.0",
  8846. "source": {
  8847. "type": "git",
  8848. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8849. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c"
  8850. },
  8851. "dist": {
  8852. "type": "zip",
  8853. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fa79b11539418b02fc5e1897267673ba2c19419c",
  8854. "reference": "fa79b11539418b02fc5e1897267673ba2c19419c",
  8855. "shasum": ""
  8856. },
  8857. "require": {
  8858. "php": ">=5.3.3"
  8859. },
  8860. "suggest": {
  8861. "ext-mbstring": "For best performance"
  8862. },
  8863. "type": "library",
  8864. "extra": {
  8865. "branch-alias": {
  8866. "dev-master": "1.17-dev"
  8867. }
  8868. },
  8869. "autoload": {
  8870. "files": [
  8871. "bootstrap.php"
  8872. ],
  8873. "psr-4": {
  8874. "Symfony\\Polyfill\\Mbstring\\": ""
  8875. }
  8876. },
  8877. "notification-url": "https://packagist.org/downloads/",
  8878. "license": [
  8879. "MIT"
  8880. ],
  8881. "authors": [
  8882. {
  8883. "name": "Nicolas Grekas",
  8884. "email": "p@tchwork.com"
  8885. },
  8886. {
  8887. "name": "Symfony Community",
  8888. "homepage": "https://symfony.com/contributors"
  8889. }
  8890. ],
  8891. "description": "Symfony polyfill for the Mbstring extension",
  8892. "homepage": "https://symfony.com",
  8893. "keywords": [
  8894. "compatibility",
  8895. "mbstring",
  8896. "polyfill",
  8897. "portable",
  8898. "shim"
  8899. ],
  8900. "support": {
  8901. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.17.0"
  8902. },
  8903. "funding": [
  8904. {
  8905. "url": "https://symfony.com/sponsor",
  8906. "type": "custom"
  8907. },
  8908. {
  8909. "url": "https://github.com/fabpot",
  8910. "type": "github"
  8911. },
  8912. {
  8913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8914. "type": "tidelift"
  8915. }
  8916. ],
  8917. "time": "2020-05-12T16:47:27+00:00"
  8918. },
  8919. {
  8920. "name": "symfony/polyfill-php56",
  8921. "version": "v1.17.0",
  8922. "source": {
  8923. "type": "git",
  8924. "url": "https://github.com/symfony/polyfill-php56.git",
  8925. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23"
  8926. },
  8927. "dist": {
  8928. "type": "zip",
  8929. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e3c8c138280cdfe4b81488441555583aa1984e23",
  8930. "reference": "e3c8c138280cdfe4b81488441555583aa1984e23",
  8931. "shasum": ""
  8932. },
  8933. "require": {
  8934. "php": ">=5.3.3",
  8935. "symfony/polyfill-util": "~1.0"
  8936. },
  8937. "type": "library",
  8938. "extra": {
  8939. "branch-alias": {
  8940. "dev-master": "1.17-dev"
  8941. }
  8942. },
  8943. "autoload": {
  8944. "files": [
  8945. "bootstrap.php"
  8946. ],
  8947. "psr-4": {
  8948. "Symfony\\Polyfill\\Php56\\": ""
  8949. }
  8950. },
  8951. "notification-url": "https://packagist.org/downloads/",
  8952. "license": [
  8953. "MIT"
  8954. ],
  8955. "authors": [
  8956. {
  8957. "name": "Nicolas Grekas",
  8958. "email": "p@tchwork.com"
  8959. },
  8960. {
  8961. "name": "Symfony Community",
  8962. "homepage": "https://symfony.com/contributors"
  8963. }
  8964. ],
  8965. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  8966. "homepage": "https://symfony.com",
  8967. "keywords": [
  8968. "compatibility",
  8969. "polyfill",
  8970. "portable",
  8971. "shim"
  8972. ],
  8973. "support": {
  8974. "source": "https://github.com/symfony/polyfill-php56/tree/v1.17.0"
  8975. },
  8976. "funding": [
  8977. {
  8978. "url": "https://symfony.com/sponsor",
  8979. "type": "custom"
  8980. },
  8981. {
  8982. "url": "https://github.com/fabpot",
  8983. "type": "github"
  8984. },
  8985. {
  8986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8987. "type": "tidelift"
  8988. }
  8989. ],
  8990. "time": "2020-05-12T16:47:27+00:00"
  8991. },
  8992. {
  8993. "name": "symfony/polyfill-php70",
  8994. "version": "v1.17.0",
  8995. "source": {
  8996. "type": "git",
  8997. "url": "https://github.com/symfony/polyfill-php70.git",
  8998. "reference": "82225c2d7d23d7e70515496d249c0152679b468e"
  8999. },
  9000. "dist": {
  9001. "type": "zip",
  9002. "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/82225c2d7d23d7e70515496d249c0152679b468e",
  9003. "reference": "82225c2d7d23d7e70515496d249c0152679b468e",
  9004. "shasum": ""
  9005. },
  9006. "require": {
  9007. "paragonie/random_compat": "~1.0|~2.0|~9.99",
  9008. "php": ">=5.3.3"
  9009. },
  9010. "type": "library",
  9011. "extra": {
  9012. "branch-alias": {
  9013. "dev-master": "1.17-dev"
  9014. }
  9015. },
  9016. "autoload": {
  9017. "files": [
  9018. "bootstrap.php"
  9019. ],
  9020. "psr-4": {
  9021. "Symfony\\Polyfill\\Php70\\": ""
  9022. },
  9023. "classmap": [
  9024. "Resources/stubs"
  9025. ]
  9026. },
  9027. "notification-url": "https://packagist.org/downloads/",
  9028. "license": [
  9029. "MIT"
  9030. ],
  9031. "authors": [
  9032. {
  9033. "name": "Nicolas Grekas",
  9034. "email": "p@tchwork.com"
  9035. },
  9036. {
  9037. "name": "Symfony Community",
  9038. "homepage": "https://symfony.com/contributors"
  9039. }
  9040. ],
  9041. "description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions",
  9042. "homepage": "https://symfony.com",
  9043. "keywords": [
  9044. "compatibility",
  9045. "polyfill",
  9046. "portable",
  9047. "shim"
  9048. ],
  9049. "support": {
  9050. "source": "https://github.com/symfony/polyfill-php70/tree/master"
  9051. },
  9052. "funding": [
  9053. {
  9054. "url": "https://symfony.com/sponsor",
  9055. "type": "custom"
  9056. },
  9057. {
  9058. "url": "https://github.com/fabpot",
  9059. "type": "github"
  9060. },
  9061. {
  9062. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9063. "type": "tidelift"
  9064. }
  9065. ],
  9066. "time": "2020-05-12T16:47:27+00:00"
  9067. },
  9068. {
  9069. "name": "symfony/polyfill-php72",
  9070. "version": "v1.17.0",
  9071. "source": {
  9072. "type": "git",
  9073. "url": "https://github.com/symfony/polyfill-php72.git",
  9074. "reference": "f048e612a3905f34931127360bdd2def19a5e582"
  9075. },
  9076. "dist": {
  9077. "type": "zip",
  9078. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/f048e612a3905f34931127360bdd2def19a5e582",
  9079. "reference": "f048e612a3905f34931127360bdd2def19a5e582",
  9080. "shasum": ""
  9081. },
  9082. "require": {
  9083. "php": ">=5.3.3"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "branch-alias": {
  9088. "dev-master": "1.17-dev"
  9089. }
  9090. },
  9091. "autoload": {
  9092. "files": [
  9093. "bootstrap.php"
  9094. ],
  9095. "psr-4": {
  9096. "Symfony\\Polyfill\\Php72\\": ""
  9097. }
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "MIT"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "Nicolas Grekas",
  9106. "email": "p@tchwork.com"
  9107. },
  9108. {
  9109. "name": "Symfony Community",
  9110. "homepage": "https://symfony.com/contributors"
  9111. }
  9112. ],
  9113. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  9114. "homepage": "https://symfony.com",
  9115. "keywords": [
  9116. "compatibility",
  9117. "polyfill",
  9118. "portable",
  9119. "shim"
  9120. ],
  9121. "support": {
  9122. "source": "https://github.com/symfony/polyfill-php72/tree/master"
  9123. },
  9124. "funding": [
  9125. {
  9126. "url": "https://symfony.com/sponsor",
  9127. "type": "custom"
  9128. },
  9129. {
  9130. "url": "https://github.com/fabpot",
  9131. "type": "github"
  9132. },
  9133. {
  9134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9135. "type": "tidelift"
  9136. }
  9137. ],
  9138. "time": "2020-05-12T16:47:27+00:00"
  9139. },
  9140. {
  9141. "name": "symfony/polyfill-php80",
  9142. "version": "v1.31.0",
  9143. "source": {
  9144. "type": "git",
  9145. "url": "https://github.com/symfony/polyfill-php80.git",
  9146. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9147. },
  9148. "dist": {
  9149. "type": "zip",
  9150. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9151. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9152. "shasum": ""
  9153. },
  9154. "require": {
  9155. "php": ">=7.2"
  9156. },
  9157. "type": "library",
  9158. "extra": {
  9159. "thanks": {
  9160. "name": "symfony/polyfill",
  9161. "url": "https://github.com/symfony/polyfill"
  9162. }
  9163. },
  9164. "autoload": {
  9165. "files": [
  9166. "bootstrap.php"
  9167. ],
  9168. "psr-4": {
  9169. "Symfony\\Polyfill\\Php80\\": ""
  9170. },
  9171. "classmap": [
  9172. "Resources/stubs"
  9173. ]
  9174. },
  9175. "notification-url": "https://packagist.org/downloads/",
  9176. "license": [
  9177. "MIT"
  9178. ],
  9179. "authors": [
  9180. {
  9181. "name": "Ion Bazan",
  9182. "email": "ion.bazan@gmail.com"
  9183. },
  9184. {
  9185. "name": "Nicolas Grekas",
  9186. "email": "p@tchwork.com"
  9187. },
  9188. {
  9189. "name": "Symfony Community",
  9190. "homepage": "https://symfony.com/contributors"
  9191. }
  9192. ],
  9193. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9194. "homepage": "https://symfony.com",
  9195. "keywords": [
  9196. "compatibility",
  9197. "polyfill",
  9198. "portable",
  9199. "shim"
  9200. ],
  9201. "support": {
  9202. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9203. },
  9204. "funding": [
  9205. {
  9206. "url": "https://symfony.com/sponsor",
  9207. "type": "custom"
  9208. },
  9209. {
  9210. "url": "https://github.com/fabpot",
  9211. "type": "github"
  9212. },
  9213. {
  9214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9215. "type": "tidelift"
  9216. }
  9217. ],
  9218. "time": "2024-09-09T11:45:10+00:00"
  9219. },
  9220. {
  9221. "name": "symfony/polyfill-util",
  9222. "version": "v1.17.0",
  9223. "source": {
  9224. "type": "git",
  9225. "url": "https://github.com/symfony/polyfill-util.git",
  9226. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7"
  9227. },
  9228. "dist": {
  9229. "type": "zip",
  9230. "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9231. "reference": "4afb4110fc037752cf0ce9869f9ab8162c4e20d7",
  9232. "shasum": ""
  9233. },
  9234. "require": {
  9235. "php": ">=5.3.3"
  9236. },
  9237. "type": "library",
  9238. "extra": {
  9239. "branch-alias": {
  9240. "dev-master": "1.17-dev"
  9241. }
  9242. },
  9243. "autoload": {
  9244. "psr-4": {
  9245. "Symfony\\Polyfill\\Util\\": ""
  9246. }
  9247. },
  9248. "notification-url": "https://packagist.org/downloads/",
  9249. "license": [
  9250. "MIT"
  9251. ],
  9252. "authors": [
  9253. {
  9254. "name": "Nicolas Grekas",
  9255. "email": "p@tchwork.com"
  9256. },
  9257. {
  9258. "name": "Symfony Community",
  9259. "homepage": "https://symfony.com/contributors"
  9260. }
  9261. ],
  9262. "description": "Symfony utilities for portability of PHP codes",
  9263. "homepage": "https://symfony.com",
  9264. "keywords": [
  9265. "compat",
  9266. "compatibility",
  9267. "polyfill",
  9268. "shim"
  9269. ],
  9270. "support": {
  9271. "source": "https://github.com/symfony/polyfill-util/tree/master"
  9272. },
  9273. "funding": [
  9274. {
  9275. "url": "https://symfony.com/sponsor",
  9276. "type": "custom"
  9277. },
  9278. {
  9279. "url": "https://github.com/fabpot",
  9280. "type": "github"
  9281. },
  9282. {
  9283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9284. "type": "tidelift"
  9285. }
  9286. ],
  9287. "time": "2020-05-12T16:14:59+00:00"
  9288. },
  9289. {
  9290. "name": "symfony/process",
  9291. "version": "v3.4.41",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/symfony/process.git",
  9295. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/symfony/process/zipball/8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9300. "reference": "8a895f0c92a7c4b10db95139bcff71bdf66d4d21",
  9301. "shasum": ""
  9302. },
  9303. "require": {
  9304. "php": "^5.5.9|>=7.0.8"
  9305. },
  9306. "type": "library",
  9307. "extra": {
  9308. "branch-alias": {
  9309. "dev-master": "3.4-dev"
  9310. }
  9311. },
  9312. "autoload": {
  9313. "psr-4": {
  9314. "Symfony\\Component\\Process\\": ""
  9315. },
  9316. "exclude-from-classmap": [
  9317. "/Tests/"
  9318. ]
  9319. },
  9320. "notification-url": "https://packagist.org/downloads/",
  9321. "license": [
  9322. "MIT"
  9323. ],
  9324. "authors": [
  9325. {
  9326. "name": "Fabien Potencier",
  9327. "email": "fabien@symfony.com"
  9328. },
  9329. {
  9330. "name": "Symfony Community",
  9331. "homepage": "https://symfony.com/contributors"
  9332. }
  9333. ],
  9334. "description": "Symfony Process Component",
  9335. "homepage": "https://symfony.com",
  9336. "support": {
  9337. "source": "https://github.com/symfony/process/tree/v3.4.41"
  9338. },
  9339. "funding": [
  9340. {
  9341. "url": "https://symfony.com/sponsor",
  9342. "type": "custom"
  9343. },
  9344. {
  9345. "url": "https://github.com/fabpot",
  9346. "type": "github"
  9347. },
  9348. {
  9349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9350. "type": "tidelift"
  9351. }
  9352. ],
  9353. "time": "2020-05-23T17:05:51+00:00"
  9354. },
  9355. {
  9356. "name": "symfony/psr-http-message-bridge",
  9357. "version": "v1.1.2",
  9358. "source": {
  9359. "type": "git",
  9360. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9361. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b"
  9362. },
  9363. "dist": {
  9364. "type": "zip",
  9365. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/a33352af16f78a5ff4f9d90811536abf210df12b",
  9366. "reference": "a33352af16f78a5ff4f9d90811536abf210df12b",
  9367. "shasum": ""
  9368. },
  9369. "require": {
  9370. "php": "^5.3.3 || ^7.0",
  9371. "psr/http-message": "^1.0",
  9372. "symfony/http-foundation": "^2.3.42 || ^3.4 || ^4.0"
  9373. },
  9374. "require-dev": {
  9375. "symfony/phpunit-bridge": "^3.4 || ^4.0"
  9376. },
  9377. "suggest": {
  9378. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  9379. },
  9380. "type": "symfony-bridge",
  9381. "extra": {
  9382. "branch-alias": {
  9383. "dev-master": "1.1-dev"
  9384. }
  9385. },
  9386. "autoload": {
  9387. "psr-4": {
  9388. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9389. },
  9390. "exclude-from-classmap": [
  9391. "/Tests/"
  9392. ]
  9393. },
  9394. "notification-url": "https://packagist.org/downloads/",
  9395. "license": [
  9396. "MIT"
  9397. ],
  9398. "authors": [
  9399. {
  9400. "name": "Symfony Community",
  9401. "homepage": "http://symfony.com/contributors"
  9402. },
  9403. {
  9404. "name": "Fabien Potencier",
  9405. "email": "fabien@symfony.com"
  9406. }
  9407. ],
  9408. "description": "PSR HTTP message bridge",
  9409. "homepage": "http://symfony.com",
  9410. "keywords": [
  9411. "http",
  9412. "http-message",
  9413. "psr-17",
  9414. "psr-7"
  9415. ],
  9416. "support": {
  9417. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  9418. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v1.1.2"
  9419. },
  9420. "time": "2019-04-03T17:09:40+00:00"
  9421. },
  9422. {
  9423. "name": "symfony/routing",
  9424. "version": "v3.4.41",
  9425. "source": {
  9426. "type": "git",
  9427. "url": "https://github.com/symfony/routing.git",
  9428. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f"
  9429. },
  9430. "dist": {
  9431. "type": "zip",
  9432. "url": "https://api.github.com/repos/symfony/routing/zipball/e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9433. "reference": "e0d43b6f9417ad59ecaa8e2f799b79eef417387f",
  9434. "shasum": ""
  9435. },
  9436. "require": {
  9437. "php": "^5.5.9|>=7.0.8"
  9438. },
  9439. "conflict": {
  9440. "symfony/config": "<3.3.1",
  9441. "symfony/dependency-injection": "<3.3",
  9442. "symfony/yaml": "<3.4"
  9443. },
  9444. "require-dev": {
  9445. "doctrine/annotations": "~1.0",
  9446. "psr/log": "~1.0",
  9447. "symfony/config": "^3.3.1|~4.0",
  9448. "symfony/dependency-injection": "~3.3|~4.0",
  9449. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9450. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9451. "symfony/yaml": "~3.4|~4.0"
  9452. },
  9453. "suggest": {
  9454. "doctrine/annotations": "For using the annotation loader",
  9455. "symfony/config": "For using the all-in-one router or any loader",
  9456. "symfony/expression-language": "For using expression matching",
  9457. "symfony/http-foundation": "For using a Symfony Request object",
  9458. "symfony/yaml": "For using the YAML loader"
  9459. },
  9460. "type": "library",
  9461. "extra": {
  9462. "branch-alias": {
  9463. "dev-master": "3.4-dev"
  9464. }
  9465. },
  9466. "autoload": {
  9467. "psr-4": {
  9468. "Symfony\\Component\\Routing\\": ""
  9469. },
  9470. "exclude-from-classmap": [
  9471. "/Tests/"
  9472. ]
  9473. },
  9474. "notification-url": "https://packagist.org/downloads/",
  9475. "license": [
  9476. "MIT"
  9477. ],
  9478. "authors": [
  9479. {
  9480. "name": "Fabien Potencier",
  9481. "email": "fabien@symfony.com"
  9482. },
  9483. {
  9484. "name": "Symfony Community",
  9485. "homepage": "https://symfony.com/contributors"
  9486. }
  9487. ],
  9488. "description": "Symfony Routing Component",
  9489. "homepage": "https://symfony.com",
  9490. "keywords": [
  9491. "router",
  9492. "routing",
  9493. "uri",
  9494. "url"
  9495. ],
  9496. "support": {
  9497. "source": "https://github.com/symfony/routing/tree/3.4"
  9498. },
  9499. "funding": [
  9500. {
  9501. "url": "https://symfony.com/sponsor",
  9502. "type": "custom"
  9503. },
  9504. {
  9505. "url": "https://github.com/fabpot",
  9506. "type": "github"
  9507. },
  9508. {
  9509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9510. "type": "tidelift"
  9511. }
  9512. ],
  9513. "time": "2020-05-30T19:50:06+00:00"
  9514. },
  9515. {
  9516. "name": "symfony/serializer",
  9517. "version": "v3.4.41",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/symfony/serializer.git",
  9521. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/symfony/serializer/zipball/0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9526. "reference": "0db90db012b1b0a04fbb2d64ae9160871cad9d4f",
  9527. "shasum": ""
  9528. },
  9529. "require": {
  9530. "php": "^5.5.9|>=7.0.8",
  9531. "symfony/polyfill-ctype": "~1.8"
  9532. },
  9533. "conflict": {
  9534. "phpdocumentor/type-resolver": "<0.2.1",
  9535. "symfony/dependency-injection": "<3.2",
  9536. "symfony/property-access": ">=3.0,<3.0.4|>=2.8,<2.8.4",
  9537. "symfony/property-info": "<3.1",
  9538. "symfony/yaml": "<3.4"
  9539. },
  9540. "require-dev": {
  9541. "doctrine/annotations": "~1.0",
  9542. "doctrine/cache": "~1.0",
  9543. "phpdocumentor/reflection-docblock": "^3.0|^4.0",
  9544. "symfony/cache": "~3.1|~4.0",
  9545. "symfony/config": "~2.8|~3.0|~4.0",
  9546. "symfony/dependency-injection": "~3.2|~4.0",
  9547. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9548. "symfony/property-access": "~2.8|~3.0|~4.0",
  9549. "symfony/property-info": "^3.4.13|~4.0",
  9550. "symfony/yaml": "~3.4|~4.0"
  9551. },
  9552. "suggest": {
  9553. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9554. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9555. "psr/cache-implementation": "For using the metadata cache.",
  9556. "symfony/config": "For using the XML mapping loader.",
  9557. "symfony/http-foundation": "For using a MIME type guesser within the DataUriNormalizer.",
  9558. "symfony/property-access": "For using the ObjectNormalizer.",
  9559. "symfony/property-info": "To deserialize relations.",
  9560. "symfony/yaml": "For using the default YAML mapping loader."
  9561. },
  9562. "type": "library",
  9563. "extra": {
  9564. "branch-alias": {
  9565. "dev-master": "3.4-dev"
  9566. }
  9567. },
  9568. "autoload": {
  9569. "psr-4": {
  9570. "Symfony\\Component\\Serializer\\": ""
  9571. },
  9572. "exclude-from-classmap": [
  9573. "/Tests/"
  9574. ]
  9575. },
  9576. "notification-url": "https://packagist.org/downloads/",
  9577. "license": [
  9578. "MIT"
  9579. ],
  9580. "authors": [
  9581. {
  9582. "name": "Fabien Potencier",
  9583. "email": "fabien@symfony.com"
  9584. },
  9585. {
  9586. "name": "Symfony Community",
  9587. "homepage": "https://symfony.com/contributors"
  9588. }
  9589. ],
  9590. "description": "Symfony Serializer Component",
  9591. "homepage": "https://symfony.com",
  9592. "support": {
  9593. "source": "https://github.com/symfony/serializer/tree/v3.4.41"
  9594. },
  9595. "funding": [
  9596. {
  9597. "url": "https://symfony.com/sponsor",
  9598. "type": "custom"
  9599. },
  9600. {
  9601. "url": "https://github.com/fabpot",
  9602. "type": "github"
  9603. },
  9604. {
  9605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9606. "type": "tidelift"
  9607. }
  9608. ],
  9609. "time": "2020-05-30T18:58:05+00:00"
  9610. },
  9611. {
  9612. "name": "symfony/translation",
  9613. "version": "v3.4.41",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/symfony/translation.git",
  9617. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/symfony/translation/zipball/b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9622. "reference": "b0cd62ef0ff7ec31b67d78d7fc818e2bda4e844f",
  9623. "shasum": ""
  9624. },
  9625. "require": {
  9626. "php": "^5.5.9|>=7.0.8",
  9627. "symfony/polyfill-mbstring": "~1.0"
  9628. },
  9629. "conflict": {
  9630. "symfony/config": "<2.8",
  9631. "symfony/dependency-injection": "<3.4",
  9632. "symfony/yaml": "<3.4"
  9633. },
  9634. "require-dev": {
  9635. "psr/log": "~1.0",
  9636. "symfony/config": "~2.8|~3.0|~4.0",
  9637. "symfony/dependency-injection": "~3.4|~4.0",
  9638. "symfony/finder": "~2.8|~3.0|~4.0",
  9639. "symfony/http-kernel": "~3.4|~4.0",
  9640. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9641. "symfony/var-dumper": "~3.4|~4.0",
  9642. "symfony/yaml": "~3.4|~4.0"
  9643. },
  9644. "suggest": {
  9645. "psr/log-implementation": "To use logging capability in translator",
  9646. "symfony/config": "",
  9647. "symfony/yaml": ""
  9648. },
  9649. "type": "library",
  9650. "extra": {
  9651. "branch-alias": {
  9652. "dev-master": "3.4-dev"
  9653. }
  9654. },
  9655. "autoload": {
  9656. "psr-4": {
  9657. "Symfony\\Component\\Translation\\": ""
  9658. },
  9659. "exclude-from-classmap": [
  9660. "/Tests/"
  9661. ]
  9662. },
  9663. "notification-url": "https://packagist.org/downloads/",
  9664. "license": [
  9665. "MIT"
  9666. ],
  9667. "authors": [
  9668. {
  9669. "name": "Fabien Potencier",
  9670. "email": "fabien@symfony.com"
  9671. },
  9672. {
  9673. "name": "Symfony Community",
  9674. "homepage": "https://symfony.com/contributors"
  9675. }
  9676. ],
  9677. "description": "Symfony Translation Component",
  9678. "homepage": "https://symfony.com",
  9679. "support": {
  9680. "source": "https://github.com/symfony/translation/tree/3.4"
  9681. },
  9682. "funding": [
  9683. {
  9684. "url": "https://symfony.com/sponsor",
  9685. "type": "custom"
  9686. },
  9687. {
  9688. "url": "https://github.com/fabpot",
  9689. "type": "github"
  9690. },
  9691. {
  9692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9693. "type": "tidelift"
  9694. }
  9695. ],
  9696. "time": "2020-05-30T18:58:05+00:00"
  9697. },
  9698. {
  9699. "name": "symfony/validator",
  9700. "version": "v3.4.41",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/symfony/validator.git",
  9704. "reference": "5fb88120a11a75e17b602103a893dd8b27804529"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/symfony/validator/zipball/5fb88120a11a75e17b602103a893dd8b27804529",
  9709. "reference": "5fb88120a11a75e17b602103a893dd8b27804529",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": "^5.5.9|>=7.0.8",
  9714. "symfony/polyfill-ctype": "~1.8",
  9715. "symfony/polyfill-mbstring": "~1.0",
  9716. "symfony/translation": "~2.8|~3.0|~4.0"
  9717. },
  9718. "conflict": {
  9719. "doctrine/lexer": "<1.0.2",
  9720. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9721. "symfony/dependency-injection": "<3.3",
  9722. "symfony/http-kernel": "<3.3.5",
  9723. "symfony/yaml": "<3.4"
  9724. },
  9725. "require-dev": {
  9726. "doctrine/annotations": "~1.7",
  9727. "doctrine/cache": "~1.0",
  9728. "egulias/email-validator": "^2.1.10",
  9729. "symfony/cache": "~3.1|~4.0",
  9730. "symfony/config": "~2.8|~3.0|~4.0",
  9731. "symfony/dependency-injection": "~3.3|~4.0",
  9732. "symfony/expression-language": "~2.8|~3.0|~4.0",
  9733. "symfony/http-foundation": "~2.8|~3.0|~4.0",
  9734. "symfony/http-kernel": "^3.3.5|~4.0",
  9735. "symfony/intl": "^2.8.18|^3.2.5|~4.0",
  9736. "symfony/property-access": "~2.8|~3.0|~4.0",
  9737. "symfony/var-dumper": "~3.3|~4.0",
  9738. "symfony/yaml": "~3.4|~4.0"
  9739. },
  9740. "suggest": {
  9741. "doctrine/annotations": "For using the annotation mapping. You will also need doctrine/cache.",
  9742. "doctrine/cache": "For using the default cached annotation reader and metadata cache.",
  9743. "egulias/email-validator": "Strict (RFC compliant) email validation",
  9744. "psr/cache-implementation": "For using the metadata cache.",
  9745. "symfony/config": "",
  9746. "symfony/expression-language": "For using the Expression validator",
  9747. "symfony/http-foundation": "",
  9748. "symfony/intl": "",
  9749. "symfony/property-access": "For accessing properties within comparison constraints",
  9750. "symfony/yaml": ""
  9751. },
  9752. "type": "library",
  9753. "extra": {
  9754. "branch-alias": {
  9755. "dev-master": "3.4-dev"
  9756. }
  9757. },
  9758. "autoload": {
  9759. "psr-4": {
  9760. "Symfony\\Component\\Validator\\": ""
  9761. },
  9762. "exclude-from-classmap": [
  9763. "/Tests/"
  9764. ]
  9765. },
  9766. "notification-url": "https://packagist.org/downloads/",
  9767. "license": [
  9768. "MIT"
  9769. ],
  9770. "authors": [
  9771. {
  9772. "name": "Fabien Potencier",
  9773. "email": "fabien@symfony.com"
  9774. },
  9775. {
  9776. "name": "Symfony Community",
  9777. "homepage": "https://symfony.com/contributors"
  9778. }
  9779. ],
  9780. "description": "Symfony Validator Component",
  9781. "homepage": "https://symfony.com",
  9782. "support": {
  9783. "source": "https://github.com/symfony/validator/tree/3.4"
  9784. },
  9785. "funding": [
  9786. {
  9787. "url": "https://symfony.com/sponsor",
  9788. "type": "custom"
  9789. },
  9790. {
  9791. "url": "https://github.com/fabpot",
  9792. "type": "github"
  9793. },
  9794. {
  9795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9796. "type": "tidelift"
  9797. }
  9798. ],
  9799. "time": "2020-05-30T18:43:38+00:00"
  9800. },
  9801. {
  9802. "name": "symfony/var-dumper",
  9803. "version": "v4.4.47",
  9804. "source": {
  9805. "type": "git",
  9806. "url": "https://github.com/symfony/var-dumper.git",
  9807. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  9808. },
  9809. "dist": {
  9810. "type": "zip",
  9811. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  9812. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  9813. "shasum": ""
  9814. },
  9815. "require": {
  9816. "php": ">=7.1.3",
  9817. "symfony/polyfill-mbstring": "~1.0",
  9818. "symfony/polyfill-php72": "~1.5",
  9819. "symfony/polyfill-php80": "^1.16"
  9820. },
  9821. "conflict": {
  9822. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  9823. "symfony/console": "<3.4"
  9824. },
  9825. "require-dev": {
  9826. "ext-iconv": "*",
  9827. "symfony/console": "^3.4|^4.0|^5.0",
  9828. "symfony/process": "^4.4|^5.0",
  9829. "twig/twig": "^1.43|^2.13|^3.0.4"
  9830. },
  9831. "suggest": {
  9832. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9833. "ext-intl": "To show region name in time zone dump",
  9834. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9835. },
  9836. "bin": [
  9837. "Resources/bin/var-dump-server"
  9838. ],
  9839. "type": "library",
  9840. "autoload": {
  9841. "files": [
  9842. "Resources/functions/dump.php"
  9843. ],
  9844. "psr-4": {
  9845. "Symfony\\Component\\VarDumper\\": ""
  9846. },
  9847. "exclude-from-classmap": [
  9848. "/Tests/"
  9849. ]
  9850. },
  9851. "notification-url": "https://packagist.org/downloads/",
  9852. "license": [
  9853. "MIT"
  9854. ],
  9855. "authors": [
  9856. {
  9857. "name": "Nicolas Grekas",
  9858. "email": "p@tchwork.com"
  9859. },
  9860. {
  9861. "name": "Symfony Community",
  9862. "homepage": "https://symfony.com/contributors"
  9863. }
  9864. ],
  9865. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9866. "homepage": "https://symfony.com",
  9867. "keywords": [
  9868. "debug",
  9869. "dump"
  9870. ],
  9871. "support": {
  9872. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  9873. },
  9874. "funding": [
  9875. {
  9876. "url": "https://symfony.com/sponsor",
  9877. "type": "custom"
  9878. },
  9879. {
  9880. "url": "https://github.com/fabpot",
  9881. "type": "github"
  9882. },
  9883. {
  9884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9885. "type": "tidelift"
  9886. }
  9887. ],
  9888. "time": "2022-10-03T15:15:11+00:00"
  9889. },
  9890. {
  9891. "name": "symfony/yaml",
  9892. "version": "v3.4.41",
  9893. "source": {
  9894. "type": "git",
  9895. "url": "https://github.com/symfony/yaml.git",
  9896. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb"
  9897. },
  9898. "dist": {
  9899. "type": "zip",
  9900. "url": "https://api.github.com/repos/symfony/yaml/zipball/7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9901. "reference": "7233ac2bfdde24d672f5305f2b3f6b5d741ef8eb",
  9902. "shasum": ""
  9903. },
  9904. "require": {
  9905. "php": "^5.5.9|>=7.0.8",
  9906. "symfony/polyfill-ctype": "~1.8"
  9907. },
  9908. "conflict": {
  9909. "symfony/console": "<3.4"
  9910. },
  9911. "require-dev": {
  9912. "symfony/console": "~3.4|~4.0"
  9913. },
  9914. "suggest": {
  9915. "symfony/console": "For validating YAML files using the lint command"
  9916. },
  9917. "type": "library",
  9918. "extra": {
  9919. "branch-alias": {
  9920. "dev-master": "3.4-dev"
  9921. }
  9922. },
  9923. "autoload": {
  9924. "psr-4": {
  9925. "Symfony\\Component\\Yaml\\": ""
  9926. },
  9927. "exclude-from-classmap": [
  9928. "/Tests/"
  9929. ]
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "MIT"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Fabien Potencier",
  9938. "email": "fabien@symfony.com"
  9939. },
  9940. {
  9941. "name": "Symfony Community",
  9942. "homepage": "https://symfony.com/contributors"
  9943. }
  9944. ],
  9945. "description": "Symfony Yaml Component",
  9946. "homepage": "https://symfony.com",
  9947. "support": {
  9948. "source": "https://github.com/symfony/yaml/tree/v3.4.41"
  9949. },
  9950. "funding": [
  9951. {
  9952. "url": "https://symfony.com/sponsor",
  9953. "type": "custom"
  9954. },
  9955. {
  9956. "url": "https://github.com/fabpot",
  9957. "type": "github"
  9958. },
  9959. {
  9960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9961. "type": "tidelift"
  9962. }
  9963. ],
  9964. "time": "2020-05-11T07:51:54+00:00"
  9965. },
  9966. {
  9967. "name": "twig/twig",
  9968. "version": "v1.42.5",
  9969. "source": {
  9970. "type": "git",
  9971. "url": "https://github.com/twigphp/Twig.git",
  9972. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e"
  9973. },
  9974. "dist": {
  9975. "type": "zip",
  9976. "url": "https://api.github.com/repos/twigphp/Twig/zipball/87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9977. "reference": "87b2ea9d8f6fd014d0621ca089bb1b3769ea3f8e",
  9978. "shasum": ""
  9979. },
  9980. "require": {
  9981. "php": ">=5.5.0",
  9982. "symfony/polyfill-ctype": "^1.8"
  9983. },
  9984. "require-dev": {
  9985. "psr/container": "^1.0",
  9986. "symfony/phpunit-bridge": "^4.4|^5.0"
  9987. },
  9988. "type": "library",
  9989. "extra": {
  9990. "branch-alias": {
  9991. "dev-master": "1.42-dev"
  9992. }
  9993. },
  9994. "autoload": {
  9995. "psr-0": {
  9996. "Twig_": "lib/"
  9997. },
  9998. "psr-4": {
  9999. "Twig\\": "src/"
  10000. }
  10001. },
  10002. "notification-url": "https://packagist.org/downloads/",
  10003. "license": [
  10004. "BSD-3-Clause"
  10005. ],
  10006. "authors": [
  10007. {
  10008. "name": "Fabien Potencier",
  10009. "email": "fabien@symfony.com",
  10010. "homepage": "http://fabien.potencier.org",
  10011. "role": "Lead Developer"
  10012. },
  10013. {
  10014. "name": "Twig Team",
  10015. "role": "Contributors"
  10016. },
  10017. {
  10018. "name": "Armin Ronacher",
  10019. "email": "armin.ronacher@active-4.com",
  10020. "role": "Project Founder"
  10021. }
  10022. ],
  10023. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10024. "homepage": "https://twig.symfony.com",
  10025. "keywords": [
  10026. "templating"
  10027. ],
  10028. "support": {
  10029. "issues": "https://github.com/twigphp/Twig/issues",
  10030. "source": "https://github.com/twigphp/Twig/tree/1.x"
  10031. },
  10032. "time": "2020-02-11T05:59:23+00:00"
  10033. },
  10034. {
  10035. "name": "typo3/phar-stream-wrapper",
  10036. "version": "v3.1.4",
  10037. "source": {
  10038. "type": "git",
  10039. "url": "https://github.com/TYPO3/phar-stream-wrapper.git",
  10040. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04"
  10041. },
  10042. "dist": {
  10043. "type": "zip",
  10044. "url": "https://api.github.com/repos/TYPO3/phar-stream-wrapper/zipball/e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10045. "reference": "e0c1b495cfac064f4f5c4bcb6bf67bb7f345ed04",
  10046. "shasum": ""
  10047. },
  10048. "require": {
  10049. "ext-json": "*",
  10050. "php": "^7.0"
  10051. },
  10052. "require-dev": {
  10053. "ext-xdebug": "*",
  10054. "phpunit/phpunit": "^6.5"
  10055. },
  10056. "suggest": {
  10057. "ext-fileinfo": "For PHP builtin file type guessing, otherwise uses internal processing"
  10058. },
  10059. "type": "library",
  10060. "extra": {
  10061. "branch-alias": {
  10062. "dev-master": "v3.x-dev"
  10063. }
  10064. },
  10065. "autoload": {
  10066. "psr-4": {
  10067. "TYPO3\\PharStreamWrapper\\": "src/"
  10068. }
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "MIT"
  10073. ],
  10074. "description": "Interceptors for PHP's native phar:// stream handling",
  10075. "homepage": "https://typo3.org/",
  10076. "keywords": [
  10077. "phar",
  10078. "php",
  10079. "security",
  10080. "stream-wrapper"
  10081. ],
  10082. "support": {
  10083. "issues": "https://github.com/TYPO3/phar-stream-wrapper/issues",
  10084. "source": "https://github.com/TYPO3/phar-stream-wrapper/tree/master"
  10085. },
  10086. "time": "2019-12-10T11:53:27+00:00"
  10087. },
  10088. {
  10089. "name": "vlucas/phpdotenv",
  10090. "version": "v2.6.4",
  10091. "source": {
  10092. "type": "git",
  10093. "url": "https://github.com/vlucas/phpdotenv.git",
  10094. "reference": "67d472b1794c986381a8950e4958e1adb779d561"
  10095. },
  10096. "dist": {
  10097. "type": "zip",
  10098. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/67d472b1794c986381a8950e4958e1adb779d561",
  10099. "reference": "67d472b1794c986381a8950e4958e1adb779d561",
  10100. "shasum": ""
  10101. },
  10102. "require": {
  10103. "php": "^5.3.9 || ^7.0 || ^8.0",
  10104. "symfony/polyfill-ctype": "^1.9"
  10105. },
  10106. "require-dev": {
  10107. "ext-filter": "*",
  10108. "ext-pcre": "*",
  10109. "phpunit/phpunit": "^4.8.35 || ^5.0"
  10110. },
  10111. "suggest": {
  10112. "ext-filter": "Required to use the boolean validator.",
  10113. "ext-pcre": "Required to use most of the library."
  10114. },
  10115. "type": "library",
  10116. "extra": {
  10117. "branch-alias": {
  10118. "dev-master": "2.6-dev"
  10119. }
  10120. },
  10121. "autoload": {
  10122. "psr-4": {
  10123. "Dotenv\\": "src/"
  10124. }
  10125. },
  10126. "notification-url": "https://packagist.org/downloads/",
  10127. "license": [
  10128. "BSD-3-Clause"
  10129. ],
  10130. "authors": [
  10131. {
  10132. "name": "Graham Campbell",
  10133. "email": "graham@alt-three.com",
  10134. "homepage": "https://gjcampbell.co.uk/"
  10135. },
  10136. {
  10137. "name": "Vance Lucas",
  10138. "email": "vance@vancelucas.com",
  10139. "homepage": "https://vancelucas.com/"
  10140. }
  10141. ],
  10142. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10143. "keywords": [
  10144. "dotenv",
  10145. "env",
  10146. "environment"
  10147. ],
  10148. "time": "2020-05-02T13:38:00+00:00"
  10149. },
  10150. {
  10151. "name": "webflo/drupal-finder",
  10152. "version": "1.2.0",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/webflo/drupal-finder.git",
  10156. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10161. "reference": "123e248e14ee8dd3fbe89fb5a733a6cf91f5820e",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "ext-json": "*"
  10166. },
  10167. "require-dev": {
  10168. "mikey179/vfsstream": "^1.6",
  10169. "phpunit/phpunit": "^4.8"
  10170. },
  10171. "type": "library",
  10172. "autoload": {
  10173. "classmap": [
  10174. "src/DrupalFinder.php"
  10175. ]
  10176. },
  10177. "notification-url": "https://packagist.org/downloads/",
  10178. "license": [
  10179. "GPL-2.0+"
  10180. ],
  10181. "authors": [
  10182. {
  10183. "name": "Florian Weber",
  10184. "email": "florian@webflo.org"
  10185. }
  10186. ],
  10187. "description": "Helper class to locate a Drupal installation from a given path.",
  10188. "time": "2019-08-02T08:06:18+00:00"
  10189. },
  10190. {
  10191. "name": "webmozart/assert",
  10192. "version": "1.11.0",
  10193. "source": {
  10194. "type": "git",
  10195. "url": "https://github.com/webmozarts/assert.git",
  10196. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10197. },
  10198. "dist": {
  10199. "type": "zip",
  10200. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10201. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10202. "shasum": ""
  10203. },
  10204. "require": {
  10205. "ext-ctype": "*",
  10206. "php": "^7.2 || ^8.0"
  10207. },
  10208. "conflict": {
  10209. "phpstan/phpstan": "<0.12.20",
  10210. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10211. },
  10212. "require-dev": {
  10213. "phpunit/phpunit": "^8.5.13"
  10214. },
  10215. "type": "library",
  10216. "extra": {
  10217. "branch-alias": {
  10218. "dev-master": "1.10-dev"
  10219. }
  10220. },
  10221. "autoload": {
  10222. "psr-4": {
  10223. "Webmozart\\Assert\\": "src/"
  10224. }
  10225. },
  10226. "notification-url": "https://packagist.org/downloads/",
  10227. "license": [
  10228. "MIT"
  10229. ],
  10230. "authors": [
  10231. {
  10232. "name": "Bernhard Schussek",
  10233. "email": "bschussek@gmail.com"
  10234. }
  10235. ],
  10236. "description": "Assertions to validate method input/output with nice error messages.",
  10237. "keywords": [
  10238. "assert",
  10239. "check",
  10240. "validate"
  10241. ],
  10242. "support": {
  10243. "issues": "https://github.com/webmozarts/assert/issues",
  10244. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10245. },
  10246. "time": "2022-06-03T18:03:27+00:00"
  10247. },
  10248. {
  10249. "name": "webmozart/path-util",
  10250. "version": "2.3.0",
  10251. "source": {
  10252. "type": "git",
  10253. "url": "https://github.com/webmozart/path-util.git",
  10254. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10255. },
  10256. "dist": {
  10257. "type": "zip",
  10258. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10259. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10260. "shasum": ""
  10261. },
  10262. "require": {
  10263. "php": ">=5.3.3",
  10264. "webmozart/assert": "~1.0"
  10265. },
  10266. "require-dev": {
  10267. "phpunit/phpunit": "^4.6",
  10268. "sebastian/version": "^1.0.1"
  10269. },
  10270. "type": "library",
  10271. "extra": {
  10272. "branch-alias": {
  10273. "dev-master": "2.3-dev"
  10274. }
  10275. },
  10276. "autoload": {
  10277. "psr-4": {
  10278. "Webmozart\\PathUtil\\": "src/"
  10279. }
  10280. },
  10281. "notification-url": "https://packagist.org/downloads/",
  10282. "license": [
  10283. "MIT"
  10284. ],
  10285. "authors": [
  10286. {
  10287. "name": "Bernhard Schussek",
  10288. "email": "bschussek@gmail.com"
  10289. }
  10290. ],
  10291. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10292. "time": "2015-12-17T08:42:14+00:00"
  10293. }
  10294. ],
  10295. "packages-dev": [],
  10296. "aliases": [],
  10297. "minimum-stability": "dev",
  10298. "stability-flags": {
  10299. "drupal/better_messages": 15,
  10300. "drupal/bulkdelete": 20,
  10301. "drupal/domain": 15,
  10302. "drupal/domain_menu_access": 15,
  10303. "drupal/filefield_sources": 15,
  10304. "drupal/filter_perms": 15,
  10305. "drupal/linkit": 10,
  10306. "drupal/maillog": 10,
  10307. "drupal/synonyms": 15,
  10308. "drupal/toolbar_themes": 20
  10309. },
  10310. "prefer-stable": true,
  10311. "prefer-lowest": false,
  10312. "platform": {
  10313. "php": ">=5.6"
  10314. },
  10315. "platform-dev": [],
  10316. "plugin-api-version": "2.6.0"
  10317. }